Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
0dee1ba2
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0dee1ba2
编写于
9月 27, 2020
作者:
M
mapingshuo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
new reshape, test=develop
上级
881dd438
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
16 addition
and
33 deletion
+16
-33
doc/paddle/api/paddle/tensor/manipulation/reshape_cn.rst
doc/paddle/api/paddle/tensor/manipulation/reshape_cn.rst
+16
-33
未找到文件。
doc/paddle/api/paddle/tensor/manipulation/reshape_cn.rst
浏览文件 @
0dee1ba2
...
@@ -3,13 +3,11 @@
...
@@ -3,13 +3,11 @@
reshape
reshape
-------------------------------
-------------------------------
.. py:function:: paddle.
fluid.layers.reshape(x, shape, actual_shape=None, act=None, inplace=Fals
e, name=None)
.. py:function:: paddle.
reshape(x, shap
e, name=None)
该OP在保持输入 ``x`` 数据不变的情况下,改变 ``x`` 的形状。
该OP在保持输入 ``x`` 数据不变的情况下,改变 ``x`` 的形状。
目标形状可由 ``shape`` 或 ``actual_shape`` 给出。当两个属性同时被指定时,``actual_shape`` 的优先级高于 ``shape`` ,但此时 ``shape`` 只能是整数列表或元组,且在编译时仍然应该正确地设置 ``shape`` 以保证形状推断。
在指定目标shape时存在一些技巧:
在指定目标shape时存在一些技巧:
.. code-block:: text
.. code-block:: text
...
@@ -26,48 +24,33 @@ reshape
...
@@ -26,48 +24,33 @@ reshape
2. 给定一个形状为[2,4,6]的三维张量x,目标形状为[2,3,-1,2],则将x变换为形状为[2,3,4,2]的4-D张量,且x的数据保持不变。在这种情况下,目标形状的一个维度被设置为-1,这个维度的值是从x的元素总数和剩余维度推断出来的。
2. 给定一个形状为[2,4,6]的三维张量x,目标形状为[2,3,-1,2],则将x变换为形状为[2,3,4,2]的4-D张量,且x的数据保持不变。在这种情况下,目标形状的一个维度被设置为-1,这个维度的值是从x的元素总数和剩余维度推断出来的。
3. 给定一个形状为[2,4,6]的三维张量x,目标形状为[-1,0,3,2],则将x变换为形状为[2,4,3,2]的4-D张量,且x的数据保持不变。在这种情况下,0对应位置的维度值将从x的对应维数中复制,-1对应位置的维度值由x的元素总数和剩余维度推断出来。
3. 给定一个形状为[2,4,6]的三维张量x,目标形状为[-1,0,3,2],则将x变换为形状为[2,4,3,2]的4-D张量,且x的数据保持不变。在这种情况下,0对应位置的维度值将从x的对应维数中复制,-1对应位置的维度值由x的元素总数和剩余维度推断出来。
.. warning::
参数 ``actual_shape`` 之后将被舍弃,只用参数 ``shape`` 来表示目标形状。
参数:
参数:
- **x** (Tensor)- N-D ``Tensor``,数据类型为 ``float32``,``float64``,``int32``,或 ``int64``。
- **x** (Tensor)- N-D ``Tensor``,数据类型为 ``float32``,``float64``,``int32``,或 ``int64``。
- **shape** (list|tuple|Tensor)- 数据类型是 ``int32`` 。定义目标形状。目标形状最多只能有一个维度为-1。如果 ``shape`` 的类型是 list 或 tuple, 它的元素可以是整数或者形状为[1]的 ``Tensor``。如果 ``shape`` 的类型是 ``Tensor``,则是1-D的 ``Tensor``。
- **shape** (list|tuple|Tensor)- 数据类型是 ``int32`` 。定义目标形状。目标形状最多只能有一个维度为-1。如果 ``shape`` 的类型是 list 或 tuple, 它的元素可以是整数或者形状为[1]的 ``Tensor``。如果 ``shape`` 的类型是 ``Tensor``,则是1-D的 ``Tensor``。
- **actual_shape** (Tensor,可选)- 1-D ``Tensor``,默认值:`None`。如果 ``actual_shape`` 被提供,``actual_shape`` 具有比 ``shape`` 更高的优先级,此时 ``shape`` 只能是整数列表或元组。更新提示:``actual_shape`` 在未来的版本中将被舍弃,并用 ``shape`` 代替。
- **name** (str,可选)- 默认值为 `None`, 一般不需要设置。 具体用法请参见 :ref:`api_guide_Name`
- **act** (str,可选)- 对形状改变后的输入变量做非线性激活操作,激活函数类型可以参考 :ref:`api_guide_activations` 。默认值: ``None``。
- **inplace** (bool,可选)- 如果 ``inplace`` 为 ``True``,则 ``layers.reshape`` 的输入和输出是同一个变量,否则 ``layers.reshape`` 的输入和输出是不同的变量。默认值:``False``。请注意,如果 ``x`` 是多个OP的输入,则 ``inplace`` 必须为False。
- **name** (str,可选)- 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置。默认值: ``None``。
返回:
返回:
:::::::::
:::::::::
``Tensor``,改变形状后的 ``Tensor``,数据类型与 ``x`` 相同。
如果 ``inplace`` 为 ``False``,则返回一个新的变量,否则将改变输入变量 ``x`` 自身。如果 ``act`` 为 ``None``,则直接返回形状改变后的变量,否则返回经过激活函数后的变量。
``Tensor``,改变形状后的 ``Tensor``,数据类型与 ``x`` 相同。
**代码示例**
**代码示例**
.. code-block:: python
.. code-block:: python
import paddle.fluid as fluid
import numpy as np
import paddle
# example 1:
# attr shape is a list which doesn't contain Tensors.
data = np.random.random([2, 4, 6]).astype("float32")
data_1 = fluid.data(
x = paddle.to_tensor(data)
name='data_1', shape=[2, 4, 6], dtype='float32')
positive_four = paddle.fill_constant([1], "int32", 4)
reshaped_1 = fluid.layers.reshape(
out_1 = paddle.reshape(x, [-1, 0, 3, 2])
x=data_1, shape=[-1, 0, 3, 2], inplace=True)
# the shape of out_1 is [2,4,3,2].
# the shape of reshaped_1 is [2,4,3,2].
out_2 = paddle.reshape(x, shape=[positive_four, 12])
# the shape of out_2 is [4, 12].
# example 2:
shape_tensor = paddle.to_tensor(np.array([8, 6]).astype("int32"))
# attr shape is a list which contains Tensors.
out_3 = paddle.reshape(x, shape=shape_tensor)
data_2 = fluid.layers.fill_constant([2,25], "int32", 3)
# the shape of out_2 is [8, 6].
dim = fluid.layers.fill_constant([1], "int32", 5)
reshaped_2 = fluid.layers.reshape(data_2, shape=[dim, 10])
# the shape of reshaped_2 is [5,10].
# example 3:
data_3 = fluid.data(
name="data_3", shape=[2,4,6], dtype='float32')
reshaped_3 = fluid.layers.reshape(x=data_3, shape=[6,8])
# the shape of reshaped_3 is [6,8].
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录