Create Base class for paged reports

This commit is contained in:
2024-03-17 01:22:50 +01:00
parent 106a36109e
commit fa4f47ff35
8 changed files with 78 additions and 53 deletions

View File

@@ -37,7 +37,7 @@ void list_results(argparse::ArgumentParser& program)
auto model = program.get<string>("model");
auto excel = program.get<bool>("excel");
auto report = platform::ResultsDatasetsConsole();
report.list_results(dataset, score, model);
report.report(dataset, score, model);
std::cout << report.getOutput();
if (excel) {
auto data = report.getData();