Skip to content

Commit

Permalink
fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
ismael-mendoza committed Feb 25, 2022
1 parent 4768049 commit 05da1bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_group_sampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ def test_group_sampling():
rel_diff2 = (batch_mean - test_batch_mean) / test_batch_mean
rel_diff3 = (batch_std - test_batch_std) / test_batch_std
assert np.all(rel_diff1 <= 0.1)
assert rel_diff2 <= 0.1
assert rel_diff3 <= 0.1
assert np.all(rel_diff2 <= 0.1)
assert np.all(rel_diff3 <= 0.1)

0 comments on commit 05da1bb

Please sign in to comment.