We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import pymc as pm from pymc.printing import str_for_model with pm.Model() as m: x = pm.Data("x", 0) y = pm.Normal("y") f = pm.Deterministic("f", x + y) str_for_model(m) # y ~ Normal(0, 1) # f ~ Deterministic(f(y))
The text was updated successfully, but these errors were encountered:
I believe this issue has been resolved.
Sorry, something went wrong.
How so?
I ran the above code, it's giving the desired output. Is there something else that needs to be addressed?
The desired output should show that f is a function of x and y, not just y.
And there should be an entry for x
No branches or pull requests
Description
The text was updated successfully, but these errors were encountered: