Function tensorflow::ops::apply_centered_rmsprop
source · pub fn apply_centered_rmsprop<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>>(
var: O0,
mg: O1,
ms: O2,
mom: O3,
lr: O4,
rho: O5,
momentum: O6,
epsilon: O7,
grad: O8,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for ApplyCenteredRMSProp::new().build(var, mg, ms, mom, lr, rho, momentum, epsilon, grad, scope)
.