Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
Sciencebeam Gym
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sciencebeam
Sciencebeam Gym
Commits
f682ff2e
Commit
f682ff2e
authored
7 years ago
by
Daniel Ecer
Browse files
Options
Downloads
Patches
Plain Diff
run actual evaluation as part of the training loop at configured intervals
parent
719e6936
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sciencebeam_gym/trainer/task.py
+15
-20
15 additions, 20 deletions
sciencebeam_gym/trainer/task.py
with
15 additions
and
20 deletions
sciencebeam_gym/trainer/task.py
+
15
−
20
View file @
f682ff2e
...
...
@@ -206,21 +206,22 @@ class Trainer(object):
last_run
=
start_time
)
eval_scheduler
=
SimpleStepScheduler
(
lambda
:
self
.
eval
(),
min_interval
=
save_interval
,
min_freq
=
self
.
args
.
save_freq
,
step
=
global_step
,
last_run
=
start_time
)
schedulers
=
[
log_scheduler
,
save_scheduler
,
eval_train_scheduler
,
eval_scheduler
eval_train_scheduler
]
if
is_master
:
eval_scheduler
=
SimpleStepScheduler
(
lambda
:
self
.
eval
(
global_step
=
global_step
),
min_interval
=
save_interval
,
min_freq
=
self
.
args
.
save_freq
,
step
=
global_step
,
last_run
=
start_time
)
schedulers
=
schedulers
+
[
eval_scheduler
]
summary_op
=
sv
.
summary_op
if
tensors
.
summary
is
None
else
tensors
.
summary
if
summary_op
is
not
None
:
schedulers
.
append
(
SimpleStepScheduler
(
...
...
@@ -270,11 +271,6 @@ class Trainer(object):
# Ask for all the services to stop.
sv
.
stop
()
if
is_master
:
logging
.
info
(
'
evaluate...
'
)
self
.
eval
()
logging
.
info
(
'
evaluate done
'
)
def
eval_train
(
self
,
session
,
tensors
,
global_step
):
"""
Runs evaluation loop.
"""
logging
.
info
(
...
...
@@ -288,13 +284,12 @@ class Trainer(object):
)
)
def
eval
(
self
):
def
eval
(
self
,
global_step
=
None
):
"""
Runs evaluation loop.
"""
logging
.
info
(
'
Eval:
\n
- on train set %s
\n
-- on eval set %s
'
,
self
.
model
.
format_metric_values
(
self
.
train_evaluator
.
evaluate
()),
None
# self.model.format_metric_values(self.evaluator.evaluate())
'
Eval, step %s:
\n
- on eval set %s
'
,
global_step
,
self
.
model
.
format_metric_values
(
self
.
evaluator
.
evaluate
())
)
def
copy_data_to_tmp
(
input_files
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment