We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c421c04 commit 62d0f32Copy full SHA for 62d0f32
1 file changed
tests/test_highjax_trainer/test_golden_runs/common.py
@@ -38,7 +38,7 @@ def check_golden_run(epoch_metrics: list[dict], golden_data: dict) -> None:
38
expected = expected_values[i]
39
actual = float(metrics[key])
40
41
- if not jnp.isclose(actual, expected, rtol=1e-04, atol=1e-07):
+ if not jnp.isclose(actual, expected, rtol=1e-02, atol=1e-05):
42
bad_fields.append((key, actual, expected))
43
44
if bad_fields:
0 commit comments