MNIST-1LNN
1.0
A simple 1-layer neural network to recognize handwritten single digit numbers from the MNIST image files.
|
Main characteristics: Only 1 layer (= input layer), no hidden layer. Feed-forward only. No Sigmoid activation function. No back propagation.
Learning is achieved simply by incrementally updating the connection weights based on the comparison with the desired target output (supervised learning).
Its performance (success rate) of 85% is far off the state-of-the-art techniques (surprise, surprise) but close the Yann Lecun's 88% when using only a linear classifier.