Skip to content

Instantly share code, notes, and snippets.

@Elijas
Last active September 8, 2019 17:55
Show Gist options
  • Save Elijas/2ea04feb2045cda81dc84820de140b96 to your computer and use it in GitHub Desktop.
Save Elijas/2ea04feb2045cda81dc84820de140b96 to your computer and use it in GitHub Desktop.
How to run CS231n assignments in Google Colab (with Google Drive)
import sys, os
from google.colab import drive
drive.mount('/content/gdrive')
%cd /content/gdrive/My\ Drive/-dev/stanford-cs231n-2019spring/assignment1/
!pip install -r requirements.txt
%cd ./cs231n/datasets/
!chmod +x ./get_datasets.sh
!./get_datasets.sh
%cd ../..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment