Skip to content

Neural Networks using Keras (with Image recognition case study)

Notifications You must be signed in to change notification settings

abhibisht89/Keras_practice

Repository files navigation

Keras_practice

Neural Networks using Keras (with Image recognition case study)

Problem Statement:
Here, we need to identify the digit in given images. We have total 70,000 images, out of which 49,000 are part of train images with the label of digit and rest 21,000 images are unlabeled (known as test images). Now, We need to identify the digit for test images. Public and Private split for test images are 40:60 and evaluation metric of this challenge is accuracy.

About Data:
The data set used for this problem is from the populat MNIST data set. Developed by Yann LeCun, Corina Cortes and Christopher Burger for evaluating machine learning model on the handwritten digit classification problem. It is a widely used data set in the machine learning community.

More information about available data:

Train link has "train.csv" and digit images for train and test data.
Test link has "test.csv" having images name, need to predict the image label

download dataset from : https://datahack.analyticsvidhya.com/contest/practice-problem-identify-the-digits/

I have build a structure approach in the python file.
You can:
Save the model
load the model
generate logs
view performance on Tensorboard

I have uploaded my saved model as well.

I am able to achive 97.2% accuaracy on validation data by tuning the parameters.