-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
ZeroInflatedPoisson and ZeroInflatedNegativeBinomial show up as Deterministic on graphviz #5766
New issue
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
Comments
The NormalMixture RV has the same issue.
|
Any non pure RV shows up as a Deterministic. We need to update the logic to check if a variable is in model.basic_RVs instead of checking if it's a RandomVariable which not all model variables are since we introduced SymbolicDistributions |
@ricardoV94 bringing the discussion back here. Short summary: While attempting to refactor graphviz support for SymbolicRVs in #6149, we realized that it would be good to use the distribution's name as input rather than what we have available in Lines 157 to 178 in 2dc49e5
Should we dispatch the creation of |
The part where we define It should be done with dispatching following the approach taken in the rest of the library |
The issue of making it a clever name is separate from showing nodes as RVs instead of Deterministic though, we should open a separate issue for that if it doesn't exist already |
It's probably because they are not pure RandomVariables. We need to update the
model_graph
logic to accommodate themThe text was updated successfully, but these errors were encountered: