Skip to content
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
6 changes: 6 additions & 0 deletions docs/tutorials/CIFAR-10.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ Original model code from [CIFAR-10 Tutorial](https://github.com/pytorch/tutorial
git submodule update --init --recursive
```

To install requirements for CIFAR-10:
```
cd DeepSpeedExamples/cifar
pip install -r requirements.txt
```

Run `python cifar10_tutorial.py`, it downloads the training data set at first run.
```less
Downloading https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz to ./data/cifar-10-python.tar.gz
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
torch==1.2
torchvision==0.4.0
pillow==6.2.2
tqdm
psutil
tensorboardX==1.8
Expand Down