Skip to content

Data loading tutorial #96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,27 @@ help:
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)


docs:
wget -N https://download.pytorch.org/tutorial/data.zip
download:
# transfer learning tutorial data
wget -N https://download.pytorch.org/tutorial/hymenoptera_data.zip
unzip -o hymenoptera_data.zip -d beginner_source

# nlp tutorial data
wget -N https://download.pytorch.org/tutorial/data.zip
unzip -o data.zip -d intermediate_source

# data loader tutorial
wget -N https://download.pytorch.org/tutorial/faces.zip
unzip -o faces.zip -d beginner_source

# neural style images
rm -rf advanced_source/images/
cp -r _static/img/neural-style/ advanced_source/images/
rm -rf docs

docs:
make download
make html
rm -rf docs
cp -r $(BUILDDIR)/html docs
touch docs/.nojekyll

Expand Down
Binary file added _static/img/landmarked_face2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading