Struct tensorflow::ops::AvgPool3D
source · pub struct AvgPool3D { /* private fields */ }
Expand description
Builder for the AvgPool3D
operation.
Implementations§
source§impl AvgPool3D
impl AvgPool3D
sourcepub fn strides<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
pub fn strides<ArgType: Into<Vec<i64>>>(self, value: ArgType) -> Self
Sets the strides
attribute.
sourcepub fn padding<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn padding<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the padding
attribute.
sourcepub fn data_format<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn data_format<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the data_format
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>>(
&self,
input: O0,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>>( &self, input: O0, scope: &mut Scope ) -> Result<Operation>
Builds the AvgPool3D
operation.
sourcepub fn build_instance(
&self,
input: Output,
scope: &mut Scope
) -> Result<AvgPool3DInst>
pub fn build_instance( &self, input: Output, scope: &mut Scope ) -> Result<AvgPool3DInst>
Builds a new instance of ‘AvgPool3D’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for AvgPool3D
impl Send for AvgPool3D
impl Sync for AvgPool3D
impl Unpin for AvgPool3D
impl UnwindSafe for AvgPool3D
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