Skip to content
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

Adding Adadelta optimization operator #4576

Merged
merged 7 commits into from
Oct 5, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing Adadelta documentation in comments
Abhinav Arora committed Oct 5, 2017

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 6be6c6d162d7949ab890a4e6f7ca280bcc8b580a
8 changes: 6 additions & 2 deletions paddle/operators/adadelta_op.cc
Original file line number Diff line number Diff line change
@@ -87,8 +87,8 @@ class AdadeltaOpMaker : public framework::OpProtoAndCheckerMaker {
AddComment(R"DOC(
Adadelta Updates Operator.
This implements the Adadelta optimizer from https://arxiv.org/abs/1212.5701.
Adadelta is a per0-dimension learning rate method for gradient descent.
This implements the Adadelta optimizer[1]. Adadelta is a per-dimension
adaptive learning rate method for gradient descent.
Adadelta updates:
@@ -98,6 +98,10 @@ param_update = - sqrt((avg_squared_update + epsilon) /
avg_squared_update_out = rho * avg_squared_update + (1 - rho) * param_update**2
param_out = param + param_update
References:
[1] ADADELTA: An Adaptive Learning Rate Method
https://arxiv.org/abs/1212.5701
)DOC");
}
};