GitHub

Original file line numberDiff line numberDiff line change

@@ -27,7 +27,7 @@ jobs:

2727

needs: deploy-runner

2828

runs-on: [self-hosted, cml-gpu]

2929

container:

30-

image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311

30+

image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311-b

3131

options: --gpus all

3232

steps:

3333

- uses: actions/checkout@v3

Original file line numberDiff line numberDiff line change

@@ -24,7 +24,7 @@ jobs:

2424

needs: deploy-runner

2525

runs-on: [self-hosted, cml-gpu]

2626

container:

27-

image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311

27+

image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311-b

2828

options: --gpus all

2929

steps:

3030

- uses: actions/checkout@v3

@@ -34,9 +34,6 @@ jobs:

3434

- name: nvidia Drivers

3535

shell: bash -l {0}

3636

run: nvidia-smi

37-

- name: Install sphinx-reredirects

38-

shell: bash -l {0}

39-

run: pip install sphinx-reredirects

4037

- name: Display Conda Environment Versions

4138

shell: bash -l {0}

4239

run: conda list

Original file line numberDiff line numberDiff line change

@@ -28,7 +28,7 @@ jobs:

2828

needs: deploy-runner

2929

runs-on: [self-hosted, cml-gpu]

3030

container:

31-

image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311

31+

image: docker://mmcky/quantecon-lecture-python:cuda-12.1.0-anaconda-2023-09-py311-b

3232

options: --gpus all

3333

steps:

3434

- name: Checkout

Original file line numberDiff line numberDiff line change

@@ -8,7 +8,8 @@ dependencies:

88

- pip:

99

- jupyter-book==0.15.1

1010

- docutils==0.17.1

11-

- quantecon-book-theme==0.6.0

11+

- quantecon-book-theme==0.7.0

12+

- sphinx-reredirects==0.1.3

1213

- sphinx-tojupyter==0.3.0

1314

- sphinxext-rediraffe==0.2.7

1415

- sphinx-exercise==0.4.1

Original file line numberDiff line numberDiff line change

@@ -192,7 +192,7 @@ with AR1_model:

192192

y_like = pmc.Normal('y_obs', mu=yhat, sigma=sigma, observed=y[1:])

193193

```

194194
195-

[pmc.sample](https://www.pymc.io/projects/docs/en/latest/api/generated/pymc.sample.html?highlight=sample#pymc.sample) by default uses the NUTS samplers to generate samples as shown in the below cell:

195+

[pmc.sample](https://www.pymc.io/projects/docs/en/v5.10.0/api/generated/pymc.sample.html#pymc-sample) by default uses the NUTS samplers to generate samples as shown in the below cell:

196196
197197

```{code-cell} ipython3

198198

:tag: [hide-output]

Read the original on github.com ↗