pub fn padded_batch_dataset<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
    input_dataset: O0,
    batch_size: O1,
    padded_shapes: O2,
    padding_values: O3,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for PaddedBatchDataset::new().build(input_dataset, batch_size, padded_shapes, padding_values, scope).