-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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 the doc format for AdaDelta, AdaMax, Adam, AdaGrad, BatchNorm, Clip, Cast and AUC #5317
Conversation
paddle/operators/adadelta_op.cc
Outdated
|
||
This implements the Adadelta optimizer[1]. Adadelta is a per-dimension | ||
adaptive learning rate method for gradient descent. | ||
We implement the Adadelta optimizer as explained in: |
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.
Do you think we should use the first person here?
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.
Fixed. Thanks for the comment.
paddle/operators/cast_op.cc
Outdated
AddAttr<int>("out_data_type", "output data type"); | ||
AddAttr<int>("in_data_type", "input data type"); | ||
AddComment(R"DOC( | ||
Cast operator. |
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.
operator -> Operator
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.
Done. Thanks for pointing that out.
Adding the proposed documentation format for AdaDelta.
Let's follow the same going forward for all operators.
The operators in this PR are: