Digit recognition by MLP

25 vues (au cours des 30 derniers jours)
astronot
astronot le 23 Mar 2019
FIRST OF ALL,THE OTHER TOPICS COULD NOT HELPFULL.
ı created my own digits as 7x5 matrices from digit 0 to 9 as below:
......
d8=[1 1 1 1 1,1 0 0 0 1,1 0 0 0 1,1 1 1 1 1,1 0 0 0 1,1 0 0 0 1,1 1 1 1 1];
d9=[1 1 1 1 1,1 0 0 0 1,1 0 0 0 1,1 1 1 1 1,0 0 0 0 1,0 0 0 0 1,0 0 0 0 1];
ferdata=[d0;d1;d2;d3;d4;d5;d6;d7;d8;d9]; %data
ferdata=(ferdata)';
then for recognition ı created :
FERTARGET=eye(10); %target
now ı need to use MLP method for testing it but how ? ı tried "nntool" but ı failed ı hope you help me.

Réponses (1)

Ruchika P Barman
Ruchika P Barman le 13 Juil 2022
It is my understanding that you are trying to write a MATLAB code for MLP method for training and testing of network by multi-layer perceptron for digit recognition.
You may refer to this previously answered question to find more information regarding the same multi layer digit recognition - (mathworks.com).
You may read more about this MATLAB class to gain a better understanding by going through Multi-layer perceptron - File Exchange - MATLAB Central (mathworks.com).

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by