Skip to content

Commit

Permalink
fix: correct dataPath for hyperparameters
Browse files Browse the repository at this point in the history
  • Loading branch information
keita-determined committed Sep 23, 2024
1 parent f758303 commit 86d8ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/react/src/pages/FlatRuns/FlatRuns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ const FlatRuns: React.FC<Props> = ({ projectId, workspaceId, searchId }) => {
break;
case V1LocationType.HYPERPARAMETERS:
case V1LocationType.RUNHYPERPARAMETERS:
dataPath = `hyperparameters.${currentColumn.column.replace('hp.', '')}.val`;
dataPath = `hyperparameters.${currentColumn.column.replace('hp.', '')}`;
break;
case V1LocationType.VALIDATIONS:
dataPath = `summaryMetrics.validationMetrics.${currentColumn.column.replace(
Expand Down

0 comments on commit 86d8ac5

Please sign in to comment.