File tree Expand file tree Collapse file tree 4 files changed +642
-1
lines changed Expand file tree Collapse file tree 4 files changed +642
-1
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,15 @@ download:
89
89
wget -N https://s3.amazonaws.com/pytorch-tutorial-assets/wikitext-2.zip -P $(DATADIR)
90
90
unzip -q -o $(DATADIR)/wikitext-2.zip -d advanced_source/data/
91
91
92
+ # Download model for advanced_source/static_quantization_tutorial.py
93
+ wget -N https://s3.amazonaws.com/pytorch-tutorial-assets/mobilenet_quantization.pth -P $(DATADIR)
94
+ cp $(DATADIR)/mobilenet_quantization.pth advanced_source/data/mobilenet_quantization.pth
95
+
96
+ # Download dataset for advanced_source/static_quantization_tutorial.py
97
+ wget -N https://s3.amazonaws.com/pytorch-tutorial-assets/imagenet_1k.zip -P $(DATADIR)
98
+ unzip -q -o $(DATADIR)/imagenet_1k.zip -d advanced_source/data/
99
+
100
+
92
101
docs :
93
102
make download
94
103
make html
You can’t perform that action at this time.
0 commit comments