필터 지우기
필터 지우기

Neural Network Toolbox > Is there anybody who is using 'newff' for multiple inputs?

조회 수: 5 (최근 30일)
Neural Network Toolbox > Is there anybody who is using 'newff' for multiple inputs?
I'm using a newff to forecast Interchange Scheduling from multiple inputs, around 10, but the results were too poor (MAPE is about 50%). Following is the functions I used.
net = newff(P,T,[90],{'logsig'},'traincgb','learngdm','mse');
net.trainParam.epochs = 2000;
net.trainParam.goal = 0.001;
net = train(net,P,T);
I need to find the right functions to get a reasonable result.
Would you let me know if you have any idea to improve the accuracy? Also, I'll be happy if you show your function example.

채택된 답변

Greg Heath
Greg Heath 2015년 3월 30일
Using 90 hidden nodes is probably 10 orders of magnitude too high.
Use as many defaults as possible.
Vary the number of hidden nodes.
For each choice try 10 different sets of initial weights.
Search the NEWSGROUP and ANSWERS using
greg newff Ntrials

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by