We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd690a commit 555b4adCopy full SHA for 555b4ad
2 files changed
scripts/run_notebooks/README.md
@@ -4,7 +4,7 @@ This script runs Jupyter notebooks from `docs/source/notebooks/` to validate the
4
5
## How It Works
6
7
-1. **Mocks `pm.sample()`** — Replaces MCMC sampling with prior predictive (1 chain × 10 draws) for speed
+1. **Mocks `pm.sample()`** — Replaces MCMC sampling with prior predictive (1 chain × 50 draws) for speed
8
2. **Uses Papermill** — Executes notebooks programmatically
9
3. **Discards outputs** — Only checks for errors, doesn't save results
10
scripts/run_notebooks/injected.py
@@ -15,7 +15,7 @@ def mock_sample(*args, **kwargs):
15
first_arg = args[0]
16
if isinstance(first_arg, pm.Model):
17
model = first_arg
18
- n_draws = 10
+ n_draws = 50
19
20
idata = pm.sample_prior_predictive(
21
model=model,
0 commit comments