Skip to content

Commit

Permalink
Fix another PyMC v4.0.0b6 compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelosthege committed May 20, 2022
1 parent 3fbe91c commit b154234
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bletl/growth.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,9 +463,9 @@ def fit_mu_t(
cdf_evals += list(
scipy.stats.t.cdf(
x=theta_map[rvname],
loc=rv.distribution.mu.eval(),
scale=rv.distribution.sd.eval(),
df=rv.distribution.nu.eval(),
loc=rv.owner.inputs[3].eval(),
scale=rv.owner.inputs[4].eval(),
df=rv.owner.inputs[2].eval(),
)
)
cdf_evals = numpy.array(cdf_evals)
Expand Down

0 comments on commit b154234

Please sign in to comment.