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