Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 2.29 KB

README.md

File metadata and controls

38 lines (25 loc) · 2.29 KB

ResNet

Resnet Paper

Implementation of the Resnet Paper using Pytorch framework on CIFAR10 and FastAI's Imagenette datasets.

CIFAR10

The CIFAR-10 dataset 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.

drawing

Results:

Training Accuracy: 86.86% | Training Loss: 0.3785 | Test Accuracy: 73.66% | Test Loss: 1.1979

Implemented Architecture Results:

Losses:

drawing

Predictions:

drawing

Imagenette

Imagenette is a subset of 10 easily classified classes from Imagenet (tench, English springer, cassette player, chain saw, church, French horn, garbage truck, gas pump, golf ball, parachute).

Created by Jeremy Howard.

Results:

Training Accuracy: 95.57% | Training Loss: 0.1418 | Test Accuracy: 74.76% | Test Loss: 1.1296

drawing

Losses:

drawing

Predictions:

drawing