Skip to content

Commit 18cb11d

Browse files
authored
PyMC3 -> PyMC (#769)
1 parent c73b785 commit 18cb11d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

examples/howto/profiling.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"(profiling)=\n",
88
"# Profiling\n",
9-
"Sometimes computing the likelihood is not as fast as we would like. Theano provides handy profiling tools which are wrapped in PyMC3 by {func}`model.profile <pymc.model.core.Model.profile>`. This function returns a `ProfileStats` object conveying information about the underlying Theano operations. Here we'll profile the likelihood and gradient for the stochastic volatility example.\n",
9+
"Sometimes computing the likelihood is not as fast as we would like. Theano provides handy profiling tools which are wrapped in PyMC by {func}`model.profile <pymc.model.core.Model.profile>`. This function returns a `ProfileStats` object conveying information about the underlying Theano operations. Here we'll profile the likelihood and gradient for the stochastic volatility example.\n",
1010
"\n",
1111
"First we build the model."
1212
]
@@ -27,7 +27,7 @@
2727
"name": "stdout",
2828
"output_type": "stream",
2929
"text": [
30-
"Running on PyMC3 v5.10.0\n"
30+
"Running on PyMC v5.10.0\n"
3131
]
3232
}
3333
],
@@ -36,7 +36,7 @@
3636
"import pandas as pd\n",
3737
"import pymc as pm\n",
3838
"\n",
39-
"print(f\"Running on PyMC3 v{pm.__version__}\")"
39+
"print(f\"Running on PyMC v{pm.__version__}\")"
4040
]
4141
},
4242
{

examples/howto/profiling.myst.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ kernelspec:
1212

1313
(profiling)=
1414
# Profiling
15-
Sometimes computing the likelihood is not as fast as we would like. Theano provides handy profiling tools which are wrapped in PyMC3 by {func}`model.profile <pymc.model.core.Model.profile>`. This function returns a `ProfileStats` object conveying information about the underlying Theano operations. Here we'll profile the likelihood and gradient for the stochastic volatility example.
15+
Sometimes computing the likelihood is not as fast as we would like. Theano provides handy profiling tools which are wrapped in PyMC by {func}`model.profile <pymc.model.core.Model.profile>`. This function returns a `ProfileStats` object conveying information about the underlying Theano operations. Here we'll profile the likelihood and gradient for the stochastic volatility example.
1616

1717
First we build the model.
1818

@@ -21,7 +21,7 @@ import numpy as np
2121
import pandas as pd
2222
import pymc as pm
2323
24-
print(f"Running on PyMC3 v{pm.__version__}")
24+
print(f"Running on PyMC v{pm.__version__}")
2525
```
2626

2727
```{code-cell} ipython3

0 commit comments

Comments
 (0)