how to add a FeedForward layer after my LSTM layer
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ahmad Kamal Bin Mohd Nor
el 27 de Dic. de 2019
Comentada: Ajay Pattassery
el 30 de Dic. de 2019
Dear all
I wish to know how I could add a feedforward layer after my LSTM layers
thanks
0 comentarios
Respuestas (1)
Ajay Pattassery
el 30 de Dic. de 2019
You could add desired layers after your LSTM network layer by specifying them as columns in the layers array.
Consider an example below where fullyConnectedLayer, softmaxLayer and classificationLayer are added after the lstmLayer.
layers = [ ...
sequenceInputLayer(inputSize)
lstmLayer(numHiddenUnits)
fullyConnectedLayer(numClasses)
softmaxLayer
classificationLayer]
2 comentarios
Ajay Pattassery
el 30 de Dic. de 2019
Could you elaborate on the feedforward layer? What does that layer accomplish?
Ver también
Categorías
Más información sobre Image Data Workflows en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!