Keras fit_generator() - How does batch for time series work?
问题 Context: I am currently working on time series prediction using Keras with Tensorflow backend and, therefore, studied the tutorial provided here. Following this tutorial, I came to the point where the generator for the fit_generator() method is described. The output this generator generates is as follows (left sample, right target): [[[10. 15.] [20. 25.]]] => [[30. 35.]] -> Batch no. 1: 2 Samples | 1 Target --------------------------------------------- [[[20. 25.] [30. 35.]]] => [[40. 45.]] -