Skip to content

Commit

Permalink
Relax tolerance in loglikelihood tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegrabowski committed Feb 14, 2024
1 parent b20515c commit 36a8b29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymc_experimental/tests/statespace/test_distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

# TODO: These are pretty loose because of all the stabilizing of covariance matrices that is done inside the kalman
# filters. When that is improved, this should be tightened.
ATOL = 1e-6 if floatX.endswith("64") else 1e-4
RTOL = 1e-6 if floatX.endswith("64") else 1e-4
ATOL = 1e-5 if floatX.endswith("64") else 1e-4
RTOL = 1e-5 if floatX.endswith("64") else 1e-4

filter_names = [
"standard",
Expand Down

0 comments on commit 36a8b29

Please sign in to comment.