简体   繁体   中英

Many to One LSTM Keras Python

I have the below dataset for a process of 5 features to produce 1 output and 244000 rows. The output is in column 7. Each input is sampled every 1/10 second. I wanted to predict the 7th column (value 1 (t+1)) with an LSTM network with a timestep of 5.

https://i.stack.imgur.com/XWMDE.png

My question is: What should be my 3D input tensor parameters? Is [244000, 5, 5] correct? And how can I reshape my dataset to this shape?

While trying it with the reshape numpy function I get an error.

If I read correctly, at each timestep the model gets a 5 feature input and you take 5 such timesteps. That would make the first dimension 244000/5 = 48800

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM