Stacked autoencoder, problems
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I'm using a stacked autoencoder with fine tuning to perform function approximation. Feature extracted from the first autoencoder are ok, then I use it as input of a 2nd autoenc. What happen is that the feat of the 2nd autoenc. are always identical. Indipendently on the size of thelayer and on the data sets. Why? Also, the second autoencoder is not able to reconstruct the input. Here is my code:
nfeat1=8
autoenc1 = trainAutoencoder(pattern',nfeat1,'MaxEpochs',500,'EncoderTransferFunction','logsig','DecoderTransferFunction','purelin');
feat1 = encode(autoenc1,pattern');
nfeat2=3
autoenc2 = trainAutoencoder(feat1,nfeat2,'MaxEpochs',500,'EncoderTransferFunction','logsig','DecoderTransferFunction','purelin');
feat2 = encode(autoenc2,feat1);
![second.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/220307/second.jpeg)
0 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Pattern Recognition and Classification in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!