MNIST web sketch - digit recognition
The neural network used for the sketch is a basic 784 x 30 x 10 network, trained on the 50.000 handwritten digits from the MNIST dataset (http://yann.lecun.com/exdb/mnist/).
The performance of the network is optimized by L2 regularization and squashed weights initialization. This makes the network be 96% accurate. Even though neural networks built on MNIST can now achieve nearly 100% classification accuracy, I chose to stick to this simple architecture to test my hypothesis.
DONE
Ideas to improve on:
Sensitivity to the position/size of digit
Better data manipulation techniques
Store the feedback image + label in database