Add report output to main

This commit is contained in:
2023-08-05 20:29:05 +02:00
parent 7f45495837
commit 506ef34c6f
7 changed files with 100 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
#include "Experiment.h"
#include "Datasets.h"
#include "Models.h"
#include "Report.h"
namespace platform {
using json = nlohmann::json;
@@ -86,6 +87,13 @@ namespace platform {
file.close();
}
void Experiment::report()
{
json data = build_json();
Report report(data);
report.show();
}
void Experiment::show()
{
json data = build_json();