mirror of
https://github.com/Doctorado-ML/benchmark.git
synced 2025-08-16 07:55:54 +00:00
Merge pull request #7 from Doctorado-ML:add_excel_belist
Add excel output of reports of be_list
This commit is contained in:
@@ -8,7 +8,7 @@ from sklearn.ensemble import (
|
|||||||
)
|
)
|
||||||
from sklearn.svm import SVC
|
from sklearn.svm import SVC
|
||||||
from stree import Stree
|
from stree import Stree
|
||||||
from bayesclass import TAN, KDB
|
from bayesclass import TAN, KDB, AODE
|
||||||
from wodt import Wodt
|
from wodt import Wodt
|
||||||
from odte import Odte
|
from odte import Odte
|
||||||
from xgboost import XGBClassifier
|
from xgboost import XGBClassifier
|
||||||
@@ -23,6 +23,7 @@ class Models:
|
|||||||
"STree": Stree(random_state=random_state),
|
"STree": Stree(random_state=random_state),
|
||||||
"TAN": TAN(random_state=random_state),
|
"TAN": TAN(random_state=random_state),
|
||||||
"KDB": KDB(k=3),
|
"KDB": KDB(k=3),
|
||||||
|
"AODE": AODE(random_state=random_state),
|
||||||
"Cart": DecisionTreeClassifier(random_state=random_state),
|
"Cart": DecisionTreeClassifier(random_state=random_state),
|
||||||
"ExtraTree": ExtraTreeClassifier(random_state=random_state),
|
"ExtraTree": ExtraTreeClassifier(random_state=random_state),
|
||||||
"Wodt": Wodt(random_state=random_state),
|
"Wodt": Wodt(random_state=random_state),
|
||||||
|
@@ -7,6 +7,7 @@ import abc
|
|||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import xlsxwriter
|
import xlsxwriter
|
||||||
|
from xlsxwriter.exceptions import DuplicateWorksheetName
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from .Experiments import BestResults
|
from .Experiments import BestResults
|
||||||
from .Datasets import Datasets
|
from .Datasets import Datasets
|
||||||
@@ -21,6 +22,10 @@ from .Utils import (
|
|||||||
from ._version import __version__
|
from ._version import __version__
|
||||||
|
|
||||||
|
|
||||||
|
def get_input(is_test):
|
||||||
|
return "test" if is_test else input()
|
||||||
|
|
||||||
|
|
||||||
class BestResultsEver:
|
class BestResultsEver:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.data = {}
|
self.data = {}
|
||||||
@@ -125,7 +130,7 @@ class BaseReport(abc.ABC):
|
|||||||
|
|
||||||
|
|
||||||
class Report(BaseReport):
|
class Report(BaseReport):
|
||||||
header_lengths = [30, 6, 5, 3, 7, 7, 7, 15, 16, 15]
|
header_lengths = [30, 6, 5, 3, 7, 7, 7, 15, 17, 15]
|
||||||
header_cols = [
|
header_cols = [
|
||||||
"Dataset",
|
"Dataset",
|
||||||
"Sampl.",
|
"Sampl.",
|
||||||
@@ -184,7 +189,7 @@ class Report(BaseReport):
|
|||||||
)
|
)
|
||||||
i += 1
|
i += 1
|
||||||
print(
|
print(
|
||||||
f"{result['time']:9.6f}±{result['time_std']:6.4f} ",
|
f"{result['time']:10.6f}±{result['time_std']:6.4f} ",
|
||||||
end="",
|
end="",
|
||||||
)
|
)
|
||||||
i += 1
|
i += 1
|
||||||
@@ -328,7 +333,17 @@ class Excel(BaseReport):
|
|||||||
else:
|
else:
|
||||||
self.book = book
|
self.book = book
|
||||||
self.close = False
|
self.close = False
|
||||||
self.sheet = self.book.add_worksheet(self.data["model"])
|
suffix = ""
|
||||||
|
num = 1
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
self.sheet = self.book.add_worksheet(
|
||||||
|
self.data["model"] + suffix
|
||||||
|
)
|
||||||
|
break
|
||||||
|
except DuplicateWorksheetName:
|
||||||
|
num += 1
|
||||||
|
suffix = str(num)
|
||||||
self.max_hyper_width = 0
|
self.max_hyper_width = 0
|
||||||
self.col_hyperparams = 0
|
self.col_hyperparams = 0
|
||||||
|
|
||||||
@@ -1341,6 +1356,7 @@ class Summary:
|
|||||||
def __init__(self, hidden=False) -> None:
|
def __init__(self, hidden=False) -> None:
|
||||||
self.results = Files().get_all_results(hidden=hidden)
|
self.results = Files().get_all_results(hidden=hidden)
|
||||||
self.data = []
|
self.data = []
|
||||||
|
self.data_filtered = []
|
||||||
self.datasets = {}
|
self.datasets = {}
|
||||||
self.models = set()
|
self.models = set()
|
||||||
self.hidden = hidden
|
self.hidden = hidden
|
||||||
@@ -1417,13 +1433,14 @@ class Summary:
|
|||||||
number=0,
|
number=0,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Print the list of results"""
|
"""Print the list of results"""
|
||||||
data = self.get_results_criteria(
|
if self.data_filtered == []:
|
||||||
|
self.data_filtered = self.get_results_criteria(
|
||||||
score, model, input_data, sort_key, number
|
score, model, input_data, sort_key, number
|
||||||
)
|
)
|
||||||
if data == []:
|
if self.data_filtered == []:
|
||||||
raise ValueError(NO_RESULTS)
|
raise ValueError(NO_RESULTS)
|
||||||
max_file = max(len(x["file"]) for x in data)
|
max_file = max(len(x["file"]) for x in self.data_filtered)
|
||||||
max_title = max(len(x["title"]) for x in data)
|
max_title = max(len(x["title"]) for x in self.data_filtered)
|
||||||
if self.hidden:
|
if self.hidden:
|
||||||
color1 = TextColor.GREEN
|
color1 = TextColor.GREEN
|
||||||
color2 = TextColor.YELLOW
|
color2 = TextColor.YELLOW
|
||||||
@@ -1432,10 +1449,11 @@ class Summary:
|
|||||||
color2 = TextColor.LINE2
|
color2 = TextColor.LINE2
|
||||||
print(color1, end="")
|
print(color1, end="")
|
||||||
print(
|
print(
|
||||||
f"{'Date':10s} {'File':{max_file}s} {'Score':8s} {'Time(h)':7s} "
|
f" # {'Date':10s} {'File':{max_file}s} {'Score':8s} "
|
||||||
f"{'Title':s}"
|
f"{'Time(h)':7s} {'Title':s}"
|
||||||
)
|
)
|
||||||
print(
|
print(
|
||||||
|
"===",
|
||||||
"=" * 10
|
"=" * 10
|
||||||
+ " "
|
+ " "
|
||||||
+ "=" * max_file
|
+ "=" * max_file
|
||||||
@@ -1444,21 +1462,60 @@ class Summary:
|
|||||||
+ " "
|
+ " "
|
||||||
+ "=" * 7
|
+ "=" * 7
|
||||||
+ " "
|
+ " "
|
||||||
+ "=" * max_title
|
+ "=" * max_title,
|
||||||
)
|
)
|
||||||
print(
|
print(
|
||||||
"\n".join(
|
"\n".join(
|
||||||
[
|
[
|
||||||
(color2 if n % 2 == 0 else color1)
|
(color2 if n % 2 == 0 else color1) + f"{n:3d} "
|
||||||
+ f"{x['date']} {x['file']:{max_file}s} "
|
f"{x['date']} {x['file']:{max_file}s} "
|
||||||
f"{x['metric']:8.5f} "
|
f"{x['metric']:8.5f} "
|
||||||
f"{x['duration']/3600:7.3f} "
|
f"{x['duration']/3600:7.3f} "
|
||||||
f"{x['title']}"
|
f"{x['title']}"
|
||||||
for n, x in enumerate(data)
|
for n, x in enumerate(self.data_filtered)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def manage_results(self, excel, is_test):
|
||||||
|
"""Manage results showed in the summary
|
||||||
|
return True if excel file is created False otherwise
|
||||||
|
"""
|
||||||
|
num = ""
|
||||||
|
book = None
|
||||||
|
while True:
|
||||||
|
print(
|
||||||
|
"Which result do you want to report? (q to quit, r to list "
|
||||||
|
"again, number to report): ",
|
||||||
|
end="",
|
||||||
|
)
|
||||||
|
num = get_input(is_test)
|
||||||
|
if num == "r":
|
||||||
|
self.list_results()
|
||||||
|
if num == "q":
|
||||||
|
if excel:
|
||||||
|
if book is not None:
|
||||||
|
book.close()
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
if num.isdigit() and int(num) < len(self.data) and int(num) >= 0:
|
||||||
|
rep = Report(self.data_filtered[int(num)]["file"], self.hidden)
|
||||||
|
rep.report()
|
||||||
|
if excel and not self.hidden:
|
||||||
|
if book is None:
|
||||||
|
file_name = Files.be_list_excel
|
||||||
|
book = xlsxwriter.Workbook(
|
||||||
|
file_name, {"nan_inf_to_errors": True}
|
||||||
|
)
|
||||||
|
excel = Excel(
|
||||||
|
file_name=self.data_filtered[int(num)]["file"],
|
||||||
|
book=book,
|
||||||
|
)
|
||||||
|
excel.report()
|
||||||
|
else:
|
||||||
|
if num not in ("r", "q"):
|
||||||
|
print(f"Invalid option {num}. Try again!")
|
||||||
|
|
||||||
def show_result(self, data: dict, title: str = "") -> None:
|
def show_result(self, data: dict, title: str = "") -> None:
|
||||||
def whites(n: int) -> str:
|
def whites(n: int) -> str:
|
||||||
return " " * n + color1 + "*"
|
return " " * n + color1 + "*"
|
||||||
|
@@ -28,6 +28,7 @@ class Files:
|
|||||||
benchmark_r = "benchmark.r"
|
benchmark_r = "benchmark.r"
|
||||||
dot_env = ".env"
|
dot_env = ".env"
|
||||||
datasets_report_excel = "ReportDatasets.xlsx"
|
datasets_report_excel = "ReportDatasets.xlsx"
|
||||||
|
be_list_excel = "some_results.xlsx"
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def exreport_output(score):
|
def exreport_output(score):
|
||||||
|
@@ -1 +1 @@
|
|||||||
__version__ = "0.3.0"
|
__version__ = "0.4.0"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#! /usr/bin/env python
|
#! /usr/bin/env python
|
||||||
import os
|
import os
|
||||||
from benchmark.Results import Summary
|
from benchmark.Results import Summary
|
||||||
from benchmark.Utils import Folders
|
from benchmark.Utils import Folders, Files
|
||||||
from benchmark.Arguments import Arguments
|
from benchmark.Arguments import Arguments
|
||||||
|
|
||||||
"""List experiments of a model
|
"""List experiments of a model
|
||||||
@@ -12,6 +12,7 @@ def main(args_test=None):
|
|||||||
arguments = Arguments()
|
arguments = Arguments()
|
||||||
arguments.xset("number").xset("model", required=False).xset("key")
|
arguments.xset("number").xset("model", required=False).xset("key")
|
||||||
arguments.xset("hidden").xset("nan").xset("score", required=False)
|
arguments.xset("hidden").xset("nan").xset("score", required=False)
|
||||||
|
arguments.xset("excel")
|
||||||
args = arguments.parse(args_test)
|
args = arguments.parse(args_test)
|
||||||
data = Summary(hidden=args.hidden)
|
data = Summary(hidden=args.hidden)
|
||||||
data.acquire()
|
data.acquire()
|
||||||
@@ -22,9 +23,15 @@ def main(args_test=None):
|
|||||||
sort_key=args.key,
|
sort_key=args.key,
|
||||||
number=args.number,
|
number=args.number,
|
||||||
)
|
)
|
||||||
|
is_test = args_test is not None
|
||||||
|
if not args.nan:
|
||||||
|
excel_generated = data.manage_results(args.excel, is_test)
|
||||||
|
if args.excel and excel_generated:
|
||||||
|
print(f"Generated file: {Files.be_list_excel}")
|
||||||
|
Files.open(Files.be_list_excel, is_test)
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
print(e)
|
print(e)
|
||||||
else:
|
return
|
||||||
if args.nan:
|
if args.nan:
|
||||||
results_nan = []
|
results_nan = []
|
||||||
results = data.get_results_criteria(
|
results = data.get_results_criteria(
|
||||||
@@ -44,6 +51,7 @@ def main(args_test=None):
|
|||||||
+ " Results with nan moved to hidden "
|
+ " Results with nan moved to hidden "
|
||||||
+ "*" * 30
|
+ "*" * 30
|
||||||
)
|
)
|
||||||
|
data.data_filtered = []
|
||||||
data.list_results(input_data=results_nan)
|
data.list_results(input_data=results_nan)
|
||||||
for result in results_nan:
|
for result in results_nan:
|
||||||
name = result["file"]
|
name = result["file"]
|
||||||
|
1
benchmark/tests/.gitignore
vendored
1
benchmark/tests/.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
ReportDatasets.xlsx
|
ReportDatasets.xlsx
|
||||||
|
some_results.xlsx
|
||||||
|
@@ -2,11 +2,14 @@ import os
|
|||||||
from io import StringIO
|
from io import StringIO
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
from .TestBase import TestBase
|
from .TestBase import TestBase
|
||||||
from ..Results import Report, BaseReport, ReportBest, ReportDatasets
|
from ..Results import Report, BaseReport, ReportBest, ReportDatasets, get_input
|
||||||
from ..Utils import Symbols
|
from ..Utils import Symbols
|
||||||
|
|
||||||
|
|
||||||
class ReportTest(TestBase):
|
class ReportTest(TestBase):
|
||||||
|
def test_get_input(self):
|
||||||
|
self.assertEqual(get_input(is_test=True), "test")
|
||||||
|
|
||||||
def test_BaseReport(self):
|
def test_BaseReport(self):
|
||||||
with patch.multiple(BaseReport, __abstractmethods__=set()):
|
with patch.multiple(BaseReport, __abstractmethods__=set()):
|
||||||
file_name = os.path.join(
|
file_name = os.path.join(
|
||||||
|
@@ -4,6 +4,10 @@ from ...Utils import Folders, Files
|
|||||||
from ..TestBase import TestBase
|
from ..TestBase import TestBase
|
||||||
|
|
||||||
|
|
||||||
|
def get_test():
|
||||||
|
return "hola"
|
||||||
|
|
||||||
|
|
||||||
class BeGridTest(TestBase):
|
class BeGridTest(TestBase):
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.prepare_scripts_env()
|
self.prepare_scripts_env()
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
import os
|
import os
|
||||||
from ...Utils import Folders, NO_RESULTS
|
from unittest.mock import patch
|
||||||
|
from openpyxl import load_workbook
|
||||||
|
from ...Utils import Folders, Files, NO_RESULTS
|
||||||
from ..TestBase import TestBase
|
from ..TestBase import TestBase
|
||||||
|
|
||||||
|
|
||||||
@@ -7,12 +9,64 @@ class BeListTest(TestBase):
|
|||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.prepare_scripts_env()
|
self.prepare_scripts_env()
|
||||||
|
|
||||||
def test_be_list(self):
|
@patch("benchmark.Results.get_input", return_value="q")
|
||||||
|
def test_be_list(self, input_data):
|
||||||
stdout, stderr = self.execute_script("be_list", ["-m", "STree"])
|
stdout, stderr = self.execute_script("be_list", ["-m", "STree"])
|
||||||
self.assertEqual(stderr.getvalue(), "")
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
self.check_output_file(stdout, "summary_list_model")
|
self.check_output_file(stdout, "be_list_model")
|
||||||
|
|
||||||
def test_be_list_no_data(self):
|
@patch("benchmark.Results.get_input", side_effect=iter(["x", "q"]))
|
||||||
|
def test_be_list_invalid_option(self, input_data):
|
||||||
|
stdout, stderr = self.execute_script("be_list", ["-m", "STree"])
|
||||||
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
|
self.check_output_file(stdout, "be_list_model_invalid")
|
||||||
|
|
||||||
|
@patch("benchmark.Results.get_input", side_effect=iter(["0", "q"]))
|
||||||
|
def test_be_list_report(self, input_data):
|
||||||
|
stdout, stderr = self.execute_script("be_list", ["-m", "STree"])
|
||||||
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
|
self.check_output_file(stdout, "be_list_report")
|
||||||
|
|
||||||
|
@patch("benchmark.Results.get_input", side_effect=iter(["q"]))
|
||||||
|
def test_be_list_report_excel_none(self, input_data):
|
||||||
|
stdout, stderr = self.execute_script(
|
||||||
|
"be_list", ["-m", "STree", "-x", "1"]
|
||||||
|
)
|
||||||
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
|
self.check_output_file(stdout, "be_list_model")
|
||||||
|
|
||||||
|
@patch("benchmark.Results.get_input", side_effect=iter(["r", "q"]))
|
||||||
|
def test_be_list_twice(self, input_data):
|
||||||
|
stdout, stderr = self.execute_script("be_list", ["-m", "STree"])
|
||||||
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
|
self.check_output_file(stdout, "be_list_model_2")
|
||||||
|
|
||||||
|
@patch("benchmark.Results.get_input", side_effect=iter(["2", "q"]))
|
||||||
|
def test_be_list_report_excel(self, input_data):
|
||||||
|
stdout, stderr = self.execute_script(
|
||||||
|
"be_list", ["-m", "STree", "-x", "1"]
|
||||||
|
)
|
||||||
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
|
self.check_output_file(stdout, "be_list_report_excel")
|
||||||
|
book = load_workbook(Files.be_list_excel)
|
||||||
|
sheet = book["STree"]
|
||||||
|
self.check_excel_sheet(sheet, "excel")
|
||||||
|
|
||||||
|
@patch("benchmark.Results.get_input", side_effect=iter(["2", "1", "q"]))
|
||||||
|
def test_be_list_report_excel_twice(self, input_data):
|
||||||
|
stdout, stderr = self.execute_script(
|
||||||
|
"be_list", ["-m", "STree", "-x", "1"]
|
||||||
|
)
|
||||||
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
|
self.check_output_file(stdout, "be_list_report_excel_2")
|
||||||
|
book = load_workbook(Files.be_list_excel)
|
||||||
|
sheet = book["STree"]
|
||||||
|
self.check_excel_sheet(sheet, "excel")
|
||||||
|
sheet = book["STree2"]
|
||||||
|
self.check_excel_sheet(sheet, "excel2")
|
||||||
|
|
||||||
|
@patch("benchmark.Results.get_input", return_value="q")
|
||||||
|
def test_be_list_no_data(self, input_data):
|
||||||
stdout, stderr = self.execute_script(
|
stdout, stderr = self.execute_script(
|
||||||
"be_list", ["-m", "Wodt", "-s", "f1-macro"]
|
"be_list", ["-m", "Wodt", "-s", "f1-macro"]
|
||||||
)
|
)
|
||||||
@@ -41,7 +95,8 @@ class BeListTest(TestBase):
|
|||||||
swap_files(Folders.results, Folders.hidden_results, file_name)
|
swap_files(Folders.results, Folders.hidden_results, file_name)
|
||||||
self.fail("test_be_list_nan() should not raise exception")
|
self.fail("test_be_list_nan() should not raise exception")
|
||||||
|
|
||||||
def test_be_list_nan_no_nan(self):
|
@patch("benchmark.Results.get_input", return_value="q")
|
||||||
|
def test_be_list_nan_no_nan(self, input_data):
|
||||||
stdout, stderr = self.execute_script("be_list", ["--nan", "1"])
|
stdout, stderr = self.execute_script("be_list", ["--nan", "1"])
|
||||||
self.assertEqual(stderr.getvalue(), "")
|
self.assertEqual(stderr.getvalue(), "")
|
||||||
self.check_output_file(stdout, "be_list_no_nan")
|
self.check_output_file(stdout, "be_list_no_nan")
|
||||||
|
6
benchmark/tests/test_files/be_list_model.test
Normal file
6
benchmark/tests/test_files/be_list_model.test
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
[94m # Date File Score Time(h) Title
|
||||||
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report):
|
11
benchmark/tests/test_files/be_list_model_2.test
Normal file
11
benchmark/tests/test_files/be_list_model_2.test
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
[94m # Date File Score Time(h) Title
|
||||||
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): [94m # Date File Score Time(h) Title
|
||||||
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report):
|
7
benchmark/tests/test_files/be_list_model_invalid.test
Normal file
7
benchmark/tests/test_files/be_list_model_invalid.test
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[94m # Date File Score Time(h) Title
|
||||||
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): Invalid option x. Try again!
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report):
|
@@ -1,13 +1,13 @@
|
|||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== ================================================================ ======== ======= ============================================
|
=== ========== ================================================================ ======== ======= ============================================
|
||||||
[96m2022-05-04 results_accuracy_XGBoost_MacBookpro16_2022-05-04_11:00:35_0.json nan 3.091 Default hyperparameters
|
[96m 0 2022-05-04 results_accuracy_XGBoost_MacBookpro16_2022-05-04_11:00:35_0.json nan 3.091 Default hyperparameters
|
||||||
[94m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[94m 1 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[96m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[96m 2 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
[94m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[94m 3 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[96m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[96m 4 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[94m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[94m 5 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
|
||||||
****************************** Results with nan moved to hidden ******************************
|
****************************** Results with nan moved to hidden ******************************
|
||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== ================================================================ ======== ======= =======================
|
=== ========== ================================================================ ======== ======= =======================
|
||||||
[96m2022-05-04 results_accuracy_XGBoost_MacBookpro16_2022-05-04_11:00:35_0.json nan 3.091 Default hyperparameters
|
[96m 0 2022-05-04 results_accuracy_XGBoost_MacBookpro16_2022-05-04_11:00:35_0.json nan 3.091 Default hyperparameters
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[96m 0 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[94m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[94m 1 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
[96m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[96m 2 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[94m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[94m 3 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 4 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
21
benchmark/tests/test_files/be_list_report.test
Normal file
21
benchmark/tests/test_files/be_list_report.test
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
[94m # Date File Score Time(h) Title
|
||||||
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): [94m*************************************************************************************************************************
|
||||||
|
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-11-01 19:17:07 *
|
||||||
|
[94m* default B *
|
||||||
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
|
[94m* Execution took 4115.04 seconds, 1.14 hours, on macbook-pro *
|
||||||
|
[94m* Score is accuracy *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
|
[96mbalance-scale 625 4 3 18.78 9.88 5.90 0.970000±0.0020 0.233304±0.0481 {'max_features': 'auto', 'splitter': 'mutual'}
|
||||||
|
[94mballoons 16 4 2 4.72 2.86 2.78 0.556667±0.2941 0.021352±0.0058 {'max_features': 'auto', 'splitter': 'mutual'}
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0379 *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report):
|
21
benchmark/tests/test_files/be_list_report_excel.test
Normal file
21
benchmark/tests/test_files/be_list_report_excel.test
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
[94m # Date File Score Time(h) Title
|
||||||
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): [94m*************************************************************************************************************************
|
||||||
|
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-09-30 11:42:07 *
|
||||||
|
[94m* With gridsearched hyperparameters *
|
||||||
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
|
[94m* Execution took 624.25 seconds, 0.17 hours, on iMac27 *
|
||||||
|
[94m* Score is accuracy *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
|
[96mbalance-scale 625 4 3 7.00 4.00 3.00 0.970560±0.0150 0.014049±0.0020 {'C': 10000.0, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
|
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850 0.000854±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0454 *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): Generated file: some_results.xlsx
|
36
benchmark/tests/test_files/be_list_report_excel_2.test
Normal file
36
benchmark/tests/test_files/be_list_report_excel_2.test
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
[94m # Date File Score Time(h) Title
|
||||||
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): [94m*************************************************************************************************************************
|
||||||
|
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-09-30 11:42:07 *
|
||||||
|
[94m* With gridsearched hyperparameters *
|
||||||
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
|
[94m* Execution took 624.25 seconds, 0.17 hours, on iMac27 *
|
||||||
|
[94m* Score is accuracy *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
|
[96mbalance-scale 625 4 3 7.00 4.00 3.00 0.970560±0.0150 0.014049±0.0020 {'C': 10000.0, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
|
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850 0.000854±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0454 *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): [94m*************************************************************************************************************************
|
||||||
|
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-10-27 09:40:40 *
|
||||||
|
[94m* default A *
|
||||||
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
|
[94m* Execution took 3395.01 seconds, 0.94 hours, on iMac27 *
|
||||||
|
[94m* Score is accuracy *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
|
[96mbalance-scale 625 4 3 11.08 5.90 5.90 0.980000±0.0010 0.285207±0.0603 {'splitter': 'best', 'max_features': 'auto'}
|
||||||
|
[94mballoons 16 4 2 4.12 2.56 2.56 0.695000±0.2757 0.021201±0.0035 {'splitter': 'best', 'max_features': 'auto'}
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0416 *
|
||||||
|
[94m*************************************************************************************************************************
|
||||||
|
Which result do you want to report? (q to quit, r to list again, number to report): Generated file: some_results.xlsx
|
@@ -1,16 +1,16 @@
|
|||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-09 00:15:25 *
|
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-09 00:15:25 *
|
||||||
[94m* test *
|
[94m* test *
|
||||||
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
[94m* Execution took 0.80 seconds, 0.00 hours, on iMac27 *
|
[94m* Execution took 0.80 seconds, 0.00 hours, on iMac27 *
|
||||||
[94m* Score is accuracy *
|
[94m* Score is accuracy *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
============================== ====== ===== === ======= ======= ======= =============== ================ ===============
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
[96mbalance-scale 625 4 3 23.32 12.16 6.44 0.840160±0.0304 0.013745±0.0019 {'splitter': 'best', 'max_features': 'auto'}
|
[96mbalance-scale 625 4 3 23.32 12.16 6.44 0.840160±0.0304 0.013745±0.0019 {'splitter': 'best', 'max_features': 'auto'}
|
||||||
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850 0.000388±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850 0.000388±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0422 *
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0422 *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
Results in results/results_accuracy_STree_iMac27_2022-05-09_00:15:25_0.json
|
Results in results/results_accuracy_STree_iMac27_2022-05-09_00:15:25_0.json
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-08 20:14:43 *
|
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-08 20:14:43 *
|
||||||
[94m* test *
|
[94m* test *
|
||||||
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
[94m* Execution took 0.48 seconds, 0.00 hours, on iMac27 *
|
[94m* Execution took 0.48 seconds, 0.00 hours, on iMac27 *
|
||||||
[94m* Score is accuracy *
|
[94m* Score is accuracy *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
============================== ====== ===== === ======= ======= ======= =============== ================ ===============
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
[96mbalance-scale 625 4 3 17.36 9.18 6.18 0.908480±0.0247 0.007388±0.0013 {}
|
[96mbalance-scale 625 4 3 17.36 9.18 6.18 0.908480±0.0247 0.007388±0.0013 {}
|
||||||
[94mballoons 16 4 2 4.64 2.82 2.66 0.663333±0.3009 0.000664±0.0002 {}
|
[94mballoons 16 4 2 4.64 2.82 2.66 0.663333±0.3009 0.000664±0.0002 {}
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0390 *
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0390 *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
Results in results/results_accuracy_STree_iMac27_2022-05-08_20:14:43_0.json
|
Results in results/results_accuracy_STree_iMac27_2022-05-08_20:14:43_0.json
|
||||||
|
@@ -1,15 +1,15 @@
|
|||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-08 19:38:28 *
|
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-08 19:38:28 *
|
||||||
[94m* test *
|
[94m* test *
|
||||||
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
[94m* Execution took 0.06 seconds, 0.00 hours, on iMac27 *
|
[94m* Execution took 0.06 seconds, 0.00 hours, on iMac27 *
|
||||||
[94m* Score is accuracy *
|
[94m* Score is accuracy *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
============================== ====== ===== === ======= ======= ======= =============== ================ ===============
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
[96mballoons 16 4 2 4.64 2.82 2.66 0.663333±0.3009 0.000671±0.0001 {}
|
[96mballoons 16 4 2 4.64 2.82 2.66 0.663333±0.3009 0.000671±0.0001 {}
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0165 *
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0165 *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
Partial result file removed: results/results_accuracy_STree_iMac27_2022-05-08_19:38:28_0.json
|
Partial result file removed: results/results_accuracy_STree_iMac27_2022-05-08_19:38:28_0.json
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-09 00:21:06 *
|
[94m* STree ver. 1.2.4 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2022-05-09 00:21:06 *
|
||||||
[94m* test *
|
[94m* test *
|
||||||
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
[94m* Execution took 0.89 seconds, 0.00 hours, on iMac27 *
|
[94m* Execution took 0.89 seconds, 0.00 hours, on iMac27 *
|
||||||
[94m* Score is accuracy *
|
[94m* Score is accuracy *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
============================== ====== ===== === ======= ======= ======= =============== ================ ===============
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
[96mbalance-scale 625 4 3 26.12 13.56 7.94 0.910720±0.0249 0.015852±0.0027 {'C': 1.0, 'kernel': 'liblinear', 'multiclass_strategy': 'ovr'}
|
[96mbalance-scale 625 4 3 26.12 13.56 7.94 0.910720±0.0249 0.015852±0.0027 {'C': 1.0, 'kernel': 'liblinear', 'multiclass_strategy': 'ovr'}
|
||||||
[94mballoons 16 4 2 4.64 2.82 2.66 0.663333±0.3009 0.000640±0.0001 {'C': 1.0, 'kernel': 'linear', 'multiclass_strategy': 'ovr'}
|
[94mballoons 16 4 2 4.64 2.82 2.66 0.663333±0.3009 0.000640±0.0001 {'C': 1.0, 'kernel': 'linear', 'multiclass_strategy': 'ovr'}
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0391 *
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0391 *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
Results in results/results_accuracy_STree_iMac27_2022-05-09_00:21:06_0.json
|
Results in results/results_accuracy_STree_iMac27_2022-05-09_00:21:06_0.json
|
||||||
|
@@ -26,10 +26,10 @@
|
|||||||
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
||||||
[96m* [96m*
|
[96m* [96m*
|
||||||
[96m*********************************************************************************
|
[96m*********************************************************************************
|
||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 0 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
[94m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[94m 1 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[96m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[96m 2 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[94m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[94m 3 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[96m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[96m 4 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
|
@@ -26,10 +26,10 @@
|
|||||||
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
||||||
[96m* [96m*
|
[96m* [96m*
|
||||||
[96m*********************************************************************************
|
[96m*********************************************************************************
|
||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 0 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
[94m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[94m 1 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[96m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[96m 2 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[94m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[94m 3 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[96m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[96m 4 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
|
@@ -26,13 +26,13 @@
|
|||||||
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
||||||
[96m* [96m*
|
[96m* [96m*
|
||||||
[96m*********************************************************************************
|
[96m*********************************************************************************
|
||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 0 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
[94m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[94m 1 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[96m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[96m 2 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[94m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[94m 3 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[96m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[96m 4 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
** No results found **
|
** No results found **
|
||||||
** No results found **
|
** No results found **
|
||||||
** No results found **
|
** No results found **
|
||||||
|
@@ -26,10 +26,10 @@
|
|||||||
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
* [93mresults_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json [96m*
|
||||||
[96m* [96m*
|
[96m* [96m*
|
||||||
[96m*********************************************************************************
|
[96m*********************************************************************************
|
||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 0 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
[94m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[94m 1 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[96m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[96m 2 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[94m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[94m 3 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[96m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[96m 4 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
|
48
benchmark/tests/test_files/excel2.test
Normal file
48
benchmark/tests/test_files/excel2.test
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
1;1;" STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-10-27 09:40:40"
|
||||||
|
2;1;" default A"
|
||||||
|
3;1;" Score is accuracy"
|
||||||
|
3;2;" Execution time"
|
||||||
|
3;5;"3,395.01 s"
|
||||||
|
3;7;" "
|
||||||
|
3;8;"Platform"
|
||||||
|
3;9;"iMac27"
|
||||||
|
3;10;"Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1]"
|
||||||
|
4;5;" 0.94 h"
|
||||||
|
4;10;"Stratified: False"
|
||||||
|
6;1;"Dataset"
|
||||||
|
6;2;"Samples"
|
||||||
|
6;3;"Features"
|
||||||
|
6;4;"Classes"
|
||||||
|
6;5;"Nodes"
|
||||||
|
6;6;"Leaves"
|
||||||
|
6;7;"Depth"
|
||||||
|
6;8;"Score"
|
||||||
|
6;9;"Score Std."
|
||||||
|
6;10;"Time"
|
||||||
|
6;11;"Time Std."
|
||||||
|
6;12;"Hyperparameters"
|
||||||
|
7;1;"balance-scale"
|
||||||
|
7;2;"625"
|
||||||
|
7;3;"4"
|
||||||
|
7;4;"3"
|
||||||
|
7;5;"11.08"
|
||||||
|
7;6;"5.9"
|
||||||
|
7;7;"5.9"
|
||||||
|
7;8;"0.98"
|
||||||
|
7;9;"0.001"
|
||||||
|
7;10;"0.2852065515518188"
|
||||||
|
7;11;"0.06031593282605064"
|
||||||
|
7;12;"{'splitter': 'best', 'max_features': 'auto'}"
|
||||||
|
8;1;"balloons"
|
||||||
|
8;2;"16"
|
||||||
|
8;3;"4"
|
||||||
|
8;4;"2"
|
||||||
|
8;5;"4.12"
|
||||||
|
8;6;"2.56"
|
||||||
|
8;7;"2.56"
|
||||||
|
8;8;"0.695"
|
||||||
|
8;9;"0.2756860130252853"
|
||||||
|
8;10;"0.02120100021362305"
|
||||||
|
8;11;"0.003526023309468471"
|
||||||
|
8;12;"{'splitter': 'best', 'max_features': 'auto'}"
|
||||||
|
10;1;"** accuracy compared to STree_default (liblinear-ovr) .: 0.0416"
|
@@ -1,15 +1,15 @@
|
|||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-09-30 11:42:07 *
|
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-09-30 11:42:07 *
|
||||||
[94m* With gridsearched hyperparameters *
|
[94m* With gridsearched hyperparameters *
|
||||||
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
[94m* Execution took 624.25 seconds, 0.17 hours, on iMac27 *
|
[94m* Execution took 624.25 seconds, 0.17 hours, on iMac27 *
|
||||||
[94m* Score is accuracy *
|
[94m* Score is accuracy *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
============================== ====== ===== === ======= ======= ======= =============== ================ ===============
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
[96mbalance-scale 625 4 3 7.00 4.00 3.00 0.970560±0.0150 0.014049±0.0020 {'C': 10000.0, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
[96mbalance-scale 625 4 3 7.00 4.00 3.00 0.970560±0.0150 0.014049±0.0020 {'C': 10000.0, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850 0.000854±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850 0.000854±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0454 *
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0454 *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
@@ -1,16 +1,16 @@
|
|||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-09-30 11:42:07 *
|
[94m* STree ver. 1.2.3 Python ver. 3.11x with 5 Folds cross validation and 10 random seeds. 2021-09-30 11:42:07 *
|
||||||
[94m* With gridsearched hyperparameters *
|
[94m* With gridsearched hyperparameters *
|
||||||
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
[94m* Random seeds: [57, 31, 1714, 17, 23, 79, 83, 97, 7, 1] Stratified: False *
|
||||||
[94m* Execution took 624.25 seconds, 0.17 hours, on iMac27 *
|
[94m* Execution took 624.25 seconds, 0.17 hours, on iMac27 *
|
||||||
[94m* Score is accuracy *
|
[94m* Score is accuracy *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
|
||||||
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
Dataset Sampl. Feat. Cls Nodes Leaves Depth Score Time Hyperparameters
|
||||||
============================== ====== ===== === ======= ======= ======= =============== ================ ===============
|
============================== ====== ===== === ======= ======= ======= =============== ================= ===============
|
||||||
[96mbalance-scale 625 4 3 7.00 4.00 3.00 0.970560±0.0150 0.014049±0.0020 {'C': 10000.0, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
[96mbalance-scale 625 4 3 7.00 4.00 3.00 0.970560±0.0150 0.014049±0.0020 {'C': 10000.0, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850✔ 0.000854±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
[94mballoons 16 4 2 3.00 2.00 2.00 0.860000±0.2850✔ 0.000854±0.0000 {'C': 7, 'gamma': 0.1, 'kernel': 'rbf', 'max_iter': 10000.0, 'multiclass_strategy': 'ovr'}
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
[94m* ✔ Equal to best .....: 1 *
|
[94m* ✔ Equal to best .....: 1 *
|
||||||
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0454 *
|
[94m* accuracy compared to STree_default (liblinear-ovr) .: 0.0454 *
|
||||||
[94m************************************************************************************************************************
|
[94m*************************************************************************************************************************
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
[92mDate File Score Time(h) Title
|
[92m # Date File Score Time(h) Title
|
||||||
========== ================================================================ ======== ======= =======================
|
=== ========== ================================================================ ======== ======= =======================
|
||||||
[93m2022-05-04 results_accuracy_XGBoost_MacBookpro16_2022-05-04_11:00:35_0.json nan 3.091 Default hyperparameters
|
[93m 0 2022-05-04 results_accuracy_XGBoost_MacBookpro16_2022-05-04_11:00:35_0.json nan 3.091 Default hyperparameters
|
||||||
[92m2021-11-01 results_accuracy_STree_iMac27_2021-11-01_23:55:16_0.json 0.97446 0.098 default
|
[92m 1 2021-11-01 results_accuracy_STree_iMac27_2021-11-01_23:55:16_0.json 0.97446 0.098 default
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== ============================================================= ======== ======= =================================
|
=== ========== ============================================================= ======== ======= =================================
|
||||||
[96m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[96m 0 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[94m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[94m 1 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 2 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[96m 0 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[94m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[94m 1 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
[96m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[96m 2 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[96m 0 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[94m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[94m 1 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
[96m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[96m 2 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[94m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[94m 3 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 4 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
[94mDate File Score Time(h) Title
|
[94m # Date File Score Time(h) Title
|
||||||
========== =============================================================== ======== ======= ============================================
|
=== ========== =============================================================== ======== ======= ============================================
|
||||||
[96m2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
[96m 0 2021-09-30 results_accuracy_STree_iMac27_2021-09-30_11:42:07_0.json 0.04544 0.173 With gridsearched hyperparameters
|
||||||
[94m2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
[94m 1 2022-04-20 results_accuracy_ODTE_Galgo_2022-04-20_10:52:20_0.json 0.04341 6.275 Gridsearched hyperparams v022.1b random_init
|
||||||
[96m2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
[96m 2 2021-10-27 results_accuracy_STree_iMac27_2021-10-27_09:40:40_0.json 0.04158 0.943 default A
|
||||||
[94m2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
[94m 3 2021-11-01 results_accuracy_STree_macbook-pro_2021-11-01_19:17:07_0.json 0.03790 1.143 default B
|
||||||
[96m2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
[96m 4 2022-01-14 results_accuracy_RandomForest_iMac27_2022-01-14_12:39:30_0.json 0.03627 0.076 Test default paramters with RandomForest
|
||||||
|
Reference in New Issue
Block a user