Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
matakshay authored Aug 20, 2019
1 parent d35e506 commit 02d30e1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# digit_recognition
Recognise and Classify handwritten digits from the MNIST Database using kNN Algorithm

The MNIST Database contains 70,000 handwritten images of different digits. 60,000 of these images are input to the algorithm, along with their correct corresponding digit values.
Subsequent to this, any image from the remaining 10,000 can be input as a test case. Using a conventional k Nearest Neighbours Algorithm, the model tries to identify the digit in the image.
This prediction is compared with the acutal correct value. Also the value of k (i.e. number of nearest neighbours to be considered), can be set to an appropriate value so as to have good accuracy while also having a small execution time.
The MNIST Database contains around 70,000 images of handwritten digits. 60,000 of these images are fed to the algorithm, along with their correct corresponding digit values.

Subsequent to this, any image from the remaining 10,000 can be input as a test case. Using the conventional k-Nearest Neighbours Algorithm, the model identifies the digit in the image.

This prediction is compared with the acutal correct value. Also the value of k (i.e. number of nearest neighbours to be considered), can be set to an appropriate value so as to have optimal accuracy, while simultaneously having a small execution time.

0 comments on commit 02d30e1

Please sign in to comment.