Function tensorflow::ops::apply_adagrad_da
source · pub fn apply_adagrad_da<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>>(
var: O0,
gradient_accumulator: O1,
gradient_squared_accumulator: O2,
grad: O3,
lr: O4,
l1: O5,
l2: O6,
global_step: O7,
scope: &mut Scope
) -> Result<Operation>
Expand description
Shorthand for ApplyAdagradDA::new().build(var, gradient_accumulator, gradient_squared_accumulator, grad, lr, l1, l2, global_step, scope)
.