Skip to content

Instantly share code, notes, and snippets.

@zeeshansayyed
Created January 24, 2019 11:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zeeshansayyed/d534c1adb5d357bc8551cefb183c87b4 to your computer and use it in GitHub Desktop.
Save zeeshansayyed/d534c1adb5d357bc8551cefb183c87b4 to your computer and use it in GitHub Desktop.
Getting FastAI DL1 to work on Google Colab
# Installing fastai and other dependencies
!pip install torchvision==0.1.9
!pip install fastai==0.7.0
!pip install torchtext==0.2.3
# Downloading and unzipping data
!wget http://files.fast.ai/data/dogscats.zip && unzip -qq dogscats.zip
# Change the PATH variable to point to the new data
PATH = "dogscats/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment