How can I train a regression layer using the autoencoder approach
显示 更早的评论
I am trying to adapt example provided here
Except that I want to replace
softnet = trainSoftmaxLayer(feat2,tTrain,'MaxEpochs',400);
With something similar to this
options = trainingOptions('sgdm','MaxEpochs',20,...'InitialLearnRate',0.0001);
routputlayer = regressionLayer('Name','routput');
trainedROL = trainNetwork(feat2,yTrain,routputlayer,options);
However, I receive the following error:
ERROR: Error using trainNetwork>iAssertXAndYHaveSameNumberOfObservations (line 604)
X and Y must have the same number of observations.
Error in trainNetwork>iParseInput (line 336)
iAssertXAndYHaveSameNumberOfObservations( X, Y );
Error in trainNetwork (line 68)
[layers, opts, X, Y] = iParseInput(varargin{:});
Error in test (line 176)
trainedROL = trainNetwork(feat2,tTrain,routputlayer,options);
How can I modify the algorithm to do regression rather than classification?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!