Skip to content

Instantly share code, notes, and snippets.

View FischerGundlach's full-sized avatar

FischerGundlach

View GitHub Profile
@FischerGundlach
FischerGundlach / Colab.sh
Created April 24, 2020 07:32
Install Prefixes
!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
# 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')