Abstract
Bagging has attracted much attention due to its simple implementation and the popularity of bootstrapping. By learning diverse classifiers from resampled datasets and averaging the outcomes, bagging investigates the possibility of achieving substantial classification performance of the base classifier. Diversity has been recognized as a very important characteristic in bagging. This paper presents an efficient and effective bagging approach, that learns a set of independent Bayesian network classifiers (BNCs) from disjoint data subspaces. The number of bits needed to describe the data is measured in terms of log likelihood, and redundant edges are identified to optimize the topologies of the learned BNCs. Our extensive experimental evaluation on 54 publicly available datasets from the UCI machine learning repository reveals that the proposed algorithm achieves a competitive classification performance compared with state-of-the-art BNCs that use or do not use bagging procedures, such as tree-augmented naive Bayes (TAN),
Introduction
Classification is a fundamental issue in data mining and pattern recognition [1, 2], and its aim is to build a classifier that can assign the appropriate class label
Many theoretical studies have explored famous ensemble methods, such as boosting and bagging, which have been successfully adopted in a large number of applications [3, 4, 5, 6]. Bagging [7] is an ensemble method that has attracted much attention due to its simple implementation and the popularity of bootstrapping [3, 7, 8]. This method aims to obtain predicted labels from a set of diverse classifiers and then combine these models into a single predictive classification. Bagging trains several base learners from different bootstrap samples by calling a base learning algorithm. To increase classification accuracy, the predictions from individual base learners are summarized into a single general prediction [9]. Diversity is encouraged “implicitly” via a random sampling of the data space. Boosting, particularly AdaBoost, is a family of learners that “explicitly” encourages diversity by altering the distribution of the training data. Each learner substantially differs from others and may make more accurate predictions in cases where previous predictors have made errors [10].
Bayesian network (BN) is a powerful formalism for representing and reasoning under conditions of uncertainty, and Bayesian network classifier (BNC) has been increasingly used in a wide range of classification tasks [11, 12, 13, 14] after the success of naïve Bayes (NB), which has the simplest topology by assuming that each attribute is independent from the others given the class variable [2]. Ensemble BNCs focus on the diversity of conditional dependencies in the topologies of committee members. Averaged one-dependence estimators (AODE) [15] assumes that all other attributes are independent of each other given the class and one shared attribute,
Bagging randomly samples from the training data and does not apply any measurements to ensure the emergence of diversity. A serious limitation of current ensemble methods is the lack of comprehensibility. How to improve the comprehensibility of knowledge learned from ensembles is an important yet largely understudied direction [21]. To ensure diversity in this paper, the training dataset
The contributions of this paper are as follows:
We prove theoretically and experimentally that, the conditional dependencies among attributes may vary greatly across different subspaces of the training data. The entropy functions BNCs learn from disjoint subspaces rather than the resampled data, thereby ensuring diversity in the data distribution. Bagging combines BNCs with the same class label by applying a uniformly weighted average, and a prediction is made by applying the Bayes rule to select the maximum posterior probability. The experimental results show that this adjustment is effective and demonstrate that it can help improve zero-one loss, bias, variance, and root mean squared error.
The rest of this paper is organized as follows: Section 2 clarifies the relationship between entropy function
Topologies of (a) NB and (b) TAN.
A BNC can be defined by the pair
where
Topologies of (a) KDB and (b) AODE.
By adding augmented edges to the topology of NB, the tree augmented naive Bayes (TAN) (Fig. 1b) and
Diversity in independence assumptions leads to diversity in learned topologies. ATAN [32] respectively chooses each attribute as the root node of the maximum weighted spanning tree to help reduce its bias at the cost of variance. AODE (Fig. 2b) utilizes a restricted class of super-parent one-dependence estimators (SPODEs) to mitigate the negative effect of the biased estimate of probability distribution learned from single-model classifiers. The weaker independence assumption of AODE is necessarily true if NB’s is true and may also be true when NB’s is not [33]. Jiang et al. [17] proposed to use information-theoretic metrics, such as mutual information, conditional log likelihood and area under the ROC curve (AUC), to assign weights to SPODEs. These metrics aim to find a balance between the goodness of fit and model simplicity. Bagging trains an ensemble BNC on randomly sampled data. Hellman et al. [34] introduced Ensembled Continuous Bayesian Networks (ECBNs), which are trained on both the data subset and the attribute subset, to learn salient dependence relationships and predict values for continuous data. Kunwar et al. [35] pseudo-randomly selected subsets of components of the attribute vector and then constructed BNCs on randomly chosen subspaces by using the Random Subspace method.
Boosting iteratively trains an ensemble BNC on weighted training data. Oza and Russel [36] introduced Online Bagging, which alleviates the limitation of standard bagging (i.e. requiring the entire training set to be available beforehand for learning). The theoretical foundations of this approach were further developed by Bifet and Holmes [37, 38]. They introduced two modifications of Oza’s algorithm called Adaptive-Size Hoeffding Trees (ASHT) and Leveraging Bagging, which aim at adding more randomization to the input and output of the base classifiers. Boosting has been proven efficient in handling imbalanced data. However, boosting learning may be prone to overfitting when a small amount of training data is used. To address this problem, Yu et al. [39] proposed a bayesian undirected graphical model interpretation for co-training, which alternately uses the most confident unlabeled data instance(s) in one modality to assist the model training of another modality. Freund and Schapire [40] proposed adaptive boosting to generate multiple weak classifiers with the weight distribution of different training instances. Foo et al. [41] trained weak classifiers by using the biased Baum-Welch algorithm under the AdaBoost framework. Recently, the hybrids of bagging and boosting techniques are reported to outperform many other complex algorithms. EasyEnsemble and BalanceCascade [42] use bagging as the main ensemble learning method, and they train each bag by using AdaBoost.
Difference in probability distribution across various data subspaces
For TAN or
The distributions of values of 
In Eq. (2),
Scatter plot (a) and corresponding contour plot (b) of conditional dependencies identified by comparing 
Scatter plot (a) and corresponding contour plot (b) of conditional dependencies identified by comparing 
As the dependence degree increases, the number of conditional dependencies to be described in BNC will increase exponentially (i.e., the number of conditional dependencies for KDB is
For specific instance
To mitigate the negative effect of the i.i.d. assumption and finely tune the conditional dependency relationships among attributes, the training set
Example of BKDB.
The distribution and histogram of 
The number of bits encoded in an ideal
The conditional entropy
In the following discussion, if the values of
[htbp] LearnStructure (
Compute
Let
To perform precise calculations of Eqs (1) and (2) for structure learning, the critical issue is to choose suitable distributions for the probabilities. For dataset
where
Algorithm flowchart.
If BNCs focus on learning the general conditional dependencies from the training data while neglecting the characteristics of different instances, then the resulting overfitting will lead to biased estimates of conditional probability and negative effect on classification performance. To address this issue, by pre-assigning class label
To minimize
[h] LearnStructure (
Add a node to bkdb
The pseudo instance
The ensemble classifier should perform better, on average, than any individual member. Several combiners have been proposed to combine these members, including the linear, product, and voting combiners.
If the weights
Diversity has been recognized as a very important characteristic in classifier combination. Bagging enhances diversity in an ensemble by training each member on a bootstrap resampled set of data drawn from the original training data [45]. The diversity of the resampled sets directly determines the diversity of BNC members. A high level of diversity is necessary for to improve ensemble BNCs. To address this issue, in this paper
The classification procedure is presented in Algorithm 3.
[htbp] Classification.Training set
Datasets
Datasets
To compare the classification performance and clarify the difference among BNCs while dealing with datasets of different sizes, we gather a group of small datasets having less than 2000 instances and a group of relatively large datasets having more than 2000 instances, and up to one million instances. Small and large datasets respectively account for 50% of the total 54 datasets, which are publicly available from the UCI machine learning repository [46] and are described in detail in Table 1. We roughly divide the algorithms for comparison into three categories. The first one contains two state-of-the-art single-model BNCs, including TAN and KDB with
The classification performance is compared and analyzed in terms of zero-one loss, root mean square error (RMSE), bias, variance and MCC. Statistically a Win/Draw/Loss record (W/D/L) is calculated for each pair of competitors
The abbreviations for competing algorithms are described below:
TAN, Tree-augmented Naive Bayes. K AODE, Averaged one-dependence estimators. AODE-SR, AODE with subsumption resolution. WAODE-MI, AODE using mutual information as the weight of each SPODE. Boosting Boosting Bagging Boosting BKDB, Bagging
The Boosting and Bagging algorithms are implemented with the Weka work-branch (version 3.8.3) using Java 8, other algorithms are conducted using C++.
Win-Draw-Loss results of zero-one loss
Win-Draw-Loss results of zero-one loss
Win-Draw-Loss results of zero-one loss on small datasets
Win-Draw-Loss results of zero-one loss on large datasets
The detailed zero-one loss records are shown in Table A1. Corresponding W/D/L records are shown in Table 2, from which high-dependence BNCs show significant advantage over their competitors. TAN beats NB on 37 datasets and loses on 10. K
For further analysis of the underlying mechanisms of these BNCs, we respectively provide the experimental results on small datasets and large datasets in terms of zero-one loss in Tables 3 and 4. The advantage of high-dependence BNCs is not significant while dealing small datasets, and some times they even perform poorer. TAN beats NB on 14 datasets and loses on 10. K
Win-Draw-Loss results of bias and variance
Win-Draw-Loss results of bias and variance
The bias-variance decomposition for zero-one loss is often used for analyzing the performance of ensemble algorithms [21, 28]. The W/D/L records in terms of bias and variance are shown in Table 5. The detailed bias and variance records are respectively shown in Tables A2 and A3.
In terms of bias TAN beats NB with 34 wins and 13 losses, K
It is very difficult to achieve the trade-off between bias and variance. Low bias with high variance or high bias with low variance often happens. In terms of variance NB beats TAN with 43 wins and 6 losses, TAN beats K
Attribute values for instance 
High-dependence topology and Bagging help BKDB exhibit excellent bias-variance trade-off. Among 2-dependence BNCs, BKDB enjoys significant advantage over K
The contour plots of conditional dependencies learned from (a) 
Regularly RMSE is used as a standard statistical metric for model evaluation and is defined as:
where
Win-Draw-Loss results of RMSE on 54 datasets
The distribution of 
Most datasets don’t have exactly the same number of instances in each class. The entropy function
From Eq. (2), for single-model BNCs, e.g., TAN or KDB, the conditional dependence measured by conditional mutual information may not generalize well to training subspace of the minority class. The diversity introduced by Bagging makes the committee member underfit the whole training data. By dividing training data into subspaces according to class labels, BKDB can deeply mine the conditional dependencies given specific class label and that will greatly mitigate the negative effect caused by imbalanced data.
The detailed MCC records are shown in Table A5. From the W/D/L records shown in Table 7, K
Win-Draw-Loss results of MCC on 54 datasets
Comparisons of training and classification time.
We present the comparisons results of training time and classification time in Fig. 12. All experiments have been conducted on a desktop computer with AMD Ryzen 5 1500X CPU @ 3.80 GHz, 64 bits and 32G of memory. No parallelization techniques have been used in any case, although most algorithms could be parallelized. As shown in Fig. 12, Bagging needs more time than Boosting for training. As indicated by the analysis of structure complexity, K
For classification, among single-model BNCs NB needs to estimate
Conclusions and future work
Ensuring diversity among committee members is a critical issue in ensemble learning. By dividing the training data into disjoint subspaces according to their class labels and then preassigning a class label to each testing instance, BKDB provides a feasible way for mining conditional dependencies not only from training data but also from testing instances. The difference in the learning objects ensures the diversity among learned BNCs. The experimental results prove the effectiveness and efficiency of BKDB in terms of zero-one loss, bias, variance and etc.
The joint entropy defined in Eq. (6) can measure the extent to which the learned BNC fits the training data. The estimate of conditional probabilities produced by weak BNCs may be biased, and in our future research we seek to explore other approaches for ensuring that the division of training data can help minimize the joint entropy. Another feasible way to achieve a bias-variance trade-off is to assign different weights to the committee members in terms of joint entropy and then linearly combine their probability estimates.
Footnotes
Acknowledgments
This work is supported by the National Key Research and Development Program of China (No. 2019YFC1804804) and the Scientific and Technological Developing Scheme of Jilin Province (No. 20200201281JC).
Appendix A
Experimental results of zero-one loss
Dataset
NB
TAN
K
AODE
AODE-SR
WAODE-MI
Boosting
Boosting
Bagging
Bagging
BKDB
Lung-cancer
0.4375
0.5938
0.5625
0.5000
0.5000
0.5000
0.6250
0.5938
0.4062
0.4688
0.4688
Labor-negotiations
0.0702
0.1053
0.0702
0.0526
0.0526
0.0526
0.1228
0.1228
0.0877
0.0877
0.0877
Zoo
0.0297
0.0099
0.0495
0.0297
0.0297
0.0297
0.0396
0.0099
0.0594
0.0396
0.0198
Echocardiogram
0.3359
0.3282
0.3435
0.3206
0.3206
0.3206
0.3511
0.3511
0.2901
0.3053
0.3206
Lymphography
0.1486
0.1757
0.2365
0.1689
0.1689
0.1554
0.1622
0.1622
0.1419
0.1486
0.1351
Iris
0.0867
0.0800
0.0867
0.0867
0.0867
0.0867
0.0667
0.0600
0.0533
0.0533
0.0800
Teaching-ae
0.4967
0.5497
0.5364
0.4901
0.4768
0.4503
0.4768
0.5166
0.5563
0.5695
0.4305
Hepatitis
0.1935
0.1677
0.1871
0.1806
0.1871
0.1806
0.1871
0.1677
0.1355
0.1355
0.1548
Wine
0.0169
0.0337
0.0225
0.0225
0.0225
0.0169
0.0225
0.0449
0.0112
0.0169
0.0225
Autos
0.3122
0.2146
0.2049
0.2049
0.2049
0.1951
0.2293
0.1805
0.2780
0.1902
0.1707
Sonar
0.2308
0.2212
0.2452
0.2260
0.2212
0.2260
0.1683
0.2163
0.2356
0.2356
0.2212
Glass-id
0.2617
0.2196
0.2196
0.2523
0.2570
0.2570
0.2103
0.1963
0.1869
0.1776
0.1963
Audio
0.2389
0.2920
0.3230
0.2035
0.2080
0.1903
0.1947
0.2257
0.2611
0.3186
0.2522
Dermatology
0.0191
0.0328
0.0656
0.0164
0.0164
0.0191
0.0273
0.0383
0.0246
0.0191
0.0164
House-votes-84
0.0943
0.0552
0.0506
0.0529
0.0529
0.0506
0.0552
0.0598
0.0966
0.0552
0.0506
Chess
0.1125
0.0926
0.0998
0.0998
0.1016
0.0944
0.1307
0.0853
0.1270
0.0889
0.0762
Syncon
0.0283
0.0083
0.0133
0.0100
0.0100
0.0100
0.0217
0.0200
0.0317
0.0117
0.0167
Soybean
0.0893
0.0469
0.0556
0.0469
0.0483
0.0483
0.0615
0.0732
0.0688
0.0454
0.0527
Credit-a
0.1406
0.1507
0.1464
0.1391
0.1304
0.1362
0.1362
0.1710
0.1406
0.1333
0.1493
Crx
0.1377
0.1478
0.1565
0.1348
0.1377
0.1377
0.1449
0.1725
0.1362
0.1464
0.1406
Breast-cancer-w
0.0258
0.0415
0.0744
0.0358
0.0358
0.0358
0.0429
0.0701
0.0258
0.0386
0.0615
Pima-ind-diabetes
0.2448
0.2383
0.2448
0.2383
0.2370
0.2383
0.2578
0.2539
0.2409
0.2396
0.2409
Vehicle
0.3924
0.2943
0.2943
0.2896
0.2884
0.2872
0.3865
0.2683
0.3806
0.2825
0.2730
Anneal
0.0379
0.0111
0.0089
0.0089
0.0078
0.0089
0.0579
0.0535
0.0646
0.0501
0.0078
Tic-tac-toe
0.3069
0.2286
0.2035
0.2651
0.2651
0.2724
0.1660
0.1221
0.2975
0.2265
0.2067
Vowel
0.4242
0.1303
0.1818
0.1495
0.1505
0.1949
0.2061
0.0576
0.3152
0.0667
0.1354
Car
0.1400
0.0567
0.0382
0.0816
0.0816
0.0885
0.0978
0.0312
0.1453
0.0538
0.0388
Mfeat-mor
0.3140
0.2970
0.3060
0.3145
0.3135
0.3130
0.3180
0.2925
0.3170
0.2840
0.3010
Hypothyroid
0.0149
0.0104
0.0107
0.0136
0.0120
0.0104
0.0142
0.0117
0.0149
0.0101
0.0101
Kr-vs-kp
0.1214
0.0776
0.0416
0.0842
0.0720
0.0576
0.0513
0.0535
0.1236
0.0710
0.0426
Dis
0.0159
0.0159
0.0138
0.0130
0.0119
0.0143
0.0148
0.0141
0.0146
0.0138
0.0127
Hypo
0.0138
0.0141
0.0114
0.0095
0.0095
0.0101
0.0151
0.0148
0.0146
0.0090
0.0127
Sick
0.0308
0.0257
0.0223
0.0273
0.0252
0.0244
0.0276
0.0236
0.0286
0.0236
0.0255
Abalone
0.4762
0.4587
0.4563
0.4472
0.4475
0.4475
0.4870
0.4613
0.4805
0.4503
0.4577
Spambase
0.1015
0.0669
0.0635
0.0672
0.0680
0.0648
0.0696
0.0578
0.1013
0.0648
0.0630
Waveform-5000
0.2006
0.1844
0.2000
0.1462
0.1424
0.1450
0.1884
0.1828
0.1952
0.1636
0.1614
Phoneme
0.2615
0.2733
0.1984
0.2392
0.2365
0.2308
0.2479
0.2690
0.2773
0.2330
0.1878
Wall-following
0.1054
0.0554
0.0401
0.0370
0.0370
0.0367
0.0286
0.0519
0.1146
0.0663
0.0385
Page-blocks
0.0619
0.0415
0.0391
0.0338
0.0338
0.0347
0.0415
0.0343
0.0610
0.0362
0.0296
Optdigits
0.0767
0.0407
0.0372
0.0311
0.0302
0.0302
0.0582
0.0354
0.0758
0.0361
0.0262
Satellite
0.1806
0.1214
0.1080
0.1148
0.1148
0.1148
0.1571
0.1141
0.1768
0.1145
0.0979
Mushrooms
0.0196
0.0001
0.0000
0.0001
0.0002
0.0000
0.0000
0.0000
0.0379
0.0000
0.0000
Thyroid
0.1111
0.0720
0.0706
0.0701
0.0686
0.0655
0.1145
0.0903
0.1122
0.0783
0.0581
Pendigits
0.1181
0.0321
0.0294
0.0200
0.0200
0.0199
0.0759
0.0393
0.1185
0.0345
0.0152
Sign
0.3586
0.2755
0.2539
0.2821
0.2817
0.2768
0.3604
0.2767
0.3585
0.2684
0.2236
Nursery
0.0973
0.0654
0.0289
0.0730
0.0730
0.0708
0.0804
0.0282
0.0971
0.0583
0.0532
Magic
0.2239
0.1675
0.1637
0.1752
0.1751
0.1762
0.1741
0.1556
0.2221
0.1554
0.1513
Letter-recog
0.2525
0.1300
0.0986
0.0883
0.0879
0.0853
0.2569
0.1080
0.2556
0.1331
0.0503
Adult
0.1592
0.1380
0.1383
0.1493
0.1410
0.1445
0.1463
0.1459
0.1585
0.1384
0.1320
Shuttle
0.0039
0.0015
0.0009
0.0008
0.0008
0.0009
0.0007
0.0006
0.0055
0.0010
0.0006
Connect-4
0.2783
0.2354
0.2283
0.2420
0.2384
0.2406
0.2784
0.2355
0.2779
0.2356
0.2186
Waveform
0.0220
0.0202
0.0256
0.0180
0.0181
0.0181
0.0201
0.0200
0.0217
0.0192
0.0183
Localization
0.4955
0.3575
0.2964
0.3596
0.3596
0.3566
0.4950
0.3541
0.4935
0.3465
0.2652
Poker-hand
0.4988
0.3295
0.1961
0.4812
0.4812
0.1758
0.4988
0.3290
0.4988
0.2237
0.0699
Experimental results of bias
Dataset
NB
TAN
K
AODE
AODE-SR
WAODE-MI
Boosting
Boosting
Bagging
Bagging
BKDB
Lung-cancer
0.3330
0.3450
0.3490
0.2270
0.2270
0.2360
0.3256
0.3163
0.3006
0.3049
0.3980
Labor-negotiations
0.0505
0.0716
0.0553
0.0316
0.0316
0.0268
0.0419
0.0667
0.0276
0.0363
0.0547
Zoo
0.0318
0.0303
0.0403
0.0273
0.0273
0.0273
0.0786
0.0760
0.0844
0.0786
0.0330
Echocardiogram
0.2844
0.2642
0.3065
0.2751
0.2751
0.2572
0.2374
0.2350
0.2644
0.2543
0.2595
Lymphography
0.0902
0.1027
0.1041
0.0933
0.0933
0.0951
0.1658
0.1312
0.1598
0.1336
0.0933
Iris
0.0612
0.0638
0.0596
0.0586
0.0586
0.0656
0.0343
0.0359
0.0386
0.0315
0.0642
Teaching-ae
0.4836
0.4566
0.4606
0.4370
0.4370
0.3984
0.3678
0.3770
0.3800
0.3882
0.4336
Hepatitis
0.1537
0.1712
0.1741
0.1649
0.1649
0.1655
0.0774
0.0779
0.0970
0.0702
0.1733
Wine
0.0331
0.0507
0.0520
0.0346
0.0346
0.0381
0.0143
0.0181
0.0133
0.0157
0.0331
Autos
0.2181
0.2356
0.2253
0.2165
0.2165
0.2115
0.2056
0.1996
0.2328
0.2173
0.2138
Sonar
0.1672
0.1646
0.1686
0.1696
0.1696
0.1722
0.1191
0.1219
0.1596
0.1432
0.1664
Glass-id
0.2901
0.2756
0.2713
0.2785
0.2785
0.2780
0.1552
0.1441
0.1566
0.1406
0.2790
Audio
0.2733
0.3617
0.3493
0.1753
0.1753
0.1799
0.2263
0.2131
0.2828
0.2681
0.2932
Dermatology
0.0079
0.0274
0.0489
0.0055
0.0050
0.0061
0.0146
0.0326
0.0146
0.0289
0.0085
House-votes-84
0.0899
0.0410
0.0258
0.0430
0.0430
0.0406
0.0191
0.0183
0.0717
0.0302
0.0368
Chess
0.1413
0.1437
0.1119
0.1290
0.1244
0.1286
0.0762
0.0805
0.0953
0.0815
0.1342
Syncon
0.0516
0.0203
0.0314
0.0185
0.0187
0.0180
0.0195
0.0138
0.0369
0.0172
0.0296
Soybean
0.1015
0.0522
0.0491
0.0524
0.0514
0.0503
0.0741
0.0575
0.0825
0.0590
0.0640
Credit-a
0.0912
0.1171
0.1137
0.0921
0.0953
0.0900
0.1153
0.1110
0.1464
0.1276
0.0963
Crx
0.0922
0.1180
0.1197
0.0921
0.0980
0.0953
0.1188
0.1198
0.1493
0.1300
0.1041
Breast-cancer-w
0.0187
0.0384
0.0449
0.0338
0.0338
0.0327
0.0259
0.0278
0.0279
0.0257
0.0402
Pima-ind-diabetes
0.1957
0.1946
0.1944
0.1937
0.1935
0.1941
0.1575
0.1608
0.1667
0.1639
0.1916
Vehicle
0.3330
0.2382
0.2494
0.2415
0.2401
0.2398
0.3096
0.2147
0.3097
0.2062
0.2341
Anneal
0.0354
0.0201
0.0073
0.0214
0.0208
0.0194
0.0361
0.0294
0.0583
0.0628
0.0179
Tic-tac-toe
0.2614
0.1746
0.1367
0.2005
0.2005
0.2104
0.1084
0.1210
0.2290
0.1814
0.1559
Vowel
0.3301
0.1942
0.1745
0.1895
0.1805
0.1811
0.3166
0.1744
0.2773
0.2043
0.1755
Car
0.0937
0.0478
0.0387
0.0556
0.0556
0.0633
0.0637
0.0322
0.0988
0.0600
0.0389
Mfeat-mor
0.2624
0.2077
0.2142
0.2477
0.2475
0.2464
0.2421
0.2094
0.2415
0.2173
0.2227
Hypothyroid
0.0116
0.0104
0.0096
0.0094
0.0095
0.0099
0.0121
0.0114
0.0168
0.0122
0.0084
Kr-vs-kp
0.1107
0.0702
0.0417
0.0747
0.0654
0.0518
0.0283
0.0260
0.1065
0.0527
0.0407
Dis
0.0165
0.0193
0.0191
0.0170
0.0162
0.0179
0.0168
0.0167
0.0169
0.0190
0.0193
Hypo
0.0092
0.0124
0.0077
0.0071
0.0069
0.0078
0.0115
0.0107
0.0151
0.0110
0.0086
Sick
0.0246
0.0207
0.0198
0.0224
0.0227
0.0216
0.0218
0.0205
0.0233
0.0214
0.0223
Abalone
0.4180
0.3126
0.3033
0.3201
0.3199
0.3212
0.3607
0.2960
0.3595
0.3011
0.3054
Spambase
0.0929
0.0570
0.0497
0.0606
0.0600
0.0574
0.0417
0.0363
0.0848
0.0557
0.0564
Waveform-5000
0.1762
0.1232
0.1157
0.1235
0.1212
0.1184
0.1473
0.1110
0.1735
0.1227
0.1138
Phoneme
0.2216
0.2394
0.1572
0.2207
0.2137
0.2172
0.2009
0.1735
0.2299
0.2266
0.1706
Wall-following
0.0951
0.0491
0.0257
0.0251
0.0251
0.0253
0.0198
0.0306
0.1017
0.0532
0.0294
Page-blocks
0.0451
0.0308
0.0280
0.0251
0.0251
0.0243
0.0353
0.0283
0.0422
0.0247
0.0257
Optdigits
0.0685
0.0275
0.0250
0.0233
0.0229
0.0224
0.0373
0.0222
0.0665
0.0294
0.0216
Satellite
0.1746
0.0950
0.0808
0.0902
0.0902
0.0902
0.1254
0.0780
0.1598
0.0957
0.0813
Mushrooms
0.0237
0.0001
0.0001
0.0004
0.0004
0.0002
0.0000
0.0000
0.0517
0.0000
0.0000
Thyroid
0.0994
0.0587
0.0553
0.0611
0.0595
0.0561
0.0631
0.0586
0.0955
0.0650
0.0515
Pendigits
0.1095
0.0314
0.0207
0.0228
0.0228
0.0231
0.0427
0.0181
0.1115
0.0323
0.0168
Sign
0.3257
0.2420
0.2161
0.2531
0.2489
0.2461
0.3238
0.2443
0.3282
0.2492
0.1980
Nursery
0.0928
0.0521
0.0281
0.0651
0.0651
0.0616
0.0634
0.0114
0.0827
0.0569
0.0428
Magic
0.2111
0.1252
0.1241
0.1600
0.1534
0.1541
0.1260
0.1122
0.2090
0.1301
0.1263
Letter-recog
0.2207
0.1032
0.0806
0.0876
0.0868
0.0823
0.2262
0.0710
0.2219
0.1140
0.0526
Adult
0.1649
0.1312
0.1220
0.1437
0.1378
0.1387
0.1233
0.1137
0.1554
0.1257
0.1202
Shuttle
0.0040
0.0008
0.0007
0.0006
0.0006
0.0006
0.0006
0.0006
0.0050
0.0014
0.0005
Connect-4
0.2660
0.2253
0.2022
0.2264
0.2224
0.2237
0.2610
0.2158
0.2592
0.2152
0.1993
Waveform
0.0219
0.0152
0.0210
0.0156
0.0157
0.0158
0.0199
0.0112
0.0241
0.0154
0.0153
Localization
0.4523
0.3106
0.2134
0.3129
0.3129
0.3068
0.4444
0.3038
0.4562
0.3080
0.1979
Poker-hand
0.4979
0.2865
0.1326
0.4216
0.4216
0.1716
0.4988
0.2362
0.4988
0.1497
0.0670
Experimental results of variance
Dataset
NB
TAN
K
AODE
AODE-SR
WAODE-MI
Boosting
Boosting
Bagging
Bagging
BKDB
Lung-cancer
0.1970
0.2950
0.2810
0.2130
0.2130
0.2240
0.2212
0.2584
0.2542
0.2635
0.2520
Labor-negotiations
0.0653
0.1389
0.1289
0.0526
0.0526
0.0626
0.0995
0.1333
0.0852
0.0928
0.0821
Zoo
0.0439
0.0606
0.0658
0.0424
0.0424
0.0424
0.0640
0.1000
0.0649
0.0982
0.0518
Echocardiogram
0.1272
0.1265
0.1400
0.1319
0.1319
0.1335
0.1350
0.1382
0.0979
0.1047
0.1358
Lymphography
0.0343
0.1116
0.1408
0.0476
0.0476
0.0478
0.0899
0.1100
0.0542
0.0881
0.0720
Iris
0.0428
0.0662
0.0404
0.0374
0.0374
0.0364
0.0129
0.0189
0.0087
0.0164
0.0378
Teaching-ae
0.1484
0.1914
0.1494
0.1650
0.1650
0.1776
0.2028
0.2111
0.1767
0.1970
0.1624
Hepatitis
0.0424
0.0582
0.0612
0.0527
0.0527
0.0541
0.0940
0.0923
0.0303
0.0561
0.0463
Wine
0.0093
0.0493
0.0649
0.0231
0.0231
0.0246
0.0295
0.0455
0.0136
0.0232
0.0195
Autos
0.1349
0.1747
0.1821
0.1541
0.1541
0.1503
0.2147
0.2173
0.1924
0.2047
0.1538
Sonar
0.0907
0.1165
0.1199
0.0942
0.0942
0.1003
0.1349
0.1385
0.0924
0.1045
0.1032
Glass-id
0.0930
0.1075
0.1189
0.1004
0.1004
0.1051
0.1344
0.1402
0.1037
0.1091
0.1111
Audio
0.1000
0.0983
0.1373
0.1407
0.1407
0.1401
0.1387
0.1409
0.1322
0.1452
0.1415
Dermatology
0.0216
0.0513
0.0684
0.0199
0.0188
0.0242
0.0311
0.0658
0.0289
0.0531
0.0234
House-votes-84
0.0066
0.0170
0.0197
0.0094
0.0094
0.0083
0.0264
0.0404
0.0096
0.0160
0.0177
Chess
0.0401
0.0486
0.0531
0.0415
0.0422
0.0364
0.0632
0.0662
0.0471
0.0496
0.0402
Syncon
0.0204
0.0222
0.0301
0.0225
0.0218
0.0230
0.0267
0.0206
0.0189
0.0172
0.0235
Soybean
0.0302
0.0654
0.0439
0.0326
0.0349
0.0334
0.0740
0.0887
0.0397
0.0716
0.0303
Credit-a
0.0249
0.0555
0.0768
0.0305
0.0313
0.0321
0.0690
0.0823
0.0207
0.0393
0.0493
Crx
0.0200
0.0520
0.0663
0.0274
0.0268
0.0264
0.0714
0.0923
0.0163
0.0424
0.0437
Breast-cancer-w
0.0010
0.0337
0.0504
0.0134
0.0134
0.0128
0.0139
0.0336
0.0015
0.0246
0.0392
Pima-ind-diabetes
0.0715
0.0663
0.0689
0.0727
0.0698
0.0700
0.0942
0.0896
0.0679
0.0649
0.0705
Vehicle
0.1120
0.1299
0.1283
0.1277
0.1287
0.1276
0.1266
0.1541
0.1011
0.1136
0.1233
Anneal
0.0168
0.0161
0.0152
0.0197
0.0160
0.0161
0.0413
0.0394
0.0392
0.0402
0.0128
Tic-tac-toe
0.0455
0.0824
0.1125
0.0513
0.0513
0.0604
0.0900
0.1255
0.0657
0.0893
0.0848
Vowel
0.2542
0.2445
0.2325
0.2344
0.2304
0.2310
0.2687
0.2507
0.2360
0.2580
0.2245
Car
0.0520
0.0376
0.0434
0.0438
0.0438
0.0427
0.0488
0.0481
0.0724
0.0543
0.0425
Mfeat-mor
0.0622
0.1020
0.1031
0.0677
0.0679
0.0686
0.0725
0.0985
0.0664
0.0810
0.0893
Hypothyroid
0.0031
0.0034
0.0024
0.0034
0.0030
0.0033
0.0074
0.0069
0.0026
0.0024
0.0031
Kr-vs-kp
0.0186
0.0152
0.0111
0.0186
0.0166
0.0119
0.0305
0.0303
0.0292
0.0199
0.0165
Dis
0.0069
0.0005
0.0011
0.0071
0.0041
0.0021
0.0021
0.0026
0.0031
0.0006
0.0009
Hypo
0.0051
0.0071
0.0069
0.0049
0.0047
0.0056
0.0122
0.0107
0.0075
0.0051
0.0062
Sick
0.0047
0.0051
0.0043
0.0042
0.0039
0.0057
0.0150
0.0129
0.0036
0.0047
0.0048
Abalone
0.0682
0.1693
0.1769
0.1544
0.1543
0.1543
0.1111
0.1698
0.1091
0.1516
0.1706
Spambase
0.0092
0.0158
0.0214
0.0105
0.0105
0.0111
0.0343
0.0328
0.0096
0.0106
0.0150
Waveform-5000
0.0259
0.0690
0.0843
0.0410
0.0413
0.0420
0.0445
0.0914
0.0212
0.0452
0.0564
Phoneme
0.1215
0.1828
0.1064
0.1343
0.1360
0.1311
0.1589
0.1759
0.1230
0.1380
0.1119
Wall-following
0.0211
0.0288
0.0294
0.0242
0.0242
0.0242
0.0198
0.0347
0.0210
0.0264
0.0243
Page-blocks
0.0135
0.0143
0.0177
0.0124
0.0123
0.0130
0.0175
0.0166
0.0134
0.0116
0.0116
Optdigits
0.0153
0.0185
0.0254
0.0139
0.0138
0.0137
0.0349
0.0257
0.0174
0.0148
0.0107
Satellite
0.0139
0.0367
0.0455
0.0363
0.0363
0.0364
0.0362
0.0420
0.0128
0.0194
0.0307
Mushrooms
0.0043
0.0002
0.0002
0.0001
0.0001
0.0001
0.0003
0.0002
0.0041
0.0003
0.0001
Thyroid
0.0205
0.0257
0.0272
0.0235
0.0230
0.0239
0.0417
0.0428
0.0197
0.0233
0.0203
Pendigits
0.0157
0.0200
0.0236
0.0127
0.0127
0.0129
0.0357
0.0261
0.0147
0.0153
0.0113
Sign
0.0313
0.0386
0.0596
0.0378
0.0384
0.0403
0.0377
0.0459
0.0287
0.0343
0.0515
Nursery
0.0085
0.0168
0.0195
0.0105
0.0105
0.0111
0.0211
0.0195
0.0124
0.0140
0.0118
Magic
0.0174
0.0490
0.0491
0.0297
0.0291
0.0289
0.0483
0.0573
0.0155
0.0301
0.0439
Letter-recog
0.0471
0.0591
0.0709
0.0448
0.0448
0.0455
0.0614
0.0741
0.0570
0.0663
0.0370
Adult
0.0069
0.0165
0.0285
0.0116
0.0111
0.0113
0.0277
0.0370
0.0098
0.0174
0.0217
Shuttle
0.0009
0.0004
0.0003
0.0004
0.0004
0.0004
0.0009
0.0008
0.0012
0.0005
0.0003
Connect-4
0.0156
0.0149
0.0309
0.0222
0.0205
0.0215
0.0195
0.0195
0.0213
0.0204
0.0310
Waveform
0.0009
0.0053
0.0037
0.0025
0.0025
0.0023
0.0032
0.0106
0.0009
0.0039
0.0029
Localization
0.0460
0.0594
0.1099
0.0580
0.0580
0.0632
0.0546
0.0662
0.0393
0.0521
0.0948
Poker-hand
0.0000
0.0424
0.0633
0.0273
0.0273
0.0602
0.0000
0.0911
0.0000
0.0802
0.0039
Experimental results of RMSE for all classes
Dataset
NB
TAN
K
AODE
AODE-SR
WAODE-MI
Boosting
Boosting
Bagging
Bagging
BKDB
Lung-cancer
0.5240
0.6178
0.5866
0.5627
0.5627
0.5658
0.6087
0.5544
0.4521
0.4639
0.4538
Labor-negotiations
0.2268
0.2778
0.2477
0.1995
0.1995
0.2057
0.2759
0.3025
0.2528
0.2734
0.2255
Zoo
0.0802
0.0647
0.0859
0.0677
0.0677
0.0724
0.0855
0.0778
0.1004
0.0855
0.0646
Echocardiogram
0.4896
0.4886
0.4889
0.4903
0.4904
0.4872
0.4854
0.4854
0.4330
0.4355
0.4839
Lymphography
0.2446
0.2684
0.3031
0.2478
0.2475
0.2496
0.2674
0.2684
0.2469
0.2303
0.2360
Iris
0.2078
0.1958
0.1968
0.2069
0.2069
0.2091
0.2124
0.2008
0.1702
0.1643
0.1964
Teaching-ae
0.4789
0.4825
0.4804
0.4670
0.4679
0.4668
0.4654
0.4875
0.4684
0.4711
0.4630
Hepatitis
0.3901
0.3610
0.3875
0.3754
0.3742
0.3695
0.3716
0.3991
0.3412
0.3197
0.3530
Wine
0.0926
0.1414
0.1211
0.0976
0.0976
0.0983
0.1194
0.1649
0.0854
0.1094
0.1183
Autos
0.2714
0.2361
0.2323
0.2324
0.2320
0.2290
0.2336
0.2144
0.2487
0.2045
0.2080
Sonar
0.4421
0.4131
0.4084
0.4285
0.4134
0.4091
0.3829
0.4263
0.4059
0.3780
0.3951
Glass-id
0.3540
0.3332
0.3395
0.3439
0.3440
0.3422
0.3312
0.3364
0.3094
0.2932
0.3236
Audio
0.1254
0.1453
0.1528
0.1194
0.1179
0.1189
0.1259
0.1364
0.1254
0.1390
0.1208
Dermatology
0.0631
0.0851
0.1206
0.0692
0.0677
0.0688
0.0945
0.1106
0.0710
0.0740
0.0857
House-votes-84
0.2997
0.2181
0.1969
0.1994
0.1994
0.1927
0.2037
0.2352
0.2928
0.1980
0.1943
Chess
0.2944
0.2594
0.2615
0.2725
0.2669
0.2603
0.3125
0.2682
0.2982
0.2543
0.2486
Syncon
0.0931
0.0500
0.0611
0.0554
0.0538
0.0537
0.0847
0.0797
0.0881
0.0524
0.0743
Soybean
0.0933
0.0642
0.0654
0.0656
0.0658
0.0646
0.0754
0.0797
0.0804
0.0616
0.0634
Credit-a
0.3350
0.3415
0.3480
0.3271
0.3231
0.3236
0.3329
0.3674
0.3315
0.3192
0.3319
Crx
0.3342
0.3411
0.3525
0.3253
0.3184
0.3219
0.3311
0.3748
0.3311
0.3243
0.3303
Breast-cancer-w
0.1570
0.1928
0.2497
0.1848
0.1848
0.1855
0.1922
0.2603
0.1586
0.1772
0.2170
Pima-ind-diabetes
0.4147
0.4059
0.4074
0.4078
0.4067
0.4059
0.4300
0.4303
0.4016
0.3956
0.4065
Vehicle
0.3934
0.3104
0.3122
0.3097
0.3086
0.3099
0.3803
0.3047
0.3763
0.2897
0.2994
Anneal
0.0981
0.0543
0.0539
0.0546
0.0519
0.0536
0.1206
0.1205
0.1226
0.1093
0.0576
Tic-tac-toe
0.4309
0.4023
0.3772
0.3995
0.3995
0.4085
0.3353
0.2989
0.4322
0.3986
0.3686
Vowel
0.2270
0.1271
0.1582
0.1425
0.1420
0.1633
0.1708
0.0941
0.2014
0.1234
0.1339
Car
0.2252
0.1617
0.1379
0.2005
0.2005
0.1983
0.1849
0.1064
0.2267
0.1657
0.1579
Mfeat-mor
0.2086
0.1940
0.1974
0.1985
0.1983
0.1983
0.2595
0.2294
0.2059
0.1885
0.1962
Hypothyroid
0.1138
0.0955
0.0937
0.1036
0.0986
0.0967
0.1164
0.1039
0.1116
0.0969
0.0936
Kr-vs-kp
0.3022
0.2358
0.1869
0.2638
0.2565
0.2343
0.2013
0.1953
0.3034
0.2319
0.2174
Dis
0.1177
0.1103
0.1024
0.1080
0.0996
0.1046
0.1187
0.1174
0.1107
0.1043
0.1032
Hypo
0.0766
0.0738
0.0671
0.0650
0.0643
0.0647
0.0821
0.0847
0.0762
0.0607
0.0715
Sick
0.1700
0.1434
0.1382
0.1572
0.1500
0.1452
0.1616
0.1486
0.1605
0.1389
0.1431
Abalone
0.4630
0.4250
0.4277
0.4193
0.4193
0.4193
0.4670
0.4501
0.4610
0.4189
0.4258
Spambase
0.2994
0.2403
0.2300
0.2336
0.2335
0.2301
0.2360
0.2249
0.2931
0.2285
0.2185
Waveform-5000
0.3348
0.2947
0.3149
0.2659
0.2637
0.2635
0.3135
0.3259
0.3282
0.2735
0.2763
Phoneme
0.0880
0.0902
0.0784
0.0885
0.0880
0.0871
0.1043
0.0987
0.0882
0.0828
0.0758
Wall-following
0.2177
0.1586
0.1363
0.1292
0.1292
0.1293
0.1107
0.1552
0.2197
0.1589
0.1263
Page-blocks
0.1450
0.1187
0.1128
0.1021
0.1022
0.1025
0.1228
0.1121
0.1384
0.1054
0.0964
Optdigits
0.1163
0.0837
0.0792
0.0733
0.0726
0.0729
0.1011
0.0816
0.1133
0.0748
0.0657
Satellite
0.2400
0.1851
0.1777
0.1800
0.1800
0.1800
0.2078
0.1873
0.2346
0.1710
0.1565
Mushrooms
0.1229
0.0083
0.0001
0.0109
0.0146
0.0062
0.0000
0.0040
0.1646
0.0053
0.0061
Thyroid
0.0967
0.0746
0.0744
0.0745
0.0731
0.0715
0.1183
0.0890
0.0953
0.0772
0.0661
Pendigits
0.1427
0.0725
0.0687
0.0568
0.0568
0.0569
0.1116
0.0838
0.1402
0.0722
0.0563
Sign
0.3984
0.3505
0.3334
0.3524
0.3520
0.3519
0.4155
0.3714
0.3965
0.3452
0.3192
Nursery
0.1766
0.1385
0.1121
0.1571
0.1571
0.1577
0.1559
0.0887
0.1767
0.1388
0.1314
Magic
0.3974
0.3461
0.3470
0.3541
0.3542
0.3526
0.3589
0.3424
0.3957
0.3344
0.3357
Letter-recog
0.1184
0.0860
0.0768
0.0707
0.0704
0.0695
0.1701
0.0847
0.1179
0.0851
0.0586
Adult
0.3409
0.3076
0.3089
0.3245
0.3146
0.3197
0.3231
0.3281
0.3392
0.3069
0.3031
Shuttle
0.0298
0.0182
0.0146
0.0126
0.0128
0.0131
0.0142
0.0127
0.0330
0.0159
0.0118
Connect-4
0.3587
0.3315
0.3247
0.3370
0.3342
0.3356
0.3685
0.3566
0.3586
0.3314
0.3195
Waveform
0.1176
0.0951
0.1145
0.0860
0.0860
0.0860
0.1016
0.1108
0.1170
0.0919
0.0876
Localization
0.2390
0.2095
0.1960
0.2095
0.2095
0.2087
0.2826
0.2699
0.2384
0.2057
0.1829
Poker-hand
0.2382
0.2124
0.1760
0.2217
0.2217
0.2093
0.2382
0.2770
0.2382
0.1999
0.1536
Experimental results of MCC
Dataset
NB
TAN
K
AODE
AODE-SR
WAODE-MI
Boosting
Boosting
Bagging
Bagging
BKDB
Lung-cancer
0.3290
0.1012
0.1371
0.2333
0.2333
0.2333
0.0330
0.0900
0.3920
0.2840
0.2925
Labor-negotiations
0.8459
0.7659
0.8518
0.8864
0.8864
0.8864
0.7440
0.7280
0.8060
0.8060
0.8058
Zoo
0.9611
0.9871
0.9348
0.9611
0.9611
0.9610
0.9570
0.9890
0.9330
0.9530
0.9740
Echocardiogram
0.1569
0.1460
0.0868
0.1820
0.1820
0.1820
0.0690
0.0690
0.3130
0.2540
0.1654
Lymphography
0.7202
0.6633
0.5493
0.6782
0.6800
0.7041
0.6950
N/A
0.7250
N/A
0.7434
Iris
0.8701
0.8800
0.8701
0.8701
0.8701
0.8701
0.9000
0.9100
0.9200
0.9200
0.8800
Teaching-ae
0.2552
0.1774
0.1990
0.2651
0.2853
0.3265
0.2890
0.2260
0.1650
0.1460
0.3580
Hepatitis
0.4780
0.4763
0.3961
0.4487
0.4224
0.4360
0.3830
0.4540
0.5910
0.5640
0.5167
Wine
0.9745
0.9488
0.9659
0.9661
0.9661
0.9745
0.9650
0.9320
0.9830
0.9740
0.9659
Autos
0.5995
0.7213
0.7340
0.7358
0.7358
0.7479
0.7030
0.7650
0.6480
N/A
0.7784
Sonar
0.5355
0.5557
0.5064
0.5452
0.5549
0.5452
0.6620
0.5660
0.5260
0.5260
0.5554
Glass-id
0.5986
0.6631
0.6633
0.6132
0.6062
0.6062
0.6750
0.6960
0.7110
0.7220
0.6995
Audio
0.7205
0.6561
0.6188
0.7623
0.7575
0.7781
N/A
N/A
N/A
N/A
0.7026
Dermatology
0.9763
0.9590
0.9182
0.9797
0.9797
0.9764
0.9680
0.9550
0.9710
0.9770
0.9798
House-votes-84
0.8065
0.8839
0.8936
0.8889
0.8889
0.8936
0.8830
0.8740
0.8010
0.8840
0.8944
Chess
0.6922
0.7482
0.7321
0.7275
0.7217
0.7438
0.6470
0.7840
0.6480
0.7590
0.7951
Syncon
0.9661
0.9900
0.9841
0.9881
0.9881
0.9881
0.9740
0.9760
0.9630
0.9860
0.9801
Soybean
0.9045
0.9487
0.9391
0.9496
0.9480
0.9479
0.9300
0.9170
0.9240
0.9480
0.9432
Credit-a
0.7149
0.6942
0.7031
0.7177
0.7359
0.7236
0.7240
0.6530
0.7150
0.7290
0.6970
Crx
0.7215
0.7002
0.6833
0.7265
0.7210
0.7206
0.7080
0.6500
0.7240
0.7030
0.7147
Breast-cancer-w
0.9447
0.9078
0.8340
0.9226
0.9226
0.9226
0.9050
0.8430
0.9440
0.9140
0.8630
Pima-ind-diabetes
0.4576
0.4652
0.4550
0.4667
0.4693
0.4660
0.4260
0.4300
0.4660
0.4630
0.4564
Vehicle
0.4860
0.6094
0.6078
0.6161
0.6181
0.6178
0.4820
0.6370
0.4890
0.6190
0.6370
Anneal
0.9109
0.9722
0.9776
0.9777
0.9804
0.9777
0.8500
0.8600
0.8340
0.8670
0.9804
Tic-tac-toe
0.2849
0.4740
0.5367
0.3848
0.3848
0.3643
0.6260
0.7260
0.3020
0.4770
0.5304
Vowel
0.5336
0.8568
0.8001
0.8357
0.8346
0.7857
0.7750
0.9370
0.6550
0.9270
0.8512
Car
0.6818
0.8787
0.9182
0.8205
0.8205
0.8108
0.8150
0.9390
0.7170
0.8920
0.9149
Mfeat-mor
0.6533
0.6705
0.6605
0.6517
0.6529
0.6535
0.6390
0.6740
0.6440
0.6840
0.6663
Hypothyroid
0.8539
0.8849
0.8810
0.8618
0.8714
0.8864
0.8420
0.8670
0.8460
0.8870
0.8887
Kr-vs-kp
0.7567
0.8453
0.9167
0.8320
0.8559
0.8859
0.8970
0.8930
0.7520
0.8590
0.9148
Dis
0.4922
0.1842
0.4063
0.5600
0.5549
0.5109
0.3300
0.3560
0.5230
0.3670
0.4583
Hypo
0.9054
0.9007
0.9204
0.9337
0.9332
0.9298
N/A
N/A
0.9050
N/A
0.9099
Sick
0.7541
0.7750
0.8025
0.7783
0.7879
0.7914
0.7510
0.7810
0.7610
0.7970
0.7805
Abalone
0.3039
0.3112
0.3131
0.3283
0.3280
0.3278
0.2630
0.3000
0.2730
0.3160
0.3126
Spambase
0.7862
0.8593
0.8667
0.8589
0.8570
0.8641
0.8550
0.8790
0.7870
0.8640
0.8678
Waveform-5000
0.7189
0.7234
0.7001
0.7822
0.7873
0.7828
0.7260
0.7260
0.7250
0.7540
0.7588
Phoneme
0.7207
0.7084
0.7880
0.7437
0.7466
0.7528
0.7370
N/A
N/A
N/A
0.7995
Wall-following
0.8454
0.9170
0.9395
0.9443
0.9443
0.9449
0.9590
0.9210
0.8330
0.9000
0.9420
Page-blocks
0.7351
0.8062
0.8070
0.8316
0.8316
0.8273
0.7990
0.8290
0.7430
0.8380
0.8486
Optdigits
0.9149
0.9547
0.9587
0.9654
0.9664
0.9664
0.9350
0.9610
0.9170
0.9600
0.9710
Satellite
0.7807
0.8504
0.8665
0.8593
0.8593
0.8593
0.8100
0.8610
0.7960
0.8610
0.8790
Mushrooms
0.9612
0.9998
1.0000
0.9998
0.9995
1.0000
1.0000
1.0000
0.9260
1.0000
1.0000
Thyroid
0.7724
0.8378
0.8368
0.8465
0.8474
0.8547
N/A
N/A
N/A
N/A
0.8696
Pendigits
0.8699
0.9643
0.9674
0.9778
0.9778
0.9779
0.9150
0.9560
0.8700
0.9620
0.9831
Sign
0.4667
0.5879
0.6196
0.5780
0.5786
0.5855
0.4640
0.5850
0.4670
0.5980
0.6650
Nursery
0.8570
0.9038
0.9577
0.8926
0.8926
0.8960
N/A
N/A
N/A
N/A
0.9220
Magic
0.4894
0.6234
0.6330
0.6085
0.6087
0.6052
0.6090
0.6530
0.4940
0.6510
0.6610
Letter-recog
0.7378
0.8648
0.8975
0.9082
0.9086
0.9114
0.7390
0.8880
0.7390
0.8630
0.9477
Adult
0.6069
0.6132
0.6075
0.6192
0.6309
0.6214
0.6130
0.5900
0.6070
0.6090
0.6245
Shuttle
0.9891
0.9957
0.9975
0.9979
0.9978
0.9976
0.9980
0.9990
0.9860
0.9980
0.9984
Connect-4
0.3631
0.4766
0.4994
0.4575
0.4661
0.4616
0.3680
0.4750
0.3700
0.4750
0.5182
Waveform
0.9674
0.9698
0.9620
0.9730
0.9729
0.9728
0.9700
0.9700
0.9680
0.9710
0.9727
Localization
0.3660
0.5474
0.6274
0.5430
0.5430
0.5469
N/A
0.5460
N/A
0.5550
0.6659
Poker-hand
0.0000
0.4242
0.6487
0.0813
0.0813
0.6801
N/A
N/A
N/A
N/A
0.8773
