Skip to content

Commit

Permalink
fix: correct dataPath for hyperparameters (#9971)
Browse files Browse the repository at this point in the history
  • Loading branch information
keita-determined authored Sep 23, 2024
1 parent 5c4be96 commit 8c4f7a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webui/react/src/pages/FlatRuns/FlatRuns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,11 @@ const FlatRuns: React.FC<Props> = ({ projectId, workspaceId, searchId }) => {
dataPath = currentColumn.column;
break;
case V1LocationType.HYPERPARAMETERS:
case V1LocationType.RUNHYPERPARAMETERS:
dataPath = `hyperparameters.${currentColumn.column.replace('hp.', '')}.val`;
break;
case V1LocationType.RUNHYPERPARAMETERS:
dataPath = `hyperparameters.${currentColumn.column.replace('hp.', '')}`;
break;
case V1LocationType.VALIDATIONS:
dataPath = `summaryMetrics.validationMetrics.${currentColumn.column.replace(
'validation.',
Expand Down

0 comments on commit 8c4f7a0

Please sign in to comment.