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
importpytensorimportpymcaspmwithpm.Model() asm:
theta1=pm.Normal("theta1", 0, 1)
theta2=pm.Uniform("theta2", -theta1, theta1)
pytensor.dprint(theta2)
m.unobserved_value_varspytensor.dprint(theta2) # Now includes the value var of theta1 in the graph!theta2.eval() # MissingInputError
Caused by the recent refactor in #6976
One of the replace functions that is now used causes an inplace change that was not caused by the previous one