Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): disable continue-on-error for all test jobs in CI workflow #1968

Merged
merged 7 commits into from
Feb 3, 2025
2 changes: 1 addition & 1 deletion test/contrib/einstein/test_stein_loss.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def stein_loss_fn(chosen_particle, obs, particles, assign):
xs = jnp.array([-1, 0.5, 3.0])
num_particles = xs.shape[0]
particles = {"x": xs}
zs = jnp.array([-0.1241799, -0.65357316, -0.96147573]) # from inspect
zs = jnp.array([-3.3022664, -1.06049, 0.64527285]) # from inspect
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could we just replicate the logic to generate zs here? @OlaRonning

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, that should be possible. I'll have a look at it now.


flat_particles, unravel_pytree, _ = batch_ravel_pytree(particles, nbatch_dims=1)

Expand Down
Loading