Hello! I have 2 questions regarding TensorFlow guide on time series forecasting
-
It is stated on the guide that the “window” shape of data should be (batch, time, features). Since
fit
,evaluate
andpredict
methods of tf.keras.Sequential can handle numpy arrays forx
andy
inputs, do these inputs’ shape also in (batch, time, features)? -
In this MATLAB example, there are 2 types of forecasting discussed: Open-loop Forecasting and Close-loop Forecasting. Is TensorFlow’s guide also cover these topics? If it is, which part is Open-loop Forecasting and which part is Closed-loop Forecasting?
Thank you in advance