Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
e738fabf
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e738fabf
编写于
11月 05, 2019
作者:
L
liym27
提交者:
Aurelius84
11月 05, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix cn doc of API unsqueeze/concat/split after changing English doc. test=develop (#1562)
上级
f057d89a
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
33 addition
and
23 deletion
+33
-23
doc/fluid/api_cn/layers_cn/concat_cn.rst
doc/fluid/api_cn/layers_cn/concat_cn.rst
+3
-3
doc/fluid/api_cn/layers_cn/split_cn.rst
doc/fluid/api_cn/layers_cn/split_cn.rst
+24
-15
doc/fluid/api_cn/layers_cn/unsqueeze_cn.rst
doc/fluid/api_cn/layers_cn/unsqueeze_cn.rst
+6
-5
未找到文件。
doc/fluid/api_cn/layers_cn/concat_cn.rst
浏览文件 @
e738fabf
...
...
@@ -5,11 +5,11 @@ concat
.. py:function:: paddle.fluid.layers.concat(input,axis=0,name=None)
该OP对输入沿 ``axis`` 轴进行联结
该OP对输入沿 ``axis`` 轴进行联结
。
参数:
- **input** (list) - 输入待联结的多维 ``Tensor`` 组成的 ``list`` ,支持的数据类型为:float32、float64、int32、int64。
- **axis** (int
,可选) - 指定对输入Tensor进行运算的轴, ``axis`` 的有效范围是[-R, R),R是输入 ``input`` 中 ``Tensor`` 的Rank, ``axis`` 为负时与 ``axis`` +R
等价。默认值为0。
- **input** (list) - 输入
是
待联结的多维 ``Tensor`` 组成的 ``list`` ,支持的数据类型为:float32、float64、int32、int64。
- **axis** (int
|Variable,可选) - 整数或者形状为[1]的 ``Tensor``,数据类型为 ``int32``。指定对输入Tensor进行运算的轴, ``axis`` 的有效范围是[-R, R),R是输入 ``input`` 中 ``Tensor`` 的维度, ``axis`` 为负值时与 :math:`axis + R`
等价。默认值为0。
- **name** (str,可选) – 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。
返回:联结后的 ``Tensor`` ,数据类型和 ``input`` 相同。
...
...
doc/fluid/api_cn/layers_cn/split_cn.rst
浏览文件 @
e738fabf
...
...
@@ -5,40 +5,49 @@ split
.. py:function:: paddle.fluid.layers.split(input,num_or_sections,dim=-1,name=None)
将输入Tensor分割成多个子Tensor。
该OP
将输入Tensor分割成多个子Tensor。
参数:
- **input** (Variable) - 输入变量,
为
数据类型为float32,float64,int32,int64的多维Tensor或者LoDTensor。
- **num_or_sections** (int|list
) - 整数或元素为整数的列表。如果\ ``num_or_sections``\ 是一个整数,则表示Tensor平均划分为的相同大小子Tensor的数量。如果\ ``num_or_sections``\ 是一个整数列表,则列表的长度代表子Tensor的数量,列表中的整数依次代表子Tensor的需要分割成的维度的大小。列表长度不能超过输入Tensor待分割的维度的大小
。
- **dim** (int
) - 需要分割的维度。如果dim < 0,划分的维度为rank(input) + dim,数据类型为int32,int64
。
- **input** (Variable) - 输入变量,数据类型为float32,float64,int32,int64的多维Tensor或者LoDTensor。
- **num_or_sections** (int|list
|tuple) - 如果 ``num_or_sections`` 是一个整数,则表示Tensor平均划分为相同大小子Tensor的数量。如果 ``num_or_sections`` 是一个list或tuple,那么它的长度代表子Tensor的数量,它的元素可以是整数或者形状为[1]的Tensor,依次代表子Tensor需要分割成的维度的大小。list或tuple的长度不能超过输入Tensor待分割的维度的大小。至多有一个元素值为-1,-1表示该值是由 ``input`` 待分割的维度值和 ``num_or_sections`` 的剩余元素推断出来的
。
- **dim** (int
|Variable,可选) - 整数或者形状为[1]的Tensor,数据类型为int32或int64。表示需要分割的维度。如果dim < 0,则划分的维度为rank(input) + dim。默认值为-1
。
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。
返回:分割后的Tensor列表。
返回类型:列表(Variable(Tensor|LoDTensor)),数据类型为int32,int64,float32,float64。
抛出异常:
- :code:`TypeError`:``num_or_sections`` 不是int、list 或 tuple。
- :code:`TypeError`:``dim`` 不是 int 或 Variable。
**代码示例**:
.. code-block:: python
import paddle.fluid as fluid
# 输入是维度为[
-1,
3, 9, 5]的Tensor:
input = fluid.
layers.
data(
# 输入是维度为[3, 9, 5]的Tensor:
input = fluid.data(
name="input", shape=[3, 9, 5], dtype="float32")
# 传入num_or_sections为一个整数
x0, x1, x2 = fluid.layers.split(input, num_or_sections=3, dim=
2
)
x0.shape # [
-1,
3, 3, 5]
x1.shape # [
-1,
3, 3, 5]
x2.shape # [
-1,
3, 3, 5]
x0, x1, x2 = fluid.layers.split(input, num_or_sections=3, dim=
1
)
x0.shape # [3, 3, 5]
x1.shape # [3, 3, 5]
x2.shape # [3, 3, 5]
# 传入num_or_sections为一个整数列表
x0, x1, x2 = fluid.layers.split(input, num_or_sections=[2, 3, 4], dim=2)
x0.shape # [-1, 3, 2, 5]
x1.shape # [-1, 3, 3, 5]
x2.shape # [-1, 3, 4, 5]
x0, x1, x2 = fluid.layers.split(input, num_or_sections=[2, 3, 4], dim=1)
x0.shape # [3, 2, 5]
x1.shape # [3, 3, 5]
x2.shape # [3, 4, 5]
# 传入num_or_sections为一个整数列表,其中有一个元素为-1
x0, x1, x2 = fluid.layers.split(input, num_or_sections=[2, 3, -1], dim=1)
x0.shape # [3, 2, 5]
x1.shape # [3, 3, 5]
x2.shape # [3, 4, 5]
...
...
doc/fluid/api_cn/layers_cn/unsqueeze_cn.rst
浏览文件 @
e738fabf
...
...
@@ -5,7 +5,7 @@ unsqueeze
.. py:function:: paddle.fluid.layers.unsqueeze(input, axes, name=None)
该OP向输入(input)的shape中一个或多个位置(axes)插入维度
该OP向输入(input)的shape中一个或多个位置(axes)插入维度
。
- 示例:
...
...
@@ -22,9 +22,9 @@ unsqueeze
[[4, 5, 6]]]]
参数:
- **input** (Variable)
- 维度为 :math:[N_1, N2, ..., N_D]的多维Tensor
- **axes** (
list)- 整数数列,每个数代表要插入维度的位置
- **name**
(str|None) - 该层名称
- **input** (Variable)
- 多维 ``Tensor``,数据类型为 ``float32``, ``float64``, ``int8``, ``int32``,或 ``int64``。
- **axes** (
int|list|tuple|Variable) - 表示要插入维度的位置。数据类型是 ``int32`` 。如果 ``axes`` 的类型是 list 或 tuple,它的元素可以是整数或者形状为[1]的 ``Tensor`` 。如果 ``axes`` 的类型是 ``Variable``,则是1-D ``Tensor``。
- **name**
(str,可选)- 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置。默认值: ``None``。
返回:扩展维度后的多维Tensor
...
...
@@ -35,5 +35,6 @@ unsqueeze
.. code-block:: python
import paddle.fluid as fluid
x = fluid.
layers.
data(name='x', shape=[5, 10])
x = fluid.data(name='x', shape=[5, 10])
y = fluid.layers.unsqueeze(input=x, axes=[1])
# y.shape is [5, 1, 10]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录