All Projects → aditya9211 → Svhn Cnn

aditya9211 / Svhn Cnn

Google Street View House Number(SVHN) Dataset, and classifying them through CNN

Projects that are alternatives of or similar to Svhn Cnn

Pytorch
PyTorch tutorials A to Z
Stars: ✭ 87 (+97.73%)
Mutual labels:  jupyter-notebook, cnn, mnist
Deep Learning With Python
Deep learning codes and projects using Python
Stars: ✭ 195 (+343.18%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Pytorch Learners Tutorial
PyTorch tutorial for learners
Stars: ✭ 97 (+120.45%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Convisualize nb
Visualisations for Convolutional Neural Networks in Pytorch
Stars: ✭ 57 (+29.55%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Human Activity Recognition Using Cnn
Convolutional Neural Network for Human Activity Recognition in Tensorflow
Stars: ✭ 382 (+768.18%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Cnn Interpretability
🏥 Visualizing Convolutional Networks for MRI-based Diagnosis of Alzheimer’s Disease
Stars: ✭ 68 (+54.55%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Image classifier
CNN image classifier implemented in Keras Notebook 🖼️.
Stars: ✭ 139 (+215.91%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Gtsrb
Convolutional Neural Network for German Traffic Sign Recognition Benchmark
Stars: ✭ 65 (+47.73%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Pytorch Image Classification
Tutorials on how to implement a few key architectures for image classification using PyTorch and TorchVision.
Stars: ✭ 272 (+518.18%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Style transfer
CNN image style transfer 🎨.
Stars: ✭ 210 (+377.27%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Tensorflow Mnist Cnn
MNIST classification using Convolutional NeuralNetwork. Various techniques such as data augmentation, dropout, batchnormalization, etc are implemented.
Stars: ✭ 182 (+313.64%)
Mutual labels:  cnn, mnist, dropout
Yann
This toolbox is support material for the book on CNN (http://www.convolution.network).
Stars: ✭ 41 (-6.82%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Keras transfer cifar10
Object classification with CIFAR-10 using transfer learning
Stars: ✭ 120 (+172.73%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Pratik Derin Ogrenme Uygulamalari
Çeşitli kütüphaneler kullanılarak Türkçe kod açıklamalarıyla TEMEL SEVİYEDE pratik derin öğrenme uygulamaları.
Stars: ✭ 200 (+354.55%)
Mutual labels:  jupyter-notebook, cnn, mnist
Food Recipe Cnn
food image to recipe with deep convolutional neural networks.
Stars: ✭ 448 (+918.18%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Music recommender
Music recommender using deep learning with Keras and TensorFlow
Stars: ✭ 528 (+1100%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks, cnn
Brain Tumor Segmentation Keras
Keras implementation of the multi-channel cascaded architecture introduced in the paper "Brain Tumor Segmentation with Deep Neural Networks"
Stars: ✭ 20 (-54.55%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Traffic Sign Classifier
Udacity Self-Driving Car Engineer Nanodegree. Project: Build a Traffic Sign Recognition Classifier
Stars: ✭ 12 (-72.73%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Servenet
Service Classification based on Service Description
Stars: ✭ 21 (-52.27%)
Mutual labels:  jupyter-notebook, cnn
Keras Faster Rcnn
Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks
Stars: ✭ 28 (-36.36%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks

SVHN

Google Street View House Number(SVHN) Dataset Link

Much similar to MNIST(images of cropped digits), but SVHN contains much more labeled data (over 600,000 images) with real world problems of recognizing digits and numbers in natural scene images.

Overview:

  1. Total 10 Classes, 1 for each digits i.e Label '9' for digit 9 and '10' for digit 0.
  2. 73,257 digits for training, 26,032 digits for testing
  3. Available in two differnet formats
    • Original images with bounding box available for each character (may contain multiple characters in same images).
    • MNIST like 32x32 cropped images having single character in each images.

Dataset is obtained from house numbers in Google Street View images.

Here we are classifying 32 x 32 cropped images given in format 2

Using CNN architecture.

Train_32x32
Test_32x32

Scripts

  • data_preprocess.ipynb: preprocess the data

  • svhn_model.ipynb: run the model and report results

Added

- Confusion metric 
- Visualization of misclassified and classfied images

Findings:

From logs we can make out that dropout rate should be higher to learn
good features as images have lots of others digits image pixels also in it.

So it's get confused more often`

Note:

Above experiment is performed under 4GB RAM and 1GB GPU Memory
So it was difficult to train it for more steps, and adding more layers in architecture
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].