whats this code all about?
显示 更早的评论
hiddenLayerSize = 70;
net = patternnet(hiddenLayerSize);
net.trainFcn = 'traingdx';
net.trainParam.epochs = 100;
net.performFcn = 'mse'; % Mean squared error
net.divideParam.trainRatio = 100/100;
net.divideParam.valRatio = 0/100;
net.divideParam.testRatio = 0/100;
回答(1 个)
Greg Heath
2016-1-12
0 个投票
It is a PATTERNNET classifier. However, H = 70 without validation data sounds fishy. Can't tell unless input and target matrix sizes are given.
类别
在 帮助中心 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!