priyavrat-misra / cifar10

A PyTorch implementation of CNNs and transfer learning on CIFAR-10 Dataset and lots of experimentations.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CIFAR10 Classification with PyTorch

Cover

This project uses the CIFAR10 dataset for training. It consists of 60000 32x32 colour images in 10 classes, with 6000 images per class. There are 50000 training images and 10000 test images.
The dataset is divided into five training batches and one test batch, each with 10000 images. The test batch contains exactly 1000 randomly-selected images from each class. The training batches contain the remaining images in random order, but some training batches may contain more images from one class than another. Between them, the training batches contain exactly 5000 images from each class. (Source:https://www.cs.toronto.edu/~kriz/cifar.html)


Steps:

Results:

Train Accuracy Test Accuracy
without data augmentation *81.69% 76.68%
with data augmentation 85.15% 79.76%
with transfer learning (VGG-16) 92.89% 85.93%

* - running accuracy


About

A PyTorch implementation of CNNs and transfer learning on CIFAR-10 Dataset and lots of experimentations.

License:MIT License


Languages

Language:Jupyter Notebook 100.0%Language:Python 0.0%