Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 615 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 615 Bytes

cnn_cifar

Using Convolutional Neural Networks for the image classification on CIFAR dataset.

UP and Running

  1. download/clone this repo and cd to the repo's root dir.
  2. create a virtual environment

    python3 -m venv --system-site-packages path/to/my-venv
  3. activate your virtual environment

    source path/to/my-venv/bin/activate
  4. install the dependencies

    pip install -r requirements.txt
  5. Now you are ready to run the code.

    python3 cnn_cifar.py

For any missing dependencies, install after "activating your-venv" using:
pip install package-name