Add quiet mode to b_main

Reduce output when --quiet is set, not showing fold info
This commit is contained in:
2023-10-17 21:51:53 +02:00
parent 6765552a7c
commit 2c2159f192
3 changed files with 26 additions and 15 deletions

View File

@@ -108,8 +108,8 @@ namespace platform {
Experiment& setHyperparameters(const json& hyperparameters) { this->hyperparameters = hyperparameters; return *this; }
string get_file_name();
void save(const string& path);
void cross_validation(const string& fileName);
void go(vector<string> filesToProcess);
void cross_validation(const string& fileName, bool quiet);
void go(vector<string> filesToProcess, bool quiet);
void show();
void report();
};