Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
aagrande committed Feb 28, 2024
1 parent dca9813 commit f69eb0a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/test_sampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,5 @@ def test_vesde_linear_model():
diff_mean = np.abs(pred_mean - true_mean)
diff_std = np.abs(pred_std - true_std)

print(f"sde: {sde_name}")
print(f"average difference in mean estimates: {diff_mean.mean()}")
print(f"average difference in std estimates: {diff_std.mean()}")

assert diff_mean.mean() < 0.1, f"{sde_name} diff_mean.mean() = {diff_mean.mean()}"
assert diff_std.mean() < 1, f"{sde_name} diff_std.mean() = {diff_std.mean()}"

0 comments on commit f69eb0a

Please sign in to comment.