Creates a dataset of sliding windows over a timeseries ...
https://keras.rstudio.com/reference/timeseries_dataset_from_array.htmlCreates a dataset of sliding windows over a timeseries provided as array timeseries_dataset_from_array( data , targets , sequence_length , sequence_stride = 1L , sampling_rate = 1L , batch_size = 128L , shuffle = FALSE , ... , seed = NULL , start_index = NULL , end_index = NULL ) Arguments Value A tf.data.Dataset instance.
Timeseries data preprocessing - Keras
https://keras.io/api/preprocessing/timeseriestimeseries_dataset_from_array function tf.keras.preprocessing.timeseries_dataset_from_array( data, targets, sequence_length, sequence_stride=1, sampling_rate=1, batch_size=128, shuffle=False, seed=None, start_index=None, end_index=None, ) Creates a dataset of sliding windows over a timeseries provided as array.