You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The elemwise log-likelihood is not stored in the InferenceData that nutpie returns, even when asking for it. The following for instance doesn't error out, but doesn't add a log_likelihood group to the trace (whereas it does when using the default PyMC sampler):
In PyMC it's not that big of a deal (although it adds friction to the user workflow), as one can just do:
withpooled:
pm.compute_log_likelihood(trace_p)
But that may be a small issue for Bambi users, which are usually less advanced (cc @tomicapretto). They'd have to do pooled.compute_log_likelihood(trace_p), which takes much more time to compute
The text was updated successfully, but these errors were encountered:
The elemwise log-likelihood is not stored in the
InferenceData
that nutpie returns, even when asking for it. The following for instance doesn't error out, but doesn't add alog_likelihood
group to the trace (whereas it does when using the default PyMC sampler):In PyMC it's not that big of a deal (although it adds friction to the user workflow), as one can just do:
But that may be a small issue for Bambi users, which are usually less advanced (cc @tomicapretto). They'd have to do
pooled.compute_log_likelihood(trace_p)
, which takes much more time to computeThe text was updated successfully, but these errors were encountered: