민서네집

LSTM: Many to many sequence prediction 본문

머신러닝

LSTM: Many to many sequence prediction

브라이언7 2019. 8. 7. 21:56

stackoverflow.com/questions/43117654/many-to-many-sequence-prediction-with-different-sequence-length

 

Many to many sequence prediction with different sequence length

My problem is to predict a sequence of values (t_0, t_1, ... t_{n_post-1}) given the previous timesteps (t_{-n_pre}, t_{-n_pre+1} ... t_{-1}) with Keras' LSTM layer. Keras supports the the followi...

stackoverflow.com

LSTM: Many to many sequence prediction with different sequence length #6063

https://github.com/keras-team/keras/issues/6063

 

LSTM: Many to many sequence prediction with different sequence length · Issue #6063 · keras-team/keras

First of all, I know that there are already issues open regarding that topic, but their solutions don't solve my problem and I'll explain why. The problem is to predict the next n_post step...

github.com

https://datascience.stackexchange.com/questions/46672/how-to-design-a-many-to-many-lstm

 

How to design a many-to-many LSTM?

I have an input array of shape (1000,20, 4) and output(labels) of shape (1000,25,1). But don't know how to use Keras LSTM library to build a sequential model for this! Can someone help me design a

datascience.stackexchange.com

http://docs.likejazz.com/seq2seq/

 

Seq2Seq 모델 디버깅 · The Missing Papers

Seq2Seq 모델 디버깅 20 Jun 2018 Keras로 seq2seq 모델을 구축하는 어려움에 대해 얘기한다. 실제로 Keras로 사용하는 TensorFlow는 Graph와 Session이 나뉘어져 있기 때문에 새로운 모델을 구축해 테스트 하기 쉽지 않은 편이며 디버깅 또한 어렵다. 그러나 몇 가지 디버깅을 쉽게 할 수 있는 기법이 있는데, 여기서는 Keras에서 제공하는 seq2seq 기반의 덧셈 모델을 직접 디버깅 하면서 하나씩 살펴보도록 한다.

docs.likejazz.com

https://stackoverflow.com/questions/43034960/many-to-one-and-many-to-many-lstm-examples-in-keras

 

Many to one and many to many LSTM examples in Keras

I try to understand LSTMs and how to build them with Keras. I found out, that there are principally the 4 modes to run a RNN (the 4 right ones in the picture) Image source: Andrej Karpathy Now I ...

stackoverflow.com

 

Comments