pub fn parallel_interleave_dataset_v4<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>, T6: ToTensorHandle<'a>>(
    ctx: &'a Context,
    input_dataset: &T0,
    other_arguments: &T1,
    cycle_length: &T2,
    block_length: &T3,
    buffer_output_elements: &T4,
    prefetch_input_elements: &T5,
    num_parallel_calls: &T6
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for ParallelInterleaveDatasetV4::new().call(&ctx, &input_dataset, &other_arguments, &cycle_length, &block_length, &buffer_output_elements, &prefetch_input_elements, &num_parallel_calls).

See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/ParallelInterleaveDatasetV4