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
importaesara.tensorasatfrompymc.logprobimportfactorized_joint_logprobx, x_updates=aesara.scan(
fn=lambda: at.random.normal(0, 1),
n_steps=10,
)
x.name="x"x_vv=x.clone()
factorized_joint_logprob({x: x_vv}) # Finesx=at.log(x)
sx.name="sx"sx_vv=sx.clone()
factorized_joint_logprob({sx: sx_vv})
# RuntimeError: The logprob terms of the following value variables could not be derived: {sx}
This is probably related to how Scan acts on value variables directly.
Uh oh!
There was an error while loading. Please reload this page.
Description
This is probably related to how Scan acts on value variables directly.
pymc/pymc/logprob/scan.py
Lines 420 to 469 in e0d25c8
The text was updated successfully, but these errors were encountered: