Skip to content
Snippets Groups Projects
Commit 17449c6d authored by Reimar Leike's avatar Reimar Leike
Browse files

Delete tests for too large factors

parent 9afb3f68
No related branches found
No related tags found
1 merge request!548Fix VariableCovarianceGaussianEnergy
Pipeline #97847 passed
......@@ -96,7 +96,8 @@ def energy_tester(pos, get_noisy_data, energy_initializer):
lin = ift.Linearization.make_var(pos, want_metric=True)
res2 = _to_array(energy(lin).metric(test_vec).val)
np.testing.assert_allclose(res/std, res2/std, atol=5)
for factor in [0.01, 0.5, 2, 100]:
# Test whether one would detect a factor of 2 in the Fisher metric
for factor in [0.5, 2]:
with pytest.raises(AssertionError):
np.testing.assert_allclose(res/std, factor*res2/std, atol=5)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment