Skip to content

Commit

Permalink
fix: use run checkpoint data instead of experiment for run table filt…
Browse files Browse the repository at this point in the history
…er (#9767)
  • Loading branch information
AmanuelAaron authored Jul 30, 2024
1 parent 30d6e79 commit 935799d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/internal/experiment_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ func runColumnNameToSQL(columnName string) (string, error) {
"forkedFrom": "e.parent_id",
"resourcePool": "e.config->'resources'->>'resource_pool'",
"projectId": "r.project_id",
"checkpointSize": "e.checkpoint_size",
"checkpointCount": "e.checkpoint_count",
"checkpointSize": "r.checkpoint_size",
"checkpointCount": "r.checkpoint_count",
"searcherMetricsVal": "r.searcher_metric_value",
"externalExperimentId": "e.external_experiment_id",
"externalRunId": "r.external_run_id",
Expand Down

0 comments on commit 935799d

Please sign in to comment.