Function tensorflow::ops::window_dataset
source · pub fn window_dataset<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
input_dataset: O0,
size: O1,
shift: O2,
stride: O3,
drop_remainder: O4,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for WindowDataset::new().build(input_dataset, size, shift, stride, drop_remainder, scope)
.