Digit recognition by MLP
조회 수: 7 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Ruchika P Barman
2022년 7월 13일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!