Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
4c85f955
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
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看板
提交
4c85f955
编写于
2月 24, 2017
作者:
D
dangqingqing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
move test module
上级
9b73a602
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
90 addition
and
131 deletion
+90
-131
python/paddle/v2/layer.py
python/paddle/v2/layer.py
+0
-129
python/paddle/v2/tests/test_layer.py
python/paddle/v2/tests/test_layer.py
+90
-2
未找到文件。
python/paddle/v2/layer.py
浏览文件 @
4c85f955
...
...
@@ -347,132 +347,3 @@ operator_list = [
]
for
op
in
operator_list
:
globals
()[
op
[
0
]]
=
__convert_to_v2__
(
op
[
0
],
parent_names
=
op
[
1
])
def
test_projection
():
"""
TODO: move to tests file
"""
input
=
data
(
name
=
'data'
,
type
=
data_type
.
dense_vector
(
784
))
word
=
data
(
name
=
'word'
,
type
=
data_type
.
integer_value_sequence
(
10000
))
fc0
=
fc
(
input
=
input
,
size
=
100
,
act
=
conf_helps
.
SigmoidActivation
())
fc1
=
fc
(
input
=
input
,
size
=
200
,
act
=
conf_helps
.
SigmoidActivation
())
mixed0
=
mixed
(
size
=
256
,
input
=
[
full_matrix_projection
(
input
=
fc0
),
full_matrix_projection
(
input
=
fc1
)
])
with
mixed
(
size
=
200
)
as
mixed1
:
mixed1
+=
full_matrix_projection
(
input
=
fc0
)
mixed1
+=
identity_projection
(
input
=
fc1
)
table
=
table_projection
(
input
=
word
)
emb0
=
mixed
(
size
=
512
,
input
=
table
)
with
mixed
(
size
=
512
)
as
emb1
:
emb1
+=
table
scale
=
scaling_projection
(
input
=
fc0
)
scale0
=
mixed
(
size
=
100
,
input
=
scale
)
with
mixed
(
size
=
100
)
as
scale1
:
scale1
+=
scale
dotmul
=
dotmul_projection
(
input
=
fc0
)
dotmul0
=
mixed
(
size
=
100
,
input
=
dotmul
)
with
mixed
(
size
=
100
)
as
dotmul1
:
dotmul1
+=
dotmul
context
=
context_projection
(
input
=
fc0
,
context_len
=
5
)
context0
=
mixed
(
size
=
100
,
input
=
context
)
with
mixed
(
size
=
100
)
as
context1
:
context1
+=
context
conv
=
conv_projection
(
input
=
input
,
filter_size
=
1
,
num_channels
=
1
,
num_filters
=
128
,
stride
=
1
,
padding
=
0
)
conv0
=
mixed
(
input
=
conv
,
bias_attr
=
True
)
with
mixed
(
bias_attr
=
True
)
as
conv1
:
conv1
+=
conv
print
parse_network
(
mixed0
)
print
parse_network
(
mixed1
)
print
parse_network
(
emb0
)
print
parse_network
(
emb1
)
print
parse_network
(
scale0
)
print
parse_network
(
scale1
)
print
parse_network
(
dotmul0
)
print
parse_network
(
dotmul1
)
print
parse_network
(
conv0
)
print
parse_network
(
conv1
)
def
test_operator
():
"""
TODO: move to tests file
"""
ipt0
=
data
(
name
=
'data'
,
type
=
data_type
.
dense_vector
(
784
))
ipt1
=
data
(
name
=
'word'
,
type
=
data_type
.
dense_vector
(
128
))
fc0
=
fc
(
input
=
ipt0
,
size
=
100
,
act
=
conf_helps
.
SigmoidActivation
())
fc1
=
fc
(
input
=
ipt0
,
size
=
100
,
act
=
conf_helps
.
SigmoidActivation
())
dotmul_op
=
dotmul_operator
(
a
=
fc0
,
b
=
fc1
)
dotmul0
=
mixed
(
input
=
dotmul_op
)
with
mixed
()
as
dotmul1
:
dotmul1
+=
dotmul_op
conv
=
conv_operator
(
img
=
ipt0
,
filter
=
ipt1
,
filter_size
=
1
,
num_channels
=
1
,
num_filters
=
128
,
stride
=
1
,
padding
=
0
)
conv0
=
mixed
(
input
=
conv
)
with
mixed
()
as
conv1
:
conv1
+=
conv
print
parse_network
(
dotmul0
)
print
parse_network
(
dotmul1
)
print
parse_network
(
conv0
)
print
parse_network
(
conv1
)
def
test_cost
(
pixel
,
label
,
weight
,
score
):
hidden
=
fc
(
input
=
pixel
,
size
=
100
,
act
=
activation
.
Sigmoid
(),
param_attr
=
attr
.
Param
(
name
=
'hidden'
))
inference
=
fc
(
input
=
hidden
,
size
=
10
,
act
=
activation
.
Softmax
())
maxid
=
max_id
(
input
=
inference
)
cost1
=
classification_cost
(
input
=
inference
,
label
=
label
)
cost2
=
classification_cost
(
input
=
inference
,
label
=
label
,
weight
=
weight
)
cost3
=
cross_entropy_cost
(
input
=
inference
,
label
=
label
)
cost4
=
cross_entropy_with_selfnorm_cost
(
input
=
inference
,
label
=
label
)
cost5
=
regression_cost
(
input
=
inference
,
label
=
label
)
cost6
=
regression_cost
(
input
=
inference
,
label
=
label
,
weight
=
weight
)
cost7
=
multi_binary_label_cross_entropy_cost
(
input
=
inference
,
label
=
label
)
cost8
=
rank_cost
(
left
=
score
,
right
=
score
,
label
=
score
)
cost9
=
lambda_cost
(
input
=
inference
,
score
=
score
)
cost10
=
sum_cost
(
input
=
inference
)
cost11
=
huber_cost
(
input
=
score
,
label
=
label
)
print
parse_network
(
cost1
,
cost2
)
print
parse_network
(
cost3
,
cost4
)
print
parse_network
(
cost5
,
cost6
)
print
parse_network
(
cost7
,
cost8
,
cost9
,
cost10
,
cost11
)
print
parse_network
(
inference
,
maxid
)
if
__name__
==
'__main__'
:
pixel
=
data
(
name
=
'pixel'
,
type
=
data_type
.
dense_vector
(
784
))
label
=
data
(
name
=
'label'
,
type
=
data_type
.
integer_value
(
10
))
weight
=
data
(
name
=
'weight'
,
type
=
data_type
.
dense_vector
(
10
))
score
=
data
(
name
=
'score'
,
type
=
data_type
.
dense_vector
(
1
))
test_cost
(
pixel
,
label
,
weight
,
score
)
test_projection
()
test_operator
()
python/paddle/v2/tests/test_layer.py
浏览文件 @
4c85f955
...
...
@@ -19,8 +19,6 @@ import paddle.v2.activation as activation
import
paddle.v2.attr
as
attr
import
paddle.v2.data_type
as
data_type
import
paddle.v2.layer
as
layer
from
paddle.trainer_config_helpers.config_parser_utils
import
\
parse_network_config
as
parse_network
pixel
=
layer
.
data
(
name
=
'pixel'
,
type
=
data_type
.
dense_vector
(
784
))
label
=
layer
.
data
(
name
=
'label'
,
type
=
data_type
.
integer_value
(
10
))
...
...
@@ -58,6 +56,96 @@ class CostLayerTest(unittest.TestCase):
#print layer.parse_network(cost5, cost6)
#print layer.parse_network(cost7, cost8, cost9, cost10, cost11)
def
test_projection
(
self
):
input
=
layer
.
data
(
name
=
'data'
,
type
=
data_type
.
dense_vector
(
784
))
word
=
layer
.
data
(
name
=
'word'
,
type
=
data_type
.
integer_value_sequence
(
10000
))
fc0
=
layer
.
fc
(
input
=
input
,
size
=
100
,
act
=
conf_helps
.
SigmoidActivation
())
fc1
=
layer
.
fc
(
input
=
input
,
size
=
200
,
act
=
conf_helps
.
SigmoidActivation
())
mixed0
=
layer
.
mixed
(
size
=
256
,
input
=
[
layer
.
full_matrix_projection
(
input
=
fc0
),
layer
.
full_matrix_projection
(
input
=
fc1
)
])
with
layer
.
mixed
(
size
=
200
)
as
mixed1
:
mixed1
+=
layer
.
full_matrix_projection
(
input
=
fc0
)
mixed1
+=
layer
.
identity_projection
(
input
=
fc1
)
table
=
layer
.
table_projection
(
input
=
word
)
emb0
=
layer
.
mixed
(
size
=
512
,
input
=
table
)
with
layer
.
mixed
(
size
=
512
)
as
emb1
:
emb1
+=
table
scale
=
layer
.
scaling_projection
(
input
=
fc0
)
scale0
=
layer
.
mixed
(
size
=
100
,
input
=
scale
)
with
layer
.
mixed
(
size
=
100
)
as
scale1
:
scale1
+=
scale
dotmul
=
layer
.
dotmul_projection
(
input
=
fc0
)
dotmul0
=
layer
.
mixed
(
size
=
100
,
input
=
dotmul
)
with
layer
.
mixed
(
size
=
100
)
as
dotmul1
:
dotmul1
+=
dotmul
context
=
layer
.
context_projection
(
input
=
fc0
,
context_len
=
5
)
context0
=
layer
.
mixed
(
size
=
100
,
input
=
context
)
with
layer
.
mixed
(
size
=
100
)
as
context1
:
context1
+=
context
conv
=
layer
.
conv_projection
(
input
=
input
,
filter_size
=
1
,
num_channels
=
1
,
num_filters
=
128
,
stride
=
1
,
padding
=
0
)
conv0
=
layer
.
mixed
(
input
=
conv
,
bias_attr
=
True
)
with
layer
.
mixed
(
bias_attr
=
True
)
as
conv1
:
conv1
+=
conv
print
layer
.
parse_network
(
mixed0
)
print
layer
.
parse_network
(
mixed1
)
print
layer
.
parse_network
(
emb0
)
print
layer
.
parse_network
(
emb1
)
print
layer
.
parse_network
(
scale0
)
print
layer
.
parse_network
(
scale1
)
print
layer
.
parse_network
(
dotmul0
)
print
layer
.
parse_network
(
dotmul1
)
print
layer
.
parse_network
(
conv0
)
print
layer
.
parse_network
(
conv1
)
def
test_operator
(
self
):
ipt0
=
layer
.
data
(
name
=
'data'
,
type
=
data_type
.
dense_vector
(
784
))
ipt1
=
layer
.
data
(
name
=
'word'
,
type
=
data_type
.
dense_vector
(
128
))
fc0
=
layer
.
fc
(
input
=
ipt0
,
size
=
100
,
act
=
conf_helps
.
SigmoidActivation
())
fc1
=
layer
.
fc
(
input
=
ipt0
,
size
=
100
,
act
=
conf_helps
.
SigmoidActivation
())
dotmul_op
=
layer
.
dotmul_operator
(
a
=
fc0
,
b
=
fc1
)
dotmul0
=
layer
.
mixed
(
input
=
dotmul_op
)
with
layer
.
mixed
()
as
dotmul1
:
dotmul1
+=
dotmul_op
conv
=
layer
.
conv_operator
(
img
=
ipt0
,
filter
=
ipt1
,
filter_size
=
1
,
num_channels
=
1
,
num_filters
=
128
,
stride
=
1
,
padding
=
0
)
conv0
=
layer
.
mixed
(
input
=
conv
)
with
layer
.
mixed
()
as
conv1
:
conv1
+=
conv
print
layer
.
parse_network
(
dotmul0
)
print
layer
.
parse_network
(
dotmul1
)
print
layer
.
parse_network
(
conv0
)
print
layer
.
parse_network
(
conv1
)
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录