Recognize the Digits
This time I am going to demostrate the kaggle 101 level competition - digit recogniser. We are asked to train a model to recogize the digit from the pixel data in this competition. The data set is available here. description of the data: label: the integers from 0 - 9; features: pixel001-pixel784, which are rolled out from 28x28 digit image; pixel data is ranged from 0 -255, which indicating the brightness of the pixel in grey scale; Visualize the digit: Let’s randomly look at 100 dig...