Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
b80590d7
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看板
提交
b80590d7
编写于
7月 25, 2017
作者:
Y
Yu Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove test_plain_net
上级
0467cd2d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
7 addition
and
35 deletion
+7
-35
python/paddle/v2/framework/tests/CMakeLists.txt
python/paddle/v2/framework/tests/CMakeLists.txt
+1
-1
python/paddle/v2/framework/tests/test_net.py
python/paddle/v2/framework/tests/test_net.py
+6
-4
python/paddle/v2/framework/tests/test_plain_net.py
python/paddle/v2/framework/tests/test_plain_net.py
+0
-30
未找到文件。
python/paddle/v2/framework/tests/CMakeLists.txt
浏览文件 @
b80590d7
...
@@ -3,7 +3,7 @@ add_python_test(test_framework
...
@@ -3,7 +3,7 @@ add_python_test(test_framework
test_scope.py
test_scope.py
test_default_scope_funcs.py
test_default_scope_funcs.py
test_op_creation_methods.py
test_op_creation_methods.py
test_
plain_
net.py
test_net.py
test_tensor.py
test_tensor.py
test_fc_op.py
test_fc_op.py
test_add_two_op.py
test_add_two_op.py
...
...
python/paddle/v2/framework/tests/test_net.py
浏览文件 @
b80590d7
...
@@ -14,14 +14,16 @@ class TestNet(unittest.TestCase):
...
@@ -14,14 +14,16 @@ class TestNet(unittest.TestCase):
net2
.
complete_add_op
(
True
)
net2
.
complete_add_op
(
True
)
net
.
add_op
(
net2
)
net
.
add_op
(
net2
)
net
.
complete_add_op
(
True
)
net
.
complete_add_op
(
True
)
expected
=
'''naive_net:
expected
=
'''
Op(plain_net), inputs:(@EMPTY@, X, Y, w), outputs:(@TEMP@fc@0, Out, fc.out).
Op(add_two), inputs:(X, Y), outputs:(Out).
Op(add_two), inputs:(X, Y), outputs:(Out).
naive_net:
Op(plain_net), inputs:(@EMPTY@, X, w), outputs:(@TEMP@fc@0, fc.out).
fc:
Op(fc), inputs:(X, w, @EMPTY@), outputs:(fc.out, @TEMP@fc@0).
Op(mul), inputs:(X, w), outputs:(@TEMP@fc@0).
Op(mul), inputs:(X, w), outputs:(@TEMP@fc@0).
Op(sigmoid), inputs:(@TEMP@fc@0), outputs:(fc.out).
Op(sigmoid), inputs:(@TEMP@fc@0), outputs:(fc.out).
'''
'''
self
.
assertEqual
(
expected
,
str
(
net
))
self
.
assertEqual
(
expected
,
"
\n
"
+
str
(
net
))
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
python/paddle/v2/framework/tests/test_plain_net.py
已删除
100644 → 0
浏览文件 @
0467cd2d
import
paddle.v2.framework.core
as
core
from
paddle.v2.framework.create_op_creation_methods
import
op_creations
import
unittest
class
TestNet
(
unittest
.
TestCase
):
def
test_net_all
(
self
):
net
=
core
.
PlainNet
.
create
()
op1
=
op_creations
.
add_two
(
X
=
"X"
,
Y
=
"Y"
,
Out
=
"Out"
)
net
.
add_op
(
op1
)
net2
=
core
.
PlainNet
.
create
()
net2
.
add_op
(
op_creations
.
fc
(
X
=
"X"
,
W
=
"w"
,
Y
=
"fc.out"
))
net2
.
complete_add_op
(
True
)
net
.
add_op
(
net2
)
net
.
complete_add_op
(
True
)
expected
=
'''
Op(plain_net), inputs:(@EMPTY@, X, Y, w), outputs:(@TEMP@fc@0, Out, fc.out).
Op(add_two), inputs:(X, Y), outputs:(Out).
Op(plain_net), inputs:(@EMPTY@, X, w), outputs:(@TEMP@fc@0, fc.out).
Op(fc), inputs:(X, w, @EMPTY@), outputs:(fc.out, @TEMP@fc@0).
Op(mul), inputs:(X, w), outputs:(@TEMP@fc@0).
Op(sigmoid), inputs:(@TEMP@fc@0), outputs:(fc.out).
'''
self
.
assertEqual
(
expected
,
"
\n
"
+
str
(
net
))
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录