Reputation: 315
Say I want to recognize my characters using neural network(s). Let's cut it down to 5 letters, the binary form of image to 16x16, input + 2 layers network, unipolar function inside both layers. Momentum backpropagation is used in the process of learning.
Which of the following approaches should give the best results (where x is the number of neurons in the first layer)? By best I mean highest % of correct recognitions. Speed isn't a factor in this question.
Upvotes: 0
Views: 49
Reputation: 1051
2 is the worst option because "2 or more networks recognize an image as "their own"" will definitly happen many times and how you descriminate between them after that? 1 will work reasonable well. 3 is the basic idea behind softmax output function and softmax usually works best for classification tasks especially when combined with cross-entropy error function.
Upvotes: 1