Digit recognition by MLP

조회 수: 26 (최근 30일)
astronot
astronot 2019년 3월 23일
답변: Ruchika P Barman 2022년 7월 13일
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.

답변 (1개)

Ruchika P Barman
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).

카테고리

Help CenterFile Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by