Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
PaddleRec
提交
c0ac3bf4
P
PaddleRec
项目概览
BaiXuePrincess
/
PaddleRec
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleRec
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleRec
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c0ac3bf4
编写于
6月 11, 2020
作者:
C
chengmo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix ci error code
上级
e55a86c8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
21 deletion
+17
-21
core/trainer.py
core/trainer.py
+16
-16
run.py
run.py
+1
-5
未找到文件。
core/trainer.py
浏览文件 @
c0ac3bf4
...
@@ -191,17 +191,10 @@ class Trainer(object):
...
@@ -191,17 +191,10 @@ class Trainer(object):
None : run a processor for this status
None : run a processor for this status
"""
"""
status
=
context
[
'status'
]
status
=
context
[
'status'
]
try
:
if
status
in
self
.
_status_processor
:
if
status
in
self
.
_status_processor
:
self
.
_status_processor
[
context
[
'status'
]](
context
)
self
.
_status_processor
[
context
[
'status'
]](
context
)
else
:
else
:
self
.
other_status_processor
(
context
)
self
.
other_status_processor
(
context
)
except
Exception
as
err
:
traceback
.
print_exc
()
print
(
'Catch Exception:%s'
%
str
(
err
))
sys
.
stdout
.
flush
()
self
.
_context
[
'is_exit'
]
=
self
.
handle_processor_exception
(
status
,
context
,
err
)
def
other_status_processor
(
self
,
context
):
def
other_status_processor
(
self
,
context
):
"""
"""
...
@@ -218,7 +211,7 @@ class Trainer(object):
...
@@ -218,7 +211,7 @@ class Trainer(object):
Return:
Return:
bool exit_app or not
bool exit_app or not
"""
"""
print
(
'Exit app. catch exception in precoss status:
%s, except:
%s'
%
print
(
'Exit app. catch exception in precoss status:
[%s], except:
%s'
%
(
context
[
'status'
],
str
(
exception
)))
(
context
[
'status'
],
str
(
exception
)))
return
True
return
True
...
@@ -233,10 +226,17 @@ class Trainer(object):
...
@@ -233,10 +226,17 @@ class Trainer(object):
keep running by statu context.
keep running by statu context.
"""
"""
while
True
:
while
True
:
self
.
reload_train_context
()
try
:
self
.
context_process
(
self
.
_context
)
self
.
reload_train_context
()
if
self
.
_context
[
'is_exit'
]:
self
.
context_process
(
self
.
_context
)
break
if
self
.
_context
[
'is_exit'
]:
break
except
Exception
as
err
:
traceback
.
print_exc
()
print
(
'Catch Exception:%s'
%
str
(
err
))
sys
.
stdout
.
flush
()
self
.
handle_processor_exception
(
status
,
context
,
err
)
sys
.
exit
(
type
(
err
).
__name__
)
def
user_define_engine
(
engine_yaml
):
def
user_define_engine
(
engine_yaml
):
...
...
run.py
浏览文件 @
c0ac3bf4
...
@@ -449,8 +449,4 @@ if __name__ == "__main__":
...
@@ -449,8 +449,4 @@ if __name__ == "__main__":
engine_registry
()
engine_registry
()
which_engine
=
get_engine
(
args
)
which_engine
=
get_engine
(
args
)
engine
=
which_engine
(
args
)
engine
=
which_engine
(
args
)
try
:
engine
.
run
()
engine
.
run
()
sys
.
exit
(
0
)
except
:
sys
.
exit
(
1
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录