From 752bfd30902afdebc72d17b41c597d734c9e5fba Mon Sep 17 00:00:00 2001 From: Travis CI Date: Wed, 13 Dec 2017 06:48:28 +0000 Subject: [PATCH] Deploy to GitHub Pages: 1ba8f7fe71fc8df40669a24fc5af88d0904240f1 --- develop/doc/api/v2/fluid/layers.html | 8 ++++---- develop/doc/operators.json | 2 +- develop/doc_cn/api/v2/fluid/layers.html | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/develop/doc/api/v2/fluid/layers.html b/develop/doc/api/v2/fluid/layers.html index 0241fa210d4..f40e205edca 100644 --- a/develop/doc/api/v2/fluid/layers.html +++ b/develop/doc/api/v2/fluid/layers.html @@ -518,9 +518,9 @@ Given a 2-D tensor X with 2 rows and 2 columns

[[1, 2], [3, 4]]

and target shape = [1, 4], the reshape operator will transform -the tensor X into a 1-D tensor:

+the tensor X into a 2-D tensor:

-
[1, 2, 3, 4]
+
[[1, 2, 3, 4]]
@@ -599,9 +599,9 @@ Given a 2-D tensor X with 2 rows and 2 columns

[[1, 2], [3, 4]]

and target shape = [1, 4], the reshape operator will transform -the tensor X into a 1-D tensor:

+the tensor X into a 2-D tensor:

-
[1, 2, 3, 4]
+
[[1, 2, 3, 4]]
diff --git a/develop/doc/operators.json b/develop/doc/operators.json index a4459cb94d1..ba0b568f783 100644 --- a/develop/doc/operators.json +++ b/develop/doc/operators.json @@ -2868,7 +2868,7 @@ "attrs" : [ ] },{ "type" : "reshape", - "comment" : "\nReshape Operator.\n\nReshape Input(X) into the shape specified by Attr(shape).\n\nAn example:\nGiven a 2-D tensor X with 2 rows and 2 columns\n\n [[1, 2], [3, 4]]\n\nand target shape = [1, 4], the reshape operator will transform\nthe tensor X into a 1-D tensor:\n\n [1, 2, 3, 4]\n\n", + "comment" : "\nReshape Operator.\n\nReshape Input(X) into the shape specified by Attr(shape).\n\nAn example:\nGiven a 2-D tensor X with 2 rows and 2 columns\n\n [[1, 2], [3, 4]]\n\nand target shape = [1, 4], the reshape operator will transform\nthe tensor X into a 2-D tensor:\n\n [[1, 2, 3, 4]]\n\n", "inputs" : [ { "name" : "X", diff --git a/develop/doc_cn/api/v2/fluid/layers.html b/develop/doc_cn/api/v2/fluid/layers.html index 5a135f1a27d..e35f78d1fe3 100644 --- a/develop/doc_cn/api/v2/fluid/layers.html +++ b/develop/doc_cn/api/v2/fluid/layers.html @@ -512,9 +512,9 @@ Given a 2-D tensor X with 2 rows and 2 columns

[[1, 2], [3, 4]]

and target shape = [1, 4], the reshape operator will transform -the tensor X into a 1-D tensor:

+the tensor X into a 2-D tensor:

-
[1, 2, 3, 4]
+
[[1, 2, 3, 4]]
@@ -593,9 +593,9 @@ Given a 2-D tensor X with 2 rows and 2 columns

[[1, 2], [3, 4]]

and target shape = [1, 4], the reshape operator will transform -the tensor X into a 1-D tensor:

+the tensor X into a 2-D tensor:

-
[1, 2, 3, 4]
+
[[1, 2, 3, 4]]
-- GitLab