Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
Advitya17 committed Oct 2, 2023
1 parent 8f802f3 commit a3f6387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/core-ui/src/lib/DatasetCohort.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class DatasetCohort {
dataDict[index][DatasetCohortColumns.PredictedY] = val;
}
});
this.dataset.object_detection_labels?.forEach((val, index) => {
this.dataset.objectDetectionLabels?.forEach((val, index) => {
dataDict[index][DatasetCohortColumns.ObjectDetectionIncorrect] =
val.incorrect;
dataDict[index][DatasetCohortColumns.ObjectDetectionCorrect] =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function buildInitialModelAssessmentContext(
featureMetaData: props.dataset.feature_metadata,
localExplanations,
metadata: modelMetadata,
objectDetectionLabels: props.dataset.object_detection_labels,
objectDetectionLabels: props.dataset.objectDetectionLabels,
predictedProbabilities: props.dataset.probability_y,
predictedY: props.dataset.predicted_y,
targetColumn: props.dataset.target_column,
Expand Down

0 comments on commit a3f6387

Please sign in to comment.