0% found this document useful (0 votes)
91 views2 pages

MNIST Digit Recognition Guide

This document provides information about a Kaggle competition to classify handwritten digits using the MNIST dataset. The goal is to analyze images of handwritten single digits from 0 to 9 and correctly identify the digit. The training dataset contains images and corresponding labels, while the test set omits labels. Participants must submit predictions for each test image's digit in order to be evaluated based on categorization accuracy.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
91 views2 pages

MNIST Digit Recognition Guide

This document provides information about a Kaggle competition to classify handwritten digits using the MNIST dataset. The goal is to analyze images of handwritten single digits from 0 to 9 and correctly identify the digit. The training dataset contains images and corresponding labels, while the test set omits labels. Participants must submit predictions for each test image's digit in order to be evaluated based on categorization accuracy.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Classify handwritten digits using the famous MNIST data

Get started on this competition through Kaggle Scripts


The goal in this competition is to take an image of a handwritten single digit, and
determine what that digit is. As the competition progresses, we will release tutorials
which explain different machine learning algorithms and help you to get started.

The data for this competition were taken from the MNIST dataset. The MNIST
("Modified National Institute of Standards and Technology") dataset is a classic within
the Machine Learning community that has been extensively studied. More detail
about the dataset, including Machine Learning algorithms that have been tried on it
and their levels of success, can be found at
http://yann.lecun.com/exdb/mnist/index.html.

Evaluation

Insert your evaluation here

See benchmark code and a sample submission with the Random Forest Benchmark
The data files train.csv and test.csv contain gray-scale images of hand-drawn digits,
from zero through nine.
Each image is 28 pixels in height and 28 pixels in width, for a total of 784 pixels in
total. Each pixel has a single pixel-value associated with it, indicating the lightness or
darkness of that pixel, with higher numbers meaning darker. This pixel-value is an
integer between 0 and 255, inclusive.
The training data set, (train.csv), has 785 columns. The first column, called "label", is
the digit that was drawn by the user. The rest of the columns contain the pixel-values
of the associated image.
Each pixel column in the training set has a name like pixelx, where x is an integer
between 0 and 783, inclusive. To locate this pixel on the image, suppose that we

have decomposed x as x = i * 28 + j, where i and j are integers between 0 and 27,


inclusive. Then pixelx is located on row i and column j of a 28 x 28 matrix, (indexing
by zero).
For example, pixel31 indicates the pixel that is in the fourth column from the left, and
the second row from the top, as in the ascii-diagram below.
Visually, if we omit the "pixel" prefix, the pixels make up the image like this:
000 001 002 003 ... 026 027
028 029 030 031 ... 054 055
056 057 058 059 ... 082 083
|

...

728 729 730 731 ... 754 755


756 757 758 759 ... 782 783

The test data set, (test.csv), is the same as the training set, except that it does not
contain the "label" column.
Your submission file should be in the following format: For each of the 28000 images
in the test set, output a single line containing the ImageId and the digit you predict.
For example, if you predict that the first image is of a 3, the second image is of a 7,
and the third image is of a 8, then your submission file would look like:
ImageId,Label
1,3
2,7
3,8
(27997 more lines)

The evaluation metric for this contest is the categorization accuracy, or the proportion
of test images that are correctly classified. For example, a categorization accuracy of
0.97 indicates that you have correctly classified all but 3% of the images.

You might also like