Skip to content

Commit

Permalink
fix: allow tutorial packages for colab install to use latest version (#…
Browse files Browse the repository at this point in the history
…173)

fix: allow tutorial packages for colab install to use latest version (#173)
  • Loading branch information
NelsonG-C authored Jun 5, 2024
1 parent 5d0faed commit f73cb73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tutorials/basic_loading_and_analysing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
" import google.colab # type: ignore\n",
" from google.colab import output\n",
" COLAB = True\n",
" %pip install sae-lens==1.3.0 transformer-lens==1.17.0\n",
" %pip install sae-lens transformer-lens\n",
"except:\n",
" COLAB = False\n",
" from IPython import get_ipython # type: ignore\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/logits_lens_with_features.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
" # For Google Colab, a high RAM instance is needed\n",
" import google.colab # type: ignore\n",
" from google.colab import output\n",
" %pip install sae-lens==1.3.0 transformer-lens==1.17.0\n",
" %pip install sae-lens transformer-lens\n",
"except:\n",
" from IPython import get_ipython # type: ignore\n",
" ipython = get_ipython(); assert ipython is not None\n",
Expand Down
2 changes: 1 addition & 1 deletion tutorials/training_a_sparse_autoencoder.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"try:\n",
" import google.colab # type: ignore\n",
" from google.colab import output\n",
" %pip install sae-lens==1.3.0 transformer-lens==1.17.0 circuitsvis==1.43.2\n",
" %pip install sae-lens transformer-lens circuitsvis\n",
"except:\n",
" from IPython import get_ipython # type: ignore\n",
" ipython = get_ipython(); assert ipython is not None\n",
Expand Down

0 comments on commit f73cb73

Please sign in to comment.