This file contains hidden or 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
# To add a new cell, type '# %%' | |
# To add a new markdown cell, type '# %% [markdown]' | |
# %% | |
from IPython import get_ipython | |
# %% | |
# get_ipython().run_line_magic('load_ext', 'autoreload') | |
# get_ipython().run_line_magic('autoreload', '1') |
This file contains hidden or 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
!pip3 install torch torchvision -f https://download.pytorch.org/whl/torch_stable.html | |
!wget https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/3bd7dea850e936d8cb44adda8200e4e2b5d627e3/intro-to-pytorch/helper.py | |
!wget https://s3.amazonaws.com/content.udacity-data.com/nd089/Cat_Dog_data.zip | |
!unzip \*.zip && rm *.zip | |
%load_ext autoreload | |
%autoreload 1 |