Skip to content

Commit d4c12e3

Browse files
committed
Test Exponential distribution in test_find_constrained_prior
Closes #5289
1 parent 23c375a commit d4c12e3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pymc/tests/test_func_utils.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
(pm.Normal, 155, 180, {"mu": 170, "sigma": 3}, {}),
2626
(pm.StudentT, 0.1, 0.4, {"mu": 10, "sigma": 3}, {"nu": 7}),
2727
(pm.StudentT, 0, 1, {"mu": 5, "sigma": 2, "nu": 7}, {}),
28-
# (pm.Exponential, 0, 1, {"lam": 1}, {}), PyMC Exponential gradient is failing miserably,
29-
# need to figure out why
28+
(pm.Exponential, 0, 1, {"lam": 1}, {}),
3029
(pm.HalfNormal, 0, 1, {"sigma": 1}, {}),
3130
(pm.Binomial, 0, 8, {"p": 0.5}, {"n": 10}),
3231
(pm.Poisson, 1, 15, {"mu": 10}, {}),

0 commit comments

Comments
 (0)