Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
paddle_dbnet
Commits
eed41762
Commit
eed41762
authored
Jul 14, 2020
by
LDOUBLEV
Browse files
fix bug det train
parent
fcb2d43f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tools/program.py
tools/program.py
+3
-3
No files found.
tools/program.py
View file @
eed41762
...
...
@@ -256,15 +256,15 @@ def train_eval_det_run(config, exe, train_info_dict, eval_info_dict):
t2
=
time
.
time
()
train_batch_elapse
=
t2
-
t1
train_stats
.
update
(
stats
)
if
train_batch_id
>
start_eval_step
and
(
train_batch_id
-
start_eval_step
)
\
if
train_batch_id
>
0
and
train_batch_id
\
%
print_batch_step
==
0
:
logs
=
train_stats
.
log
()
strs
=
'epoch: {}, iter: {}, {}, time: {:.3f}'
.
format
(
epoch
,
train_batch_id
,
logs
,
train_batch_elapse
)
logger
.
info
(
strs
)
if
train_batch_id
>
0
and
\
train_batch_id
%
eval_batch_step
==
0
:
if
train_batch_id
>
start_eval_step
and
\
(
train_batch_id
-
start_eval_step
)
%
eval_batch_step
==
0
:
metrics
=
eval_det_run
(
exe
,
config
,
eval_info_dict
,
"eval"
)
hmean
=
metrics
[
'hmean'
]
if
hmean
>=
best_eval_hmean
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment