Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
08bb44e5
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,发现更多精彩内容 >>
提交
08bb44e5
编写于
10月 23, 2019
作者:
Z
Zhang Ting
提交者:
Aurelius84
10月 23, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modified cn doc for attr(shape) supporting -1, test=develop (#1531)
上级
351a4aba
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
22 addition
and
18 deletion
+22
-18
doc/fluid/api_cn/layers_cn/crop_tensor_cn.rst
doc/fluid/api_cn/layers_cn/crop_tensor_cn.rst
+22
-18
未找到文件。
doc/fluid/api_cn/layers_cn/crop_tensor_cn.rst
浏览文件 @
08bb44e5
...
...
@@ -41,7 +41,7 @@ crop_tensor
[0, 0, 0, 0]]]
参数:
shape = [2, 2,
3
]
shape = [2, 2,
-1
]
offsets = [0, 0, 1]
输出:
...
...
@@ -52,8 +52,8 @@ crop_tensor
[6, 7, 8]]]
参数:
- **x** (Variable): 1-D到6-D Tensor,数据类型为float32
或floa
t64。
- **shape** (list|tuple|Variable) - 输出Tensor的形状,数据类型为int32。如果是列表或元组,则其长度必须与x的维度大小相同,如果是Variable,则其应该是1-D Tensor。当它是列表时,每一个元素可以是整数或者形状为[1]的Tensor。含有Variable的方式适用于每次迭代时需要改变输出形状的情况。
列表和元组中只有第一个元素可以被设置为-1,这意味着输出的第一维大小与输入相同。
- **x** (Variable): 1-D到6-D Tensor,数据类型为float32
、float64、int32或者in
t64。
- **shape** (list|tuple|Variable) - 输出Tensor的形状,数据类型为int32。如果是列表或元组,则其长度必须与x的维度大小相同,如果是Variable,则其应该是1-D Tensor。当它是列表时,每一个元素可以是整数或者形状为[1]的Tensor。含有Variable的方式适用于每次迭代时需要改变输出形状的情况。
- **offsets** (list|tuple|Variable,可选) - 每个维度上裁剪的偏移量,数据类型为int32。如果是列表或元组,则其长度必须与x的维度大小相同,如果是Variable,则其应是1-D Tensor。当它是列表时,每一个元素可以是整数或者形状为[1]的Variable。含有Variable的方式适用于每次迭代的偏移量(offset)都可能改变的情况。默认值:None,每个维度的偏移量为0。
- **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。
...
...
@@ -62,39 +62,43 @@ crop_tensor
返回类型: Variable
抛出异常:
- :code:`ValueError` - shape 应该是列表、元组或Variable。
- :code:`ValueError` - offsets 应该是列表、元组、Variable或None。
- :code:`TypeError` - x 的数据类型应该是float32、float64、int32或者int64。
- :code:`TypeError` - shape 应该是列表、元组或Variable。
- :code:`TypeError` - shape 的数据类型应该是int32。
- :code:`TypeError` - offsets 应该是列表、元组、Variable或None。
- :code:`TypeError` - offsets 的数据类型应该是int32。
- :code:`TypeError` - offsets 的元素应该大于等于0。
**代码示例**:
.. code-block:: python
import paddle.fluid as fluid
x = fluid.
layers.data(name="x", shape=[
3, 5], dtype="float32")
x = fluid.
data(name="x", shape=[None,
3, 5], dtype="float32")
# x.shape = [-1, 3, 5], where -1 indicates batch size, and it will get the exact value in runtime.
# shape is a 1-D
tensor variable
crop_shape = fluid.
layers.data(name="crop_shape", shape=[3], dtype="int32", append_batch_size=False
)
# shape is a 1-D
Tensor
crop_shape = fluid.
data(name="crop_shape", shape=[3], dtype="int32"
)
crop0 = fluid.layers.crop_tensor(x, shape=crop_shape)
# crop0.shape = [-1, -1, -1], it means crop0.shape[0] = x.shape[0] in runtime.
# or shape is a list in which each element is a constant
crop1 = fluid.layers.crop_tensor(x, shape=[-1,
2, 3
])
crop1 = fluid.layers.crop_tensor(x, shape=[-1,
-1, 3], offsets=[0, 1, 0
])
# crop1.shape = [-1, 2, 3]
# or shape is a list in which each element is a constant or
variable
y = fluid.
layers.
data(name="y", shape=[3, 8, 8], dtype="float32")
dim1 = fluid.layers.data(name="dim1", shape=[1], dtype="int32"
, append_batch_size=False
)
crop2 = fluid.layers.crop_tensor(y, shape=[
-1,
3, dim1, 4])
# crop2.shape = [
-1,
3, -1, 4]
# or shape is a list in which each element is a constant or
Tensor
y = fluid.data(name="y", shape=[3, 8, 8], dtype="float32")
dim1 = fluid.layers.data(name="dim1", shape=[1], dtype="int32")
crop2 = fluid.layers.crop_tensor(y, shape=[3, dim1, 4])
# crop2.shape = [3, -1, 4]
# offsets is a 1-D
tensor variable
crop_offsets = fluid.
layers.data(name="crop_offsets", shape=[3], dtype="int32", append_batch_size=False
)
# offsets is a 1-D
Tensor
crop_offsets = fluid.
data(name="crop_offsets", shape=[3], dtype="int32"
)
crop3 = fluid.layers.crop_tensor(x, shape=[-1, 2, 3], offsets=crop_offsets)
# crop3.shape = [-1, 2, 3]
# offsets is a list in which each element is a constant or
variable
offsets_var = fluid.
layers.data(name="dim1", shape=[1], dtype="int32", append_batch_size=False
)
# offsets is a list in which each element is a constant or
Tensor
offsets_var = fluid.
data(name="dim1", shape=[1], dtype="int32"
)
crop4 = fluid.layers.crop_tensor(x, shape=[-1, 2, 3], offsets=[0, 1, offsets_var])
# crop4.shape = [-1, 2, 3]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录