Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
693083a4
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
693083a4
编写于
7月 01, 2020
作者:
C
Chengmo
提交者:
GitHub
7月 01, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add index sample (#25260)
* test=release/1.8, add index sample
上级
0fff1837
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
110 addition
and
0 deletion
+110
-0
python/paddle/fluid/layers/nn.py
python/paddle/fluid/layers/nn.py
+82
-0
python/paddle/fluid/tests/unittests/test_index_sample_op.py
python/paddle/fluid/tests/unittests/test_index_sample_op.py
+28
-0
未找到文件。
python/paddle/fluid/layers/nn.py
浏览文件 @
693083a4
...
...
@@ -212,6 +212,7 @@ __all__ = [
'flip',
'roll',
'log_softmax',
'index_sample',
]
...
...
@@ -16555,3 +16556,84 @@ def log_softmax(input, axis=None, dtype=None, name=None):
type='log', inputs={'X': outs_softmax}, outputs={'Out': outs_log})
return outs_log
def index_sample(x, index):
"""
**IndexSample Layer**
IndexSample OP returns the element of the specified location of X,
and the location is specified by Index.
.. code-block:: text
Args:
x (Variable): The source input tensor with 2-D shape. Supported data type is
int32, int64, float32, float64.
index (Variable): The index input tensor with 2-D shape, first dimension should be same with X.
Data type is int32 or int64.
Returns:
Variable: A tensor with the same shape as `index` .
Examples:
.. code-block:: python
import paddle.fluid as fluid
import numpy as np
data = np.array([[1.0, 2.0, 3.0, 4.0],
[5.0, 6.0, 7.0, 8.0],
[9.0, 10.0, 11.0, 12.0]]).astype('float32')
data_index = np.array([[0, 1, 2],
[1, 2, 3],
[0, 0, 0]]).astype('int32')
target_data = np.array([[100, 200, 300, 400],
[500, 600, 700, 800],
[900, 1000, 1100, 1200]]).astype('int32')
with fluid.dygraph.guard():
x = fluid.dygraph.to_variable(data)
index = fluid.dygraph.to_variable(data_index)
target = fluid.dygraph.to_variable(target_data)
out_z1 = fluid.layers.index_sample(x, index)
print(out_z1.numpy())
#[[1. 2. 3.]
# [6. 7. 8.]
# [9. 9. 9.]]
# Use the index of the maximum value by topk op
# get the value of the element of the corresponding index in other tensors
top_value, top_index = fluid.layers.topk(x, k=2)
out_z2 = fluid.layers.index_sample(target, top_index)
print(top_value.numpy())
#[[ 4. 3.]
# [ 8. 7.]
# [12. 11.]]
print(top_index.numpy())
#[[3 2]
# [3 2]
# [3 2]]
print(out_z2.numpy())
#[[ 400 300]
# [ 800 700]
# [1200 1100]]
"""
helper = LayerHelper("index_sample", **locals())
check_variable_and_dtype(x, 'x', ['float32', 'float64', 'int32', 'int64'],
'fluid.layers.index_sample')
check_variable_and_dtype(index, 'index', ['int32', 'int64'],
'fluid.layers.index_sample')
out = helper.create_variable_for_type_inference(dtype=x.dtype)
helper.append_op(
type='index_sample',
inputs={'X': x,
'Index': index},
outputs={'Out': out})
return out
python/paddle/fluid/tests/unittests/test_index_sample_op.py
浏览文件 @
693083a4
...
...
@@ -96,5 +96,33 @@ class TestCase4(TestIndexSampleOp):
self
.
index_type
=
"int64"
class
TestIndexSampleShape
(
unittest
.
TestCase
):
def
test_shape
(
self
):
import
paddle.fluid
as
fluid
import
paddle
# create x value
x_shape
=
(
2
,
5
)
x_type
=
"float64"
x_np
=
np
.
random
.
random
(
x_shape
).
astype
(
x_type
)
# create index value
index_shape
=
(
2
,
3
)
index_type
=
"int32"
index_np
=
np
.
random
.
randint
(
low
=
0
,
high
=
x_shape
[
1
],
size
=
index_shape
).
astype
(
index_type
)
x
=
fluid
.
data
(
name
=
'x'
,
shape
=
[
-
1
,
5
],
dtype
=
'float64'
)
index
=
fluid
.
data
(
name
=
'index'
,
shape
=
[
-
1
,
3
],
dtype
=
'int32'
)
output
=
fluid
.
layers
.
index_sample
(
x
=
x
,
index
=
index
)
place
=
fluid
.
CPUPlace
()
exe
=
fluid
.
Executor
(
place
=
place
)
exe
.
run
(
fluid
.
default_startup_program
())
feed
=
{
'x'
:
x_np
,
'index'
:
index_np
}
res
=
exe
.
run
(
feed
=
feed
,
fetch_list
=
[
output
])
if
__name__
==
"__main__"
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录