next up previous
Next: About this document ...

Tree Classifiers

When both the number of classes c and the number of features n are large, the feature selection and classification discussed before encounter difficulties because

The solution is to do classification in several steps implemented as a tree classifier. One method to design the tree classifier in the bottom-up merge algorithm described in the following steps, which is considered as the training process.

After the classifier is built and trained, the classification is carried out in the following manner:

A testing sample X of unknown class enters the classifier at the root of the tree and is classified to either the left or the right child of the node according to

\begin{displaymath}X \sim \left\{ \begin{array}{ll} G_l & if D_l(X) > D_r(X) \\
G_r & if D_l(X) < D_r(X)
\end{array} \right. \end{displaymath}

This process is repeated recursively in the same fashion at the child node (either Gl or Gr) and its child and so on, until eventually X reaches a leaf node corresponding to a single class, to which the sample X is therefore classified. In this classification method.



 
next up previous
Next: About this document ...
Ruye Wang
1999-06-10