Function tensorflow::ops::parallel_batch_dataset
source · pub fn parallel_batch_dataset<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
input_dataset: O0,
batch_size: O1,
num_parallel_calls: O2,
drop_remainder: O3,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for ParallelBatchDataset::new().build(input_dataset, batch_size, num_parallel_calls, drop_remainder, scope)
.