matファイルで学習​させたLSTMをSi​mulink で使用したい

조회 수: 2 (최근 30일)
Ryotaro Torikai
Ryotaro Torikai 2023년 10월 13일
답변: Toshinobu Shintai 2023년 10월 13일
<質問>
学習させたLSTM(trainnetwork)を用いて時系列データの予測をSimulinkで行いたいと考えています。
Simulinkを用いたLSTMの時系列データの予測手法について知ってる方がいれば教えていただきたいです。
<現状>
以下の層を持つLSTMを学習させました。
layers = [ ...
sequenceInputLayer(inputSize)
lstmLayer(numHiddenUnits)
fullyConnectedLayer(numResponses)
regressionLayer];
options = trainingOptions("rmsprop", ...
'InitialLearnRate',0.001, ... % 0.001 to 0.01
MaxEpochs=10, ... %% ideal 100
SequencePaddingDirection="left", ...
Shuffle="once", ...
Plots="training-progress", ...
Verbose=0);
InputSizeは2、
numResponsesは1です。
私のMATLABのバージョンはR2023bです。
よろしくお願いいたします。

채택된 답변

Toshinobu Shintai
Toshinobu Shintai 2023년 10월 13일
Deep Learning Toolboxの「Stateful Predict」というブロックを使うと、学習させたLSTMをSimulinkで使うことができるようになります。

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 時系列、シーケンス、およびテキストを使用した深層学習에 대해 자세히 알아보기

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!