pub fn resource_apply_adam_with_amsgrad<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>, O10: Into<Output>>(
    var: O0,
    m: O1,
    v: O2,
    vhat: O3,
    beta1_power: O4,
    beta2_power: O5,
    lr: O6,
    beta1: O7,
    beta2: O8,
    epsilon: O9,
    grad: O10,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for ResourceApplyAdamWithAmsgrad::new().build(var, m, v, vhat, beta1_power, beta2_power, lr, beta1, beta2, epsilon, grad, scope).