Skip to content

Commit ab7560d

Browse files
committed
tidy up and revert $ in plotly
1 parent 17ff8a0 commit ab7560d

2 files changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@ jobs:
2626
pip install --upgrade "jax[cuda12-local]==0.6.2"
2727
pip install numpyro pyro-ppl
2828
python scripts/test-jax-install.py
29-
# - name: Install Chrome
30-
# shell: bash -l {0}
31-
# run: |
32-
# wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
33-
# sudo apt install -y ./google-chrome-stable_current_amd64.deb
34-
# google-chrome --version
3529
- name: Check nvidia Drivers
3630
shell: bash -l {0}
3731
run: nvidia-smi

lectures/back_prop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ predictions = vmap(compute_xδw_seq, in_axes=(None, 0))(params_ex1, grid)[0][:,
526526
527527
```{code-cell} ipython3
528528
fig = go.Figure()
529-
fig.add_trace(go.Scatter(x=grid, y=f_val, name=r'-3x+2'))
529+
fig.add_trace(go.Scatter(x=grid, y=f_val, name=r'$-3x+2$'))
530530
fig.add_trace(go.Scatter(x=grid, y=predictions, name='Approximation'))
531531
532532
# Export to PNG file

0 commit comments

Comments
 (0)