This repository was archived by the owner on Jul 1, 2024. It is now read-only.
Support specifying update interval in the parameter schedulers#418
Closed
mannatsingh wants to merge 2 commits intofacebookresearch:masterfrom
Closed
Support specifying update interval in the parameter schedulers#418mannatsingh wants to merge 2 commits intofacebookresearch:masterfrom
mannatsingh wants to merge 2 commits intofacebookresearch:masterfrom
Conversation
Differential Revision: D20251584 fbshipit-source-id: 1c189e0ae5307dc3ea97b759edfbb5a8ae505f69
Summary: Most parameter schedulers used the default "epoch" update interval and didn't allow users to override this. - This diff makes the update interval configurable by users - The schedulers use a "step" interval by default, except for "step" and "multistep" - Removed the default "epoch" update interval inside the base class - this isn't what most users would expect if they didn't specify the argument Differential Revision: D20256209 fbshipit-source-id: 89a89a8bab1dc16649591eebaf5eb8356aa6c642
Contributor
|
This pull request was exported from Phabricator. Differential Revision: D20256209 |
facebook-github-bot
pushed a commit
that referenced
this pull request
Mar 5, 2020
Summary: Pull Request resolved: #418 Most parameter schedulers used the default "epoch" update interval and didn't allow users to override this. - This diff makes the update interval configurable by users - The schedulers use a "step" interval by default, except for "step" and "multistep" - Removed the default "epoch" update interval inside the base class - this isn't what most users would expect if they didn't specify the argument Reviewed By: vreis Differential Revision: D20256209 fbshipit-source-id: 1797d5d833dc20d173eed9ac53117e1e2de54ef1
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary:
Most parameter schedulers used the default "epoch" update interval and didn't allow users to override this.
Differential Revision: D20256209