필터 지우기
필터 지우기

LSTM: Multi Input to Single Output Regression - Wrong Input form

조회 수: 3 (최근 30일)
Andreas Stapf
Andreas Stapf 2019년 3월 24일
답변: Linyu Lin 2020년 2월 20일
Hello,
i'm trying to map several inputs (human biosignals and stats) to a single value (concerning the heartrate).
I'm trying to understand what form my inputs needs to be, but i feel really stuck, since my lstm works with "dummy" input- matrices, but it seems to me, that i'm still missing something completely.
layers = [ ...
sequenceInputLayer(7)
lstmLayer(numHiddenUnits_lstm,'OutputMode','sequence')
lstmLayer(numHiddenUnits_lstm,'OutputMode','sequence')
fullyConnectedLayer(1)
regressionLayer
];
maxEpochs = 15;
miniBatchSize = 1;
options = trainingOptions('adam', ...
'MaxEpochs',maxEpochs, ...
'MiniBatchSize',miniBatchSize, ...
'InitialLearnRate',0.01, ...
'GradientThreshold',1, ...
'Shuffle','never', ...
'Plots','training-progress',...
'ValidationFrequency',4, ...
'Verbose',0);
net = trainNetwork(LSTMARR3,LSTMARR_targets,layers,options);
My Input : LSTMARR3
My Output : LSTMARR_targets
Below i tried to show you how i formatted my data, so can you please help me how to feed my data to my network?

답변 (2개)

Shuhei IKEDA
Shuhei IKEDA 2019년 11월 3일
It is not an answer. but I have a same ploblem!!
Could anyone help us?? ;(

Linyu Lin
Linyu Lin 2020년 2월 20일
First of all, I am not sure if you are having 29516 features with a single time sequence as inputs
or
You are having 1 feature with 29516 time sequence?
If it is the first case, all you need to do if swith the dimension from 1x29516 to 29516x1. It should solve the problem easily.
If it is the second case, I am afraid that MATLAB currently can not have different sequence length in the input and output for sequence regression problem.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by