Next Article in Journal
Entropic Updating of Probabilities and Density Matrices
Next Article in Special Issue
Characterisation of the Effects of Sleep Deprivation on the Electroencephalogram Using Permutation Lempel–Ziv Complexity, a Non-Linear Analysis Tool
Previous Article in Journal
Assessment of Heart Rate Variability during an Endurance Mountain Trail Race by Multi-Scale Entropy Analysis
Previous Article in Special Issue
K-Dependence Bayesian Classifier Ensemble
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Label-Driven Learning Framework: Towards More Accurate Bayesian Network Classifiers through Discrimination of High-Confidence Labels

1
College of Computer Science and Technology, Jilin University, Changchun 130012, China
2
Key Laboratory of Symbolic Computation and Knowledge Engineering of Ministry of Education, Jilin University, Changchun 130012, China
*
Authors to whom correspondence should be addressed.
Entropy 2017, 19(12), 661; https://doi.org/10.3390/e19120661
Submission received: 31 October 2017 / Revised: 26 November 2017 / Accepted: 30 November 2017 / Published: 3 December 2017
(This article belongs to the Special Issue Symbolic Entropy Analysis and Its Applications)

Abstract

:
Bayesian network classifiers (BNCs) have demonstrated competitive classification accuracy in a variety of real-world applications. However, it is error-prone for BNCs to discriminate among high-confidence labels. To address this issue, we propose the label-driven learning framework, which incorporates instance-based learning and ensemble learning. For each testing instance, high-confidence labels are first selected by a generalist classifier, e.g., the tree-augmented naive Bayes (TAN) classifier. Then, by focusing on these labels, conditional mutual information is redefined to more precisely measure mutual dependence between attributes, thus leading to a refined generalist with a more reasonable network structure. To enable finer discrimination, an expert classifier is tailored for each high-confidence label. Finally, the predictions of the refined generalist and the experts are aggregated. We extend TAN to LTAN (Label-driven TAN) by applying the proposed framework. Extensive experimental results demonstrate that LTAN delivers superior classification accuracy to not only several state-of-the-art single-structure BNCs but also some established ensemble BNCs at the expense of reasonable computation overhead.

1. Introduction

Supervised classification is a fundamental issue in machine learning and data mining. The task of supervised classification can be described as given a labelled training set T with t training instances, predicting a class label c Ω C = { c 1 , , c l } for a testing instance x = ( x 1 , , x n ) ( x i Ω X i ), where x i is the value of an attribute X i and c i is a value of the class variable C. Among numerous classification techniques, Bayesian network classifiers (BNCs) are well-known for their model interpretability, comparable classification performance and the ability to directly handle multi-class classification problems [1]. A BNC B provides a confidence measure in the form of a posterior probability for each class label and performs a classification by assigning the label with the maximum posterior probability to x, that is:
c ^   =   arg max c Ω C   P B ( c | x ) .
By learning a more reasonable network structure, a BNC can often achieve higher classification accuracy. Naive Bayes (NB) assumes all the attributes are independent given the class. When dealing with large datasets with complex attribute dependencies, its performance degrades dramatically. To mine significant attribute dependencies in training data, the tree-augmented naive Bayes (TAN) classifier [2] models 1-dependence relations between attributes by building a maximal weighted spanning tree. The k-dependence Bayesian classifier (KDB) [3] allows us to construct classifiers at arbitrary points along the attribute dependence spectrum by varying the value of k. To explore possible attribute dependencies that exist in testing data, instance-based BNCs [4] learn the most appropriate network structure for each testing instance at classification time. The local KDB (LKDB) [5] captures local dependence relations between attributes. The lazy subsumption resolution [6] identifies occurrences of the specialization-generalization relationship and eliminates generalizations at classification time. By combining predictions from multiple BNCs, ensemble learning can help to achieve better overall accuracy, on average, than any individual member. The averaged one-dependence estimators (AODE) [7] learns a restricted class of one-dependence estimators. The weighted averaged TAN (WATAN) [8] constructs a set of TANs by choosing each attribute as the root of the tree and uses the mutual information between the root attribute and the class variable as the aggregation weight. The averaged KDB (AKDB) [5] is an ensemble of KDB and LKDB.
From the viewpoint of entropy, the uncertainty of a prediction will be highest when all estimated posterior probabilities are equiprobable. It can thus be inferred that BNCs are prone to making a wrong prediction when some labels bear high confidence degrees (or posterior probabilities) close to that of the predicted label. We propose to improve classification accuracy of BNCs by alleviating this problem. To the best of our knowledge, it has not previously been explored. To further discriminate among high-confidence labels, we resort to multistage classification. Multistage classification is characterized by the property that a prediction is made using a sequence of classifiers that operate in cascade [9]. It has been widely applied in many domains of pattern recognition, such as character recognition [10], age estimation [11] and face recognition [12]. The multistage classification methodology proposed in [13] aims at reducing mutual misclassifications among easily confused labels and consists of two stages. Firstly, an inexpensive classifier, which can discriminate among all labels, coarsely classifies a testing instance. If the predicted label c ^ has some labels that tend to be confused with it (denoted as F ( c ^ ) ), the testing instance will be fed to a localized and more sophisticated classifier which concentrates on { c ^ } F ( c ^ ) , thus obtaining a refined prediction.
Following the learning paradigm proposed in [13], we devise the label-driven learning framework, where instance-based learning and ensemble learning work in concert. To deal with the potential misclassification problem of BNCs, the framework learns three models, each built in a different stage. In the preprocessing stage, a generalist classifier carries out a first classification to obtain high-confidence labels. If there exists more than one such label, the testing instance will be reconsidered in following two stages. In the label filtering stage, by exploiting credible information derived from high-confidence labels, a refined generalist with a more accurate network structure is deduced for each reconsidered testing instance. Innovatively, we add an extra hierarchy level to the structure proposed in [13] by increasing the degree of localisation. In the label specialization stage, a Bayesian multinet classifier (BMC) is built to model label-specific causal relationships in the context of a particular reconsidered testing instance. Each local network of the BMC is an expert classifier, which targets a specific high-confidence label. Finally, rather than relying on the decision of a single classifier, the framework averages the predictions of the refined generalist and the experts, which possesses the merits of ensemble learning.
TAN has demonstrated satisfactory classification accuracy, while maintaining efficiency and simplicity. Hence, as a first attempt, we apply the proposed label-driven learning framework to TAN and name the resulting model LTAN (Label-driven TAN). Through extensive experiments on 40 datasets from the UCI (University of California, Irvine) machine learning repository [14], we prove that the proposed framework can alleviate the potential misclassification problem of TAN without causing too many offsetting errors or incurring very high computation overhead. Empirical comparisons also reveal that LTAN outperforms several state-of-the-art single-structure BNCs (NB, TAN and KDB), as well as three established ensemble BNCs (AODE, WATAN and AKDB) in terms of classification accuracy.
The remainder of the paper is organized as follows: Section 2 provides a short background to information theory and reviews the related BNCs and BMC. In Section 3, we describe our label-driven learning framework in detail. The extensive empirical results of the proposed framework are presented in Section 4. In Section 5, we analyze why LTAN degrades the classification accuracy of TAN on a few datasets. To summarize, Section 6 shows the main conclusions and outlines future work.

2. Preliminaries

2.1. Information Theory

Although information theory was primarily concerned with the problem of digital communication when it was first introduced by Claude E. Shannon in the 1940s [15], the theory has much broader applicability in the field of classification [16,17]. Here, we review several commonly used definitions. In the following discussion, upper-case letters denote random variables (attributes or the class variable in the context of classification), lower-case letters denote specific values taken by corresponding variables, and the set of all possible values of a random variable, say X, is represented by Ω X .
Definition 1 ([18]).
The entropy H ( X ) of X measures its unpredictability. It is defined as:
H ( X ) = x Ω X P ( x ) l o g 2 P ( x ) .
Definition 2 ([18]).
Conditional entropy H ( X | Y ) measures the amount of information needed to describe X when the value of Y is known. It is defined as:
H ( X | Y ) = x Ω X y Ω Y P ( x , y ) l o g 2 P ( x | y ) .
Definition 3 ([18]).
Mutual information ( M I ) I ( X ; Y ) measures how much information X bears on Y. More specifically, it quantifies the reduction of the entropy of X after observing the value of Y. It is defined as:
I ( X ; Y ) = H ( X ) H ( X | Y ) = x Ω X y Ω Y P ( x , y ) l o g 2 P ( x , y ) P ( x ) P ( y ) .
Definition 4 ([18]).
Conditional mutual information ( C M I ) I ( X ; Y | Z ) measures the information that X provides about Y given the value of a third variable Z. It is defined as:
I ( X ; Y | Z ) = x Ω X y Ω Y z Ω Z P ( x , y , z ) l o g 2 P ( x , y | z ) P ( x | z ) P ( y | z ) .

2.2. Bayesian Network Classifiers

A Bayesian network (BN) B can be formalized as a pair B = < G , Θ > [19]. The structure G is a directed acyclic graph, where vertices correspond to the class variable or attributes and edges represent dependencies between child nodes and their parent nodes. The parameter set Θ contains a conditional probability distribution for each vertex in G , namely P B ( c | pa ( c ) ) or P B ( x i | pa ( x i ) ) , where pa ( x i ) is the set of values of the attributes that are parents of node X i in structure G and the same applies for c. In our present work, the class variable does not have any parents, so we have pa ( c ) = . Thus, a BN B defines a joint probability distribution as:
P B ( c , x ) = P B ( c ) i = 1 n P B ( x i | pa ( x i ) ) .
Taking advantage of the underlying BN B , a BNC computes P B ( c | x ) in Equation (1) by
P B ( c | x ) = P B ( c , x ) P B ( x ) = P B ( c , x ) j = 1 l P B ( c j , x ) = P B ( c ) i = 1 n P B ( x i | pa ( x i ) ) j = 1 l P B ( c j ) i = 1 n P B ( x i | pa ( x i ) ) .
In practice, the conditional probability distributions in Θ are stored in conditional probability tables ( C P T s), which are obtained from the training set T .

2.2.1. Naive Bayes

Unfortunately, it has been proved that learning an optimal BN is NP-hard [20]. One practical approach to dealing with the intractable complexity is to learn a constrained or totally pre-fixed network structure. The simplest of these structures is the one used by NB. NB assumes all the attributes are independent given the class variable (see Figure 1a). Consequently, NB calculates P B ( c , x ) using the following formula:
P B ( c , x ) = P B ( c ) i = 1 n P B ( x i | c ) .
As indicated in Section 1, the attribute independence assumption of NB is often violated in the real world, which may deteriorate its classification performance.

2.2.2. TAN and WATAN

One extension of NB is TAN, which relaxes the independence assumption of NB. TAN imposes a tree structure on NB, where each attribute has the class variable and one other attribute as its parents, except a single attribute, which has only the class variable as its parent and is the root of the tree (see Figure 1b). TAN uses C M I between two attributes given the class variable to construct the maximum likelihood tree by finding a maximal weighted spanning tree (MST) in a graph. Prim’s algorithm [21], which is one of the most popular MST searching algorithms, is selected in our current work for its low time complexity and easy implementation. The learning algorithm of TAN is depicted in Algorithm 1.
ATAN is proposed to enhance the class probability estimation performance of TAN, in terms of conditional log likelihood [8]. In ATAN, all attributes take turns to be the root node, resulting in a set of TANs. To make a prediction, the estimated class-membership probabilities of each built TAN are averaged. ATAN is further improved by using the M I between the root attribute and the class variable as the aggregation weight. The improved ATAN is referred to as weighted ATAN (WATAN) [8].
Algorithm 1: The TAN learning algorithm.
Input: C P T s.
Output: The built TAN model B T A N .
1 Let N be a n × n matrix of C M I , where N i j = I ( X i ; X j | C ) , if i j ;
2 Y t r e e C o n s t r c t i o n ( N ) ;          // Algorithm 2
3 B T A N add the class node C to Y and add an arc from C to each attribute node;
4 return B T A N ;
Algorithm 2: treeConstruction( W ).
Input: The n × n edge weight matrix W , whose element is denoted as W i j .
Output: The built directed MST D .
1 Let Y be a complete undirected graph where vertices are the attributes and the weight of the edge connecting X i to X j is annotated by W i j ;
2 U P r i m ( Y ) ;          // perform Prim’s algotithm to find an MST in Y
3 Transform the resulting undirected tree U to a directed tree D by choosing a root attribute and setting the direction of all edges to be outward from it.;
4 return D ;

2.2.3. KDB and LKDB

To alleviate the independence assumption of NB, KDB allows each attribute to have at most k attributes as its parents (see Figure 1c). Learning a KDB structure first involves ranking attributes using M I between an attribute and the class variable. Then, for attribute A i being placed in position i of the ranking, the k attributes taken from { A 1 , , A i 1 } with the highest C M I I ( · ; A i | C ) are set as parents. Finally, the class variable C is added as a parent for all the attributes. Given a certain k, the time complexity of training KDB is O ( t n 2 + t n k ) [22], where t is the number of training instances and n is the number of attributes.
Dependence relations between attributes may vary from one testing instance to another [5]. The conventional KDB structure can not automatically adapt to different testing instances. To remedy this limitation, LKDB is proposed. To identify dynamic changes of dependence relations between attributes, L M I and C L M I are defined in [5] as follows:
Definition 5.
Local mutual information (LMI) I ( x i ; C ) is defined to measure the reduction of entropy about the class variable C after observing that X i = x i , as follows:
I ( x i ; C ) = c Ω C P ( x i , c ) log P ( x i , c ) P ( x i ) P ( c ) .
Definition 6.
Conditional local mutual information (CLMI) I ( x i ; x j | C ) is defined to measure the amount of information shared between two attribute values x i and x j given the class variable C, as follows:
I ( x i ; x j | C ) = c Ω C P ( x i , x j , c ) log P ( x i , x j | c ) P ( x i | c ) P ( x j | c ) .
Instead of M I and C M I , LKDB uses L M I for attribute ranking and C L M I for parent assignment. At classification time, a LKDB model is built for each testing instance to capture local dependence relations between attributes. Calculating L M I between attributes and the class variable takes time O ( l n ) . Computing C L M I between every pair of attributes given the class variable is of time complexity O ( l n 2 ) . Attribute ranking and parent assignment are O ( n l o g n ) and O ( k n 2 ) , respectively. Hence, classifying a testing instance using LKDB has time complexity O ( ( l + k ) n 2 ) . By combining the predictions of the robust KDB model and the flexible LKDB model, the averaged KDB (AKDB) achieves even higher classification performance [5].

2.3. Bayesian Multinet Classifiers

A BN forces dependence relations between attributes to be the same for all labels, thus cannot handle the problem of asymmetric independence, which refers to conditional independence relationships only held for some but not all the values that the class variable takes [23]. Bayesian multinets (BMs) [24] offer a solution. Formally, a BM is a tuple M = < P C , B c 1 , , B c l > , where P C is the probability distribution of C, and B c i is the local BN corresponding to label c i . Conditioned on each label, attributes can form different local BNs with different structures, thereby enabling the representation of asymmetric independence assertions. A BM M defines a joint distribution:
P M ( c , x ) = P M ( c ) i = 1 n P B c ( x i | pa c ( x i ) ) ,
where pa c ( x i ) is the set of values of the attributes that are parents of node X i in the local BN B c . Consequently, a Bayesian multinet classifier (BMC) M classifies a testing instance x using:
c ^ = arg max c Ω C   P M ( c | x ) = arg max c Ω C   P M ( c , x ) P M ( x ) = arg max c Ω C   P M ( c , x ) j = 1 l P M ( c j , x ) = arg max c Ω C   P M ( c ) i = 1 n P B c ( x i | pa c ( x i ) ) j = 1 l P M ( c j ) i = 1 n P B c j ( x i | pa c j ( x i ) ) .
The Bayesian Chow–Liu tree multinet classifier [25], or BMC C L for short, is a typical BMC which performs as well as TAN [2]. Figure 2 illustrates a BMC C L structure. Each local BN of a BMC C L is a Chow–Liu tree that is built using the procedure proposed by Chow and Liu [26]. The procedure is essentially the same as the one outlined in Algorithm 1 with the exception that C M I I ( X i ; X j | C ) in step 1 is replaced by M I I ( X i ; X j ) . The procedure is executed separately for each label c i using the training set T c i , where T c i is the set of training instances labelled c i in T . Note that, since we compute the M I in each T c i , the label conditional mutual information ( L C M I ) I ( X i ; X j | c ) is actually computed, which is defined as:
I ( X i ; X j | c ) = x i Ω X i x j Ω X j P ( x i , x j | c ) l o g 2 P ( x i , x j | c ) P ( x i | c ) P ( x j | c ) .
Taking advantage of L C M I , Algorithm 3 gives a more efficient implementation of BMC C L compared with the one in [26], as there is no need to partition the training set.
Algorithm 3: The BMC C L learning algorithm.
Entropy 19 00661 i001

3. Label-Driven Learning Framework

3.1. Motivation

As mentioned in Section 1, BNCs (e.g., TAN) are probabilistic classifiers that produce an interpretable confidence value for each class label in the form of a posterior probability. Table 1 presents two examples where TAN is utilized to classify two testing instances in the Nursery dataset. The Nursery dataset is collected from the UCI machine learning repository and has five class labels [14]. The class membership probabilities of the testing instances in Table 1 estimated by TAN are listed in Table 2.
For the first instance, the high posterior probability of c 5 (0.9984) provides strong evidence for choosing c 5 as the predicted label. The classifier is very confident in this choice and in fact it is a correct one. For the second instance, the posterior probability of c 5 (0.4945) is very close to that of c 4 (0.5051). The label with the maximum posterior probability is always chosen as the predicted label. According to this rule, although P θ ( c 4 | x ) is only slightly greater than P θ ( c 5 | x ) by 0.0106, c 4 is still chosen to be the predicted label. However, it turns out that c 5 is the true label. The reason for this misclassification may be that the small advantage of P θ ( c 4 | x ) over P θ ( c 5 | x ) has little credibility. In practice, posterior probabilities are hard to be accurately estimated especially when the training data is scarce, so the small advantage of the maximum posterior probability of a testing instance can often only be attributed to chance. Predictions based upon these coincidental advantages are hardly reliable. We can thus infer:
  • When posterior probabilities of some class labels are close to the maximum posterior probability, there is a high risk of misclassification.
  • When the maximum posterior probability is far greater than the posterior probabilities of other labels, the classification result is more credible—in other words, more likely to be correct.
Here, a criterion to quantify how close the maximum posterior probability is to the posterior probabilities of other labels is desired. A simple and straightforward choice is the ratio between them. Hence, given a testing instance x, the set of labels Ω C whose posterior probabilities are close to or equal to the maximum posterior probability can be obtained by:
Ω C = { c | c Ω C P B ( c | x ) P B ( c ^ | x ) δ } ,
where c ^ is the label predicted by a Bayesian classifier B and δ is a user-specified threshold ( 0 % < δ 100 % ). Note that c ^ is always included in Ω C , so | Ω C | 1 always holds, where | · | is the cardinality of a set.
According to the above two inferences, | Ω C | > 1 alerts us that c ^ has some strong competitors who are also very likely to be the true label. A hasty decision of directly choosing c ^ may be error-prone. To address this problem, we augment the classification process of a BNC with an extra reconsideration process for each testing instance whose Ω C includes not only c ^ . In this process, labels in Ω C are reevaluated using the proposed label-driven learning framework. As for instances whose Ω C includes only c ^ , we can somewhat trust the decision made by the classifier. Therefore, there is no need to reconsider such instances with the label-driven learning framework.
The proposed label-driven learning framework consists of three stages: preprocessing, label filtering and label specialization. In the preprocessing stage, a conventional BNC is utilized as the generalist to provide initial, coarse predictions. If a testing instance satisfies Ω C = { c ^ } , the prediction of the generalist (denoted as c ^ G ) will be accepted; otherwise, it is deemed unreliable and the testing instance will be reconsidered. For reconsidered testing instances for which the generalist fails to make reliable predictions, the latter two stages will come into play to further discriminate among labels in Ω C , which are discussed in Section 3.2 and Section 3.3, respectively.

3.2. Label Filtering Stage

As TAN provides a good trade-off between computation complexity and classification accuracy, we choose it as the generalist in this work. The generalist classifier TAN uses the C M I metric to build an MST. From the definition of C M I , we can derive the following equation:
I ( X i ; X j | C ) = c Ω C x i Ω X i x j Ω X j P ( x i , x j , c ) l o g 2 P ( x i , x j | c ) P ( x i | c ) P ( x j | c ) = c ( Ω C Ω C ) x i Ω X i x j Ω X j P ( x i , x j , c ) l o g 2 P ( x i , x j | c ) P ( x i | c ) P ( x j | c ) + c Ω C x i Ω X i x j Ω X j P ( x i , x j , c ) l o g 2 P ( x i , x j | c ) P ( x i | c ) P ( x j | c ) .
Equation (15) indicates that C M I can be decomposed into two parts: information derived from labels in ( Ω C Ω C ) (if ( Ω C Ω C ) ) and information derived from labels in Ω C . Since the posterior probabilities of classes in ( Ω C Ω C ) are quite small, it is almost impossible for the class variable to take the values in ( Ω C Ω C ) . Therefore, the former part of C M I has low confidence and may lead to imprecise measurements of mutual dependence between attributes. In light of this, for each reconsidered testing instance, labels in ( Ω C Ω C ) are first removed, i.e., eliminated from further consideration and then the MST of TAN is reconstructed with information derived from labels in Ω C only. δ in Equation (14) is a crucial threshold to judge whether a label should be filtered out or not. We will perform an empirical study to determine δ in Section 4.1.
After removing labels in ( Ω C Ω C ) , the label space of a reconsidered testing instance is reduced from Ω C to Ω C . The remaining part (the latter part) of C M I is formalized as:
Definition 7.
Given a testing instance x , a Bayesian network classifier B and a user-specified threshold δ ( 0 % < δ 100 % ), the reduced conditional mutual information ( R C M I ) I ˜ ( X i ; X j | C ) is the CMI between two attributes X i and X j given the class variable C, who can take values only from Ω C . It can be calculated using:
I ˜ ( X i ; X j | C ) = c Ω C x i Ω X i x j Ω X j P ( x i , x j , c ) l o g 2 P ( x i , x j | c ) P ( x i | c ) P ( x j | c ) ,
where Ω C can be obtained by
Ω C = { c | c Ω C P B ( c | x ) P B ( c ^ | x ) δ } ,
where c ^ is the label predicted by B .
The label filtering stage reconstructs the MST of TAN using R C M I in replacement of C M I as the metric for edge weight computations. By eliminating low-confidence information derived from removed labels, the reconstructed MST can capture the dependence relations between attributes more accurately. Furthermore, as Ω C varies from testing instance to testing instance, R C M I also changes accordingly. Consequently, each reconsidered testing instance may have a different tree structure that is the most appropriate for it. Compared with the uniform MST structure that TAN builds for all testing instances, the reconstructed MST structure is not only more accurate but also more flexible.
By reconstructing the MST of TAN using the R C M I edge weighting scheme, a refined TAN model can be learned, which we call Information Elimination TAN, or TAN I E for short. TAN I E serves as a refined generalist. The refined generalist can provide more accurate estimations of posterior probabilities for labels in Ω C .

3.3. Label Specialization Stage

Due to the problem of asymmetric independence (introduced in Section 2.3), the refined generalist that learns a single structure is unable to express different dependence relations between attributes when C takes different values. To address this deficiency and further discriminate among labels in Ω C , the label specialization stage learns a BMC for each reconsidered testing instance. As mentioned in Section 2.3, BMC C L achieves classification performance comparable to TAN. Hence, we consider adopting BMC C L . However, it can not be immediately applied to our current problem. As pointed out in Section 2.2.3, dependence relations between attributes of different testing instances may differ significantly. However, the L C M I I ( X i ; X j | c ) metric that is adopted by BMC C L for computing edge weights of local Chow–Liu trees is invariant for all testing instances. Consequently, BMC C L is unable to adjust its local network structures dynamically to fit different testing instances. Encouraged by the success of L M I I ( x i ; C ) and C L M I I ( x i ; x j | C ) on LKDB, we generalize the definition of L C M I to remedy this limitation. The new metric conditional pointwise mutual information ( C P M I ) is defined as:
Definition 8.
Conditional pointwise mutual information C P M I I ( x i ; x j | c ) measures the amount of information shared between two attribute values x i and x j conditioned on the label c. C P M I can be calculated using:
I ( x i ; x j | c ) = l o g 2 P ( x i , x j | c ) P ( x i | c ) P ( x j | c ) .
BMC C L can be improved by using C P M I in replacement of L C M I as the edge weighting scheme for local Chow–Liu tree construction. We refer to the improved BMC C L as instance-based BMC C L , or IBMC C L for short.
Each local network of IBMC C L can be regarded as an expert oriented to a single label in Ω C . Let Expert c i be the local network corresponding to a label c i . Expert c i can encode label-specific correlations between attributes, thereby providing an accurate posterior probability estimation for c i . Eventually, for each label c i Ω C , the posterior probabilities estimated by the refined generalist and the corresponding expert, denoted as P R G ( c i | x ) and P E c i ( c i | x ), respectively, are averaged. The label-driven learning framework then assigns the most probable a posteriori (MAP) class (denoted as c ^ L ) in Ω C to a reconsidered testing instance.

3.4. Overall Structure and Complexity Analysis

To provide a general view, we depict the architecture of the label-driven learning framework in Figure 3. We extend TAN to LTAN by applying the proposed framework. The framework leaves the training procedure of TAN (described in Algorithm 1) unchanged and only extends the classification procedure. The revised classification procedure is presented in Algorithm 4.
At training time, LTAN directly employs Algorithm 1 to train a TAN model, which has time complexity O ( t n 2 ) [2], where t is the number of training instances. At classification time, the label-driven learning framework is introduced. In the preprocessing stage, the time complexity of classifying a single testing instance with the generalist TAN is O ( l n ) . Calculating Ω C to decide whether a testing instance needs to be reconsidered or not requires time O ( l ) . For testing instances whose Ω C includes c ^ G only, c ^ G will be returned as the predicted label and Algorithm 4 is terminated, resulting in the same classification time complexity as TAN O ( l n ) . As for testing instances satisfying | Ω C | > 1 , the label filtering stage and the label specialization stage will be carried out. In the label filtering stage, firstly, the R C M I matrix is calculated, an operation of time complexity O ( r v 2 n 2 ) , where r = | Ω C | and v is the maximum number of values that an attribute may take. Then, the refined generalist TAN I E is built, which can be accomplished in O ( n 2 ) . Finally, utilizing TAN I E to estimate posterior probabilities of labels in Ω C is of time complexity O ( r n ) . In the label specialization stage, Algorithm 4 loops over each label in Ω C to learn IBMC C L . Inside the loop, computing the C P M I matrix and learning to be an expert of the given label both require time O ( n 2 ) . Therefore, the overall time complexity of learning experts is O ( r n 2 ) . Estimating posterior probabilities with experts takes time O ( r n ) . Finally, predictions of the refined generalist and experts are aggregated, with time complexity O ( r ) . From the above analysis, we can see that the time complexity of Algorithm 4 is dominated by the R C M I matrix calculation. Consequently, classifying a reconsidered testing instance with the label-driven learning framework has time complexity O ( r v 2 n 2 ) , while the time complexity of classifying a testing instance whose Ω C includes c ^ G only is identical to that of TAN.
Algorithm 4: The label-driven learning framework applied to TAN.
Entropy 19 00661 i002
The label-driven learning framework takes time O ( r v 2 n 2 ) to classify a reconsidered testing instance, which is higher than O ( l n ) of TAN. However, in practice, a large portion of testing instances will not be reconsidered (the detailed statistics are presented in Section 4.3). As a result, the framework will not incur too much computation overhead. Furthermore, we will show in Section 4.3.1 that given a proper δ , O ( r v 2 n 2 ) can be reduced to O ( v 2 n 2 ) . Therefore, the label-driven learning framework embodies a good trade-off between computational efficiency and classification accuracy.

4. Empirical Study

We organize our extensive experiments from the following three aspects. To begin with, the threshold for label filtering of LTAN ( δ ) is determined empirically in Section 4.1. Subsequently, to validate the effectiveness of the proposed label-driven learning framework, LTAN with the chosen threshold is compared with three single-structure BNCs: NB, TAN and KDB, as well as three ensemble BNCs: AODE, WATAN and AKDB in Section 4.2. Then, we analyze the performance of our novel label-driven learning framework in Section 4.3. Effects of the label filtering stage and the label specialization stage are investigated in Section 4.3.1 and Section 4.3.2, respectively. Training and classification time comparisons of TAN, LTAN and AKDB are provided in Section 4.4.
We run the above experiments on 40 benchmark datasets from the UCI machine learning repository [14]. Table 3 describes the detailed characteristics of these datasets in ascending order of their sizes, including the number of instances, attributes and classes. As listed in the table, the dataset size ranges from 32 instances of Lung Cancer to 5,749,132 instances of Donation, enabling us to examine classifiers on datasets with various sizes. Meanwhile, the number of class labels also spans from 2 to 50, allowing us to observe the performance of our label-driven learning framework on datasets with a wide range of label numbers. For each dataset, numeric attributes, if any, are discretized using Minimum Description Length Discretization (MDL) [27] as BNCs discussed in this paper cannot handle continuous attributes directly. Missing values are regarded as a distinct value. All of our experimental results are obtained via 10-fold cross-validation. Since some researchers report that the m-estimation leads to more accurate probabilities than the Laplace estimation [6,28,29], probability estimates are smoothed using the m-estimation (m = 1).

4.1. Selection of the Threshold for Label Filtering

To apply our label-driven learning framework, we must first choose a threshold for label filtering, i.e., δ in Equation (14). As there does not appear to be any formal method to select an appropriate value for δ , we perform an empirical study to select it. Figure 4 presents the average zero-one loss results of LTAN across 40 datasets with different δ values. The standard error of each average zero-one loss is shown as well. To appreciate the effects of applying different δ , only the upper halves of the error lines are depicted. The experimental results of TAN are also shown in Figure 4 for comparison.
Figure 4 displays that, for all settings of δ , LTAN enjoys lower average zero-one loss compared to TAN. As δ decreases from 90% to 10%, the average zero-one loss declines steadily. This performance gain can be attributed to the fact that a smaller δ value can reduce the risk of leaving out the true label by retaining more labels, meanwhile enabling the label-driven learning framework to be applied to more testing instances. However, when δ is smaller than 10%, the average zero-one loss demonstrates a slight upward trend. One possible reason for this performance degradation is that, if δ is too small, many untrue class labels that carry low-confidence information will be retained, leading to unreasonable network structures.
It is empirically shown that LTAN achieves the lowest average zero-one loss when δ is set to 10%. Consequently, the setting δ = 10 % is selected in our current work.

4.2. Comparisons in Terms of Zero-One Loss

In order to validate the effectiveness of the proposed label-driven learning framework, we conduct zero-one loss comparisons for related models that are divided into two groups: single-structure models and ensemble models. We compare LTAN with NB, TAN and KDB in the first group. Since at most one attribute parent is allowed for each attribute in LTAN, to make a fair comparison, we restrict KDB to a one-dependence classifier ( k = 1 ). Technically speaking, LTAN is an ensemble of TAN I E and IBMC C L . Hence, this raises the issue that the advantage of LTAN over single-structure classifiers can be attributed to the superiority of its aggregation mechanism. To guard against this, we also compare LTAN with three ensemble classifiers in the second group: AODE, WATAN and AKDB ( k = 1 ).
Table 4 reports for each dataset the average zero-one loss, which is assessed by 10-fold cross-validation. The symbols ∘ and • in Table 4, respectively, represent whether LTAN has zero-one loss improvement or degradation of at least 5% over TAN. In addition, the corresponding win/draw/loss records are summarized in Table 5. Cell [ i ; j ] in the table contains the number of wins/draws/losses for the classifier on row i against the classifier on column j. A win indicates that an algorithm reduces the zero-one loss of its opponent by at least 5%. A loss suggests the opposite situation. Otherwise, we consider that two classifiers perform equally well. Furthermore, standard binomial sign tests, assuming that wins and losses are equiprobable, are applied to these records. We assess a difference as significant if the outcome p of a one-tailed binomial sign test is less than 0.05. Significant win/draw/loss records are shown in bold in Table 5.
As shown in Table 4 and Table 5, in the single-structure classifier group, LTAN significantly outperforms NB and KDB. Most importantly, LTAN substantially improves upon the zero-one loss of TAN with 27 wins and only 4 losses, providing solid evidence for the effectiveness of the proposed label-driven learning framework. This advantage is even stronger for large datasets (20 datasets with more than 2000 instances). From Table 4, we can see that LTAN never loses on large datasets and exhibits significantly higher accuracy on 16 out of 20 large datasets.
When it comes to the ensemble group, LTAN still has a significant advantage over WATAN and AKDB. In addition, the comparison result with AODE is almost significant ( p = 0 . 0607 ). Although WATAN delivers significantly larger conditional log likelihood than TAN, when evaluated on zero-one loss, draws account for the majority of all comparisons (33 draws out of 40 datasets). Barely any zero-one loss advantage of WATAN over TAN is shown. Based on this fact, we argue that our LTAN is a more effective ensemble of TAN in terms of classification accuracy.
Demšar recommends the Friedman test [30] for comparisons of multiple algorithms over multiple data sets [31]. It ranks the algorithms for each data set separately: the best performing algorithm getting the rank of 1, the second best ranking 2, and so on. In case of ties, average ranks are assigned. The null-hypothesis is that all of the algorithms perform almost equivalently and there is no significant difference in terms of average ranks. The Friedman statistic can be computed as follows:
χ F 2 = 12 N t ( t + 1 ) j = 1 t R j 2 3 N ( t + 1 ) ,
where R j = i r i j and r i j is the rank of the j-th of t algorithms on the i-th of N datasets. The Friedman statistic is distributed according to χ F 2 with t 1 degrees of freedom. Thus, for any pre-determined level of significance α , the null hypothesis will be rejected if χ F 2 > χ α 2 . The critical value of χ α 2 for α = 0 . 05 with six degrees of freedom is 12.592. The Friedman statistic of experimental results in Table 4 is 57.806, which is larger than 12.592. Hence, the null-hypotheses is rejected.
Since the null-hypotheses is rejected, the Nemenyi test [32] is used to further analyze which pairs of algorithms are significantly different in terms of average ranks of the Friedman test. The performance of two classifiers is significantly different if their corresponding average ranks of the Friedman test differ by at least the critical difference ( C D ):
C D = q α t ( t + 1 ) 6 N ,
where the critical value q α for α = 0 . 05 and t = 7 is 2.949 [31]. Given seven algorithms and 40 datasets, C D can be calculated with Equation (20) and is equal to 1.4245. Following the graphical presentation proposed by Demšar [31], we show the comparison of these algorithms against each other with the Nemenyi test in Figure 5. We plot the algorithms on the bottom line according to their average ranks, which are indicated on the parallel upper axis. The axis is turned so that the lowest (best) ranks are to the right since we perceive the methods on the right side as better. The algorithms are connected by a line if their differences are not significant. C D is also presented in the graph. As shown in Figure 5, the average rank of LTAN is significantly better than that of TAN, proving the effectiveness of the proposed label-driven learning framework. Although LTAN ranks first, its advantage is not significant compared to AKDB or AODE.

4.3. Analysis of the Label-Driven Learning Framework

As specified in Section 3.4, the time complexity of classifying a reconsidered testing instance with the label-driven learning framework is O ( r v 2 n 2 ) , which is higher than O ( l n ) of TAN. If a large portion of testing instances are reconsidered, on one hand the label-driven learning framework can exert a strong influence on the classification task; on the other hand, considerable computation overhead will be incurred. This is essentially a trade-off between computational efficiency and classification accuracy. The set of testing instances satisfying the reconsideration condition in testing cases of a dataset can be denoted as:
R = { x | x Q | Ω C | > 1 } ,
where x is a testing instance, Q is the testing set and Ω C can be obtained using Equation (14). Thus, label-driven learning percentage ( L L P ) can be defined as follows:
Definition 9.
The label-driven learning percentage ( L L P ) for a dataset is the proportion of reconsidered testing instances in the testing set. It can be calculated by
L L P = | R | | Q | × 100 % ,
where R is the reconsidered testing instance set obtained using Equation (21), and Q is the testing set.
Figure 6 presents L L P values of all datasets. We can see that L L P differs greatly from dataset to dataset, ranging from 0.01% of Mushrooms (No. 29) to 99.86% of Poker-hand (No. 39). To give an intuitive illustration, percentages of datasets whose L L P values fall in different ranges are depicted in Figure 7. The chart shows that, for 85% of datasets, less than half of testing instances are reconsidered and, for 62.5% of datasets, less than 30% of testing instances are reconsidered. These facts suggest that, in many datasets, a large portion of testing instances just simply employ a TAN classifier. Therefore, the label-driven learning framework will not incur too much computation overhead. Although the framework is applied to less than 30% of testing instances on 62.5% of datasets, it still manages to improve the classification accuracy of TAN significantly on 17 out of 25 such datasets. The L L P values on six datasets are greater than 50%. An extreme example is Poker-hand, whose L L P is surprisingly high (99.86%). Almost all of the testing instances in Poker-hand are reconsidered, dramatically reducing the classification error of TAN by 31.23% at the cost of computational efficiency.
The above LLP analysis shows that our label-driven learning framework can offer a trade-off between computational efficiency and classification accuracy. However, the LLP analysis is not sufficient. As specified above, BNCs tend to misclassify testing instances where some labels bear high confidence degrees close to that of the predicted label. Such instances are included in R, which is defined in Equation (21). Our framework is intended to alleviate this problem. To determine whether it is successful at this goal, we propose two new criteria: correction percentage ( C P ) and loss percentage ( L P ). They can evaluate the ability of the framework to correct misclassifications of the generalist and meanwhile avoid causing offsetting errors in R. C P and L P are defined as follows:
Definition 10.
The correction percentage ( C P ) for a dataset measures the proportion of instances in R, which are misclassified by the generalist, but correctly classified by the label-driven learning framework. It can be calculated by
C P = | { x | x R c ^ G c ˜ c ^ L = c ˜ } | | R | × 100 % ,
where c ˜ is the true class label ofx, c ^ G and c ^ L is the label predicted by TAN and LTAN, respectively.
Definition 11.
The loss percentage ( L P ) for a dataset measures the proportion of instances in R, which are correctly classified by the generalist, but misclassified by the label-driven learning framework. It can be calculated by
L P = | { x | x R c ^ G = c ˜ c ^ L c ˜ } | | R | × 100 % .
Figure 8 compares C P with L P on each dataset. In addition, percentages of datasets whose ( C P L P ) values fall in different ranges are summarized in Figure 9. For the majority of datasets (85%), C P is higher than L P , suggesting that our label-driven learning framework can correct incorrect predictions of TAN more often than making new mistakes in R. Most notably, C P is evidently higher than L P for over 10% in 10 datasets. In all 10 of these datasets, LTAN obtains significantly lower error than TAN. A notable case is Cylinder-bands (No. 14), where the learning framework reduces the classification error of TAN by 39.85% with a difference of 40.67% between C P and L P . For 17.5% of datasets, although the difference between C P and L P is less obvious (5% to 10%), similar results that LTAN wins on all these datasets in terms of zero-one loss are still observed. For 42.5% of datasets, C P is slightly higher than L P , resulting in 10 wins out of 17 datasets with respect to zero-one loss. However, there are 15% of datasets whose C P is lower than L P . TAN is affected negatively by the learning framework on these datasets. A typical example is Syncon (No. 16). Disappointingly, its L P reaches 66.67% with a 0% C P value. However, we must notice that the L L P value of Syncon is only 0.5%, indicating that merely 3 out of its 600 instances are reconsidered. Among these three instances, two instances are misclassified by LTAN although TAN can correctly classify them. Considering the outstanding performance of our learning framework on other datasets, failures for two instances of Syncon are tolerable.
The above results prove that our framework can alleviate the misclassification problem of the generalist TAN and meanwhile make a few new mistakes on testing instances in R, leading to the substantially higher classification accuracy of LTAN over TAN.

4.3.1. Effects of the Label Filtering Stage

In the label filtering stage, our framework removes labels that are highly unlikely to be the true label, reducing the label space from Ω C to Ω C . As specified in Section 3.4, for reconsidered testing instances, the time complexity of LTAN at classification time is O ( r n 2 v 2 ) , where n is the number of attributes, v is the maximum number of values that an attribute may take and r = | Ω C | . With n and v in O ( r n 2 v 2 ) both determined by a dataset, the number of remaining labels, r, plays a vital role in the classification time complexity. In this subsection, we will discuss r in detail.
It is worth mentioning that, for binary classification problems, LTAN either degrades to TAN when | Ω C | = 1 , or removes no labels at all in the opposite situation. Thus, for a binary classification problem, r is always equal to 2. For each multi-class dataset, we compute the average r value of reconsidered testing instances, denoted as r ¯ . Figure 10 presents the r ¯ result along with the original number of class labels l for each multi-class dataset. Note that the 24 multi-class datasets in Figure 10 are ordered according to l.
As shown in Figure 10, the growth rate of r ¯ is not in proportion to the growth rate of l. Instead, r ¯ fluctuates slightly between two and three regardless of how many labels a dataset originally has, indicating that, on average, only two or three labels require further discrimination. Especially for Phoneme (No. 26), only 3 out of 50 class labels survive the label filtering. Consequently, we can consider r as a constant, reducing the classification time complexity of LTAN for reconsidered testing instances from O ( r n 2 v 2 ) to O ( n 2 v 2 ) . Although O ( n 2 v 2 ) is still higher than O ( l n ) of TAN, considering the superiority of LTAN over TAN from the viewpoint of classification accuracy, this computation overhead is reasonable.
After filtering out low-confidence labels, TAN I E reconstructs the MST of TAN with information derived from remaining labels. For binary classification problems, no class labels of instances in R are deleted at all. As a result, TAN I E has exactly the same structure as TAN, leading to the same classification accuracy as TAN. We can thus conclude that the label filtering stage has no effect for binary classification problems. This, however, does not mean that our label-driven learning framework is invalid for binary classification problems. On the contrary, thanks to IBMC C L , LTAN achieves substantially lower error than TAN on 10 out of 16 binary-label datasets. To reveal whether the label filtering stage can really increase the classification accuracy of TAN on multi-class datasets, we compare the zero-one loss of TAN I E with that of TAN in Figure 11 in these datasets.
Figure 11 shows that the label filtering stage significantly improves the classification accuracy of TAN on 8 out of 24 multi-class datasets. A notable case is Poker-hand (No. 39) where the label filtering stage achieves a 31.02% zero-one loss improvement. In addition, the performance degradation of TAN I E over TAN is significant only in two datasets. The inferiority of TAN I E on Zoo (No. 4) and Soybean (No. 17) may result from lacking enough training data. TAN I E are trained using instances belonging to remaining labels only. The average number of remaining labels of reconsidered testing instances, namely r ¯ , on Zoo is 2.4444. Zoo has 101 instances and 7 class labels. Hence, TAN I E of Zoo only has approximately 31.74 instances for training on average. Similarly, TAN I E of Soybean has 67.48 instances for training on average. Accurate estimations of edge weights of TAN I E , i.e., R C M I in Equation (16), is determined by precise probability estimation, which is hard to ensure with limited training data. Therefore, the reconstruction of MST is affected negatively by inaccurate estimations of R C M I on Zoo and Soybean, leading to unreasonable network structures. With 8 wins and 2 losses, we can infer that the label filtering stage can help reduce the classification error of TAN to some extent. For the rest of 24 datasets (14 datasets), the performance of TAN I E compared to TAN is similar, indicating that the label filtering stage has few effects on these datasets. The reason may be that some attributes are strongly related to each other. Eliminating information derived from low-confidence labels can not affect their dependence. Consequently, same dependence relations between these attributes may appear in both TAN and TAN I E . On datasets with such attributes, TAN and TAN I E may have similar structures and thus show equivalent performance.

4.3.2. Effects of the Label Specialization Stage

The label filtering stage has no effect on binary classification problems. To address this deficiency and further discriminate among high-confidence labels, our framework has an extra stage compared with the two-stage learning paradigm proposed in [13], namely the label specialization stage, wherein a set of experts is built. Then, LTAN, an ensemble of the refined generalist TAN I E and the expert set IBMC C L , is returned as the final classifier. To justify the addition of the label specialization stage, we investigate whether the experts can work as an effective complementary part of the refined generalist. For this purpose, the diversity between them can be an appropriate indicator. Diversity has long been recognized as a necessary condition for improving ensemble performance, since, if base classifiers are highly correlated, it is not possible to gain much by combining them [33]. Hence, the key to successful ensemble methods is to construct individual classifiers whose predictions are uncorrelated.
Since WATAN is also a TAN ensemble classifier, we can compare the diversity between TAN I E and IBMC C L with the diversity of the subclassifiers of WATAN. In order to measure diversity, we adopt the κ statistic [34], which is defined as follows:
Definition 12.
Given a pair of classifiers, f 1 and f 2 , the κ statistic measures their degree of agreement. Suppose there are l class labels, and let D be a l × l square array such that D i j contains the number of testing instances assigned to class label i by f 1 and into class label j by f 2 . Thus, the κ statistic can be calculated as:
κ = Θ 1 Θ 2 1 Θ 2 ,
where Θ 1 is the probability that the two classifiers agree, and Θ 2 is the probability that the two classifiers agree by chance; they are respectively defined as:
Θ 1 = i = 1 l D i i m ,
Θ 2 = i = 1 l ( j = 1 l D i j m j = 1 l D j i m ) ,
where m is the total number of testing instances. κ = 0 when the agreement of the two classifiers equals that expected by chance, and κ = 1 when the two classifiers agree on every example. Negative values occur when their agreement is weaker than expected by chance.
For WATAN, the average of κ statistics between every two subclassifiers is computed, denoted as κ ¯ . For LTAN, we calculate the κ statistic between TAN I E and IBMC C L using only testing instances in R, denoted as κ . Figure 12 compares κ ¯ with κ on each dataset.
As shown in Figure 12, κ ¯ values on 31 datasets (40 datasets in total) are higher than 0.99, which is very close to 1. The lowest κ ¯ is achieved on Cylinder-bands (No. 14). However, it is still as high as 0.898. It is evident that the subclassifiers of WATAN often reach very high agreement and demonstrate poor diversity. There is little chance for a subclassifier of WATAN to revise wrong predictions made by its counterparts. Owing to this reason, the zero-one loss improvement of WATAN over TAN is only marginal (5 wins out of 40 datasets). Obviously, TAN I E and IBMC C L have substantially larger diversity than the subclassifers of WATAN.On dataset Cylinder-bands (No. 14), Syncon (No. 16) and Mushrooms (No. 29), κ statistics are very close to 0, indicating that TAN I E and IBMC C L agree only by chance on these datasets. The κ statistic is negative (−0.186) on Promoters (No. 5). This suggests that TAN I E tends to disagree with IBMC C L on Promoters. By making different predictions, some misclassifications of TAN I E may be corrected by IBMC C L . As a matter of fact, experimental results in Section 4.3.1 show that TAN I E only wins on 8 out of 24 multi-class datasets compared with TAN. Moreover, TAN I E has the same network structures and same classification accuracy with TAN on 16 binary-label datasets. With the help of IBMC C L , LTAN, the ensemble of TAN I E and IBMC C L , wins on 17 out of 24 multi-class datasets and 10 out of 16 binary-label datasets. We can thus conclude that the classification accuracy of TAN I E can be significantly enhanced by the addition of IBMC C L .
The refined generalist TAN I E and the expert set IBMC C L often make different predictions and demonstrate large diversity. By making different predictions, misclassifications of the refined generalist may be corrected by the experts. Therefore, the experts can serve as an effective complementary part of the refined generalist. Jointly applying both the label filtering stage and the label specialization stage can achieve a significant improvement over TAN in terms of classification accuracy.

4.4. Time Comparisons of TAN, LTAN and AKDB

The label-driven learning framework leaves the training procedure of TAN unchanged and only extends the classification procedure. Classifying a reconsidered testing instance with the framework is of time complexity O ( v 2 n 2 ) , which is higher than O ( l n ) of TAN. For those testing instances which do not require reconsideration, the classification time complexity is identical to that of TAN. As introduced in Section 2.2.3, similar to LTAN, AKDB also adopts instance-based learning. AKDB with k = 1 shares the same training time complexity as TAN. At classification time, AKDB with k = 1 learns a one-dependence LKDB for each testing instance, a procedure with time complexity O ( ( l + 1 ) n 2 ) , which is usually a bit lower than O ( v 2 n 2 ) . Figure 13 presents training time and classification time comparisons of TAN, LTAN and AKDB per dataset. These experiments have been conducted on a desktop computer with an Intel(R) Core(TM) i3-2310M CPU @ 2.10 GHz, 2.10 GHz, 64 bits and 8G of memory. No parallelization techniques have been used in any case. The reported training or classification time is averaged over five runs of 10-fold cross validation. It is important to note that logarithmic scale is used in Figure 13.
As shown in Figure 13a, LTAN requires almost the same training time as TAN. AKDB takes a bit more training time, due to its attribute ranking and parent assignment procedure. Although the time complexity of classifying a reconsidered testing instance and classifying a testing instance using AKDB are both quadratic with respect to the number of attributes n, as shown in Figure 13b, LTAN often enjoys advantages over AKDB in terms of classification time while suffering classification time disadvantages over TAN. The reason lies in that a large portion of testing instances on many datasets are not reconsidered, in other words, L L P values (defined in Equation (22)) on many datasets are low. A typical example is Musk1 (No. 13), which has 166 attributes. On Musk1, AKDB requires substantially more classification time than TAN, 0.6139 s compared to 0.0658 s of TAN. As 14.08% of testing instances are reconsidered on Musk1, LTAN spends 0.2729 s, which is twice as fast as AKDB. Another outstanding example is Shuttle (No. 35). LTAN achieves a significant zero-one loss improvement on Shuttle by reconsidering only 0.25% of testing instances, which merely takes extra 0.0380 s. AKDB, however, spends 0.6808 more seconds than TAN. However, when L L P is large, the computation overhead of applying the label-driven learning framework will be high. For example, almost all testing instances of Poker-hand (No. 39) are reconsidered. Hence, the classification time of TAN increases sharply from 7.2917 s to 38.5678 s, whereas AKDB spends 32.8171 s. On Covtype (No. 38) with 58.95% LLP and 54 attributes, it takes LTAN 170.1345 s and AKDB 196.6520 s to finish the classification procedure, while TAN only takes 36.1403 s. Fortunately, as specified in Section 4.3, for 85% of datasets, less than half of testing instances are reconsidered and for 62.5% of datasets, less than 30% of testing instances are reconsidered. Consequently, the negative effect of using an algorithm with classification time complexity quadratic in n can be greatly mitigated.
To conclude, compared to AKDB, LTAN not only has higher classification accuracy (although not statistically significant using the Nemenyi test), but also generally lower classification time. Compared to TAN, LTAN delivers significantly lower zero-one loss, without incurring too much computation overhead on average.

5. Discussion

On datasets from Table 6, the classification accuracy of LTAN degrades significantly compared to TAN. On these datasets, the label-driven learning framework makes new mistakes more often than correcting incorrect predictions of TAN, i.e., C P < L P ( C P and L P are defined in Equations (23) and (24), respectively), and thus has negative effects . We believe that expert classifiers are responsible for this problem. Theoretically, experts can provide more accurate posterior probability estimations. However, in practice, their network structures are sometimes unreasonable due to lack of enough training data and hence their performance of probability calibration is poor.
For ease of analysis, Table 7 presents a typical testing instance in Vowel that is misclassified by LTAN but correctly classified by TAN. Additionally, its class membership probabilities estimated by TAN, TAN I E , IBMC C L and LTAN are shown in Table 8. Similar testing instances with the same problem can be found in other datasets in Table 6. The true label of the testing instance in Table 7 is c 5 . The refined generalist TAN I E predicts a reasonable posterior probability for c 5 (0.8215). However, the probability produced by the expert E c 5 is surprisingly low (0.0185), making the average posterior probability for c 5 0.42, which is smaller than that of c 4 . To investigate the reason for the incorrect probability estimation, the network structures of TAN I E and E c 5 for the testing instance are shown in Figure 14. Note that the class label is not depicted in Figure 14 for simplicity.
Figure 14 shows that the attributes (except X 5 , X 6 and X 10 ) have the same parents in the refined generalist and E c 5 , leading to the same probability terms. In addition, the differences between P R G ( x 6 | x 2 , c 5 ) and P E c 5 ( x 6 | x 1 , c 5 ) or P R G ( x 10 | x 2 , c 5 ) and P E c 5 ( x 10 | x 1 , c 5 ) are not large, where P R G ( · ) and P E c i ( · ) denote the probabilities estimated by the refined generalist and the expert of c i respectively. However, P R G ( x 5 | x 2 , c 5 ) is equal to 0.1267, whereas P E c 5 ( x 5 | x 1 , c 5 ) only has a value of 0.0028 because F ( x 5 , x 1 , c 5 ) = 0 , where F ( · ) denotes the frequency of a combination appears in the training set. Consequently, having X 1 as the parent of X 5 causes the posterior probability of c 5 to drop sharply. The arc connecting X 1 and X 5 is highlighted in red in Figure 14. As a matter of fact, the C M I between X 5 and X 2 is much greater than X 5 and any other attributes. Although Vowel has 990 testing instances, it has 11 labels and thus each expert has only 84 instances for training (Vowel is a balanced dataset). In the training set of E c 5 , ( x 2 , x 5 , c 5 ) only appears five times, resulting in a negative C P M I between X 5 and X 2 (the C P M I between X 5 and X 1 is 0). E c 5 severely underestimates the dependence between X 5 and X 2 . If given enough training data, E c 5 can detect their dependence relationship and provides an accurate posterior probability estimation for c 5 .
Similar to Vowel, experts on the Iris, Chess and Syncon datasets all suffer from the insufficient training data problem. Learning an expert per class instead of one overall structure requires enough training instances. When the dataset size is larger than 2000 instances, the label-driven learning framework corrects possible misclassifications of reconsidered testing instances without making too many offsetting errors.

6. Conclusions

To further discriminate among high-confidence labels, we develop the label-driven learning framework, which is composed of three components: the generalist, the refined generalist and the experts. They form a three-level hierarchy, with increasing degree of localisation. By providing solid empirical comparisons with several state-of-the-art single-structure BNCs (NB, TAN and KDB), as well as three established ensemble BNCs (AODE, WATAN and AKDB), we prove that this framework can help correct possible misclassifications of TAN without causing too many offsetting errors or incurring very high computation overhead.
There are two immediate directions for future work. Firstly, the label-driven learning framework can be homogeneous or heterogeneous. Immediate future work for homogeneous label-driven learning frameworks is to apply the framework to other BNCs like KDB. Heterogeneous label-driven learning frameworks that are more flexible fall outside the scope of this paper and will be studied in our future work. Furthermore, in our current work, the threshold for label filtering, i.e., δ in Equation (14), is pre-determined using an empirical study. To optimize the parameter δ on a particular dataset, we can randomly select a portion of the training data as a holdout set. After training the generalist using the remaining training data, the performance of all δ candidates will be tested on the holdout set and the one with the highest classification accuracy will be selected.

Acknowledgments

This work was supported by the National Science Foundation of China (Grant No. 61272209) and the Agreement of Science and Technology Development Project, Jilin Province (No. 20150101014JC).

Author Contributions

All authors have contributed to the study and preparation of the article. Yi Sun conceived the idea, derived equations and wrote the paper. Limin Wang and Minghui Sun did the analysis and finished the programming work. All authors have read and approved the final manuscript.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Bielza, C.; Larrañaga, P. Discrete bayesian network classifiers: A survey. ACM Comput. Surv. 2014, 47. [Google Scholar] [CrossRef]
  2. Friedman, N.; Geiger, D.; Goldszmidt, M. Bayesian network classifiers. Mach. Learn. 1997, 29, 131–163. [Google Scholar] [CrossRef]
  3. Sahami, M. Learning Limited Dependence Bayesian Classifiers. In Proceedings of the Second International Conference on Knowledge Discovery and Data Mining, Portland, Oregon, USA, 2–4 August 1996; pp. 335–338. [Google Scholar]
  4. Song, H.; Xu, Q.; Yang, H.; Fang, J. Interpreting out-of-control signals using instance-based Bayesian classifier in multivariate statistical process control. Commun. Stat. Simul. Comput. 2017, 46, 53–77. [Google Scholar] [CrossRef]
  5. Wang, L.; Zhao, H.; Sun, M.; Ning, Y. General and local: Averaged k-dependence bayesian classifiers. Entropy 2015, 17, 4134–4154. [Google Scholar] [CrossRef]
  6. Zheng, F.; Webb, G.I.; Suraweera, P.; Zhu, L. Subsumption resolution: An efficient and effective technique for semi-naive Bayesian learning. Mach. Learn. 2012, 87, 93–125. [Google Scholar] [CrossRef]
  7. Webb, G.I.; Boughton, J.R.; Wang, Z. Not so naive Bayes: Aggregating one-dependence estimators. Mach. Learn. 2005, 58, 5–24. [Google Scholar] [CrossRef]
  8. Jiang, L.; Cai, Z.; Wang, D.; Zhang, H. Improving tree augmented naive bayes for class probability estimation. Knowl. Based Syst. 2012, 26, 239–245. [Google Scholar] [CrossRef]
  9. Libal, U.; Hasiewicz, Z. Risk upper bound for a NM-type multiresolution classification scheme of random signals by Daubechies wavelets. Eng. Appl. Artif. Intell. 2017, 62, 109–123. [Google Scholar] [CrossRef]
  10. Das, N.; Sarkar, R.; Basu, S.; Saha, P.K.; Kundu, M.; Nasipuri, M. Handwritten bangla character recognition using a soft computing paradigm embedded in two pass approach. Pattern Recogn. 2015, 48, 2054–2071. [Google Scholar] [CrossRef]
  11. Liu, K.-H.; Yan, S.; Kuo, C.-C.J. Age estimation via grouping and decision fusion. IEEE Trans. Inf. Forensics Secur. 2015, 10, 2408–2423. [Google Scholar] [CrossRef]
  12. Grossi, G.; Lanzarotti, R.; Lin, J. Robust face recognition providing the identity and its reliability degree combining sparse representation and multiple features. Int. J. Pattern Recogn. 2016, 30, 1656007. [Google Scholar] [CrossRef]
  13. Godbole, S.; Sarawagi, S.; Chakrabarti, S. Scaling multi-class support vector machines using inter-class confusion. In Proceedings of the Eighth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, Edmonton, AB, Canada, 23–25 July 2002; pp. 513–518. [Google Scholar]
  14. Bache, K.; Lichman, M. UCI Machine Learning Repository. Available online: https://archive.ics.uci.edu/ml/datasets.html (accessed on 1 December 2017).
  15. Shannon, C. A mathematical theory of communications, I and II. Bell Syst. Tech. J. 1948, 27, 379–423. [Google Scholar] [CrossRef]
  16. Chen, S.; Martínez, A.M.; Webb, G.I.; Wang, L. Selective AnDE for large data learning: A low-bias memory constrained approach. Knowl. Inf. Syst. 2017, 50, 475–503. [Google Scholar] [CrossRef]
  17. Peng, H.; Fan, Y. Feature selection by optimizing a lower bound of conditional mutual information. Inf. Sci. 2017, 418, 652–667. [Google Scholar] [CrossRef]
  18. Cover, T.M.; Thomas, J.A. Elements of Information Theory, 2nd ed.; Wiley: Hoboken, NJ, USA, 2012; pp. 1–22. [Google Scholar]
  19. Liu, H.; Zhou, S.; Lam, W.; Guan, J. A new hybrid method for learning Bayesian networks: Separation and reunion. Knowle. Based Syst. 2017, 121, 185–197. [Google Scholar] [CrossRef]
  20. Bartlett, M.; Cussens, J. Integer linear programming for the Bayesian network structure learning problem. Artif. Intell. 2017, 244, 258–271. [Google Scholar] [CrossRef]
  21. Prim, R.C. Shortest connection networks and some generalizations. Bell Syst. Tech. J. 1957, 36, 1389–1401. [Google Scholar] [CrossRef]
  22. Martínez, A.M.; Webb, G.I.; Chen, S.; Zaidi, N.A. Scalable learning of bayesian network classifiers. J. Mach. Learn. Res. 2016, 17, 1515–1549. [Google Scholar]
  23. Pensar, J.; Nyman, H.; Lintusaari, J.; Corander, J. The role of local partial independence in learning of Bayesian networks. Int. J. Approx. Reason. 2016, 69, 91–105. [Google Scholar] [CrossRef]
  24. Dan, G.; Heckerman, D. Knowledge representation and inference in similarity networks and Bayesian multinets. Artif. Intell. 1996, 82, 45–74. [Google Scholar]
  25. Huang, K.; King, I.; Lyu, M.R. Discriminative training of Bayesian chow-liu multinet classifiers. In Proceedings of the International Joint Conference on Artificial intelligence, Acapulco, Mexico, 19–25 August 2003; pp. 484–488. [Google Scholar]
  26. Chow, C.; Liu, C. Approximating discrete probability distributions with dependence trees. IEEE Trans. Inf. Theory 1968, 14, 462–467. [Google Scholar] [CrossRef]
  27. Fayyad, U.M.; Irani, K.B. Multi-interval Discretization of Continuous-Valued Attributes for Classification Learning. In Proceedings of the 13th International Joint Conference on Artificial Intelligence, Chambery, France, 28 August–3 September 1993; pp. 1022–1029. [Google Scholar]
  28. Zaidi, N.A.; Cerquides, J.; Carman, M.J.; Webb, G.I. Alleviating naive bayes attribute independence assumption by attribute weighting. J. Mach. Learn. Res. 2013, 14, 1947–1988. [Google Scholar]
  29. Cestnik, B. Estimating probabilities: a crucial task in machine learning. In Proceedings of the Ninth European Conference on Artificial Intelligence, Stockholm, Sweden, 6–10 August 1990; pp. 147–149. [Google Scholar]
  30. Friedman, M. The use of ranks to avoid the assumption of normality implicit in the analysis of variance. J. Am. Stat. Assoc. 1937, 32, 675–701. [Google Scholar] [CrossRef]
  31. Demřar, J. Statistical comparisons of classifiers over multiple data sets. J. Mach. Learn. Res. 2006, 7. Available online: http://dl.acm.org/citation.cfm?id=1248547.1248548 (accessed on 1 December 2017).
  32. Nemenyi, P. Distribution-Free Multiple Comparisons. Ph.D. Thesis, Princeton University, Princeton, NJ, USA, 1963. [Google Scholar]
  33. Özöğür-Akyüz, S.; Windeatt, T.; Smith, R. Pruning of error correcting output codes by optimization of accuracy-diversity trade off. Mach. Learn. 2015, 101, 253–269. [Google Scholar] [CrossRef] [Green Version]
  34. Díez-Pastor, J.-F.; García-Osorio, C.; Rodríguez, J.J. Tree ensemble construction using a grasp-based heuristic and annealed randomness. Inf. Fusion. 2014, 20, 189–202. [Google Scholar] [CrossRef]
Figure 1. Examples of network structures with four attributes for the following BN classifiers: (a) NB; (b) TAN; (c) KDB (k = 2).
Figure 1. Examples of network structures with four attributes for the following BN classifiers: (a) NB; (b) TAN; (c) KDB (k = 2).
Entropy 19 00661 g001
Figure 2. An example of a BMC C L with two local BNs.
Figure 2. An example of a BMC C L with two local BNs.
Entropy 19 00661 g002
Figure 3. Architecture of the label-driven learning framework.
Figure 3. Architecture of the label-driven learning framework.
Entropy 19 00661 g003
Figure 4. The average zero-one loss of LTAN across 40 datasets with different δ values.
Figure 4. The average zero-one loss of LTAN across 40 datasets with different δ values.
Entropy 19 00661 g004
Figure 5. Zero-one loss comparison with the Nemenyi test. C D = 1.4245 .
Figure 5. Zero-one loss comparison with the Nemenyi test. C D = 1.4245 .
Entropy 19 00661 g005
Figure 6. The L L P value of each dataset.
Figure 6. The L L P value of each dataset.
Entropy 19 00661 g006
Figure 7. Distribution of datasets whose L L P values fall in a certain range.
Figure 7. Distribution of datasets whose L L P values fall in a certain range.
Entropy 19 00661 g007
Figure 8. Comparisons of C P against L P per dataset.
Figure 8. Comparisons of C P against L P per dataset.
Entropy 19 00661 g008
Figure 9. Distribution of datasets whose ( C P L P ) values fall in a certain range.
Figure 9. Distribution of datasets whose ( C P L P ) values fall in a certain range.
Entropy 19 00661 g009
Figure 10. Comparisons of l against r ¯ per multi-class dataset.
Figure 10. Comparisons of l against r ¯ per multi-class dataset.
Entropy 19 00661 g010
Figure 11. Zero-one loss comparisons between TAN and TAN I E per multi-class dataset.
Figure 11. Zero-one loss comparisons between TAN and TAN I E per multi-class dataset.
Entropy 19 00661 g011
Figure 12. Comparisons of κ ¯ against κ per dataset.
Figure 12. Comparisons of κ ¯ against κ per dataset.
Entropy 19 00661 g012
Figure 13. Time comparisons of TAN, LTAN and AKDB per dataset. TAN: tree-augmented naive Bayes. LTAN: label-driven TAN. AKDB: averaged k-dependence Bayesian classifier. (a) training time; (b) classification time.
Figure 13. Time comparisons of TAN, LTAN and AKDB per dataset. TAN: tree-augmented naive Bayes. LTAN: label-driven TAN. AKDB: averaged k-dependence Bayesian classifier. (a) training time; (b) classification time.
Entropy 19 00661 g013
Figure 14. Network structures of TAN I E and E c 5 on the testing instance in Table 7: (a) TAN I E ; (b) E c 5 .
Figure 14. Network structures of TAN I E and E c 5 on the testing instance in Table 7: (a) TAN I E ; (b) E c 5 .
Entropy 19 00661 g014
Table 1. Two testing instances in the Nursery dataset.
Table 1. Two testing instances in the Nursery dataset.
No. x = ( x 1 , x 2 , x 3 , x 4 , x 5 , x 6 , x 7 , x 8 )
1 x = ( u s u a l ,   v e r y _ c r i t ,   c o m p l e t e d ,   3 ,   c o n v e n i e n t ,   i n c o n v ,   p r o b l e m a t i c ,   p r i o r i t y )
2 x = ( g r e a t _ p r e t ,   p r o p e r ,   i n c o m p l e t e ,   2 ,   l e s s _ c o n v ,   c o n v e n i e n t ,   n o n p r o b ,   p r i o r i t y )
Table 2. The class membership probabilities of the testing instances in Table 1 estimated by TAN.
Table 2. The class membership probabilities of the testing instances in Table 1 estimated by TAN.
No. P θ ( c 1 | x ) P θ ( c 2 | x ) P θ ( c 3 | x ) P θ ( c 4 | x ) P θ ( c 5 | x ) c ^ c ˜
12.8394×10 4 1.7242×10 5 5.8891×10 5 1.2269×10 3 0.9984 c 5 c 5
23.9812×10 4 2.5073×10 5 5.3492×10 7 0.50510.4945 c 4 c 5
θ is a TAN model, c ^ is the label predicted by θ and c ˜ is the true label of x.
Table 3. Datasets.
Table 3. Datasets.
No.DatasetInstanceAtt.ClassNo.DatasetInstanceAtt.Class
1Lung Cancer3256321Segment2310197
2Labor-negotiations5716222Hypothyroid3163252
3Post-operative908323Kr-vs-Kp3196362
4Zoo10116724Hypo3772294
5Promoters10657225Waveform-50005000403
6Iris1504326Phoneme5438750
7Teaching-ae1515327Page-blocks5473105
8Sonar20860228Optdigits56206410
9Heart27013229Mushrooms8124222
10Hungarian29413230Thyroid91692920
11Heart-disease-c30313231Pendigits10,9921610
12Dermatology36634632Sign12,54683
13Musk1476166233Nursery12,96085
14Cylinder-bands54039234Letter-recog20,0001626
15Chess55139235Shuttle58,00097
16Syncon60060636Waveform100,000213
17Soybean683351937Census-income299,285412
18Breast-cancer-w6999238Covtype581,012547
19Tic-Tac-Toe9589239Poker-hand1,025,0101010
20Vowel990131140Donation5,749,132112
Table 4. Experimental results of zero-one loss.
Table 4. Experimental results of zero-one loss.
No.DatasetLTANNBTANKDBAODEWATANAKDB
1Lung Cancer0.59380.43750.59380.59380.46880.62500.6562
2Labor-negotiations0.0702 ∘0.07020.10530.03510.05260.10530.0702
3Post-operative0.3444 ∘0.34440.36670.34440.34440.36670.3333
4Zoo0.00990.02970.00990.04950.01980.01980.0297
5Promoters0.0849 ∘0.07550.13210.13210.10380.11320.0943
6Iris0.0867 •0.08670.08000.08670.08670.08000.0867
7Teaching-ae0.5099 ∘0.49670.54970.54300.45700.53640.5033
8Sonar0.21150.23080.22120.23080.22600.22120.2212
9Heart0.1778 ∘0.17780.19260.19630.17040.19260.2037
10Hungarian0.1565 ∘0.15990.17010.17010.16670.17350.1497
11Heart-disease-c0.19800.18150.20790.20790.19470.20460.2013
12Dermatology0.0137 ∘0.01910.03280.03010.02190.03280.0219
13Musk10.1071 ∘0.16600.11340.11130.13660.11340.1071
14Cylinder-bands0.1704 ∘0.21480.28330.22780.18890.24630.2148
15Chess0.0980 •0.11250.09260.09980.10530.09260.0998
16Syncon0.0117 •0.02830.00830.01000.01330.00830.0150
17Soybean0.0425 ∘0.08930.04690.06440.05420.05270.0498
18Breast-cancer-w0.0372 ∘0.02580.04150.04860.03860.04150.0300
19Tic-Tac-Toe0.23280.30690.22860.24630.26830.22650.2683
20Vowel0.1394 •0.42420.13030.23430.17470.12630.2182
21Segment0.0364 ∘0.07880.03900.04030.03290.03940.0385
22Hypothyroid0.0092 ∘0.01490.01040.01070.01300.01040.0092
23Kr-vs-Kp0.0576 ∘0.12140.07760.05440.08540.07760.0507
24Hypo0.0130 ∘0.01380.01410.00770.01060.01300.0087
25Waveform-50000.1630 ∘0.20060.18440.18200.14620.18440.1644
26Phoneme0.2378 ∘0.26150.27330.21200.21000.23450.1885
27Page-blocks0.0369 ∘0.06190.04150.04330.03220.04180.0347
28Optdigits0.0345 ∘0.07670.04070.04160.02780.04060.0400
29Mushrooms0.00010.01960.00010.00060.00020.00010.0006
30Thyroid0.0681 ∘0.11110.07200.06930.07190.07230.0674
31Pendigits0.0225 ∘0.11810.03210.03620.01870.03280.0286
32Sign0.26590.35860.27550.28810.28220.27520.2826
33Nursery0.0590 ∘0.09730.06540.06540.07330.06540.0633
34Letter-recog0.1043 ∘0.25250.13000.12850.08630.13000.1203
35Shuttle0.0009 ∘0.00390.00150.00150.00110.00140.0010
36Waveform0.01950.02200.02020.02260.01800.02020.0200
37Census-income0.0542 ∘0.23630.06280.06190.10130.06280.0513
38Covtype0.2378 ∘0.31580.25170.24510.23850.25160.2445
39Poker-hand0.2266 ∘0.49880.32950.32910.48120.32950.0763
40Donation0.00000.00020.00000.00000.00020.00000.0000
LTAN: label-driven tree-augmented naive Bayes. NB: naive Bayes. TAN: tree-augmented naive Bayes. KDB: k-dependence Bayesian classifier. AODE: averaged one-dependence estimators. WATAN: weighted averaged TAN. AKDB: averaged KDB. ∘, • denote significant improvement or degradation of LTAN over TAN. All results are rounded to four decimal places.
Table 5. Win/Draw/Loss records of zero-one loss on all datasets.
Table 5. Win/Draw/Loss records of zero-one loss on all datasets.
W/D/LNBTANKDBAODEWATANAKDB
TAN26/3/11
KDB26/4/107/22/11
AODE28/7/521/4/1520/8/12
WATAN28/1/115/33/213/20/713/7/20
AKDB27/7/621/9/1020/15/516/8/1622/10/8
LTAN30/6/427/9/426/9/522/6/1225/11/418/15/7
Significant ( α = 0.05 ) win/draw/loss records are shown in bold.
Table 6. Datasets where the classification accuracy of LTAN degrades significantly compared to TAN.
Table 6. Datasets where the classification accuracy of LTAN degrades significantly compared to TAN.
No.DatasetInstanceClass CP LP
1Iris15030.00%7.14%
2Chess55124.05%5.41%
3Syncon60060.00%66.67%
4Vowel900117.09%10.14%
Table 7. A testing instance in Vowel which is misclassified by LTAN but correctly classified by TAN.
Table 7. A testing instance in Vowel which is misclassified by LTAN but correctly classified by TAN.
x = ( x 1 , x 2 , x 3 , x 4 , x 5 , x 6 , x 7 , x 8 , x 9 , x 10 , x 11 , x 12 , x 13 ) c ˜
x = (1,14,1, (−2.3195,−2.1045], >3.1765, ≤0.4725, ≤−0.0225, (−0.7345,0.4995],
≤1.2250, (−1.1270,−0.6575], (−0.5970,0.1185], ≤−0.9465,known)
c 5
Numerical attributes are discretized using MDL. c ˜ is the true label of x.
Table 8. The class membership probabilities of the testing instance in Table 7 estimated by TAN, TAN I E , IBMC C L and LTAN.
Table 8. The class membership probabilities of the testing instance in Table 7 estimated by TAN, TAN I E , IBMC C L and LTAN.
Classifier P θ ( c 5 | x ) P θ ( c 4 | x ) c ^
TAN0.77830.1691 c 5
TAN I E 0.82150.1785 c 5
IBMC C L 0.01850.9815 c 4
LTAN0.42000.5800 c 4
θ is a classifier, c ^ is the label predicted by θ . For TAN, only posterior probabilities of c 5 and c 4 are shown. After the label filtering, only c 5 and c 4 remain.

Share and Cite

MDPI and ACS Style

Sun, Y.; Wang, L.; Sun, M. Label-Driven Learning Framework: Towards More Accurate Bayesian Network Classifiers through Discrimination of High-Confidence Labels. Entropy 2017, 19, 661. https://doi.org/10.3390/e19120661

AMA Style

Sun Y, Wang L, Sun M. Label-Driven Learning Framework: Towards More Accurate Bayesian Network Classifiers through Discrimination of High-Confidence Labels. Entropy. 2017; 19(12):661. https://doi.org/10.3390/e19120661

Chicago/Turabian Style

Sun, Yi, Limin Wang, and Minghui Sun. 2017. "Label-Driven Learning Framework: Towards More Accurate Bayesian Network Classifiers through Discrimination of High-Confidence Labels" Entropy 19, no. 12: 661. https://doi.org/10.3390/e19120661

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop