Skip to content

small error in kfs() function in parallel-kf-jax #7

@murphyk

Description

@murphyk

The code currenty defines

def kfs(model, observations):
    return ks(model, *kf(model, observations, False))

but kf only takes 2 args. You should use

def kfs(model, observations):
    return ks(model, *kf(model, observations))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions