Shubhvedi commited on
Commit
6816eab
1 Parent(s): b426345

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -36
README.md CHANGED
@@ -1,39 +1,3 @@
1
- MNIST-dataset-digit-classification
2
- Project : Recognizing hardwritten digits
3
- In this project we will discover the MNIST handwritten digit recognition problem and we will develop a deep learning model in Python using the Keras library that will be capable of achieving excellent results. Now some questions come to mind:
4
-
5
- What is deep learning ?
6
- Deep Learning is a subfield of machine learning concerned with algorithms inspired by the structure and function of the brain called artificial neural networks.
7
- Why we are using keras ?
8
- Keras is one of the best neural network Frameworks currently around. Here are the main advantages I see for it:
9
- Simplicity (code itself is very good)
10
- Awesome community - there is good documentation, lots of community code, it is also the framework of choice for many Kagglers nowadays meaning you can get a constant stream of some really insightful data science competition grade code written in keras.
11
- Very active development.
12
- What is MNIST handwritten digit recognition problem ?
13
- The MNIST problem is a dataset developed by Yann LeCun, Corinna Cortes and Christopher Burges for evaluating machine learning models on the handwritten digit classification problem.
14
- The dataset was constructed from a number of scanned document dataset available from the National Institute of Standards and Technology (NIST). This is where the name for the dataset comes from, as the Modified NIST or MNIST dataset.
15
- Images of digits were taken from a variety of scanned documents, normalized in size and centered. This makes it an excellent dataset for evaluating models, allowing the developer to focus on the machine learning with very little data cleaning or preparation required.
16
- In this tutorial, we’ll give you a step by step walk-through of how to build a hand-written digit classifier using the MNIST dataset.
17
- For someone new to deep learning, this exercise is arguably the “Hello World” equivalent. It consists of 70,000 labeled 28x28 pixel grayscale images of hand-written digits.
18
- The dataset is split into 60,000 training images and 10,000 test images. There are 10 classes (one for each of the 10 digits).
19
- The task at hand is to train a model using the 60,000 training images and subsequently test its classification accuracy on the 10,000 test images.
20
-
21
- Libraries used:
22
- Numpy
23
- Keras
24
- matplotlib
25
- Evaluation
26
-
27
-
28
- The model gets loss a of 0.0241 and an accuracy of 0.992 while evaluating on the test set.
29
-
30
-
31
-
32
-
33
-
34
-
35
-
36
-
37
 
38
  ---
39
  title: MNIST Digit Recognizer Project
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
  ---
3
  title: MNIST Digit Recognizer Project