How do you fit a Neural net with weight decay using the train function?
2 次查看(过去 30 天)
显示 更早的评论
I want to fit a Neural net for Regression and I'd like to use weight decay so I don't have to worry about using too many nodes. The neural nets I've fit so far have been with the train function and I don't see a weight decay option. I see one if I use trainingOptions with trainNetwork, but that's appears to be mostly for image classification and requires defining each of the layers of the network.
I'm hoping there is something like this available.
netOptions = fitnet(10, 'trainbr');
netOptions.trainParam.weightDecay = 0.1;
0 个评论
回答(1 个)
Greg Heath
2018-6-28
Well, have you tried it ?
See
help trainbr
and
doc trainbr
Thank you for formally accepting my answer
Greg
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!