Add excel report in benchmark

This commit is contained in:
2021-09-25 23:30:32 +02:00
parent cbcdae3a30
commit 008982e9fa
5 changed files with 117 additions and 29 deletions

View File

@@ -2,6 +2,7 @@ import argparse
import numpy as np
from Experiments import Datasets
from Results import Report, Excel, SQL, ReportBest
from Utils import Files
"""Build report on screen of a result file, optionally generate excel and sql
file, and can compare results of report with best results obtained by model
@@ -76,6 +77,7 @@ else:
if excel:
excel = Excel(file, compare)
excel.report()
Files.open(excel.get_file_name())
if sql:
sql = SQL(file)
sql.report()