From 7c94d8bea82e579246b58c4f1cbf2ef6510f5878 Mon Sep 17 00:00:00 2001 From: Henry Simmons Date: Wed, 28 May 2025 11:15:07 +0100 Subject: [PATCH] Fix call to pm.sample in docs --- docs/pymc-usage.qmd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/pymc-usage.qmd b/docs/pymc-usage.qmd index 56d81d7..428143c 100644 --- a/docs/pymc-usage.qmd +++ b/docs/pymc-usage.qmd @@ -82,7 +82,7 @@ Alternatively, we can also sample through the `pymc` API: ```python with model: - trace = pm.sample(model, nuts_sampler="nutpie") + trace = pm.sample(nuts_sampler="nutpie") ``` While sampling, nutpie shows a progress bar for each chain. It also includes @@ -138,7 +138,6 @@ Or through the pymc API: ```python with model: trace = pm.sample( - model, nuts_sampler="nutpie", nuts_sampler_kwargs={"backend": "jax"}, )