Function tensorflow::eager::raw_ops::fixed_length_record_dataset_v2
source · pub fn fixed_length_record_dataset_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>, T3: ToTensorHandle<'a>, T4: ToTensorHandle<'a>, T5: ToTensorHandle<'a>>(
ctx: &'a Context,
filenames: &T0,
header_bytes: &T1,
record_bytes: &T2,
footer_bytes: &T3,
buffer_size: &T4,
compression_type: &T5
) -> Result<TensorHandle<'a>>
Expand description
Shorthand for FixedLengthRecordDatasetV2::new().call(&ctx, &filenames, &header_bytes, &record_bytes, &footer_bytes, &buffer_size, &compression_type)
.
See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/FixedLengthRecordDatasetV2