Digit recognition by MLP
7 views (last 30 days)
Show older comments
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.
0 Comments
Answers (1)
Ruchika P Barman
on 13 Jul 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).
0 Comments
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!