how to add a FeedForward layer after my LSTM layer

3 次查看(过去 30 天)
Dear all
I wish to know how I could add a feedforward layer after my LSTM layers
thanks

回答(1 个)

Ajay Pattassery
Ajay Pattassery 2019-12-30
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]
Refer here for more information.
  2 个评论
Ahmad Kamal Bin Mohd Nor
Hi Ajay,
Does fullyConnectedLayer equal to feedforward layer?
I actually just want to know what is a feedforward layer in matlab. All doc that I see is feedforward network. Im searching for feedforward layer.
Ajay Pattassery
Ajay Pattassery 2019-12-30
Could you elaborate on the feedforward layer? What does that layer accomplish?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by