Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
b6aca330
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b6aca330
编写于
12月 10, 2016
作者:
Y
Yu Yang
提交者:
GitHub
12月 10, 2016
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #764 from emailweixu/multiple_parse
Correctly handling multiple calls to parse_config()
上级
caadbe66
d87b2c11
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
61 addition
and
5 deletion
+61
-5
python/paddle/trainer/config_parser.py
python/paddle/trainer/config_parser.py
+14
-4
python/paddle/trainer_config_helpers/default_decorators.py
python/paddle/trainer_config_helpers/default_decorators.py
+14
-1
python/paddle/trainer_config_helpers/tests/CMakeLists.txt
python/paddle/trainer_config_helpers/tests/CMakeLists.txt
+5
-0
python/paddle/trainer_config_helpers/tests/test_reset_hook.py
...on/paddle/trainer_config_helpers/tests/test_reset_hook.py
+28
-0
未找到文件。
python/paddle/trainer/config_parser.py
浏览文件 @
b6aca330
...
@@ -141,9 +141,9 @@ def init_config_environment(
...
@@ -141,9 +141,9 @@ def init_config_environment(
g_add_submodel_suffix
=
False
,
g_add_submodel_suffix
=
False
,
# Whether current layer needs to pass the image height and width.
# Whether current layer needs to pass the image height and width.
# Default value is true, but if it encounters recurrent_layer_group,
# Default value is true, but if it encounters recurrent_layer_group,
# it will be false. The reason is that image is converted to be sequence,
# it will be false. The reason is that image is converted to be sequence,
# image height will be sequence length, and image width will be feature
# image height will be sequence length, and image width will be feature
# length of each timestep.
# length of each timestep.
g_pass_height_width
=
True
,
):
g_pass_height_width
=
True
,
):
...
@@ -1067,7 +1067,7 @@ def cnn_output_size(img_size, filter_size, padding, stride, caffe_mode):
...
@@ -1067,7 +1067,7 @@ def cnn_output_size(img_size, filter_size, padding, stride, caffe_mode):
return
1
+
int
(
math
.
ceil
(
output
))
return
1
+
int
(
math
.
ceil
(
output
))
#calcualte image_size based on output_size for de-convolution (ConvTransLayer).
#calcualte image_size based on output_size for de-convolution (ConvTransLayer).
#It is the reverse function of cnn_output_size
#It is the reverse function of cnn_output_size
def
cnn_image_size
(
output_size
,
filter_size
,
padding
,
stride
,
caffe_mode
):
def
cnn_image_size
(
output_size
,
filter_size
,
padding
,
stride
,
caffe_mode
):
img_size
=
(
output_size
-
1
)
*
stride
+
filter_size
-
2
*
padding
img_size
=
(
output_size
-
1
)
*
stride
+
filter_size
-
2
*
padding
...
@@ -3364,6 +3364,14 @@ def my_fatal(s):
...
@@ -3364,6 +3364,14 @@ def my_fatal(s):
logger
.
critical
(
s
)
logger
.
critical
(
s
)
raise
Exception
()
raise
Exception
()
_parse_config_hooks
=
set
()
def
register_parse_config_hook
(
f
):
"""
Register a hook function for parse_config. parse_config will invoke the hook
at the beginning of parse. This make it possible to reset global state for
for constructing the model.
"""
_parse_config_hooks
.
add
(
f
)
def
parse_config
(
config_file
,
config_arg_str
):
def
parse_config
(
config_file
,
config_arg_str
):
'''
'''
...
@@ -3371,6 +3379,8 @@ def parse_config(config_file, config_arg_str):
...
@@ -3371,6 +3379,8 @@ def parse_config(config_file, config_arg_str):
passed to config script as a dictionary CONFIG_ARGS
passed to config script as a dictionary CONFIG_ARGS
'''
'''
init_config_environment
()
init_config_environment
()
for
hook
in
_parse_config_hooks
:
hook
()
config_args
=
{}
config_args
=
{}
...
...
python/paddle/trainer_config_helpers/default_decorators.py
浏览文件 @
b6aca330
...
@@ -78,6 +78,17 @@ class DefaultNameFactory(object):
...
@@ -78,6 +78,17 @@ class DefaultNameFactory(object):
"""
"""
pass
pass
def
reset
(
self
):
self
.
__counter__
=
0
_name_factories
=
[]
def
reset_hook
():
for
factory
in
_name_factories
:
factory
.
reset
()
register_parse_config_hook
(
reset_hook
)
def
wrap_name_default
(
name_prefix
=
None
):
def
wrap_name_default
(
name_prefix
=
None
):
"""
"""
...
@@ -95,7 +106,9 @@ def wrap_name_default(name_prefix=None):
...
@@ -95,7 +106,9 @@ def wrap_name_default(name_prefix=None):
:return: a decorator to set default name
:return: a decorator to set default name
:rtype: callable
:rtype: callable
"""
"""
return
wrap_param_default
([
"name"
],
DefaultNameFactory
(
name_prefix
))
factory
=
DefaultNameFactory
(
name_prefix
)
_name_factories
.
append
(
factory
)
return
wrap_param_default
([
"name"
],
factory
)
def
wrap_param_attr_default
(
param_names
=
None
,
default_factory
=
None
):
def
wrap_param_attr_default
(
param_names
=
None
,
default_factory
=
None
):
...
...
python/paddle/trainer_config_helpers/tests/CMakeLists.txt
浏览文件 @
b6aca330
...
@@ -4,6 +4,11 @@ add_test(NAME layers_test
...
@@ -4,6 +4,11 @@ add_test(NAME layers_test
python
${
PROJ_ROOT
}
/python/paddle/trainer_config_helpers/tests/layers_test.py
python
${
PROJ_ROOT
}
/python/paddle/trainer_config_helpers/tests/layers_test.py
WORKING_DIRECTORY
${
PROJ_ROOT
}
/python/paddle
)
WORKING_DIRECTORY
${
PROJ_ROOT
}
/python/paddle
)
add_test
(
NAME test_reset_hook
COMMAND
${
PROJ_ROOT
}
/paddle/.set_python_path.sh -d
${
PROJ_ROOT
}
/python/
python
${
PROJ_ROOT
}
/python/paddle/trainer_config_helpers/tests/test_reset_hook.py
WORKING_DIRECTORY
${
PROJ_ROOT
}
/python/paddle
)
if
(
PROTOBUF_3
)
if
(
PROTOBUF_3
)
add_paddle_exe
(
protobuf_equal
add_paddle_exe
(
protobuf_equal
ProtobufEqualMain.cpp
)
ProtobufEqualMain.cpp
)
...
...
python/paddle/trainer_config_helpers/tests/test_reset_hook.py
0 → 100644
浏览文件 @
b6aca330
# Copyright PaddlePaddle contributors. 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.
import
unittest
from
paddle.trainer.config_parser
import
parse_config
class
TestParse
(
unittest
.
TestCase
):
def
test_parse
(
self
):
a
=
parse_config
(
'trainer_config_helpers/tests/layers_test_config.py'
,
''
)
b
=
parse_config
(
'trainer_config_helpers/tests/layers_test_config.py'
,
''
)
self
.
assertEqual
(
a
,
b
)
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录