Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/pymc-usage.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -138,7 +138,6 @@ Or through the pymc API:
```python
with model:
trace = pm.sample(
model,
nuts_sampler="nutpie",
nuts_sampler_kwargs={"backend": "jax"},
)
Expand Down