Struct tensorflow::ops::ApplyAdam
source · pub struct ApplyAdam { /* private fields */ }
Expand description
Builder for the ApplyAdam
operation.
Implementations§
source§impl ApplyAdam
impl ApplyAdam
sourcepub fn use_locking<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn use_locking<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the use_locking
attribute.
sourcepub fn use_nesterov<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn use_nesterov<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the use_nesterov
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>, O6: Into<Output>, O7: Into<Output>, O8: Into<Output>, O9: Into<Output>>(
&self,
var: O0,
m: O1,
v: O2,
beta1_power: O3,
beta2_power: O4,
lr: O5,
beta1: O6,
beta2: O7,
epsilon: O8,
grad: O9,
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>, O6: Into<Output>, O7: Into<Output>, O8: Into<Output>, O9: Into<Output>>( &self, var: O0, m: O1, v: O2, beta1_power: O3, beta2_power: O4, lr: O5, beta1: O6, beta2: O7, epsilon: O8, grad: O9, scope: &mut Scope ) -> Result<Operation>
Builds the ApplyAdam
operation.
sourcepub fn build_instance(
&self,
var: Output,
m: Output,
v: Output,
beta1_power: Output,
beta2_power: Output,
lr: Output,
beta1: Output,
beta2: Output,
epsilon: Output,
grad: Output,
scope: &mut Scope
) -> Result<ApplyAdamInst>
pub fn build_instance( &self, var: Output, m: Output, v: Output, beta1_power: Output, beta2_power: Output, lr: Output, beta1: Output, beta2: Output, epsilon: Output, grad: Output, scope: &mut Scope ) -> Result<ApplyAdamInst>
Builds a new instance of ‘ApplyAdam’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ApplyAdam
impl Send for ApplyAdam
impl Sync for ApplyAdam
impl Unpin for ApplyAdam
impl UnwindSafe for ApplyAdam
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