-
Notifications
You must be signed in to change notification settings - Fork 278
Add a bias_correction_v flag to scale_by_amsgrad to align with the original AMSGrad paper and Pytorch/tensorflow impl #1423
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
vvsvictor
wants to merge
3
commits into
google-deepmind:main
Choose a base branch
from
vvsvictor:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -323,6 +323,7 @@ def scale_by_amsgrad( | |
| eps: float = 1e-8, | ||
| eps_root: float = 0.0, | ||
| mu_dtype: Optional[chex.ArrayDType] = None, | ||
| bias_correction_v: bool = True | ||
| ) -> base.GradientTransformation: | ||
| """Rescale updates according to the AMSGrad algorithm. | ||
|
|
||
|
|
@@ -336,6 +337,9 @@ def scale_by_amsgrad( | |
| numerical stability when backpropagating gradients through the rescaling. | ||
| mu_dtype: Optional `dtype` to be used for the first order accumulator; if | ||
| `None` then the `dtype` is inferred from `params` and `updates`. | ||
| bias_correction_v: Whether to apply bias correction to the second moment | ||
| estimate before taking the elementwise maximum (``nu_max``). Set to | ||
| ``False`` to match the original AMSGrad paper and PyTorch/Keras behavior. | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "match pytorch behavior" -> no, see the conversation. So just say "set to |
||
|
|
||
| Returns: | ||
| A :class:`optax.GradientTransformation` object. | ||
|
|
@@ -357,8 +361,11 @@ def update_fn(updates, state, params=None): | |
| nu = optax.tree.update_moment_per_elem_norm(updates, state.nu, b2, 2) | ||
| count_inc = numerics.safe_increment(state.count) | ||
| mu_hat = optax.tree.bias_correction(mu, b1, count_inc) | ||
| nu_hat = optax.tree.bias_correction(nu, b2, count_inc) | ||
| nu_max = jax.tree.map(jnp.maximum, state.nu_max, nu_hat) | ||
| if bias_correction_v: | ||
| nu_eff = optax.tree.bias_correction(nu, b2, count_inc) | ||
| else: | ||
| nu_eff = nu | ||
| nu_max = jax.tree.map(jnp.maximum, state.nu_max, nu_eff) | ||
| updates = jax.tree.map( | ||
| lambda m, v: None if m is None else m / (jnp.sqrt(v + eps_root) + eps), | ||
| mu_hat, | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bias_correction_vis not a great name.bias_correction_nuis already betterdebias_numay even be better but "bias_correction" as a boolean argument is already used in e.g. rmsprop (shame on me for that naming).@rdyro what do you think?