필터 지우기
필터 지우기

how to add a FeedForward layer after my LSTM layer

조회 수: 2 (최근 30일)
Ahmad Kamal Bin Mohd Nor
Ahmad Kamal Bin Mohd Nor 2019년 12월 27일
댓글: Ajay Pattassery 2019년 12월 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
Ahmad Kamal Bin Mohd Nor 2019년 12월 30일
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