Begin CFS initialization

This commit is contained in:
2023-10-10 13:39:11 +02:00
parent f288bbd6fa
commit df9b4c48d2
4 changed files with 57 additions and 63 deletions

View File

@@ -53,13 +53,7 @@ namespace platform {
const string status = compareResult(r["dataset"].get<string>(), r["score"].get<double>());
cout << status;
cout << setw(12) << right << setprecision(6) << fixed << r["time"].get<double>() << "±" << setw(6) << setprecision(4) << fixed << r["time_std"].get<double>() << " ";
try {
cout << r["hyperparameters"].get<string>();
}
catch (...) {
//cout << r["hyperparameters"];
cout << "Arrggggghhhh!" << endl;
}
cout << r["hyperparameters"].dump();
cout << endl;
cout << flush;
lastResult = r;