We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52a04e7 commit 5c83a47Copy full SHA for 5c83a47
pymc_experimental/model/model_api.py
@@ -8,12 +8,15 @@ def model(*model_args, **model_kwargs):
8
Decorator to provide context to PyMC models declared in a function.
9
This removes all need to think about context managers and lets you separate creating a generative model from using the model.
10
11
- Inspired by the [sampled](https://github.com/colcarroll/sampled) decorator for PyMC3.
+ Inspired by the `sampled <https://github.com/colcarroll/sampled>`_ decorator for PyMC3.
12
13
Examples
14
--------
15
.. code:: python
16
17
+ import pymc as pm
18
+ import pymc_experimental as pmx
19
+
20
# The following are equivalent
21
22
# standard PyMC API with context manager
0 commit comments