mirror of
https://github.com/Doctorado-ML/Stree_datasets.git
synced 2025-08-17 08:26:02 +00:00
Come back to multicore process
This commit is contained in:
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
|
21
scripts/core.txt
Normal file
21
scripts/core.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
balance-scale
|
||||
breast-cancer-wisc-diag
|
||||
breast-cancer-wisc-prog
|
||||
cardiotocography-10clases
|
||||
cardiotocography-3clases
|
||||
cylinder-bands
|
||||
dermatology
|
||||
ilpd-indian-liver
|
||||
ionosphere
|
||||
led-display
|
||||
mammographic
|
||||
oocytes_merluccius_nucleus_4d
|
||||
oocytes_merluccius_states_2f
|
||||
oocytes_trisopterus_nucleus_2f
|
||||
oocytes_trisopterus_states_5b
|
||||
pima
|
||||
statlog-australian-credit
|
||||
statlog-german-credit
|
||||
statlog-image
|
||||
statlog-vehicle
|
||||
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()
|
6
scripts/hardCore.txt
Normal file
6
scripts/hardCore.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
conn-bench-sonar-mines-rocks
|
||||
libras
|
||||
low-res-spect
|
||||
molec-biol-promoter
|
||||
musk-1
|
||||
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