Fix `paddle.atan` docstring (#25968)

test=develop,test=document_fix

remove activation wording
tanh -> tan
revert-24895-update_cub
Yang Zhang 5 years ago committed by GitHub
parent c4e480efc5
commit c758765769
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -365,9 +365,9 @@ class AtanOpMaker : public framework::OpProtoAndCheckerMaker {
AddInput("X", "Input of atan operator");
AddOutput("Out", "Output of atan operator");
AddComment(R"DOC(
Arctanh Activation Operator.
Arctangent Operator.
$$out = \tanh^{-1}(x)$$
$$out = \tan^{-1}(x)$$
)DOC");
}

Loading…
Cancel
Save