Skip to content

Commit 35c7dd0

Browse files
committed
PyMC5 -> PyMC; add pixi.lock to .gitignore
1 parent ed49bff commit 35c7dd0

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ build
88
jupyter_execute
99
_thumbnails
1010
examples/gallery.rst
11+
12+
pixi.lock

examples/statistical_rethinking_lectures/16-Gaussian_Processes.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4412,7 +4412,7 @@
44124412
"id": "1f81b580-3167-4f69-ab71-bbdaa3fd4cde",
44134413
"metadata": {},
44144414
"source": [
4415-
"#### PyMC5 Implementation\n",
4415+
"#### PyMC Implementation\n",
44164416
"\n",
44174417
"Below is an implementation that uses PyMC's Gaussian process module.\n",
44184418
"\n",

examples/statistical_rethinking_lectures/16-Gaussian_Processes.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ D = PRIMATES_DISTANCE_MATRIX / PRIMATES_DISTANCE_MATRIX.max()
11551155
assert D.max() == 1
11561156
```
11571157

1158-
#### PyMC5 Implementation
1158+
#### PyMC Implementation
11591159

11601160
Below is an implementation that uses PyMC's Gaussian process module.
11611161

examples/statistical_rethinking_lectures/17-Measurement_and_Misclassification.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3416,7 +3416,7 @@
34163416
" Ironically, using `pm.math.logsumexp` for this implementation was\n",
34173417
" providing numerically results.\n",
34183418
"\n",
3419-
" It looks like the PyMC5 implementation uses vanilla `exp`, `sum`,\n",
3419+
" It looks like the PyMC implementation uses vanilla `exp`, `sum`,\n",
34203420
" and `log` operators, which likely isn't numerically stable:.\n",
34213421
" \"\"\"\n",
34223422
" c = pm.math.maximum(a, b)\n",

examples/statistical_rethinking_lectures/17-Measurement_and_Misclassification.myst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ def log_sum_exp(a, b):
10061006
Ironically, using `pm.math.logsumexp` for this implementation was
10071007
providing numerically results.
10081008
1009-
It looks like the PyMC5 implementation uses vanilla `exp`, `sum`,
1009+
It looks like the PyMC implementation uses vanilla `exp`, `sum`,
10101010
and `log` operators, which likely isn't numerically stable:.
10111011
"""
10121012
c = pm.math.maximum(a, b)

0 commit comments

Comments
 (0)