Skip to content

Commit

Permalink
change case to render graph (#1711)
Browse files Browse the repository at this point in the history
  • Loading branch information
yayami3 committed Dec 30, 2023
1 parent 09551d9 commit 9ce2384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpyro/infer/inspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def process_message(self, msg):
samples = {
name: site["value"]
for name, site in trace.items()
if (site["type"] == "sample" and not site["is_observed"])
if site["type"] == "sample"
or site["type"] == "deterministic"
}

Expand Down

0 comments on commit 9ce2384

Please sign in to comment.