diff --git a/paddle/fluid/operators/dequeue_op.cc b/paddle/fluid/operators/dequeue_op.cc index a23b408d0b798d3ddcf032cd777745adc7dc7085..8467bd58cea221368520adcf1087093224310371 100644 --- a/paddle/fluid/operators/dequeue_op.cc +++ b/paddle/fluid/operators/dequeue_op.cc @@ -90,7 +90,7 @@ class DequeueOpMaker : public framework::OpProtoAndCheckerMaker { AddOutput("Out", "A list of `lod_tensor` to dequeue and assigned.") .AsDuplicable(); AddComment(R"DOC( - Dequeue operator. + Dequeue operator. )DOC"); } }; diff --git a/paddle/fluid/operators/enqueue_op.cc b/paddle/fluid/operators/enqueue_op.cc index b118852870ed8e083e23cd89f7ed2a9886a7d1ae..e8c2a4d5db662e216d61cc949f8a9a5889c85d3d 100644 --- a/paddle/fluid/operators/enqueue_op.cc +++ b/paddle/fluid/operators/enqueue_op.cc @@ -78,7 +78,7 @@ class EnqueueOpMaker : public framework::OpProtoAndCheckerMaker { AddAttr("queue_name", "Name of the `LoDTensorBlockingQueueHolder` variable"); AddComment(R"DOC( - Enqueue operator. + Enqueue operator. )DOC"); } }; diff --git a/paddle/fluid/operators/pixel_shuffle_op.cc b/paddle/fluid/operators/pixel_shuffle_op.cc index 64e73217068b31ee874a459a6c62f90ac7dd244e..098395d885062a60f5e46e17f5ed39d5f8ec28b2 100644 --- a/paddle/fluid/operators/pixel_shuffle_op.cc +++ b/paddle/fluid/operators/pixel_shuffle_op.cc @@ -52,19 +52,18 @@ class PixelShuffleOpMaker : public framework::OpProtoAndCheckerMaker { .SetDefault("NCHW"); AddComment(R"DOC( - Pixel Shuffle operator - This operator rearranges elements in a tensor of shape :math:`(*, C \times r^2, H, W)` - to a tensor of shape :math:`(C, H \times r, W \times r)`. - - This is useful for implementing efficient sub-pixel convolution - with a stride of :math:`1/r`. - - Please refer to the paper: - `Real-Time Single Image and Video Super-Resolution Using an Efficient - Sub-Pixel Convolutional Neural Network `_ - by Shi et. al (2016) for more details. - - )DOC"); + Pixel Shuffle operator + This operator rearranges elements in a tensor of shape :math:`(*, C \times r^2, H, W)` + to a tensor of shape :math:`(C, H \times r, W \times r)`. + + This is useful for implementing efficient sub-pixel convolution + with a stride of :math:`1/r`. + + Please refer to the paper: + `Real-Time Single Image and Video Super-Resolution Using an Efficient + Sub-Pixel Convolutional Neural Network `_ + by Shi et. al (2016) for more details. + )DOC"); } }; diff --git a/paddle/fluid/operators/pixel_unshuffle_op.cc b/paddle/fluid/operators/pixel_unshuffle_op.cc index e0ac5283ab86bd0da2ceb4b9d3e6239fe2b57d41..52b7452d7a8ccbfcdd7b2deee198b117489aadfc 100644 --- a/paddle/fluid/operators/pixel_unshuffle_op.cc +++ b/paddle/fluid/operators/pixel_unshuffle_op.cc @@ -48,18 +48,17 @@ class PixelUnshuffleOpMaker : public framework::OpProtoAndCheckerMaker { .SetDefault("NCHW"); AddComment(R"DOC( - Pixel Unshuffle operator - This operator rearranges elements in a tensor of shape :math:`(*, C, H, W)` - to a tensor of shape :math:`(*, C\times r^2, H / r, W / r)`. + Pixel Unshuffle operator + This operator rearranges elements in a tensor of shape :math:`(*, C, H, W)` + to a tensor of shape :math:`(*, C\times r^2, H / r, W / r)`. - This operation is the reversion of PixelShuffle operation. + This operation is the reversion of PixelShuffle operation. - Please refer to the paper: - `Real-Time Single Image and Video Super-Resolution Using an Efficient - Sub-Pixel Convolutional Neural Network `_ - by Shi et. al (2016) for more details. - - )DOC"); + Please refer to the paper: + `Real-Time Single Image and Video Super-Resolution Using an Efficient + Sub-Pixel Convolutional Neural Network `_ + by Shi et. al (2016) for more details. + )DOC"); } }; diff --git a/paddle/fluid/operators/reader/create_ctr_reader_op.cc b/paddle/fluid/operators/reader/create_ctr_reader_op.cc index 6af29bfa5affeef8c8fb2794e4182d8d88a30d52..8c38aaf528da007b7fbad9d122b5c2fb8d327c49 100644 --- a/paddle/fluid/operators/reader/create_ctr_reader_op.cc +++ b/paddle/fluid/operators/reader/create_ctr_reader_op.cc @@ -87,7 +87,7 @@ class CreateCTRReaderOpMaker : public FileReaderMakerBase { "format is svm"); AddComment(R"DOC( - Create CTRReader to support read ctr data with cpp. + Create CTRReader to support read ctr data with cpp. )DOC"); } }; diff --git a/paddle/fluid/operators/shuffle_channel_op.cc b/paddle/fluid/operators/shuffle_channel_op.cc index 9fc7c6488f460710f2af5aa9d8f46a25b4056f32..ba96e92d3030b57bc9bfe24a487f5da702eba04f 100644 --- a/paddle/fluid/operators/shuffle_channel_op.cc +++ b/paddle/fluid/operators/shuffle_channel_op.cc @@ -70,16 +70,16 @@ class ShuffleChannelOpMaker : public framework::OpProtoAndCheckerMaker { "group should be larger than 0.")); }); AddComment(R"DOC( - Shuffle Channel operator - This opearator shuffles the channels of input x. - It divide the input channels in each group into several subgroups, - and obtain a new order by selecting element from every subgroup one by one. - - Shuffle channel operation makes it possible to build more powerful structures - with multiple group convolutional layers. - please get more information from the following paper: - https://arxiv.org/pdf/1707.01083.pdf - )DOC"); + Shuffle Channel operator + This opearator shuffles the channels of input x. + It divide the input channels in each group into several subgroups, + and obtain a new order by selecting element from every subgroup one by one. + + Shuffle channel operation makes it possible to build more powerful structures + with multiple group convolutional layers. + please get more information from the following paper: + https://arxiv.org/pdf/1707.01083.pdf + )DOC"); } };