Combines consecutive elements of this dataset into batches.
dataset_batch(dataset, batch_size, drop_remainder = FALSE)A dataset
An integer, representing the number of consecutive elements of this dataset to combine in a single batch.
Ensure that batches have a fixed size by omitting any final smaller batch if it's present. Note that this is required for use with the Keras tensor inputs to fit/evaluate/etc.
A dataset
Other dataset methods:
dataset_cache(),
dataset_collect(),
dataset_concatenate(),
dataset_decode_delim(),
dataset_filter(),
dataset_interleave(),
dataset_map_and_batch(),
dataset_map(),
dataset_padded_batch(),
dataset_prefetch_to_device(),
dataset_prefetch(),
dataset_reduce(),
dataset_repeat(),
dataset_shuffle_and_repeat(),
dataset_shuffle(),
dataset_skip(),
dataset_take(),
dataset_window()