Struct tensorflow::ops::ExperimentalSlidingWindowDataset
source · pub struct ExperimentalSlidingWindowDataset { /* private fields */ }
Expand description
Builder for the ExperimentalSlidingWindowDataset
operation.
Implementations§
source§impl ExperimentalSlidingWindowDataset
impl ExperimentalSlidingWindowDataset
sourcepub fn output_types<ArgType: Into<Vec<DataType>>>(self, value: ArgType) -> Self
pub fn output_types<ArgType: Into<Vec<DataType>>>(self, value: ArgType) -> Self
Sets the output_types
attribute.
sourcepub fn output_shapes<ArgType: Into<Vec<Shape>>>(self, value: ArgType) -> Self
pub fn output_shapes<ArgType: Into<Vec<Shape>>>(self, value: ArgType) -> Self
Sets the output_shapes
attribute.
sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
sourcepub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>(
&self,
input_dataset: O0,
window_size: O1,
window_shift: O2,
window_stride: O3,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>>( &self, input_dataset: O0, window_size: O1, window_shift: O2, window_stride: O3, scope: &mut Scope ) -> Result<Operation>
Builds the ExperimentalSlidingWindowDataset
operation.
sourcepub fn build_instance(
&self,
input_dataset: Output,
window_size: Output,
window_shift: Output,
window_stride: Output,
scope: &mut Scope
) -> Result<ExperimentalSlidingWindowDatasetInst>
pub fn build_instance( &self, input_dataset: Output, window_size: Output, window_shift: Output, window_stride: Output, scope: &mut Scope ) -> Result<ExperimentalSlidingWindowDatasetInst>
Builds a new instance of ‘ExperimentalSlidingWindowDataset’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Default for ExperimentalSlidingWindowDataset
impl Default for ExperimentalSlidingWindowDataset
source§fn default() -> ExperimentalSlidingWindowDataset
fn default() -> ExperimentalSlidingWindowDataset
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ExperimentalSlidingWindowDataset
impl Send for ExperimentalSlidingWindowDataset
impl Sync for ExperimentalSlidingWindowDataset
impl Unpin for ExperimentalSlidingWindowDataset
impl UnwindSafe for ExperimentalSlidingWindowDataset
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more