On this page
tf.raw_ops.RebatchDatasetV2
Creates a dataset that changes the batch size.
tf.raw_ops.RebatchDatasetV2(
    input_dataset,
    batch_sizes,
    drop_remainder,
    output_types,
    output_shapes,
    name=None
)
Creates a dataset that rebatches elements from input_dataset into new batch sizes.
| Args | |
|---|---|
| input_dataset | A Tensorof typevariant. A variant tensor representing the input dataset. | 
| batch_sizes | A Tensorof typeint64. A vector of integers representing the size of batches to produce. These values are cycled through in order. | 
| drop_remainder | A Tensorof typebool. | 
| output_types | A list of tf.DTypesthat has length>= 1. | 
| output_shapes | A list of shapes (each a tf.TensorShapeor list ofints) that has length>= 1. | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A Tensorof typevariant. | 
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
 https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/raw_ops/RebatchDatasetV2