diff --git a/src/reports/ReportConsole.cpp b/src/reports/ReportConsole.cpp index 55037ce..4cfbdc0 100644 --- a/src/reports/ReportConsole.cpp +++ b/src/reports/ReportConsole.cpp @@ -84,7 +84,7 @@ namespace platform { } std::vector header_labels = { " #", "Dataset", "Sampl.", "Feat.", "Cls", nodes_label, leaves_label, depth_label, "Score", "Time", "Hyperparameters" }; sheader << Colors::GREEN(); - std::vector header_lengths = { 3, maxDataset, 6, 5, 3, 9, 9, 9, 15, 20, maxHyper }; + std::vector header_lengths = { 3, maxDataset, 6, 6, 3, 13, 13, 13, 15, 20, maxHyper }; for (int i = 0; i < header_labels.size(); i++) { sheader << std::setw(header_lengths[i]) << std::left << header_labels[i] << " "; } @@ -108,11 +108,11 @@ namespace platform { line << std::setw(3) << std::right << index++ << " "; line << std::setw(maxDataset) << std::left << r["dataset"].get() << " "; line << std::setw(6) << std::right << r["samples"].get() << " "; - line << std::setw(5) << std::right << r["features"].get() << " "; + line << std::setw(6) << std::right << r["features"].get() << " "; line << std::setw(3) << std::right << r["classes"].get() << " "; - line << std::setw(9) << std::setprecision(2) << std::fixed << r["nodes"].get() << " "; - line << std::setw(9) << std::setprecision(2) << std::fixed << r["leaves"].get() << " "; - line << std::setw(9) << std::setprecision(2) << std::fixed << r["depth"].get() << " "; + line << std::setw(13) << std::setprecision(2) << std::fixed << r["nodes"].get() << " "; + line << std::setw(13) << std::setprecision(2) << std::fixed << r["leaves"].get() << " "; + line << std::setw(13) << std::setprecision(2) << std::fixed << r["depth"].get() << " "; line << std::setw(8) << std::right << std::setprecision(6) << std::fixed << r["score"].get() << "±" << std::setw(6) << std::setprecision(4) << std::fixed << r["score_std"].get(); const std::string status = compareResult(r["dataset"].get(), r["score"].get()); line << status;