neural network training algorithms
이전 댓글 표시
i have to train network with 12 different training algorithms but i am facing issues
Arch = [10 3];
numHiddenNeurons=10;
brainNet = newff(Ranges, Arch, {'tansig','purelin'},'trainlm');
brainNet.trainParam.epochs = 100;
brainNet.trainParam.lr = 0.9;
brainNet.trainParam.learnFcn = 'learngdm';
brainNet.trainParam.mc = 0.9;
brainNet5000_D_br = train(brainNet, TrainSet, TrainOut);
when i train the network with levenberg algorithm and bayesian regularization it works well.but when i apply other algorithms such as gradient decent "gdm,gd,bfg,scg,etc" it give error and not display any result.please help me regarding algos syntax what changes should i make for every algo.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Pattern Recognition에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!