pub fn cache_dataset_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
    ctx: &'a Context,
    input_dataset: &T0,
    filename: &T1,
    cache: &T2
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for CacheDatasetV2::new().call(&ctx, &input_dataset, &filename, &cache).

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