LSTM neural network for regression
Ältere Kommentare anzeigen
Hello, I would like to create a recurrent neural network for a regression problem. I'd like to use a LSTM network with a continuous output, but I'm getting an error when building the network with a LSTM Layer and Regression Layer: "Regression is not supported for networks with LSTM layers."
Is there a way I can work around this to have a simple, continuous output from -1 to 1 instead of just a classification?
My input is [720 10] - there are 720 features and 10 samples over time. The feature values are roughly between -10 and 30. My output should be [12 1] - there are twelve output variables and each has a value ranging from -1 to 1.
Thanks, Jake
3 Kommentare
Greg Heath
am 9 Okt. 2017
For N pairs of I-dimensional inputs and corresponding O-dimensional "O"utput targets, the matrix dimensiona are
[ I N ] = size(input)
[O N ] = size(target)
with, typically,
N > 10*max(I,O)
It is not clear to me what your values of I, O and N are
Jake
am 24 Okt. 2017
Michael Henderson
am 5 Dez. 2017
Can an LSTM layer be used with a regression layer?
Antworten (0)
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!