An open API service indexing awesome lists of open source software.

https://github.com/sunnybibyan/image-classification

This project implements a Convolutional Neural Network (CNN) to classify images from the CIFAR-10 dataset, which consists of 60,000 32x32 color images across 10 classes: airplane, automobile, bird, cat, deer, dog, frog, horse, ship, and truck.
https://github.com/sunnybibyan/image-classification

batchnormalization cnn-keras early-stopping-with-patience image-classification

Last synced: 12 months ago
JSON representation

This project implements a Convolutional Neural Network (CNN) to classify images from the CIFAR-10 dataset, which consists of 60,000 32x32 color images across 10 classes: airplane, automobile, bird, cat, deer, dog, frog, horse, ship, and truck.

Awesome Lists containing this project

README

          

# CIFAR-10 CNN Classifier

This project demonstrates a CNN-based approach to classify images from the CIFAR-10 dataset using TensorFlow and Keras.

## How to Run
1. Install dependencies:
```bash
pip install -r requirements.txt
## Summary
The trained model reached a test accuracy of over 89% with a relatively simple model-structure and only minor overfitting due to different regularization techniques like Dropout, and EarlyStopping. But there is still a lot of optimization potential.