Title: Constructing a Large Node Chow-Liu Tree Based on Frequent Itemsets
1Constructing a Large Node Chow-Liu Tree Based on
Frequent Itemsets
- Kaizhu Huang, Irwin King, Michael R. Lyu
- Multimedia Information Processing Laboratory
- The Chinese University of Hong Kong
- Shatin, NT. Hong Kong
- kzhuang, king, lyu_at_cse.cuhk.edu.hk
- ICONIP2002, November 19, 2002
- Orchid Country Club, Singapore
2Outline
- Background
- Probabilistic Classifiers
- Chow-Liu Tree
- Motivation
- Large Node Chow-Liu tree
- Experimental Results
- Conclusion
3A Typical Classification Problem
- Given a set of symptoms, one wants to find out
whether these symptoms give rise to a particular
disease.
4Background
a constant for a given instance of A1,A2,An
- Probabilistic Classifiers
- The classification function is defined as
- The joint probability is not easily estimated
from the dataset thus the assumption about the
distribution has to be made, dependence or
independence relationship among variables.
5Background
- Chow-Liu Tree (CLT)
- Assumption a dependence tree exists among the
variables, given the class variable C.
6Background
- Chow-Liu Tree
- Advantages
- Comparable with some of the state-of-the-art
classifiers. - The tree structure enables it a resistance to the
over-fitting problem and a decomposition
characteristic. - Disadvantages
- It cannot model non-tree dependence
- relationship among attributes or variables.
7Motivation
- Fig. (b) can represent the same independence
relationship as Fig. (a) - Given B and E, there is an independence
relationship among A, C, and D.
- Fig. (b) is still a tree structure, which
inherits the advantages of a tree.
- By combining several nodes, a large node tree
structure can represent a non-tree structure.
This motivates our Large Node Chow-Liu tree
approach.
8Overview of Large Node Chow-Liu Tree (LNCLT)
- Step 1. Draft the Chow-Liu tree
- Draft the CL-tree of the dataset according to
the CLT algorithm.
- Step 2. Refine the Chow-Liu tree based on some
combination rules - Refine the Chow-Liu tree into a large node
Chow-Liu tree based on some combination rules
9Combination Rules
- Bounded cardinality
- The cardinality of each large node should not
greater than a bound k. - Frequent Itemsets
- Each large node should be Frequent itemset.
- Father-son or sibling relationship
- The nodes in a large node should be a father-son
or sibling relationship.
10Combination Rules (1)
- Bounded Cardinality
- The cardinality of each large node ( the number
of nodes in a large node) should not greater than
a bound k. - An example is that if we set k as the number
of the attributes or variables, the LNCLT will be
a one large node tree, which will lose all the
merits as a tree.
11Combination Rules (2)
- Frequent Itemsets
- Food store example
- In a food store, if you buy bread, it will
be highly possible for you to buy butter.
Thus bread, butter is called a frequent
itemset.
Frequent Itemset is the set of attributes that
occur with each other frequently.
- Frequent Itemsets are possible large nodes,
since the attributes in a Frequent Itemset act
just like one attributethey occur with each
other frequently at the same time.
12Combination Rules (3)
- Father-son or sibling relationship
- Combining Father-son and sibling nodes will
increase the data fitness of the tree structure
on the datasets (Proved in the paper). - Combining Father-son and sibling nodes will
maintain the graphical structure as a tree
structure.
Combining non-father or non-sibling nodes may
result in a non-tree structure
13Constructing Large Node Chow-Liu Tree
- Generate the frequent itemsets
- Call AprioriAS94 to generate the frequent
itemsets, which have the size less than k. Record
all the frequent itemsets together with their
frequnecy into list L. - Draft the Chow-Liu tree
- Draft the CL-tree of the dataset according to
the CLT algorithm. - Combine nodes based on Combining rules
- Iteratively combine the frequent itemset with
maximum frequency, which satisfy the combination
conditions father-son or sibling relationship
until L is NULL.
14ExampleConstructing LNCLT
1. A,C does not satisfy the combination
condition, filter out A,C
2. f(B,C) is the biggest and satisfies
combination condition, combine them into (c)
3.. Filter the frequent itemsets which have
coverage with B,C , the D,E is left.
4. D, E is the frequent itemset and satisfies
the combination condition, combine them into (d)
Example We assume the k is 2, after step 1, we
get the frequent itemsets A, B A, C,B, C,
B, E, B, D, D, E. And f(B, C)gtf(A, B)gt
f(B, E) gtf(B, D)gtf(D, E) (f() represents
the frequency of frequent itemsets). (b) is the
CLT in step2.
15Experimental Setup
- Dataset
- MNIST-handwritten digit (2828 gray-level
bitmap) database - training dataset size 60000
- testing dataset size 10000
- Experimental Environments
- Platform win2000
- Developing tool Visual C 6.0
16Experiments
17Experiments
18Experiments
19Future Work
- Evaluate our algorithm extensively in other
benchmark datasets. - Examine other combining rules.
20Conclusion
- A novel Large Node Chow-Liu tree is constructed
based on Frequent Itemsets. - LNCLT can partially overcome the disadvantages
of CLT, i.e., inability to represent non-tree
structures. - We demonstrate that our LNCLT model has a better
data fitness and a better prediction accuracy
theoretically and experimentally.
21Main References
- AS1994 R. Agrawal, R. Srikant, 1994,Fast
algorithms for mining association rules, Proc.
VLDB-94 1994. - Chow, Liu1968 Chow, C.K. and Liu, C.N. (1968).
Approximating discrete probability distributions
with dependence trees. IEEE Trans. on Information
Theory, 14,(pp462-467) - Friedman1997 Friedman, N., Geiger, D. and
Goldszmidt, M. (1997). Bayesian Network
Classifiers. Machine Learning, 29,(pp.131-161). - Cheng1997 Cheng, J. Bell, D.A. Liu, W. 1997,
Learning Belief Networks from Data An
Information Theory Based Approach. In Proceedings
of ACM CIKM97 - Cheng2001 Cheng, J. and Greiner, R. 2001,
Learning Bayesian Belief Network Classifiers
Algorithms and System, E.Stroulia and S.
Matwin(Eds.) AI 2001, LNAI 2056, (pp.141-151), - Learning Bayesian Belief Network Classifiers
Algorithms and System, E.Stroulia and S.
Matwin(Eds.) AI 2001, LNAI 2056, (pp.141-151).
22Q A