From 9a26baec479e0baf95b85255327f4a3b423d2e3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Sun, 25 Feb 2024 23:07:20 +0100 Subject: [PATCH] fix meaning message format in b_main --- src/modules/Experiment.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/Experiment.cc b/src/modules/Experiment.cc index a3e555f..74dd253 100644 --- a/src/modules/Experiment.cc +++ b/src/modules/Experiment.cc @@ -28,7 +28,7 @@ namespace platform { std::cout << Colors::MAGENTA() << "*** Starting experiment: " << result.getTitle() << " ***" << Colors::RESET() << std::endl << std::endl; if (!quiet) { std::cout << Colors::GREEN() << " Status Meaning" << std::endl; - std::cout << " ------ -----------------------------" << Colors::RESET() << std::endl; + std::cout << " ------ --------------------------------" << Colors::RESET() << std::endl; std::cout << " ( " << Colors::GREEN() << "a" << Colors::RESET() << " ) Fitting model with train dataset" << std::endl; std::cout << " ( " << Colors::GREEN() << "b" << Colors::RESET() << " ) Scoring train dataset" << std::endl; std::cout << " ( " << Colors::GREEN() << "c" << Colors::RESET() << " ) Scoring test dataset" << std::endl << std::endl;