Skip to content

Commit

Permalink
remove console.log and unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasoignons committed Dec 17, 2024
1 parent 14918ef commit 7b90480
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions webapp/src/components/testing/TestSteps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ const confusionMatrix = computed<{ labels: Map<number, string>; matrix: { [key:
}
}
const size = labels.length;
// Initialize the confusion matrix
const matrix: { [key: string]: { [key: string]: number } } = {};
Expand Down Expand Up @@ -258,8 +257,6 @@ const confusionMatrix = computed<{ labels: Map<number, string>; matrix: { [key:
}
}
const mapLabels = Map(labels.map((label, index) => [index, label]));
console.log(mapLabels)
console.log(matrix)
return {labels : mapLabels, matrix : matrix};
})
Expand Down

0 comments on commit 7b90480

Please sign in to comment.