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.
1 parent ec0597f commit 2d2c46cCopy full SHA for 2d2c46c
pymc/sampling/forward.py
@@ -473,7 +473,9 @@ def sample_prior_predictive(
473
)
474
475
# All model variables have a name, but mypy does not know this
476
- _log.info(f"Sampling: {sorted(vars_to_sample, key=lambda var: var.name)}") # type: ignore[arg-type, return-value]
+ _log.info(
477
+ f"Sampling: {sorted(volatile_basic_rvs.intersection(vars_to_sample), key=lambda var: var.name)}" # type: ignore[arg-type, return-value]
478
+ )
479
values = zip(*(sampler_fn() for i in range(draws)))
480
481
data = {k: np.stack(v) for k, v in zip(names, values)}
0 commit comments