We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acdb57a commit 24fea62Copy full SHA for 24fea62
paddle/fluid/operators/mean_op.cc
@@ -33,12 +33,10 @@ class MeanOp : public framework::OperatorWithKernel {
33
class MeanOpMaker : public framework::OpProtoAndCheckerMaker {
34
public:
35
void Make() override {
36
- AddInput("X", "The input of mean op");
37
- AddOutput("Out", "The output of mean op").Reuse("X");
+ AddInput("X", "(Tensor) The input of mean op");
+ AddOutput("Out", "(Tensor) The output of mean op").Reuse("X");
38
AddComment(R"DOC(
39
-Mean Operator.
40
-
41
-Out is a scalar which is the mean of all elements in X.
+Mean Operator calculates the mean of all elements in X.
42
43
)DOC");
44
}
0 commit comments