pub fn sparse_apply_ftrl_v2<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,
    accum: O1,
    linear: O2,
    grad: O3,
    indices: O4,
    lr: O5,
    l1: O6,
    l2: O7,
    l2_shrinkage: O8,
    lr_power: O9,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for SparseApplyFtrlV2::new().build(var, accum, linear, grad, indices, lr, l1, l2, l2_shrinkage, lr_power, scope).