필터 지우기
필터 지우기

How to train a neural network to 0.1 error rate?

조회 수: 3 (최근 30일)
Omotayo Asiru
Omotayo Asiru 2016년 1월 15일
댓글: Greg Heath 2016년 1월 24일
Hello,
I have written this code to train a neural network with 500 samples as the inputs and 32 attributes.Its a classification problem and i have two classes in the target.
net=fitnet(30,'trainlm');
net.divideParam.trainRatio=.7;
net.divideParam.valRatio=.15;
net.divideParam.testRatio=.15;
[net,tr] = train(net,input500',target500');
Output=net(sample')';
the code is working although the output of the sample isn't perfect yet. I need explanation on how i can calculate error rate after each epoch. Also i want the neural network to continue its training until the error rate is less than 0.1 Please how can i achieve this. Thanks in anticipation.

채택된 답변

Greg Heath
Greg Heath 2016년 1월 17일
1. Error rate cannot be used as a training function because it is discontinuous.
2. PATTERNNET, the current default classification/pattern-recognition function, is more appropriate than FITNET which is designed for regression/curve-fitting. See the documentation
help patternnet
doc patternnet
2. For examples, search BOTH the NEWSGROUP and ANSWERS using
greg patternnet
3. For c classes, the c x N target matrix is obtained from the true class indices 1:c via IND2VEC. The estimated class indices are obtained from the output via VEC2IND. Class error rates are obtained by comparing true and estimated indices.
4. Since it is impossible to directly design for a given error rate, the best approach is, for a given number of hidden nodes, H, make multiple (e.g., Ntrials = 10) designs using different random initial weights.
5. To get a feel for it, start with default value H = 10. Then, use a for loop over H = Hmin:dH:Hmax to try to obtain the smallest value of H that will yield acceptable results. You will have to design at least
Ndesigns = Ntrials*numel(Hmin:dH:Hmax)
6. See previous posts and write back if you need help.
Hope this helps,
Thank you for formally accepting my answer
Greg
  댓글 수: 2
Omotayo Asiru
Omotayo Asiru 2016년 1월 18일
Thanks so much for your response.Now i have this code : net = patternnet(30); net = train(net,x,t); view(net); y = net(x); perf = perform(net,t,y); classes = vec2ind(y); where x and t are the input and target respectively. Is this good enough to train the network or how can i improve on it? I do not understand how to implement your point 4 and 5 above in my code. And again,please how can i supply my input and target from a file to the neural network editor. I have tried all the load functions but it keeps giving error. I had to supply just 20 samples in the editor to test the code above and i will not be able to do that with a large data set.
Greg Heath
Greg Heath 2016년 1월 24일
You haven't looked up any of my patternnet posts in either the NEWSGROUP or ANSWERS!!!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by