Add wodt clf

Add execution results of RaF, RoF and RRoF
Fix fit time in database records
This commit is contained in:
2021-03-10 01:37:00 +01:00
parent f52565b2a5
commit d4cfe77b18
14 changed files with 782 additions and 9 deletions

View File

@@ -4,10 +4,18 @@ from experimentation.Sets import Datasets
from experimentation.Utils import TextColor
from experimentation.Database import MySQL
models_tree = ["stree", "oc1", "cart"]
models_ensemble = ["odte", "adaBoost", "bagging"]
models_tree = [
"stree",
"wodt",
"oc1",
"cart",
"baseRaF",
"baseRoF",
"baseRRoF",
]
models_ensemble = ["odte", "adaBoost", "bagging", "TBRaF", "TBRoF", "TBRRoF"]
title = "Best model results"
lengths = (30, 9, 11, 11, 11)
lengths = (30, 9, 11, 11, 11, 11, 11, 11, 11)
def parse_arguments() -> Tuple[str, str, str, bool, bool]: