Add oc1 and cart models

Update analysis and report mysql
This commit is contained in:
2021-03-03 12:47:47 +01:00
parent df42c0df74
commit 116db3f528
113 changed files with 1301 additions and 35 deletions

1
.gitignore vendored
View File

@@ -133,3 +133,4 @@ dmypy.json
.pre-commit-config.yaml
experimentation/.myconfig
experimentation/.tunnel
results

View File

@@ -1,18 +1,40 @@
import argparse
from typing import Tuple
from experimentation.Sets import Datasets
from experimentation.Utils import TextColor
from experimentation.Database import MySQL
models = ["stree", "odte", "adaBoost", "bagging"]
models = ["stree", "oc1", "cart", "odte", "adaBoost", "bagging"]
title = "Best model results"
lengths = (30, 9, 11, 11, 11, 11)
lengths = (30, 9, 11, 11, 11, 11, 11, 11)
def report_header_content(title):
def parse_arguments() -> Tuple[str, str, str, bool, bool]:
ap = argparse.ArgumentParser()
ap.add_argument(
"-e",
"--experiment",
type=str,
choices=["any", "gridsearch", "crossval"],
required=False,
default="any",
)
args = ap.parse_args()
return args.experiment
def report_header_content(title, experiment):
length = sum(lengths) + len(lengths) - 1
output = "\n" + "*" * length + "\n"
num = (length - len(title) - 2) // 2
num2 = length - len(title) - 2 - 2 * num
output += "*" + " " * num + title + " " * (num + num2) + "*\n"
num = (length - len(title) - len(experiment) - 2) // 2
num2 = length - len(title) - len(experiment) - 5 - 2 * num
output += (
"*"
+ " " * num
+ f"{title} - {experiment}"
+ " " * (num + num2)
+ "*\n"
)
output += "*" * length + "\n\n"
lines = ""
for item, data in enumerate(fields):
@@ -22,8 +44,12 @@ def report_header_content(title):
return output
def report_header(exclude_params):
print(TextColor.HEADER + report_header_content(title) + TextColor.ENDC)
def report_header(title, experiment):
print(
TextColor.HEADER
+ report_header_content(title, experiment)
+ TextColor.ENDC
)
def report_line(line):
@@ -59,13 +85,14 @@ def report_footer(agg):
)
experiment = parse_arguments()
dbh = MySQL()
database = dbh.get_connection()
dt = Datasets(False, False, "tanveer")
fields = ("Dataset", "Reference")
for model in models:
fields += (f"{model}",)
report_header(title)
report_header(title, experiment)
color = TextColor.LINE1
agg = {}
for item in [
@@ -78,15 +105,16 @@ for item in [
agg[item]["worse"] = 0
for dataset in dt:
find_one = False
# Look for max accuracy for any given dataset
line = {"dataset": color + dataset[0]}
record = dbh.find_best(dataset[0], "any")
record = dbh.find_best(dataset[0], "any", experiment)
max_accuracy = 0.0 if record is None else record[5]
for model in models:
record = dbh.find_best(dataset[0], model)
record = dbh.find_best(dataset[0], model, experiment)
if record is None:
line[model] = color + "-" * 9 + " "
else:
reference = record[10]
reference = record[13]
accuracy = record[5]
find_one = True
agg[model]["items"] += 1

BIN
data/csv/balance-scale.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:175ffaf1d0917b6bc68cdd1dd1ebab53255a024f8b4396a68d1100285a765205
3 size 21250

BIN
data/csv/balloons.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:ea37ce5dc61fa7ae8b86a43ffd37fc8c02bfc0146939b8c7e3cbb5d557773051
3 size 640

BIN
data/csv/breast-cancer-wisc-diag.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:919649981eee9f3c33baa29d1e42f25c793a334663a8bafb6503418f1b6961d9
3 size 160513

BIN
data/csv/breast-cancer-wisc-prog.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:c2a09ae7988b245cd356e9aeca073c436af5cf33b1a7133f726321b637bc2bd0
3 size 61098

BIN
data/csv/breast-cancer-wisc.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:505191e7646eea4b0a6753ee4deff3c67af94cefde906e4677a9e820295ffd19
3 size 61013

BIN
data/csv/breast-cancer.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:97e18173f275b9a973bcf1af32ccfaaf8ab535d16249f5327a96e5993e683ccc
3 size 24263

BIN
data/csv/cardiotocography-10clases.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:b9f6697cb5425eb369312805bd71346a62e569181857c5e27dff0e90840c28b9
3 size 424345

BIN
data/csv/cardiotocography-3clases.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:f8aff76f947ea5dc72b533c87f8e8a36c4928003f80efa1e98ba6388f348ebab
3 size 424345

BIN
data/csv/conn-bench-sonar-mines-rocks.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:a318c6833ffc174d372b36adfa818046589f3edaed41ec682b1a2aee7a57b54a
3 size 115907

BIN
data/csv/cylinder-bands.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:b5dfe96038e887bd50a957562ae14675f26c4ac4b6d2ffe5051b8c3f9e3b10dd
3 size 166537

BIN
data/csv/dermatology.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:09a71712d42f751f17399fd3490a32c3fac0a9bcc8f9d53c0aad47027c60e5d9
3 size 118348

BIN
data/csv/echocardiogram.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:9e4cc0d12968eb63dd5f1ad4cd7f14fa5657d799e041a32fce076741511d8707
3 size 12267

BIN
data/csv/fertility.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:cba1b704b86b3424c4c856d042b894da7d68b6245f04ac44a7ef2c31492df53b
3 size 8392

BIN
data/csv/haberman-survival.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:ba7abb57fe3819b3c4312bf22c25edc6af2851d825ee593586eeac0bd6e6cb61
3 size 9138

BIN
data/csv/heart-hungarian.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:b6555cdc689d4265b8d79bb708f58366a0e13c3ed87d255e0ee2d9d66f290dde
3 size 32763

BIN
data/csv/hepatitis.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:2ac48870fea698f8abb894709027ef1c732eef0df24f6709bb94912d9d3968a8
3 size 27231

BIN
data/csv/ilpd-indian-liver.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:5825ead45a79753bf134becdb0a2e7a482a623137b94a84abaa919825e88b94d
3 size 50831

BIN
data/csv/ionosphere.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:eb8b1bac4895234172696037c53b1087d648e1ed70d771d557554815767d66fa
3 size 106782

BIN
data/csv/iris.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:b857ee59af04f3d8a15a1088dc66863871a0d93347cb18a77f344f8e8b86f7d2
3 size 5670

BIN
data/csv/led-display.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:77ae16448ccba80ac9a707cb3e1100c600aa59fe1d450c74d4a4a62a5c4358e4
3 size 64241

BIN
data/csv/libras.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:cd4c3e8a8e52cc3b95c621b212e9d9b6472d731901680e0d04b01e489eaac31e
3 size 295629

BIN
data/csv/low-res-spect.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:1be5e667bacd550e415e2d67875a23483b6ef0d0b31fa9b448d460e60e4584ec
3 size 497350

BIN
data/csv/lymphography.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:d28bcf3da808317bfe996fc318c227f47cca7f9325a11659474919ed917bc0ec
3 size 24801

BIN
data/csv/mammographic.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:c0935ab0040fb0c5e18ed4ee706d63976e19082d34d971589d52cccd1ac326f3
3 size 45398

BIN
data/csv/molec-biol-promoter.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:97437ac0be2f5dea923fd9ea56ebbe6526de1eb5431b81c1391867fa36ce9384
3 size 53346

BIN
data/csv/musk-1.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:9aad1f497742988cd654cb60ba89bf8d8459e3ee79273d381bb7365d20d6deda
3 size 725613

BIN
data/csv/oocytes_merluccius_nucleus_4d.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:b155f5aa776346cbff5d056db1f906d52ffbdf945c10d02e3cebec51123112c3
3 size 389155

BIN
data/csv/oocytes_merluccius_states_2f.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:dc3c2d47acf2d00b22100f388c585c469eeba8174806e63e86c0cf00a565ca19
3 size 237384

BIN
data/csv/oocytes_trisopterus_nucleus_2f.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:11f3afb414b9936b8bac440e40c5529fb6314a7246f68a8f9bb0b8d6bf14de49
3 size 213779

BIN
data/csv/oocytes_trisopterus_states_5b.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:2eb2c878860a4de98949e62af0a534b8a31458282939299d4b32fef638944e44
3 size 273973

BIN
data/csv/parkinsons.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:5c5816385eb343345b744151a5ddc335b5f9b23d7271352f5485823e15246b16
3 size 40601

BIN
data/csv/pima.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:3ab7ca7ac3e0601d2698e0caf6c79913e862fa68596fb41463ddd2689d4aed9c
3 size 58425

BIN
data/csv/pittsburg-bridges-MATERIAL.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:4e41f017c32b190e6aef1173023ae2d7d6e4f5c748f8bbdb2c0ed1eb616d212b
3 size 6926

BIN
data/csv/pittsburg-bridges-REL-L.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:72c156123dab20208f8bce5fd3ab4fb356dc65442e99ed6a86e4a957a5ace303
3 size 6680

BIN
data/csv/pittsburg-bridges-SPAN.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:551d3a44124aa352223717df3d53db4b0ed662c6e1051c6b898f0427a77d26ad
3 size 6154

BIN
data/csv/pittsburg-bridges-T-OR-D.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:132907f2406759e8bb6391813cfaa1363e95c6b501ef27bc596c4e4479b35f43
3 size 6724

BIN
data/csv/planning.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:6754e272d3d13ce785f3bc58189a9bd41d9b8b21a3ef5275f973cf9fe2fce3de
3 size 20472

BIN
data/csv/post-operative.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:24bd14663271fd794dfa925a970e20fe515310baf4e8442d522e5c205b5657eb
3 size 6820

BIN
data/csv/seeds.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:cd95a6d1079b073cf4575b2f40e27b2f384e248406cc94f457f21b87f6de526c
3 size 13837

BIN
data/csv/statlog-australian-credit.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:db8b5805c5af83c0ed9155c41df62e962dcc69f9214af8e28870e099cc264103
3 size 90041

BIN
data/csv/statlog-german-credit.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:1efb7b844546181ad86b4d2a9e245e2eda6be0b4100b193db82bfc9cc6407f02
3 size 220685

BIN
data/csv/statlog-heart.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:cee218f7c42475f4339eb2d93ed0adaa105d0213238b7170695a7a83c433a383
3 size 32893

BIN
data/csv/statlog-image.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:8a4b076c05c9304f06d72d5d77fffa9ebabff0baeb61f8c4517d7d6084ed6499
3 size 394674

BIN
data/csv/statlog-vehicle.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:b3b095bfe7a4e7873915a5925bc1983afdde34c4d4c4cefee8e39e911059a3be
3 size 141365

BIN
data/csv/synthetic-control.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:c82d41d84da4a6c919ddcac1ed651c6b744e8fb3fc186cc2eaf05b84f1b55427
3 size 328816

BIN
data/csv/tic-tac-toe.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:6f65e7bced34139a9b00d4120a4c31bde92727bc3f3373e49eb0a3731dd2e7b5
3 size 77514

BIN
data/csv/vertebral-column-2clases.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:de94e4e34bbe2d8b2ebd9d4486b3fec80ab364287a8d65752139c053b6e76282
3 size 17840

BIN
data/csv/wine.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:6a39b24ae24b8bd62a7e2f3cf231f07f796b18f6390b012078edb709688e5b05
3 size 21564

BIN
data/csv/zoo.csv (Stored with Git LFS) Executable file

Binary file not shown.
1 version https://git-lfs.github.com/spec/v1
2 oid sha256:843e4d4b72cc97f08c0af70b6c150ff1ab23e081e5710cc0fd28fa893dc0dae9
3 size 15100

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 3
Pruned decision tree written to csv/balance-scale.csv.dt.
Unpruned decision tree written to csv/balance-scale.csv.dt.unpruned.
fold 1: acc. = 91.20 #leaves = 16 max. depth = 9
fold 2: acc. = 86.40 #leaves = 30 max. depth = 9
fold 3: acc. = 96.00 #leaves = 20 max. depth = 8
fold 4: acc. = 92.80 #leaves = 17 max. depth = 5
fold 5: acc. = 94.40 #leaves = 22 max. depth = 7
accuracy = 92.16 #leaves = 21.00 max depth = 7.60
.79400000000000000000

11
data/oc1output/balloons.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/balloons.csv.dt.
Unpruned decision tree written to csv/balloons.csv.dt.unpruned.
fold 1: acc. = 66.67 #leaves = 2 max. depth = 1
fold 2: acc. = 66.67 #leaves = 2 max. depth = 1
fold 3: acc. = 100.00 #leaves = 4 max. depth = 3
fold 4: acc. = 100.00 #leaves = 4 max. depth = 3
fold 5: acc. = 50.00 #leaves = 2 max. depth = 1
accuracy = 75.00 #leaves = 2.80 max depth = 1.80
.00400000000000000000

View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/breast-cancer-wisc-diag.csv.dt.
Unpruned decision tree written to csv/breast-cancer-wisc-diag.csv.dt.unpruned.
fold 1: acc. = 92.92 #leaves = 12 max. depth = 6
fold 2: acc. = 94.69 #leaves = 11 max. depth = 5
fold 3: acc. = 92.92 #leaves = 12 max. depth = 5
fold 4: acc. = 92.04 #leaves = 15 max. depth = 7
fold 5: acc. = 91.45 #leaves = 7 max. depth = 3
accuracy = 92.79 #leaves = 11.40 max depth = 5.20
1.91800000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/breast-cancer-wisc-prog.csv.dt.
Unpruned decision tree written to csv/breast-cancer-wisc-prog.csv.dt.unpruned.
fold 1: acc. = 82.05 #leaves = 2 max. depth = 1
fold 2: acc. = 71.79 #leaves = 13 max. depth = 10
fold 3: acc. = 82.05 #leaves = 17 max. depth = 7
fold 4: acc. = 51.28 #leaves = 16 max. depth = 7
fold 5: acc. = 78.57 #leaves = 14 max. depth = 8
accuracy = 73.23 #leaves = 12.40 max depth = 6.60
.92700000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/breast-cancer-wisc.csv.dt.
Unpruned decision tree written to csv/breast-cancer-wisc.csv.dt.unpruned.
fold 1: acc. = 95.68 #leaves = 4 max. depth = 3
fold 2: acc. = 93.53 #leaves = 11 max. depth = 7
fold 3: acc. = 94.24 #leaves = 12 max. depth = 9
fold 4: acc. = 95.68 #leaves = 15 max. depth = 7
fold 5: acc. = 94.41 #leaves = 13 max. depth = 8
accuracy = 94.71 #leaves = 11.00 max depth = 6.80
1.02400000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/breast-cancer.csv.dt.
Unpruned decision tree written to csv/breast-cancer.csv.dt.unpruned.
fold 1: acc. = 64.91 #leaves = 4 max. depth = 3
fold 2: acc. = 56.14 #leaves = 40 max. depth = 12
fold 3: acc. = 64.91 #leaves = 24 max. depth = 8
fold 4: acc. = 64.91 #leaves = 37 max. depth = 10
fold 5: acc. = 70.69 #leaves = 32 max. depth = 10
accuracy = 64.34 #leaves = 27.40 max depth = 8.60
.39700000000000000000

View File

@@ -0,0 +1,19 @@
Remapping class numbers:
8 To 1
5 To 2
1 To 3
7 To 4
9 To 5
0 To 7
2 To 8
4 To 9
3 To 10
Pruned decision tree written to csv/cardiotocography-10clases.csv.dt.
Unpruned decision tree written to csv/cardiotocography-10clases.csv.dt.unpruned.
fold 1: acc. = 78.12 #leaves = 19 max. depth = 7
fold 2: acc. = 78.35 #leaves = 144 max. depth = 15
fold 3: acc. = 79.29 #leaves = 134 max. depth = 12
fold 4: acc. = 77.65 #leaves = 138 max. depth = 14
fold 5: acc. = 80.28 #leaves = 146 max. depth = 14
accuracy = 78.74 #leaves = 116.20 max depth = 12.40
20.41800000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 2
2 To 3
Pruned decision tree written to csv/cardiotocography-3clases.csv.dt.
Unpruned decision tree written to csv/cardiotocography-3clases.csv.dt.unpruned.
fold 1: acc. = 88.47 #leaves = 14 max. depth = 7
fold 2: acc. = 91.06 #leaves = 63 max. depth = 12
fold 3: acc. = 91.76 #leaves = 59 max. depth = 10
fold 4: acc. = 89.41 #leaves = 58 max. depth = 14
fold 5: acc. = 90.85 #leaves = 55 max. depth = 12
accuracy = 90.31 #leaves = 49.80 max depth = 11.00
11.24900000000000000000

View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/conn-bench-sonar-mines-rocks.csv.dt.
Unpruned decision tree written to csv/conn-bench-sonar-mines-rocks.csv.dt.unpruned.
fold 1: acc. = 68.29 #leaves = 2 max. depth = 1
fold 2: acc. = 70.73 #leaves = 21 max. depth = 9
fold 3: acc. = 78.05 #leaves = 16 max. depth = 8
fold 4: acc. = 65.85 #leaves = 12 max. depth = 6
fold 5: acc. = 65.91 #leaves = 15 max. depth = 6
accuracy = 69.71 #leaves = 13.20 max depth = 6.00
.52500000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/cylinder-bands.csv.dt.
Unpruned decision tree written to csv/cylinder-bands.csv.dt.unpruned.
fold 1: acc. = 72.55 #leaves = 12 max. depth = 5
fold 2: acc. = 54.90 #leaves = 41 max. depth = 9
fold 3: acc. = 65.69 #leaves = 35 max. depth = 10
fold 4: acc. = 68.63 #leaves = 43 max. depth = 12
fold 5: acc. = 65.38 #leaves = 35 max. depth = 10
accuracy = 65.43 #leaves = 33.20 max depth = 9.20
2.12700000000000000000

13
data/oc1output/dermatology.txt Executable file
View File

@@ -0,0 +1,13 @@
Remapping class numbers:
0 To 2
2 To 3
3 To 5
5 To 6
Unpruned decision tree written to csv/dermatology.csv.dt.
fold 1: acc. = 98.63 #leaves = 6 max. depth = 3
fold 2: acc. = 97.26 #leaves = 6 max. depth = 3
fold 3: acc. = 93.15 #leaves = 6 max. depth = 3
fold 4: acc. = 93.15 #leaves = 9 max. depth = 6
fold 5: acc. = 97.30 #leaves = 8 max. depth = 5
accuracy = 95.90 #leaves = 7.00 max depth = 4.00
.54800000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/echocardiogram.csv.dt.
Unpruned decision tree written to csv/echocardiogram.csv.dt.unpruned.
fold 1: acc. = 84.62 #leaves = 2 max. depth = 1
fold 2: acc. = 65.38 #leaves = 10 max. depth = 5
fold 3: acc. = 73.08 #leaves = 8 max. depth = 4
fold 4: acc. = 61.54 #leaves = 12 max. depth = 7
fold 5: acc. = 66.67 #leaves = 10 max. depth = 5
accuracy = 70.23 #leaves = 8.40 max depth = 4.40
.11500000000000000000

12
data/oc1output/fertility.txt Executable file
View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/fertility.csv.dt.
Unpruned decision tree written to csv/fertility.csv.dt.unpruned.
fold 1: acc. = 95.00 #leaves = 2 max. depth = 1
fold 2: acc. = 70.00 #leaves = 8 max. depth = 4
fold 3: acc. = 75.00 #leaves = 5 max. depth = 3
fold 4: acc. = 80.00 #leaves = 9 max. depth = 5
fold 5: acc. = 75.00 #leaves = 7 max. depth = 4
accuracy = 79.00 #leaves = 6.20 max depth = 3.40
.05600000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/haberman-survival.csv.dt.
Unpruned decision tree written to csv/haberman-survival.csv.dt.unpruned.
fold 1: acc. = 73.77 #leaves = 2 max. depth = 1
fold 2: acc. = 60.66 #leaves = 41 max. depth = 13
fold 3: acc. = 70.49 #leaves = 39 max. depth = 11
fold 4: acc. = 73.77 #leaves = 39 max. depth = 10
fold 5: acc. = 61.29 #leaves = 41 max. depth = 9
accuracy = 67.97 #leaves = 32.40 max depth = 8.80
.31700000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/heart-hungarian.csv.dt.
Unpruned decision tree written to csv/heart-hungarian.csv.dt.unpruned.
fold 1: acc. = 86.21 #leaves = 4 max. depth = 3
fold 2: acc. = 67.24 #leaves = 19 max. depth = 6
fold 3: acc. = 68.97 #leaves = 30 max. depth = 9
fold 4: acc. = 74.14 #leaves = 26 max. depth = 9
fold 5: acc. = 74.19 #leaves = 19 max. depth = 7
accuracy = 74.15 #leaves = 19.60 max depth = 6.80
.48400000000000000000

11
data/oc1output/hepatitis.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/hepatitis.csv.dt.
Unpruned decision tree written to csv/hepatitis.csv.dt.unpruned.
fold 1: acc. = 74.19 #leaves = 2 max. depth = 1
fold 2: acc. = 74.19 #leaves = 8 max. depth = 4
fold 3: acc. = 70.97 #leaves = 11 max. depth = 4
fold 4: acc. = 80.65 #leaves = 10 max. depth = 4
fold 5: acc. = 77.42 #leaves = 12 max. depth = 5
accuracy = 75.48 #leaves = 8.60 max depth = 3.60
.20400000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/ilpd-indian-liver.csv.dt.
Unpruned decision tree written to csv/ilpd-indian-liver.csv.dt.unpruned.
fold 1: acc. = 71.55 #leaves = 10 max. depth = 7
fold 2: acc. = 70.69 #leaves = 49 max. depth = 12
fold 3: acc. = 68.10 #leaves = 46 max. depth = 12
fold 4: acc. = 66.38 #leaves = 50 max. depth = 13
fold 5: acc. = 64.71 #leaves = 53 max. depth = 13
accuracy = 68.27 #leaves = 41.60 max depth = 11.40
1.60900000000000000000

11
data/oc1output/ionosphere.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/ionosphere.csv.dt.
Unpruned decision tree written to csv/ionosphere.csv.dt.unpruned.
fold 1: acc. = 87.14 #leaves = 3 max. depth = 2
fold 2: acc. = 81.43 #leaves = 17 max. depth = 7
fold 3: acc. = 84.29 #leaves = 14 max. depth = 7
fold 4: acc. = 92.86 #leaves = 9 max. depth = 5
fold 5: acc. = 92.96 #leaves = 12 max. depth = 8
accuracy = 87.75 #leaves = 11.00 max depth = 5.80
1.23400000000000000000

12
data/oc1output/iris.txt Executable file
View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
Unpruned decision tree written to csv/iris.csv.dt.
fold 1: acc. = 90.00 #leaves = 3 max. depth = 2
fold 2: acc. = 96.67 #leaves = 4 max. depth = 3
fold 3: acc. = 93.33 #leaves = 5 max. depth = 4
fold 4: acc. = 96.67 #leaves = 5 max. depth = 4
fold 5: acc. = 93.33 #leaves = 5 max. depth = 4
accuracy = 94.00 #leaves = 4.40 max depth = 3.40
.08200000000000000000

19
data/oc1output/led-display.txt Executable file
View File

@@ -0,0 +1,19 @@
Remapping class numbers:
7 To 1
5 To 3
0 To 4
4 To 5
9 To 6
8 To 7
6 To 8
3 To 9
1 To 10
Pruned decision tree written to csv/led-display.csv.dt.
Unpruned decision tree written to csv/led-display.csv.dt.unpruned.
fold 1: acc. = 66.50 #leaves = 14 max. depth = 6
fold 2: acc. = 74.50 #leaves = 61 max. depth = 9
fold 3: acc. = 68.00 #leaves = 61 max. depth = 8
fold 4: acc. = 63.50 #leaves = 62 max. depth = 8
fold 5: acc. = 67.50 #leaves = 59 max. depth = 8
accuracy = 68.00 #leaves = 51.40 max depth = 7.80
1.46800000000000000000

25
data/oc1output/libras.txt Executable file
View File

@@ -0,0 +1,25 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
3 To 4
4 To 5
5 To 6
6 To 7
7 To 8
8 To 9
9 To 10
10 To 11
11 To 12
12 To 13
13 To 14
14 To 15
Pruned decision tree written to csv/libras.csv.dt.
Unpruned decision tree written to csv/libras.csv.dt.unpruned.
fold 1: acc. = 65.28 #leaves = 22 max. depth = 6
fold 2: acc. = 58.33 #leaves = 61 max. depth = 9
fold 3: acc. = 61.11 #leaves = 57 max. depth = 8
fold 4: acc. = 62.50 #leaves = 61 max. depth = 9
fold 5: acc. = 62.50 #leaves = 62 max. depth = 10
accuracy = 61.94 #leaves = 52.60 max depth = 8.40
2.56300000000000000000

View File

@@ -0,0 +1,18 @@
Remapping class numbers:
7 To 2
8 To 3
0 To 4
3 To 5
2 To 6
6 To 7
5 To 8
4 To 9
Pruned decision tree written to csv/low-res-spect.csv.dt.
Unpruned decision tree written to csv/low-res-spect.csv.dt.unpruned.
fold 1: acc. = 76.42 #leaves = 9 max. depth = 5
fold 2: acc. = 85.85 #leaves = 35 max. depth = 8
fold 3: acc. = 84.91 #leaves = 34 max. depth = 7
fold 4: acc. = 83.96 #leaves = 35 max. depth = 8
fold 5: acc. = 83.18 #leaves = 36 max. depth = 7
accuracy = 82.86 #leaves = 29.80 max depth = 7.00
5.99000000000000000000

13
data/oc1output/lymphography.txt Executable file
View File

@@ -0,0 +1,13 @@
Remapping class numbers:
2 To 1
1 To 2
0 To 4
Pruned decision tree written to csv/lymphography.csv.dt.
Unpruned decision tree written to csv/lymphography.csv.dt.unpruned.
fold 1: acc. = 75.86 #leaves = 4 max. depth = 3
fold 2: acc. = 68.97 #leaves = 11 max. depth = 6
fold 3: acc. = 79.31 #leaves = 10 max. depth = 4
fold 4: acc. = 75.86 #leaves = 11 max. depth = 5
fold 5: acc. = 65.62 #leaves = 15 max. depth = 5
accuracy = 72.97 #leaves = 10.20 max depth = 4.60
.21600000000000000000

11
data/oc1output/mammographic.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/mammographic.csv.dt.
Unpruned decision tree written to csv/mammographic.csv.dt.unpruned.
fold 1: acc. = 83.85 #leaves = 2 max. depth = 1
fold 2: acc. = 73.44 #leaves = 106 max. depth = 19
fold 3: acc. = 75.00 #leaves = 104 max. depth = 21
fold 4: acc. = 78.65 #leaves = 110 max. depth = 13
fold 5: acc. = 72.54 #leaves = 98 max. depth = 14
accuracy = 76.69 #leaves = 84.00 max depth = 13.60
2.02400000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/molec-biol-promoter.csv.dt.
Unpruned decision tree written to csv/molec-biol-promoter.csv.dt.unpruned.
fold 1: acc. = 66.67 #leaves = 4 max. depth = 3
fold 2: acc. = 61.90 #leaves = 13 max. depth = 5
fold 3: acc. = 71.43 #leaves = 11 max. depth = 5
fold 4: acc. = 66.67 #leaves = 10 max. depth = 5
fold 5: acc. = 68.18 #leaves = 11 max. depth = 4
accuracy = 66.98 #leaves = 9.80 max depth = 4.40
.01800000000000000000

11
data/oc1output/musk-1.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/musk-1.csv.dt.
Unpruned decision tree written to csv/musk-1.csv.dt.unpruned.
fold 1: acc. = 80.00 #leaves = 14 max. depth = 11
fold 2: acc. = 83.16 #leaves = 29 max. depth = 9
fold 3: acc. = 80.00 #leaves = 30 max. depth = 11
fold 4: acc. = 81.05 #leaves = 34 max. depth = 14
fold 5: acc. = 80.21 #leaves = 34 max. depth = 16
accuracy = 80.88 #leaves = 28.20 max depth = 12.20
3.84800000000000000000

View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/oocytes_merluccius_nucleus_4d.csv.dt.
Unpruned decision tree written to csv/oocytes_merluccius_nucleus_4d.csv.dt.unpruned.
fold 1: acc. = 83.82 #leaves = 38 max. depth = 11
fold 2: acc. = 74.02 #leaves = 81 max. depth = 12
fold 3: acc. = 71.57 #leaves = 84 max. depth = 13
fold 4: acc. = 73.53 #leaves = 88 max. depth = 12
fold 5: acc. = 68.45 #leaves = 85 max. depth = 13
accuracy = 74.27 #leaves = 75.20 max depth = 12.20
7.67300000000000000000

View File

@@ -0,0 +1,13 @@
Remapping class numbers:
2 To 1
1 To 2
0 To 3
Pruned decision tree written to csv/oocytes_merluccius_states_2f.csv.dt.
Unpruned decision tree written to csv/oocytes_merluccius_states_2f.csv.dt.unpruned.
fold 1: acc. = 88.24 #leaves = 5 max. depth = 3
fold 2: acc. = 87.75 #leaves = 35 max. depth = 9
fold 3: acc. = 90.69 #leaves = 41 max. depth = 9
fold 4: acc. = 87.25 #leaves = 35 max. depth = 12
fold 5: acc. = 85.92 #leaves = 34 max. depth = 11
accuracy = 87.96 #leaves = 30.00 max depth = 8.80
5.23000000000000000000

View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/oocytes_trisopterus_nucleus_2f.csv.dt.
Unpruned decision tree written to csv/oocytes_trisopterus_nucleus_2f.csv.dt.unpruned.
fold 1: acc. = 75.82 #leaves = 17 max. depth = 8
fold 2: acc. = 73.63 #leaves = 55 max. depth = 12
fold 3: acc. = 70.33 #leaves = 70 max. depth = 15
fold 4: acc. = 70.33 #leaves = 59 max. depth = 10
fold 5: acc. = 74.46 #leaves = 70 max. depth = 11
accuracy = 72.92 #leaves = 54.20 max depth = 11.20
4.95800000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 2
2 To 3
Pruned decision tree written to csv/oocytes_trisopterus_states_5b.csv.dt.
Unpruned decision tree written to csv/oocytes_trisopterus_states_5b.csv.dt.unpruned.
fold 1: acc. = 86.81 #leaves = 7 max. depth = 4
fold 2: acc. = 84.62 #leaves = 45 max. depth = 19
fold 3: acc. = 84.07 #leaves = 41 max. depth = 12
fold 4: acc. = 93.96 #leaves = 48 max. depth = 16
fold 5: acc. = 81.52 #leaves = 42 max. depth = 12
accuracy = 86.18 #leaves = 36.60 max depth = 12.60
7.58400000000000000000

11
data/oc1output/parkinsons.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/parkinsons.csv.dt.
Unpruned decision tree written to csv/parkinsons.csv.dt.unpruned.
fold 1: acc. = 89.74 #leaves = 4 max. depth = 3
fold 2: acc. = 92.31 #leaves = 7 max. depth = 4
fold 3: acc. = 84.62 #leaves = 8 max. depth = 6
fold 4: acc. = 76.92 #leaves = 8 max. depth = 6
fold 5: acc. = 89.74 #leaves = 7 max. depth = 5
accuracy = 86.67 #leaves = 6.80 max depth = 4.80
.47200000000000000000

11
data/oc1output/pima.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/pima.csv.dt.
Unpruned decision tree written to csv/pima.csv.dt.unpruned.
fold 1: acc. = 71.90 #leaves = 6 max. depth = 5
fold 2: acc. = 70.59 #leaves = 70 max. depth = 11
fold 3: acc. = 70.59 #leaves = 61 max. depth = 12
fold 4: acc. = 71.24 #leaves = 67 max. depth = 11
fold 5: acc. = 66.67 #leaves = 60 max. depth = 13
accuracy = 70.18 #leaves = 52.80 max depth = 10.40
1.88100000000000000000

View File

@@ -0,0 +1,13 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
Pruned decision tree written to csv/pittsburg-bridges-MATERIAL.csv.dt.
Unpruned decision tree written to csv/pittsburg-bridges-MATERIAL.csv.dt.unpruned.
fold 1: acc. = 71.43 #leaves = 3 max. depth = 2
fold 2: acc. = 61.90 #leaves = 8 max. depth = 5
fold 3: acc. = 80.95 #leaves = 8 max. depth = 4
fold 4: acc. = 85.71 #leaves = 12 max. depth = 6
fold 5: acc. = 95.45 #leaves = 9 max. depth = 5
accuracy = 79.25 #leaves = 8.00 max depth = 4.40
.07500000000000000000

View File

@@ -0,0 +1,13 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
Pruned decision tree written to csv/pittsburg-bridges-REL-L.csv.dt.
Unpruned decision tree written to csv/pittsburg-bridges-REL-L.csv.dt.unpruned.
fold 1: acc. = 70.00 #leaves = 3 max. depth = 2
fold 2: acc. = 70.00 #leaves = 17 max. depth = 8
fold 3: acc. = 70.00 #leaves = 16 max. depth = 7
fold 4: acc. = 70.00 #leaves = 12 max. depth = 4
fold 5: acc. = 60.87 #leaves = 14 max. depth = 7
accuracy = 67.96 #leaves = 12.40 max depth = 5.60
.12200000000000000000

View File

@@ -0,0 +1,13 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
Pruned decision tree written to csv/pittsburg-bridges-SPAN.csv.dt.
Unpruned decision tree written to csv/pittsburg-bridges-SPAN.csv.dt.unpruned.
fold 1: acc. = 55.56 #leaves = 2 max. depth = 1
fold 2: acc. = 72.22 #leaves = 19 max. depth = 8
fold 3: acc. = 61.11 #leaves = 15 max. depth = 7
fold 4: acc. = 50.00 #leaves = 9 max. depth = 5
fold 5: acc. = 70.00 #leaves = 11 max. depth = 6
accuracy = 61.96 #leaves = 11.20 max depth = 5.40
.10200000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/pittsburg-bridges-T-OR-D.csv.dt.
Unpruned decision tree written to csv/pittsburg-bridges-T-OR-D.csv.dt.unpruned.
fold 1: acc. = 65.00 #leaves = 2 max. depth = 1
fold 2: acc. = 75.00 #leaves = 9 max. depth = 6
fold 3: acc. = 85.00 #leaves = 8 max. depth = 5
fold 4: acc. = 85.00 #leaves = 9 max. depth = 6
fold 5: acc. = 81.82 #leaves = 9 max. depth = 5
accuracy = 78.43 #leaves = 7.40 max depth = 4.60
.08400000000000000000

12
data/oc1output/planning.txt Executable file
View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/planning.csv.dt.
Unpruned decision tree written to csv/planning.csv.dt.unpruned.
fold 1: acc. = 75.00 #leaves = 2 max. depth = 1
fold 2: acc. = 61.11 #leaves = 20 max. depth = 9
fold 3: acc. = 58.33 #leaves = 23 max. depth = 8
fold 4: acc. = 63.89 #leaves = 22 max. depth = 7
fold 5: acc. = 55.26 #leaves = 22 max. depth = 8
accuracy = 62.64 #leaves = 17.80 max depth = 6.60
.35900000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 3
Pruned decision tree written to csv/post-operative.csv.dt.
Unpruned decision tree written to csv/post-operative.csv.dt.unpruned.
fold 1: acc. = 72.22 #leaves = 8 max. depth = 4
fold 2: acc. = 50.00 #leaves = 20 max. depth = 7
fold 3: acc. = 55.56 #leaves = 17 max. depth = 9
fold 4: acc. = 55.56 #leaves = 13 max. depth = 5
fold 5: acc. = 61.11 #leaves = 16 max. depth = 8
accuracy = 58.89 #leaves = 14.80 max depth = 6.60
.09100000000000000000

13
data/oc1output/seeds.txt Executable file
View File

@@ -0,0 +1,13 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
Pruned decision tree written to csv/seeds.csv.dt.
Unpruned decision tree written to csv/seeds.csv.dt.unpruned.
fold 1: acc. = 95.24 #leaves = 3 max. depth = 2
fold 2: acc. = 95.24 #leaves = 6 max. depth = 5
fold 3: acc. = 92.86 #leaves = 4 max. depth = 3
fold 4: acc. = 92.86 #leaves = 7 max. depth = 5
fold 5: acc. = 92.86 #leaves = 6 max. depth = 3
accuracy = 93.81 #leaves = 5.20 max depth = 3.60
.17400000000000000000

View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/statlog-australian-credit.csv.dt.
Unpruned decision tree written to csv/statlog-australian-credit.csv.dt.unpruned.
fold 1: acc. = 60.14 #leaves = 3 max. depth = 2
fold 2: acc. = 59.42 #leaves = 64 max. depth = 12
fold 3: acc. = 57.97 #leaves = 61 max. depth = 12
fold 4: acc. = 59.42 #leaves = 66 max. depth = 13
fold 5: acc. = 59.42 #leaves = 58 max. depth = 13
accuracy = 59.28 #leaves = 50.40 max depth = 10.40
2.20300000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/statlog-german-credit.csv.dt.
Unpruned decision tree written to csv/statlog-german-credit.csv.dt.unpruned.
fold 1: acc. = 70.50 #leaves = 2 max. depth = 1
fold 2: acc. = 65.00 #leaves = 81 max. depth = 14
fold 3: acc. = 71.50 #leaves = 69 max. depth = 12
fold 4: acc. = 67.00 #leaves = 67 max. depth = 12
fold 5: acc. = 61.50 #leaves = 64 max. depth = 14
accuracy = 67.10 #leaves = 56.60 max depth = 10.60
4.37200000000000000000

View File

@@ -0,0 +1,10 @@
Remapping class numbers:
0 To 2
Unpruned decision tree written to csv/statlog-heart.csv.dt.
fold 1: acc. = 74.07 #leaves = 13 max. depth = 7
fold 2: acc. = 81.48 #leaves = 15 max. depth = 7
fold 3: acc. = 68.52 #leaves = 15 max. depth = 9
fold 4: acc. = 74.07 #leaves = 16 max. depth = 6
fold 5: acc. = 61.11 #leaves = 14 max. depth = 6
accuracy = 71.85 #leaves = 14.60 max depth = 7.00
.43200000000000000000

View File

@@ -0,0 +1,16 @@
Remapping class numbers:
5 To 1
1 To 3
6 To 4
0 To 5
3 To 6
4 To 7
Pruned decision tree written to csv/statlog-image.csv.dt.
Unpruned decision tree written to csv/statlog-image.csv.dt.unpruned.
fold 1: acc. = 94.16 #leaves = 38 max. depth = 8
fold 2: acc. = 96.32 #leaves = 40 max. depth = 12
fold 3: acc. = 92.86 #leaves = 49 max. depth = 10
fold 4: acc. = 96.54 #leaves = 44 max. depth = 11
fold 5: acc. = 92.21 #leaves = 44 max. depth = 9
accuracy = 94.42 #leaves = 43.00 max depth = 10.00
11.76100000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
3 To 1
0 To 3
1 To 4
Unpruned decision tree written to csv/statlog-vehicle.csv.dt.
fold 1: acc. = 71.01 #leaves = 75 max. depth = 13
fold 2: acc. = 77.51 #leaves = 81 max. depth = 15
fold 3: acc. = 66.86 #leaves = 76 max. depth = 12
fold 4: acc. = 74.56 #leaves = 76 max. depth = 13
fold 5: acc. = 68.82 #leaves = 65 max. depth = 13
accuracy = 71.75 #leaves = 74.60 max depth = 13.20
4.58300000000000000000

View File

@@ -0,0 +1,16 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
3 To 4
4 To 5
5 To 6
Pruned decision tree written to csv/synthetic-control.csv.dt.
Unpruned decision tree written to csv/synthetic-control.csv.dt.unpruned.
fold 1: acc. = 82.50 #leaves = 11 max. depth = 6
fold 2: acc. = 85.83 #leaves = 21 max. depth = 7
fold 3: acc. = 83.33 #leaves = 21 max. depth = 6
fold 4: acc. = 82.50 #leaves = 24 max. depth = 6
fold 5: acc. = 81.67 #leaves = 25 max. depth = 7
accuracy = 83.17 #leaves = 20.40 max depth = 6.40
7.25500000000000000000

11
data/oc1output/tic-tac-toe.txt Executable file
View File

@@ -0,0 +1,11 @@
Remapping class numbers:
0 To 2
Pruned decision tree written to csv/tic-tac-toe.csv.dt.
Unpruned decision tree written to csv/tic-tac-toe.csv.dt.unpruned.
fold 1: acc. = 91.62 #leaves = 11 max. depth = 5
fold 2: acc. = 91.62 #leaves = 21 max. depth = 8
fold 3: acc. = 89.01 #leaves = 28 max. depth = 11
fold 4: acc. = 94.24 #leaves = 25 max. depth = 9
fold 5: acc. = 94.33 #leaves = 21 max. depth = 8
accuracy = 92.17 #leaves = 21.20 max depth = 8.20
1.75200000000000000000

View File

@@ -0,0 +1,12 @@
Remapping class numbers:
0 To 1
1 To 2
Pruned decision tree written to csv/vertebral-column-2clases.csv.dt.
Unpruned decision tree written to csv/vertebral-column-2clases.csv.dt.unpruned.
fold 1: acc. = 87.10 #leaves = 5 max. depth = 4
fold 2: acc. = 72.58 #leaves = 19 max. depth = 7
fold 3: acc. = 79.03 #leaves = 21 max. depth = 8
fold 4: acc. = 80.65 #leaves = 18 max. depth = 7
fold 5: acc. = 82.26 #leaves = 19 max. depth = 7
accuracy = 80.32 #leaves = 16.40 max depth = 6.60
.38200000000000000000

13
data/oc1output/wine.txt Executable file
View File

@@ -0,0 +1,13 @@
Remapping class numbers:
0 To 1
1 To 2
2 To 3
Pruned decision tree written to csv/wine.csv.dt.
Unpruned decision tree written to csv/wine.csv.dt.unpruned.
fold 1: acc. = 85.71 #leaves = 3 max. depth = 2
fold 2: acc. = 94.29 #leaves = 4 max. depth = 3
fold 3: acc. = 97.14 #leaves = 4 max. depth = 3
fold 4: acc. = 94.29 #leaves = 4 max. depth = 3
fold 5: acc. = 92.11 #leaves = 4 max. depth = 3
accuracy = 92.70 #leaves = 3.80 max depth = 2.80
.17000000000000000000

16
data/oc1output/zoo.txt Executable file
View File

@@ -0,0 +1,16 @@
Remapping class numbers:
0 To 1
3 To 2
1 To 3
6 To 4
4 To 6
2 To 7
Pruned decision tree written to csv/zoo.csv.dt.
Unpruned decision tree written to csv/zoo.csv.dt.unpruned.
fold 1: acc. = 85.00 #leaves = 5 max. depth = 4
fold 2: acc. = 80.00 #leaves = 9 max. depth = 6
fold 3: acc. = 85.00 #leaves = 7 max. depth = 4
fold 4: acc. = 90.00 #leaves = 10 max. depth = 7
fold 5: acc. = 85.71 #leaves = 10 max. depth = 7
accuracy = 85.15 #leaves = 8.20 max depth = 5.60
.07500000000000000000

Some files were not shown because too many files have changed in this diff Show More