![]() |
Fused implementation of map
and batch
. (deprecated)
Aliases:
tf.data.experimental.map_and_batch_with_legacy_function(
map_func,
batch_size,
num_parallel_batches=None,
drop_remainder=False,
num_parallel_calls=None
)
NOTE: This is an escape hatch for existing uses of map_and_batch
that do not
work with V2 functions. New uses are strongly discouraged and existing uses
should migrate to map_and_batch
as this method will not be removed in V2.
Args:
map_func
: A function mapping a nested structure of tensors to another nested structure of tensors.batch_size
: Atf.int64
scalartf.Tensor
, representing the number of consecutive elements of this dataset to combine in a single batch.num_parallel_batches
: (Optional.) Atf.int64
scalartf.Tensor
, representing the number of batches to create in parallel. On one hand, higher values can help mitigate the effect of stragglers. On the other hand, higher values can increase contention if CPU is scarce.drop_remainder
: (Optional.) Atf.bool
scalartf.Tensor
, representing whether the last batch should be dropped in case its size is smaller than desired; the default behavior is not to drop the smaller batch.num_parallel_calls
: (Optional.) Atf.int32
scalartf.Tensor
, representing the number of elements to process in parallel. If not specified,batch_size * num_parallel_batches
elements will be processed in parallel. If the valuetf.data.experimental.AUTOTUNE
is used, then the number of parallel calls is set dynamically based on available CPU.
Returns:
A Dataset
transformation function, which can be passed to
tf.data.Dataset.apply
.
Raises:
ValueError
: If bothnum_parallel_batches
andnum_parallel_calls
are specified.