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