mirror of
https://github.com/Doctorado-ML/Stree_datasets.git
synced 2025-08-15 23:46:03 +00:00
Come back to multicore process
This commit is contained in:
@@ -123,7 +123,7 @@ class Experiment:
|
|||||||
model,
|
model,
|
||||||
return_train_score=True,
|
return_train_score=True,
|
||||||
param_grid=hyperparameters,
|
param_grid=hyperparameters,
|
||||||
n_jobs=1,
|
n_jobs=-1,
|
||||||
verbose=1,
|
verbose=1,
|
||||||
)
|
)
|
||||||
start_time = time.time()
|
start_time = time.time()
|
||||||
|
@@ -195,5 +195,6 @@ class ModelOdte(Ensemble):
|
|||||||
"max_samples": [0.2, 0.4, 0.8, 1.0],
|
"max_samples": [0.2, 0.4, 0.8, 1.0],
|
||||||
"n_estimators": [50, 100],
|
"n_estimators": [50, 100],
|
||||||
"max_features": [0.2, 0.6, 1.0],
|
"max_features": [0.2, 0.6, 1.0],
|
||||||
|
"n_jobs": [-1],
|
||||||
}
|
}
|
||||||
return super().get_parameters()
|
return super().get_parameters()
|
||||||
|
49
scripts/all.txt
Normal file
49
scripts/all.txt
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
balance-scale
|
||||||
|
balloons
|
||||||
|
breast-cancer-wisc-diag
|
||||||
|
breast-cancer-wisc-prog
|
||||||
|
breast-cancer-wisc
|
||||||
|
breast-cancer
|
||||||
|
cardiotocography-10clases
|
||||||
|
cardiotocography-3clases
|
||||||
|
conn-bench-sonar-mines-rocks
|
||||||
|
cylinder-bands
|
||||||
|
dermatology
|
||||||
|
echocardiogram
|
||||||
|
fertility
|
||||||
|
haberman-survival
|
||||||
|
heart-hungarian
|
||||||
|
hepatitis
|
||||||
|
ilpd-indian-liver
|
||||||
|
ionosphere
|
||||||
|
iris
|
||||||
|
led-display
|
||||||
|
libras
|
||||||
|
low-res-spect
|
||||||
|
lymphography
|
||||||
|
mammographic
|
||||||
|
molec-biol-promoter
|
||||||
|
musk-1
|
||||||
|
oocytes_merluccius_nucleus_4d
|
||||||
|
oocytes_merluccius_states_2f
|
||||||
|
oocytes_trisopterus_nucleus_2f
|
||||||
|
oocytes_trisopterus_states_5b
|
||||||
|
parkinsons
|
||||||
|
pima
|
||||||
|
pittsburg-bridges-MATERIAL
|
||||||
|
pittsburg-bridges-REL-L
|
||||||
|
pittsburg-bridges-SPAN
|
||||||
|
pittsburg-bridges-T-OR-D
|
||||||
|
planning
|
||||||
|
post-operative
|
||||||
|
seeds
|
||||||
|
statlog-australian-credit
|
||||||
|
statlog-german-credit
|
||||||
|
statlog-heart
|
||||||
|
statlog-image
|
||||||
|
statlog-vehicle
|
||||||
|
synthetic-control
|
||||||
|
tic-tac-toe
|
||||||
|
vertebral-column-2clases
|
||||||
|
wine
|
||||||
|
zoo
|
@@ -1,5 +1,5 @@
|
|||||||
breast-cancer-wisc-diag
|
|
||||||
balance-scale
|
balance-scale
|
||||||
|
breast-cancer-wisc-diag
|
||||||
breast-cancer-wisc-prog
|
breast-cancer-wisc-prog
|
||||||
cardiotocography-10clases
|
cardiotocography-10clases
|
||||||
cardiotocography-3clases
|
cardiotocography-3clases
|
||||||
@@ -18,4 +18,4 @@ statlog-australian-credit
|
|||||||
statlog-german-credit
|
statlog-german-credit
|
||||||
statlog-image
|
statlog-image
|
||||||
statlog-vehicle
|
statlog-vehicle
|
||||||
tic-tac-toe
|
tic-tac-toe
|
18
scripts/gennotcore.py
Normal file
18
scripts/gennotcore.py
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
f = open("core.txt", "r")
|
||||||
|
core = f.read().splitlines()
|
||||||
|
f.close()
|
||||||
|
f = open("hardCore.txt", "r")
|
||||||
|
hardCore = f.read().splitlines()
|
||||||
|
f.close()
|
||||||
|
f = open("all.txt", "r")
|
||||||
|
notCore_tmp = f.read().splitlines()
|
||||||
|
f.close()
|
||||||
|
notCore = list()
|
||||||
|
a = 0
|
||||||
|
f = open("notCore.txt", "w")
|
||||||
|
for name in notCore_tmp:
|
||||||
|
if name not in core and name not in hardCore:
|
||||||
|
a += 1
|
||||||
|
print(a, name)
|
||||||
|
print(name, file=f)
|
||||||
|
f.close()
|
@@ -1,6 +1,6 @@
|
|||||||
molec-biol-promoter
|
|
||||||
musk-1
|
|
||||||
conn-bench-sonar-mines-rocks
|
conn-bench-sonar-mines-rocks
|
||||||
libras
|
libras
|
||||||
low-res-spect
|
low-res-spect
|
||||||
|
molec-biol-promoter
|
||||||
|
musk-1
|
||||||
synthetic-control
|
synthetic-control
|
22
scripts/notCore.txt
Normal file
22
scripts/notCore.txt
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
balloons
|
||||||
|
breast-cancer-wisc
|
||||||
|
breast-cancer
|
||||||
|
echocardiogram
|
||||||
|
fertility
|
||||||
|
haberman-survival
|
||||||
|
heart-hungarian
|
||||||
|
hepatitis
|
||||||
|
iris
|
||||||
|
lymphography
|
||||||
|
parkinsons
|
||||||
|
pittsburg-bridges-MATERIAL
|
||||||
|
pittsburg-bridges-REL-L
|
||||||
|
pittsburg-bridges-SPAN
|
||||||
|
pittsburg-bridges-T-OR-D
|
||||||
|
planning
|
||||||
|
post-operative
|
||||||
|
seeds
|
||||||
|
statlog-heart
|
||||||
|
vertebral-column-2clases
|
||||||
|
wine
|
||||||
|
zoo
|
Reference in New Issue
Block a user