Skip to content

Commit

Permalink
change case to render graph (pyro-ppl#1711)
Browse files Browse the repository at this point in the history
  • Loading branch information
yayami3 authored and OlaRonning committed May 6, 2024
1 parent e5a18ed commit afabd2b
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 afabd2b

Please sign in to comment.