Function tensorflow::ops::resource_apply_adam
source · pub fn resource_apply_adam<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>>(
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>
Expand description
Shorthand for ResourceApplyAdam::new().build(var, m, v, beta1_power, beta2_power, lr, beta1, beta2, epsilon, grad, scope)
.