Skip to content

Commit

Permalink
Make test less flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
gpleiss committed Jun 2, 2023
1 parent deb90c2 commit 1be177e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/examples/test_keops_gp_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_keops_gp_mean_abs_error(self):
test_preds = likelihood(gp_model(test_x)).mean
mean_abs_error = torch.mean(torch.abs(test_y - test_preds))

self.assertLess(mean_abs_error.squeeze().item(), 0.02)
self.assertLess(mean_abs_error.squeeze().item(), 0.1)


if __name__ == "__main__":
Expand Down

0 comments on commit 1be177e

Please sign in to comment.