Skip to content

Commit

Permalink
fix clip op doc operation (#6314)
Browse files Browse the repository at this point in the history
  • Loading branch information
kexinzhao authored Dec 6, 2017
1 parent dbf2050 commit 94a36b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion paddle/operators/clip_op.cc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ class ClipOpMaker : public framework::OpProtoAndCheckerMaker {
Clip Operator.
The clip operator limits the value of given input within an interval. The interval is
specified with arguments 'min' and 'max'.
specified with arguments 'min' and 'max':
$$
Out = \min(\max(X, min), max)
$$
)DOC");
}
Expand Down

0 comments on commit 94a36b8

Please sign in to comment.