pub fn tfrecord_dataset<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>(
filenames: O0,
compression_type: O1,
buffer_size: O2,
scope: &mut Scope,
) -> Result<Operation>
Expand description
Shorthand for TFRecordDataset::new().build(filenames, compression_type, buffer_size, scope)
.