This commit is contained in:
tongy-msft 2024-05-20 19:08:09 -07:00 коммит произвёл GitHub
Родитель 12a678edc3
Коммит 6898acd095
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -69,7 +69,7 @@ export function generateCohortsStatsTable(
let countMinCohortName = "";
let countMaxCohortName = "";
cohorts.forEach((errorCohort, cohortIndex) => {
const labeledStat = labeledStatistics[cohortIndex].find(
const labeledStat = labeledStatistics[cohortIndex]?.find(
(labeledStat) => labeledStat.key === TotalCohortSamples
);
if (labeledStat) {
@ -104,7 +104,7 @@ export function generateCohortsStatsTable(
let metricMax = Number.MIN_SAFE_INTEGER;
let metricMaxCohortName = "";
cohorts.forEach((errorCohort, cohortIndex) => {
const labeledStat = labeledStatistics[cohortIndex].find(
const labeledStat = labeledStatistics[cohortIndex]?.find(
(labeledStat) => labeledStat.key === metricOption.key
);
if (labeledStat) {
@ -134,7 +134,7 @@ export function generateCohortsStatsTable(
};
fairnessStats.push(metricFairnessStats);
cohorts.forEach((_errorCohort, cohortIndex) => {
const labeledStat = labeledStatistics[cohortIndex].find(
const labeledStat = labeledStatistics[cohortIndex]?.find(
(labeledStat) => labeledStat.key === metricOption.key
);
if (labeledStat && !Number.isNaN(labeledStat.stat)) {