You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -80,14 +80,24 @@ public void Report(RunDetail<BinaryClassificationMetrics> iterationResult)
80
80
iterationIndex++;
81
81
UpdateBestResult(iterationResult);
82
82
if(progressBar!=null)
83
-
progressBar.Message=$"Best {this.optimizationMetric}: {GetScore(bestResult):F4}, Best Algorithm: {bestResult?.TrainerName}, Last Algorithm: {iterationResult?.TrainerName}";
return$"Best Accuracy: {GetScore(bestResult)*100:F2}%, Best Algorithm: {bestResult?.TrainerName}, Last Algorithm: {iterationResult?.TrainerName}";
96
+
}
97
+
98
+
return$"Best {this.optimizationMetric}: {GetScore(bestResult):F4}, Best Algorithm: {bestResult?.TrainerName}, Last Algorithm: {iterationResult?.TrainerName}";
@@ -120,7 +130,7 @@ public void Report(RunDetail<MulticlassClassificationMetrics> iterationResult)
120
130
iterationIndex++;
121
131
UpdateBestResult(iterationResult);
122
132
if(progressBar!=null)
123
-
progressBar.Message=$"Best {this.optimizationMetric}: {GetScore(bestResult):F4}, Best Algorithm: {bestResult?.TrainerName}, Last Algorithm: {iterationResult?.TrainerName}";
return$"Best Accuracy: {GetScore(bestResult)*100:F2}%, Best Algorithm: {bestResult?.TrainerName}, Last Algorithm: {iterationResult?.TrainerName}";
154
+
}
155
+
156
+
return$"Best {this.optimizationMetric}: {GetScore(bestResult):F4}, Best Algorithm: {bestResult?.TrainerName}, Last Algorithm: {iterationResult?.TrainerName}";
0 commit comments