pub fn resource_apply_adagrad_v2<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
    var: O0,
    accum: O1,
    lr: O2,
    epsilon: O3,
    grad: O4,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for ResourceApplyAdagradV2::new().build(var, accum, lr, epsilon, grad, scope).