Struct tensorflow::ops::MaxPool3DGrad
source · pub struct MaxPool3DGrad { /* private fields */ }
Expand description
Builder for the MaxPool3DGrad
operation.
Implementations§
source§impl MaxPool3DGrad
impl MaxPool3DGrad
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 TInput<ArgType: Into<DataType>>(self, value: ArgType) -> Self
pub fn TInput<ArgType: Into<DataType>>(self, value: ArgType) -> Self
Sets the TInput
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>>(
&self,
orig_input: O0,
orig_output: O1,
grad: O2,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>( &self, orig_input: O0, orig_output: O1, grad: O2, scope: &mut Scope ) -> Result<Operation>
Builds the MaxPool3DGrad
operation.
sourcepub fn build_instance(
&self,
orig_input: Output,
orig_output: Output,
grad: Output,
scope: &mut Scope
) -> Result<MaxPool3DGradInst>
pub fn build_instance( &self, orig_input: Output, orig_output: Output, grad: Output, scope: &mut Scope ) -> Result<MaxPool3DGradInst>
Builds a new instance of ‘MaxPool3DGrad’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for MaxPool3DGrad
impl Debug for MaxPool3DGrad
source§impl Default for MaxPool3DGrad
impl Default for MaxPool3DGrad
source§fn default() -> MaxPool3DGrad
fn default() -> MaxPool3DGrad
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for MaxPool3DGrad
impl Send for MaxPool3DGrad
impl Sync for MaxPool3DGrad
impl Unpin for MaxPool3DGrad
impl UnwindSafe for MaxPool3DGrad
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