Created
January 24, 2019 11:10
-
-
Save zeeshansayyed/d534c1adb5d357bc8551cefb183c87b4 to your computer and use it in GitHub Desktop.
Getting FastAI DL1 to work on Google Colab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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