diff --git a/develop/doc/api/v2/fluid/layers.html b/develop/doc/api/v2/fluid/layers.html
index 3c06ea26f7893a9d1c8ac5f899364605cc296297..98cb20d5346b58b9ac9434c0c05ef145399af210 100644
--- a/develop/doc/api/v2/fluid/layers.html
+++ b/develop/doc/api/v2/fluid/layers.html
@@ -717,25 +717,19 @@ Duplicable: False Optional: False
paddle.v2.fluid.layers.
transpose
(**kwargs)
Transpose Operator.
The input tensor will be permuted according to the axis values given. -The op functions similar to how numpy.transpose works in python. -For example:
--+>> input = numpy.arange(6).reshape((2,3)) ->> input +The op functions is similar to how numpy.transpose works in python.
+For example: input = numpy.arange(6).reshape((2,3)) +the input is: array([[0, 1, 2],
-[3, 4, 5]])>> axis = [1, 0] ->> output = input.transpose(axis) ->> output +
given axis is: [1, 0]
+output = input.transpose(axis) +then the output is: array([[0, 3],
---
-- [1, 4],
-- [2, 5]])
-
So, given a input tensor of shape(N, C, H, W) and the axis is {0, 2, 3, 1}, the output tensor shape will be (N, H, W, C)