We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac5435 commit c320480Copy full SHA for c320480
Makefile
@@ -96,6 +96,10 @@ download:
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
+ # Download weights for intermediate_source/dynamic_quantization_bert_tutorial.py
101
+ wget -N https://download.pytorch.org/tutorial/MRPC.zip -P $(DATADIR)
102
+ unzip -q -o $(DATADIR)/MRPC.zip -d intermediate_source/data/
103
104
105
docs:
0 commit comments