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
@modelfunctiontest_model(a, b, c)
x ~Gamma(b = b, c =sqrt(c))
a ~Normal(x, 1)
end
we cannot specify any constraint around this Gamma node since in the internal representation c is not connected to it (c is connected to a sqrt node, which spawns an anonymous variable that is actually connected to the Gamma node. I currently also have no inspiration on how to solve this efficiently. Probably after refactoring the constraints to a more efficient algorithm a path will open.
The text was updated successfully, but these errors were encountered:
Let's say we have the following example:
we cannot specify any constraint around this Gamma node since in the internal representation
c
is not connected to it (c
is connected to asqrt
node, which spawns an anonymous variable that is actually connected to theGamma
node. I currently also have no inspiration on how to solve this efficiently. Probably after refactoring the constraints to a more efficient algorithm a path will open.The text was updated successfully, but these errors were encountered: