diff --git a/doc/demo/image_classification/image_classification.md b/doc/demo/image_classification/image_classification.md index ac2f772cd0262136ea778c20a0ed476674761eda..069100d3a1b2371341637891b8f7e66c43286eb9 100644 --- a/doc/demo/image_classification/image_classification.md +++ b/doc/demo/image_classification/image_classification.md @@ -11,7 +11,17 @@ First, download CIFAR-10 dataset. CIFAR-10 dataset can be downloaded from its of We have prepared a script to download and process CIFAR-10 dataset. The script will download CIFAR-10 dataset from the official dataset. -It will convert it to jpeg images and organize them into a directory with the required structure for the tutorial. Make sure that you have installed the python dependency (PIL). If not, you can install it by `pip install PIL` and if you have installed `pip` package. +It will convert it to jpeg images and organize them into a directory with the required structure for the tutorial. Make sure that you have installed pillow and its dependents. +Consider the following commands: + +1. install pillow dependents + +```bash +sudo apt-get install libjpeg-dev +pip install pillow +``` + +2. download data and preparation ```bash cd demo/image_classification/data/