Filter löschen
Filter löschen

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

5 Ansichten (letzte 30 Tage)
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.

Akzeptierte Antwort

Greg Heath
Greg Heath am 30 Mär. 2015
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

Weitere Antworten (0)

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by