Skip to content

Commit

Permalink
fix: include trial_id in get_checkpoints queries (#987)
Browse files Browse the repository at this point in the history
  • Loading branch information
stoksc authored Aug 3, 2020
1 parent b9fbbda commit 2d7d0c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions master/static/srv/get_checkpoints_for_experiment.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ SELECT
c.uuid AS uuid,
e.config AS experiment_config,
e.id AS experiment_id,
t.id AS trial_id,
t.hparams as hparams,
s.id * (e.config->>'batches_per_step')::int AS batch_number,
s.start_time AS start_time,
Expand Down
1 change: 1 addition & 0 deletions master/static/srv/get_checkpoints_for_trial.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ SELECT
c.uuid AS uuid,
e.config AS experiment_config,
e.id AS experiment_id,
t.id AS trial_id,
t.hparams as hparams,
s.id * (e.config->>'batches_per_step')::int AS batch_number,
s.start_time AS start_time,
Expand Down

0 comments on commit 2d7d0c3

Please sign in to comment.