pub fn apply_power_sign<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>>(
    var: O0,
    m: O1,
    lr: O2,
    logbase: O3,
    sign_decay: O4,
    beta: O5,
    grad: O6,
    scope: &mut Scope
) -> Result<Operation>
Expand description

Shorthand for ApplyPowerSign::new().build(var, m, lr, logbase, sign_decay, beta, grad, scope).