mirror of
https://github.com/Doctorado-ML/Stree_datasets.git
synced 2025-08-15 15:36:01 +00:00
Add tunnel to mysql
add any kernel to script generator
This commit is contained in:
18
cross_all.py
18
cross_all.py
@@ -32,22 +32,18 @@ def parse_arguments() -> Tuple[str, str, str, bool, bool]:
|
||||
default="aaai",
|
||||
)
|
||||
args = ap.parse_args()
|
||||
return (
|
||||
args.host,
|
||||
args.model,
|
||||
args.set_of_files,
|
||||
)
|
||||
return (args.host, args.model, args.set_of_files)
|
||||
|
||||
|
||||
(
|
||||
host,
|
||||
model,
|
||||
set_of_files,
|
||||
) = parse_arguments()
|
||||
(host, model, set_of_files) = parse_arguments()
|
||||
datasets = Datasets(False, False, set_of_files)
|
||||
clf = None
|
||||
experiment = Experiment(
|
||||
random_state=1, model=model, host=host, set_of_files=set_of_files
|
||||
random_state=1,
|
||||
model=model,
|
||||
host=host,
|
||||
set_of_files=set_of_files,
|
||||
kernel="any",
|
||||
)
|
||||
for dataset in datasets:
|
||||
print(f"-Cross validation on {dataset[0]}")
|
||||
|
Reference in New Issue
Block a user