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
The text was updated successfully, but these errors were encountered:
Description
Reported in https://discourse.pymc.io/t/missinginputerror-when-sampling-data/13426
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
The text was updated successfully, but these errors were encountered: