So I'm at very beginner level of Machine Learning and I want to forecast multiple samples of time series. The time series contains samples at every 15 minutes and I have to forecast samples for next 3 days. So approximately 288 samples in future.
My time series have other categorical features also so I implemented one model based on this answer.
I read about encoder-decoder for seq2seq time series forecasting. But couldn't understand much regarding how to implement it and combine it with multiple categorical features.
- Am I going in the right direction by following that answer?
- Will LSTM work properly even for a large dimension of Y (in my case 288 time steps into future).
- I'm considering last 7 days samples as X so my input shape for lstm is (no of samples, 672, 1). Is that okay?
- Should I go for encoder-decoder? If yes then can anyone please provide me some more insight and maybe a good tutorial.
Thanks in advance.