Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multivariate time-series RNN using Tensorflow. Is this possible with an LSTM cell or similar?

Tags:

tensorflow

I am looking for examples of how to build a multivariate time-series RNN using Tensorflow. Is this possible with an LSTM cell or similar?

e.g. the data might look something like this:

Time,A,B,C,...

0,3.5,4.5,7.7,...

1,2.1,6.4,8.2,...

...

Any help much appreciated. Thanks, John

like image 217
John Sandiford Avatar asked Oct 31 '22 14:10

John Sandiford


1 Answers

It depends on exactly what you mean, but yes, it should be possible. If you write more specifically how exactly your input and target data looks like, somebody may be able to help. You can generally have sequential continuous or categorical input data and sequential continuous or categorical output data or a mix of those. I would suggest you look at the tutorials and try out a few things, then ask again here.

like image 133
LudiMagister Avatar answered Nov 15 '22 11:11

LudiMagister