diff --git a/src/Platform/Colors.h b/src/Platform/Colors.h index 7ab2e08..c6c8ef3 100644 --- a/src/Platform/Colors.h +++ b/src/Platform/Colors.h @@ -9,6 +9,7 @@ public: static std::string YELLOW() { return "\033[1;33m"; } static std::string RED() { return "\033[1;31m"; } static std::string WHITE() { return "\033[1;37m"; } + static std::string IBLUE() { return "\033[0;94m"; } static std::string RESET() { return "\033[0m"; } }; #endif // COLORS_H \ No newline at end of file diff --git a/src/Platform/GridSearch.cc b/src/Platform/GridSearch.cc index 49b825b..35b171e 100644 --- a/src/Platform/GridSearch.cc +++ b/src/Platform/GridSearch.cc @@ -88,8 +88,9 @@ namespace platform { // for dataset // for seed // for fold // for hyperparameters // for nested fold tie(bestScore, bestHyperparameters) = processFileNested(dataset, datasets, combinations); if (!config.quiet) { - std::cout << "end." << " Score: " << setw(9) << setprecision(7) << fixed - << bestScore << " [" << bestHyperparameters.dump() << "]" << std::endl; + std::cout << "end." << " Score: " << Colors::IBLUE() << setw(9) << setprecision(7) << fixed + << bestScore << Colors::BLUE() << " [" << bestHyperparameters.dump() << "]" + << Colors::RESET() << ::endl; } json result = { { "score", bestScore },