Parameters of Neural Network estimation methods in Matlab
4 ビュー (過去 30 日間)
古いコメントを表示
Which method is usually used in matlab to estimate the net parameters? It is the maximum likelihood estimation or the Least Square method?
When using "trainbr" function to train the network (training with regularization) which method is used? It is true that the Least Square method can not be applied in this case because the beta and alpha parameters (alpha*sse+beta*W'W where W is the parameter vector) couldn't be found this way?
0 件のコメント
回答 (1 件)
Greg Heath
2015 年 2 月 19 日
編集済み: Greg Heath
2015 年 2 月 19 日
Usually? The number of training algorithms is in double figures. Most likely, the one used most is FITNET for Regression and Curve-fitting. You can answer your own questions about the others as follows (Notice when to omit the ending semicolon)
>> net = fitnet;
trainFcn = net.trainFcn
performFcn = net.performFcn
help trainlm
>> net.trainFcn = 'trainbr';
performFcn = net.performFcn
Hope this helps.
Thank you for formally accepting my answer
Greg
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!