Stacked Autoencoder for regression output layer
이전 댓글 표시
I am trying to use stacked auto encoder (SAE) by following this link:
I get that the first two autoencoders can be stacked normally, however my problem is regression output and the last layer which is stacked in the link is trainSoftmaxLayer.
Below is the code i would like to replace:
softnet = trainSoftmaxLayer(feat2,tTrain,'MaxEpochs',400);
Which should look like:
regNet = trainRegressionLayer(feat2,tTrain,'MaxEpochs',400);
Is there any way to train regression layer with SAE?
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Linear Predictive Coding에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!