All Projects → suraj-deshmukh → Keras Multi Label Image Classification

suraj-deshmukh / Keras Multi Label Image Classification

Keras- Multi Label Image Classification

Projects that are alternatives of or similar to Keras Multi Label Image Classification

Style transfer
CNN image style transfer 🎨.
Stars: ✭ 210 (-37.31%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Deeppicar
Deep Learning Autonomous Car based on Raspberry Pi, SunFounder PiCar-V Kit, TensorFlow, and Google's EdgeTPU Co-Processor
Stars: ✭ 242 (-27.76%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Tfwss
Weakly Supervised Segmentation with Tensorflow. Implements instance segmentation as described in Simple Does It: Weakly Supervised Instance and Semantic Segmentation, by Khoreva et al. (CVPR 2017).
Stars: ✭ 212 (-36.72%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Deep Learning With Python
Deep learning codes and projects using Python
Stars: ✭ 195 (-41.79%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Pytorch Image Classification
Tutorials on how to implement a few key architectures for image classification using PyTorch and TorchVision.
Stars: ✭ 272 (-18.81%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Traffic Sign Detection
Traffic Sign Detection. Code for the paper entitled "Evaluation of deep neural networks for traffic sign detection systems".
Stars: ✭ 200 (-40.3%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Tensorflow 101
TensorFlow Tutorials
Stars: ✭ 2,565 (+665.67%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Capsnet Traffic Sign Classifier
A Tensorflow implementation of CapsNet(Capsules Net) apply on german traffic sign dataset
Stars: ✭ 166 (-50.45%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Deeplearning.ai Assignments
Stars: ✭ 268 (-20%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Grad Cam Tensorflow
tensorflow implementation of Grad-CAM (CNN visualization)
Stars: ✭ 261 (-22.09%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Coursera Deep Learning Specialization
Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models
Stars: ✭ 188 (-43.88%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Cs231
Complete Assignments for CS231n: Convolutional Neural Networks for Visual Recognition
Stars: ✭ 317 (-5.37%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Pytorch Vae
A CNN Variational Autoencoder (CNN-VAE) implemented in PyTorch
Stars: ✭ 181 (-45.97%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Image To 3d Bbox
Build a CNN network to predict 3D bounding box of car from 2D image.
Stars: ✭ 200 (-40.3%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
2048 Deep Reinforcement Learning
Trained A Convolutional Neural Network To Play 2048 using Deep-Reinforcement Learning
Stars: ✭ 169 (-49.55%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Triplet Attention
Official PyTorch Implementation for "Rotate to Attend: Convolutional Triplet Attention Module." [WACV 2021]
Stars: ✭ 222 (-33.73%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Cs231n
My assignment solutions for CS231n - Convolutional Neural Networks for Visual Recognition
Stars: ✭ 162 (-51.64%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
A Journey Into Convolutional Neural Network Visualization
A journey into Convolutional Neural Network visualization
Stars: ✭ 165 (-50.75%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Stanford Cs231
Resources for students in the Udacity's Machine Learning Engineer Nanodegree to work through Stanford's Convolutional Neural Networks for Visual Recognition course (CS231n).
Stars: ✭ 249 (-25.67%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks
Zhihu
This repo contains the source code in my personal column (https://zhuanlan.zhihu.com/zhaoyeyu), implemented using Python 3.6. Including Natural Language Processing and Computer Vision projects, such as text generation, machine translation, deep convolution GAN and other actual combat code.
Stars: ✭ 3,307 (+887.16%)
Mutual labels:  jupyter-notebook, convolutional-neural-networks

Keras Multi label Image Classification

The objective of this study is to develop a deep learning model that will identify the natural scenes from images. This type of problem comes under multi label image classification where an instance can be classified into multiple classes among the predefined classes. https://suraj-deshmukh.github.io/Keras-Multi-Label-Image-Classification/

Dataset

The complete description of dataset is given on http://lamda.nju.edu.cn/data_MIMLimage.ashx. The dataset contains 2000 natural scenes images.

Keras Model Architecture

all tag

Preprocessing

Resized all images to 100 by 100 pixels and created two sets i.e train set and test set. Train set contains 1600 images and test set contains 200 images.

Training

As this is multi label image classification, the loss function was binary crossentropy and activation function used was sigmoid at the output layer. Keras doesn't have provision to provide multi label output so after training there is one probabilistic threshold method which find out the best threshold value for each label seperately, the performance of threshold values are evaluated using Matthews Correlation Coefficient and then uses this thresholds to convert those probabilites into one's and zero's.

Result

Below table shows the result on test set

Accuracy Value
Hamming loss 0.1395
Exact Match 0.54

Preprocessed Dataset and Weight file download link

Dataset: https://drive.google.com/open?id=0BxGfPTc19Ac2a1pDd1dxYlhIVlk

Weight file: https://drive.google.com/open?id=0BxGfPTc19Ac2X1RqNnEtRnNBNUE

Ipython notebook

Jupyter/iPython Notebook has been provided to know about the model and its working. https://github.com/suraj-deshmukh/Keras-Multi-Label-Image-Classification/blob/master/miml.ipynb

Visualization

Command:

python visualization.py

link: localhost:5000

Keras repo:

Github: https://github.com/keras-team/keras

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].