This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
fix bug in nag optimizer #13683
Merged
Merged
fix bug in nag optimizer #13683
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1a065e8
fix bug in nag optimizer
solin319 641bf6c
fix bug in nag test
solin319 ea63cb1
rewrite nag test
solin319 7633a1d
rewrite nag
solin319 510dd33
fix nag with in-place operations
solin319 0fa1466
fix nag with in-place operations
solin319 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 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 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 |
---|---|---|
|
@@ -384,11 +384,9 @@ def update(self, index, weight, grad, state): | |
weight[:] += -lr * (grad + wd * weight) | ||
else: | ||
mom = state | ||
mom[:] *= self.momentum | ||
grad += wd * weight | ||
mom[:] += grad | ||
mom[:] = self.momentum * mom[:] + grad + wd * weight | ||
grad[:] += self.momentum * mom | ||
weight[:] += -lr * grad | ||
weight[:] -= lr * grad | ||
else: | ||
grad32 = array(grad, ctx=grad.context, dtype=np.float32) | ||
grad32 = grad32 * self.rescale_grad | ||
|
@@ -399,11 +397,9 @@ def update(self, index, weight, grad, state): | |
if self.momentum == 0.0: | ||
weight32[:] += -lr * (grad32 + wd * weight32) | ||
else: | ||
mom[:] *= self.momentum | ||
grad32 += wd * weight32 | ||
mom[:] += grad32 | ||
mom[:] = self.momentum * mom[:] + grad32 + wd * weight32 | ||
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. try doing all these with in-place operators. |
||
grad32[:] += self.momentum * mom | ||
weight32[:] += -lr * grad32 | ||
weight32[:] -= lr * grad32 | ||
tmp = weight32.astype(weight.dtype) | ||
tmp.copyto(weight) | ||
|
||
|
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.
try doing all these with in-place operators.