pub fn apply_proximal_gradient_descent<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>>(
    var: O0,
    alpha: O1,
    l1: O2,
    l2: O3,
    delta: O4,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for ApplyProximalGradientDescent::new().build(var, alpha, l1, l2, delta, scope).