Function tensorflow::eager::raw_ops::parallel_interleave_dataset_v2
source · pub fn parallel_interleave_dataset_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>>(
ctx: &'a Context,
input_dataset: &T0,
other_arguments: &T1,
cycle_length: &T2,
block_length: &T3,
num_parallel_calls: &T4
) -> Result<TensorHandle<'a>>
Expand description
Shorthand for ParallelInterleaveDatasetV2::new().call(&ctx, &input_dataset, &other_arguments, &cycle_length, &block_length, &num_parallel_calls)
.
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/ParallelInterleaveDatasetV2