File tree 4 files changed +463
-4
lines changed
4 files changed +463
-4
lines changed Original file line number Diff line number Diff line change @@ -20,16 +20,27 @@ help:
20
20
% : Makefile
21
21
@$(SPHINXBUILD ) -M $@ " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) $(O )
22
22
23
-
24
- docs :
25
- wget -N https://download.pytorch.org/tutorial/data.zip
23
+ download :
24
+ # transfer learning tutorial data
26
25
wget -N https://download.pytorch.org/tutorial/hymenoptera_data.zip
27
26
unzip -o hymenoptera_data.zip -d beginner_source
27
+
28
+ # nlp tutorial data
29
+ wget -N https://download.pytorch.org/tutorial/data.zip
28
30
unzip -o data.zip -d intermediate_source
31
+
32
+ # data loader tutorial
33
+ wget -N https://download.pytorch.org/tutorial/faces.zip
34
+ unzip -o faces.zip -d beginner_source
35
+
36
+ # neural style images
29
37
rm -rf advanced_source/images/
30
38
cp -r _static/img/neural-style/ advanced_source/images/
31
- rm -rf docs
39
+
40
+ docs :
41
+ make download
32
42
make html
43
+ rm -rf docs
33
44
cp -r $(BUILDDIR ) /html docs
34
45
touch docs/.nojekyll
35
46
You can’t perform that action at this time.
0 commit comments