Begin report all models

This commit is contained in:
2023-09-22 18:13:32 +02:00
parent b30416364d
commit c8597a794e
3 changed files with 22 additions and 8 deletions

View File

@@ -9,9 +9,10 @@ namespace platform {
public:
explicit BestResults(const string& path, const string& score, const string& model) : path(path), score(score), model(model) {}
string build();
void report();
void reportSingle();
void reportAll();
private:
vector<string> loadFiles();
vector<string> loadResultFiles();
string bestResultFile();
json loadFile(const string& fileName);
string path;