We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b5dd07 + f701f1b commit a02e17eCopy full SHA for a02e17e
.gitignore
@@ -10,3 +10,4 @@ notebooks/*.csv
10
notebooks/*.hpp
11
perf.data*
12
wheels
13
+.vscode/
python/nutpie/compile_pymc.py
@@ -231,7 +231,7 @@ def _compute_shapes(model):
231
inputs=[],
232
outputs=[var.shape for var in trace_vars.values()],
233
givens=(
234
- [(obs, obs.tag.observations) for obs in model.observed_RVs]
+ [(obs, model.rvs_to_values[obs]) for obs in model.observed_RVs]
235
+ [
236
(trace_vars[name], point[name])
237
for name in trace_vars.keys()
0 commit comments