Skip to content

Commit d32b71a

Browse files
Relax tolerance in loglikelihood tests
1 parent 667596a commit d32b71a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc_experimental/tests/statespace/test_distributions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

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

3232
filter_names = [
3333
"standard",

0 commit comments

Comments
 (0)