currently im learning about neural networks and im trying to create an application that can be trained to recognize handwritten characters. for this problem i use a feedforward neural network and it seems to work when i train it to recognize 1, 2 or 3 different characters. but when i try to make the network learn more than 3 characters it will stagnate at a error percentage around the 40 - 60%.
i tried multiple layers, less/ more amount of neurons but i can't seem to get it right, now im wondering if a feedforward neural network is capable of recognizing that much info.
some statistics:
network type: feedforward neural network.
input neurons: 100 (a 10 * 10) grid is used to draw the characters
output neurons: the amount of characters to regocnize
does anyone know what's the possible flaw in my architecture is? are there too much input neurons? is the feedforward neural network not capable of character regocnition?
thanks in advance.