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