Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
33fa2dfb
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
694
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
33fa2dfb
编写于
11月 27, 2017
作者:
F
fengjiayi
提交者:
GitHub
11月 27, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Compelete max_sequence_len_op (#5913)
上级
0ac8c74e
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
121 addition
and
8 deletion
+121
-8
paddle/operators/CMakeLists.txt
paddle/operators/CMakeLists.txt
+2
-0
paddle/operators/max_sequence_len_op.cc
paddle/operators/max_sequence_len_op.cc
+66
-0
python/paddle/v2/fluid/layers.py
python/paddle/v2/fluid/layers.py
+14
-0
python/paddle/v2/fluid/tests/test_lod_tensor_array_ops.py
python/paddle/v2/fluid/tests/test_lod_tensor_array_ops.py
+39
-8
未找到文件。
paddle/operators/CMakeLists.txt
浏览文件 @
33fa2dfb
...
@@ -200,6 +200,7 @@ set(DEPS_OPS
...
@@ -200,6 +200,7 @@ set(DEPS_OPS
lod_rank_table_op
lod_rank_table_op
lod_tensor_to_array_op
lod_tensor_to_array_op
array_to_lod_tensor_op
array_to_lod_tensor_op
max_sequence_len_op
lstm_op
lstm_op
tensor_array_read_write_op
tensor_array_read_write_op
gru_op
gru_op
...
@@ -222,6 +223,7 @@ op_library(pool_with_index_op DEPS pooling)
...
@@ -222,6 +223,7 @@ op_library(pool_with_index_op DEPS pooling)
op_library
(
lod_rank_table_op SRCS lod_rank_table_op.cc DEPS lod_rank_table
)
op_library
(
lod_rank_table_op SRCS lod_rank_table_op.cc DEPS lod_rank_table
)
op_library
(
lod_tensor_to_array_op SRCS lod_tensor_to_array_op.cc DEPS lod_rank_table_op
)
op_library
(
lod_tensor_to_array_op SRCS lod_tensor_to_array_op.cc DEPS lod_rank_table_op
)
op_library
(
array_to_lod_tensor_op SRCS array_to_lod_tensor_op.cc DEPS lod_rank_table_op
)
op_library
(
array_to_lod_tensor_op SRCS array_to_lod_tensor_op.cc DEPS lod_rank_table_op
)
op_library
(
max_sequence_len_op SRCS max_sequence_len_op.cc DEPS lod_rank_table
)
op_library
(
tensor_array_read_write_op SRCS tensor_array_read_write_op.cc
)
op_library
(
tensor_array_read_write_op SRCS tensor_array_read_write_op.cc
)
if
(
WITH_GPU
)
if
(
WITH_GPU
)
op_library
(
nccl_op DEPS nccl_common
)
op_library
(
nccl_op DEPS nccl_common
)
...
...
paddle/operators/max_sequence_len_op.cc
0 → 100644
浏览文件 @
33fa2dfb
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include "paddle/framework/lod_rank_table.h"
#include "paddle/framework/op_registry.h"
#include "paddle/framework/operator.h"
namespace
paddle
{
namespace
operators
{
class
MaxSeqenceLenOp
:
public
framework
::
OperatorBase
{
public:
MaxSeqenceLenOp
(
const
std
::
string
&
type
,
const
framework
::
VariableNameMap
&
inputs
,
const
framework
::
VariableNameMap
&
outputs
,
const
framework
::
AttributeMap
&
attrs
)
:
OperatorBase
(
type
,
inputs
,
outputs
,
attrs
)
{}
void
Run
(
const
framework
::
Scope
&
scope
,
const
platform
::
DeviceContext
&
dev_ctx
)
const
override
{
auto
&
rank_table
=
scope
.
FindVar
(
Input
(
"RankTable"
))
->
Get
<
framework
::
LoDRankTable
>
();
auto
*
out
=
scope
.
FindVar
(
Output
(
"Out"
))
->
GetMutable
<
framework
::
LoDTensor
>
();
int64_t
*
out_ptr
=
out
->
mutable_data
<
int64_t
>
({
1
},
platform
::
CPUPlace
());
*
out_ptr
=
rank_table
.
items
()[
0
].
length
;
}
};
class
MaxSeqenceLenOpProtoMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
public:
MaxSeqenceLenOpProtoMaker
(
framework
::
OpProto
*
proto
,
framework
::
OpAttrChecker
*
op_checker
)
:
OpProtoAndCheckerMaker
(
proto
,
op_checker
)
{
AddInput
(
"RankTable"
,
"The lod_rank_table."
);
AddOutput
(
"Out"
,
"The max sequence length."
);
AddComment
(
R"DOC(Calculate the max sequence length through lod_rank_table.)DOC"
);
}
};
class
MaxSeqenceLenInferShape
:
public
framework
::
InferShapeBase
{
public:
void
operator
()(
framework
::
InferShapeContext
*
context
)
const
override
{
PADDLE_ENFORCE
(
context
->
HasInput
(
"RankTable"
));
context
->
SetOutputDim
(
"Out"
,
{
1
});
}
};
}
// namespace operators
}
// namespace paddle
REGISTER_OPERATOR
(
max_sequence_len
,
paddle
::
operators
::
MaxSeqenceLenOp
,
paddle
::
operators
::
MaxSeqenceLenOpProtoMaker
,
paddle
::
operators
::
MaxSeqenceLenInferShape
,
paddle
::
framework
::
EmptyGradOpMaker
);
python/paddle/v2/fluid/layers.py
浏览文件 @
33fa2dfb
...
@@ -1354,6 +1354,20 @@ def lod_rank_table(x, level=0, main_program=None):
...
@@ -1354,6 +1354,20 @@ def lod_rank_table(x, level=0, main_program=None):
return
table
return
table
def
max_sequence_len
(
rank_table
,
main_program
=
None
):
"""
This function creates an operator to calculate the length of
max seqence through input rank_table(should be a lod_rank_table)
"""
helper
=
LayerHelper
(
"max_seqence_len"
,
**
locals
())
res
=
helper
.
create_tmp_variable
(
dtype
=
"int64"
)
helper
.
append_op
(
type
=
"max_sequence_len"
,
inputs
=
{
"RankTable"
:
rank_table
},
outputs
=
{
"Out"
:
res
})
return
res
def
topk
(
input
,
k
,
main_program
=
None
,
startup_program
=
None
):
def
topk
(
input
,
k
,
main_program
=
None
,
startup_program
=
None
):
helper
=
LayerHelper
(
'topk'
,
**
locals
())
helper
=
LayerHelper
(
'topk'
,
**
locals
())
topk_out
=
helper
.
create_tmp_variable
(
dtype
=
input
.
data_type
)
topk_out
=
helper
.
create_tmp_variable
(
dtype
=
input
.
data_type
)
...
...
python/paddle/v2/fluid/tests/test_lod_tensor_array_ops.py
浏览文件 @
33fa2dfb
...
@@ -18,7 +18,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
...
@@ -18,7 +18,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
tensor
.
set_lod
([[
0
,
3
,
9
,
10
]])
tensor
.
set_lod
([[
0
,
3
,
9
,
10
]])
expect
=
map
(
lambda
x
:
numpy
.
array
(
x
).
astype
(
'int32'
),
expect
=
map
(
lambda
x
:
numpy
.
array
(
x
).
astype
(
'int32'
),
[[
3
,
0
,
9
],
[
4
,
1
],
[
5
,
2
],
[
6
],
[
7
],
[
8
]])
[[
3
,
0
,
9
],
[
4
,
1
],
[
5
,
2
],
[
6
],
[
7
],
[
8
]])
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
[]
*
6
)
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
[]
*
6
,
expect_max_len
=
6
)
def
test_lod_tensor_to_array_level_0_empty_seq
(
self
):
def
test_lod_tensor_to_array_level_0_empty_seq
(
self
):
tensor
=
core
.
LoDTensor
()
tensor
=
core
.
LoDTensor
()
...
@@ -27,7 +31,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
...
@@ -27,7 +31,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
tensor
.
set_lod
([[
0
,
3
,
9
,
9
,
10
]])
tensor
.
set_lod
([[
0
,
3
,
9
,
9
,
10
]])
expect
=
map
(
lambda
x
:
numpy
.
array
(
x
).
astype
(
'int32'
),
expect
=
map
(
lambda
x
:
numpy
.
array
(
x
).
astype
(
'int32'
),
[[
3
,
0
,
9
],
[
4
,
1
],
[
5
,
2
],
[
6
],
[
7
],
[
8
]])
[[
3
,
0
,
9
],
[
4
,
1
],
[
5
,
2
],
[
6
],
[
7
],
[
8
]])
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
[]
*
6
)
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
[]
*
6
,
expect_max_len
=
6
)
def
test_lod_tensor_to_array_level_1
(
self
):
def
test_lod_tensor_to_array_level_1
(
self
):
tensor
=
core
.
LoDTensor
()
tensor
=
core
.
LoDTensor
()
...
@@ -44,7 +52,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
...
@@ -44,7 +52,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
]
]
lod
=
[[[
0
,
2
,
5
]],
[[
0
,
6
,
12
]],
[[
0
,
3
]]]
lod
=
[[[
0
,
2
,
5
]],
[[
0
,
6
,
12
]],
[[
0
,
3
]]]
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
lod
)
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
lod
,
expect_max_len
=
3
)
def
test_lod_tensor_to_array_level_1_empty_seq
(
self
):
def
test_lod_tensor_to_array_level_1_empty_seq
(
self
):
tensor
=
core
.
LoDTensor
()
tensor
=
core
.
LoDTensor
()
...
@@ -63,7 +75,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
...
@@ -63,7 +75,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
]
]
lod
=
[[[
0
,
5
,
8
,
8
,
15
]],
[[
0
,
2
,
6
,
7
,
8
]],
[[
0
,
2
,
6
]],
[[
0
,
2
]]]
lod
=
[[[
0
,
5
,
8
,
8
,
15
]],
[[
0
,
2
,
6
,
7
,
8
]],
[[
0
,
2
,
6
]],
[[
0
,
2
]]]
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
lod
)
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
lod
,
expect_max_len
=
4
)
def
test_lod_tensor_to_array_level_2
(
self
):
def
test_lod_tensor_to_array_level_2
(
self
):
tensor
=
core
.
LoDTensor
()
tensor
=
core
.
LoDTensor
()
...
@@ -80,7 +96,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
...
@@ -80,7 +96,11 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
]
]
lod
=
[[[
0
,
1
,
3
,
4
],
[
0
,
1
,
4
,
8
,
12
]],
lod
=
[[[
0
,
1
,
3
,
4
],
[
0
,
1
,
4
,
8
,
12
]],
[[
0
,
4
,
7
],
[
0
,
1
,
5
,
9
,
17
,
21
,
27
,
31
]],
[[
0
,
2
],
[
0
,
6
,
7
]]]
[[
0
,
4
,
7
],
[
0
,
1
,
5
,
9
,
17
,
21
,
27
,
31
]],
[[
0
,
2
],
[
0
,
6
,
7
]]]
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
lod
)
self
.
main
(
tensor
=
tensor
,
expect_array
=
expect
,
expect_lod
=
lod
,
expect_max_len
=
3
)
def
test_lod_tensor_to_array_level_2_skip_level
(
self
):
def
test_lod_tensor_to_array_level_2_skip_level
(
self
):
tensor
=
core
.
LoDTensor
()
tensor
=
core
.
LoDTensor
()
...
@@ -88,14 +108,21 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
...
@@ -88,14 +108,21 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
numpy
.
arange
(
50
).
reshape
(
50
,
1
).
astype
(
'int32'
),
self
.
place
())
numpy
.
arange
(
50
).
reshape
(
50
,
1
).
astype
(
'int32'
),
self
.
place
())
tensor
.
set_lod
([[
0
,
2
,
5
,
6
],
[
0
,
2
,
5
,
6
,
10
,
12
,
13
],
tensor
.
set_lod
([[
0
,
2
,
5
,
6
],
[
0
,
2
,
5
,
6
,
10
,
12
,
13
],
[
0
,
3
,
7
,
11
,
17
,
21
,
22
,
23
,
27
,
31
,
39
,
45
,
46
,
50
]])
[
0
,
3
,
7
,
11
,
17
,
21
,
22
,
23
,
27
,
31
,
39
,
45
,
46
,
50
]])
self
.
main
(
tensor
=
tensor
,
expect_array
=
None
,
expect_lod
=
None
,
level
=
1
)
self
.
main
(
tensor
=
tensor
,
def
main
(
self
,
tensor
,
expect_array
,
expect_lod
,
level
=
0
):
expect_array
=
None
,
expect_lod
=
None
,
expect_max_len
=
4
,
level
=
1
)
def
main
(
self
,
tensor
,
expect_array
,
expect_lod
,
expect_max_len
,
level
=
0
):
place
=
self
.
place
()
place
=
self
.
place
()
program
=
Program
()
program
=
Program
()
x
=
layers
.
data
(
name
=
'x'
,
shape
=
[
10
],
main_program
=
program
)
x
=
layers
.
data
(
name
=
'x'
,
shape
=
[
10
],
main_program
=
program
)
x
.
persistable
=
True
x
.
persistable
=
True
table
=
layers
.
lod_rank_table
(
x
,
level
=
level
,
main_program
=
program
)
table
=
layers
.
lod_rank_table
(
x
,
level
=
level
,
main_program
=
program
)
max_len
=
layers
.
max_sequence_len
(
table
,
main_program
=
program
)
max_len
.
persistable
=
True
array
=
layers
.
lod_tensor_to_array
(
x
,
table
,
main_program
=
program
)
array
=
layers
.
lod_tensor_to_array
(
x
,
table
,
main_program
=
program
)
array
.
persistable
=
True
array
.
persistable
=
True
...
@@ -110,6 +137,10 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
...
@@ -110,6 +137,10 @@ class TestCPULoDTensorArrayOps(unittest.TestCase):
self
.
check_array_same
(
array
,
expect_array
,
expect_lod
)
self
.
check_array_same
(
array
,
expect_array
,
expect_lod
)
self
.
check_tensor_same
(
scope
.
find_var
(
result
.
name
).
get_tensor
(),
tensor
)
self
.
check_tensor_same
(
scope
.
find_var
(
result
.
name
).
get_tensor
(),
tensor
)
self
.
assertEqual
(
numpy
.
array
(
scope
.
find_var
(
max_len
.
name
).
get_tensor
())[
0
],
expect_max_len
)
def
check_array_same
(
self
,
array
,
expect_tensor
,
expect_lod
):
def
check_array_same
(
self
,
array
,
expect_tensor
,
expect_lod
):
self
.
assertEqual
(
len
(
expect_tensor
),
len
(
array
))
self
.
assertEqual
(
len
(
expect_tensor
),
len
(
array
))
for
i
,
exp
in
enumerate
(
zip
(
expect_tensor
,
expect_lod
)):
for
i
,
exp
in
enumerate
(
zip
(
expect_tensor
,
expect_lod
)):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录