Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Readme.md

Purpose of this project is to demonstrate how to build and train a Deep Neural Network using Transfer Learning

  1. Dataset used is Cifar-10 which contains images from 10 different classes (https://www.cs.toronto.edu/~kriz/cifar.html)
  2. Architecture used is ResNet-50 (https://keras.io/api/applications/)

Example images from cifar-10 dataset
Image Source

Project folder includes

  1. Readme.md (this file)
  2. Google colab notebook for building, training and testing a ResNet50 architecture using transfer learning on the CIFAR-10 dataset.
  3. Misc
    • CIFAR-10 overview image

Programming language and Libraries used

  1. Python programming language
  2. Deep learning libraries tensorflow 2.x and Keras API
  3. Python libraries including numpy, etc