LSTM for Regression in Matlab2017b???

7 views (last 30 days)
Jake
Jake on 24 Oct 2017
The train network function currently does not allow LSTM memory networks with a regression output layer. How can I modify these layers or this function to make LSTM and regression work together?

Answers (3)

Amy
Amy on 27 Oct 2017
Hi Jake,
The ability to use 'trainNetwork' with regression with LSTM layers might be added in a future release of MATLAB. For now, the best workaround I can suggest is to reformulate your regression problem into a classification one, if possible.
The idea would be to partition your regression targets into some number of bins that correspond to classes in a classification problem.
1 Comment
Mona
Mona on 22 Nov 2017
嗨,艾米,我有一个相似但不同的问题。Do you think I can use the current released LSTM (MATLAB 2017b) for sequence to sequence training. In other words, I have a sequence of data and want my network to predict the next sequence of data.
Thanks a lot.

Sign in to comment.


Shounak Mitra
Shounak Mitra on 23 Apr 2018
Hi Jake and Mona,
Regression for LSTMs has been added in the 2018a release. You can learn more about it at //www.tatmou.com/help/nnet/ug/long-short-term-memory-networks.html.
Mona: You can find an example for sequence to sequence regression at //www.tatmou.com/help/nnet/examples/sequence-to-sequence-regression-using-deep-learning.html
To find a list of examples for deep learning visit the documentation page at //www.tatmou.com/help/nnet/examples.html or the website at //www.tatmou.com/solutions/deep-learning/examples.html
2 Comments
Zaher Babakrnejad
Zaher Babakrnejad on 9 Jul 2019
你找到any solution ?

Sign in to comment.


saeed azari
saeed azari on 20 Jul 2018
Hi ,i use MATLAB 2018a.
1- my input data size is 2827*73000, and output data size is 257*73000. is this possible?
2- i wantto used a unidirectional LSTM, wherehave an LSTM layer as its first layer followed by two fullyconnected layers with ReLU activations. The number of memory cells in the LSTM was set at 500, andthe number of nodes in the fully-connected layers was 2048.
but i cant do this. because the last fully-connected layer size should be same as the 257(i.e output dimansion). i can't make the lstm by 5 layers(sequenceInputLayer(2827)-lstm(500)-fully-connected (2048)- fully-connected (2048) - regression layer)
i want to implement the part 2 for the variance mapping of audio. my output is reverb signal and my input is clean signal PSD.
please help me.

Community Treasure Hunt

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

Start Hunting!