Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sathyasris27/image-classification-using-dnn-and-cnn
The main aim of this project is to understand and implement deep neural network (DNN) and convolutional neural network (CNN) and see how these can be used for classification problems.
https://github.com/sathyasris27/image-classification-using-dnn-and-cnn
classification convolutional-neural-networks data-science deep-learning deep-neural-networks image-classification python
Last synced: about 1 month ago
JSON representation
The main aim of this project is to understand and implement deep neural network (DNN) and convolutional neural network (CNN) and see how these can be used for classification problems.
- Host: GitHub
- URL: https://github.com/sathyasris27/image-classification-using-dnn-and-cnn
- Owner: SathyasriS27
- Created: 2024-06-11T16:54:12.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-11T17:20:33.000Z (6 months ago)
- Last Synced: 2024-06-12T02:22:22.264Z (6 months ago)
- Topics: classification, convolutional-neural-networks, data-science, deep-learning, deep-neural-networks, image-classification, python
- Language: Jupyter Notebook
- Homepage: https://github.com/SathyasriS27/Image-classification-using-DNN-and-CNN
- Size: 868 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image-classification-using-DNN-and-CNN 🔍
## Aim 🧩
The main aim of this project is to understand and implement deep neural network (DNN) and convolutional neural network (CNN) and see how these can be used for classification problems.## Built using 🛠️
* Python## Dataset used is 📊
In this we will use a subset of images from Tiny ImageNet, which is a subset of the ImageNet dataset. Our subset of Tiny ImageNet contains 30 different categories, we will refer to it as TinyImageNet30. The training set has 450 resized images (64x64 pixels) for each category (13,500 images in total).## Required Packages 📦
* numpy
* h5py
* matplotlib
* pytorch## How the work has been divided 👩🏻💻
1. Function Implementation - to get the datasets and the dataloaders
2. Function Implementation - model class for a simple MLP and CNN Model
3. Model Training
4. Generating Confusion Matrices and ROC
5. Implementing strategies to tackle overfitting
6. Model Testing
7. Model Fine-tuning on the CIFAR-10 dataset