Add colors to confusion matrix and classification report

This commit is contained in:
2024-05-14 00:41:29 +02:00
parent 8d20545fd2
commit 99c9c6731f
5 changed files with 15 additions and 11 deletions

View File

@@ -16,7 +16,7 @@ namespace platform {
ReportConsole report(result.getJson());
report.show();
if (classification_report) {
std::cout << Colors::BLUE() << report.showClassificationReport() << Colors::RESET();
std::cout << report.showClassificationReport(Colors::BLUE());
}
}
void Experiment::show()