Skip to content

Commit

Permalink
Update ops-related pbtxt files.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 158569627
  • Loading branch information
tensorflower-gardener committed Jun 9, 2017
1 parent d4ae391 commit 386ed6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/core/ops/ops.pbtxt
Original file line number Diff line number Diff line change
Expand Up @@ -19394,7 +19394,7 @@ op {
description: "If `True`, updating of the var and accum tensors will be protected\nby a lock; otherwise the behavior is undefined, but may exhibit less\ncontention."
}
summary: "Update \'*var\' according to the Ftrl-proximal scheme."
description: "accum_new = accum + grad * grad\nlinear += grad + (accum_new^(-lr_power) - accum^(-lr_power)) / lr * var\nquadratic = 1.0 / (accum_new^(lr_power) * lr) + 2 * l2\nvar = (sign(linear) * l1 - linear) / quadratic if |linear| > l1 else 0.0\naccum = accum_new"
description: "accum_new = accum + grad * grad\nlinear += grad - (accum_new^(-lr_power) - accum^(-lr_power)) / lr * var\nquadratic = 1.0 / (accum_new^(lr_power) * lr) + 2 * l2\nvar = (sign(linear) * l1 - linear) / quadratic if |linear| > l1 else 0.0\naccum = accum_new"
is_stateful: true
}
op {
Expand Down

0 comments on commit 386ed6f

Please sign in to comment.