In the first book this code snipped doesn't work because x_train is not defined, what to choose as x_train?
...
window_size = 20
batch_size = 32
shuffle_buffer_size = 1000
dataset = windowed_dataset(x_train, window_size, batch_size, shuffle_buffer_size)
In the first book this code snipped doesn't work because x_train is not defined, what to choose as x_train?
...