CoBoosting

From testwiki
Revision as of 09:20, 29 October 2024 by imported>Perceptron599 (Add short desc)
(diff) ← Older revision | Latest revision (diff) | Newer revision β†’ (diff)
Jump to navigation Jump to search

Template:Short description

CoBoost is a semi-supervised training algorithm proposed by Collins and Singer in 1999.[1] The original application for the algorithm was the task of named-entity recognition using very weak learners, but it can be used for performing semi-supervised learning in cases where data features may be redundant.[1]

It may be seen as a combination of co-training and boosting. Each example is available in two views (subsections of the feature set), and boosting is applied iteratively in alternation with each view using predicted labels produced in the alternate view on the previous iteration. CoBoosting is not a valid boosting algorithm in the PAC learning sense.

Motivation

CoBoosting was an attempt by Collins and Singer to improve on previous attempts to leverage redundancy in features for training classifiers in a semi-supervised fashion. CoTraining, a seminal work by Blum and Mitchell, was shown to be a powerful framework for learning classifiers given a small number of seed examples by iteratively inducing rules in a decision list. The advantage of CoBoosting to CoTraining is that it generalizes the CoTraining pattern so that it could be used with any classifier. CoBoosting accomplishes this feat by borrowing concepts from AdaBoost.

In both CoTrain and CoBoost the training and testing example sets must follow two properties. The first is that the feature space of the examples can separated into two feature spaces (or views) such that each view is sufficiently expressive for classification. Formally, there exist two functions f1(x1) and f2(x2) such that for all examples x=(x1,x2), f1(x1)=f2(x2)=f(x). While ideal, this constraint is in fact too strong due to noise and other factors, and both algorithms instead seek to maximize the agreement between the two functions. The second property is that the two views must not be highly correlated.

Algorithm

Input: {(x1,i,x2,i)}i=1n, {yi}i=1m

Initialize: i,j:gj0(π’™π’Š)=0.

For t=1,...,T and for j=1,2:

Set pseudo-labels:

yi^={yi,1imsign(g3jt1(𝒙3𝒋,π’Š)),m<in

Set virtual distribution: Dtj(i)=1Ztjeyi^gjt1(𝒙𝒋,π’Š)

where Ztj=i=1neyi^gjt1(𝒙𝒋,π’Š)

Find the weak hypothesis htj that minimizes expanded training error.

Choose value for αt that minimizes expanded training error.

Update the value for current strong non-thresholded classifier:

i:gjt(𝒙𝒋,π’Š)=gjt1(𝒙𝒋,π’Š)+αthtj(𝒙𝒋,π’Š)

The final strong classifier output is

f(𝒙)=sign(j=12gjT(𝒙𝒋))

Setting up AdaBoost

CoBoosting builds on the AdaBoost algorithm, which gives CoBoosting its generalization ability since AdaBoost can be used in conjunction with many other learning algorithms. This build up assumes a two class classification task, although it can be adapted to multiple class classification. In the AdaBoost framework, weak classifiers are generated in series as well as a distribution over examples in the training set. Each weak classifier is given a weight and the final strong classifier is defined as the sign of the sum of the weak classifiers weighted by their assigned weight. (See AdaBoost Wikipedia page for notation). In the AdaBoost framework Schapire and Singer have shown that the training error is bounded by the following equation:

1mi=1me(yi(t=1Tαtht(π’™π’Š)))=tZt

Where Zt is the normalizing factor for the distribution Dt+1. Solving for Zt in the equation for Dt(i) we get:

Zt=i:xtxiDt(i)+i:xtxiDt(i)eyiαiht(π’™π’Š)

Where xt is the feature selected in the current weak hypothesis. Three equations are defined describing the sum of the distributions for in which the current hypothesis has selected either correct or incorrect label. Note that it is possible for the classifier to abstain from selecting a label for an example, in which the label provided is 0. The two labels are selected to be either -1 or 1.

W0=i:ht(xi)=0Dt(i)

W+=i:ht(xi)=yiDt(i)

W=i:ht(xi)=yiDt(i)

Schapire and Singer have shown that the value Zt can be minimized (and thus the training error) by selecting αt to be as follows:

αt=12ln(W+W)

Providing confidence values for the current hypothesized classifier based on the number of correctly classified vs. the number of incorrectly classified examples weighted by the distribution over examples. This equation can be smoothed to compensate for cases in which W is too small. Deriving Zt from this equation we get:

Zt=W0+2W+W

The training error thus is minimized by selecting the weak hypothesis at every iteration that minimizes the previous equation.

AdaBoost with two views

CoBoosting extends this framework in the case where one has a labeled training set (examples from 1...m) and an unlabeled training set (from m1...n), as well as satisfy the conditions of redundancy in features in the form of xi=(x1,i,x2,i). The algorithm trains two classifiers in the same fashion as AdaBoost that agree on the labeled training sets correct labels and maximizes the agreement between the two classifiers on the unlabeled training set. The final classifier is the sign of the sum of the two strong classifiers. The bounded training error on CoBoost is extended as follows, where ZCO is the extension of Zt:

ZCO=i=1meyig1(𝒙1,π’Š)+i=1meyig2(𝒙2,π’Š)+i=m+1nef2(𝒙2,π’Š)g1(𝒙1,π’Š)+i=m+1nef1(𝒙1,π’Š)g2(𝒙2,π’Š)

Where gj is the summation of hypotheses weight by their confidence values for the jth view (j = 1 or 2). fj is the sign of gj. At each iteration of CoBoost both classifiers are updated iteratively. If gjt1 is the strong classifier output for the jth view up to the t1 iteration we can set the pseudo-labels for the jth update to be:

yi^={yi1imsign(g3jt1(𝒙3𝒋,π’Š))m<in

In which 3j selects the other view to the one currently being updated. ZCO is split into two such that ZCO=ZCO1+ZCO2. Where

ZCOj=i=1neyi^(gjt1(π’™π’Š)+αtjgtj(𝒙𝒋,π’Š))

The distribution over examples for each view j at iteration t is defined as follows:

Dtj(i)=1Ztjeyi^gjt1(𝒙𝒋,π’Š)

At which point ZCOj can be rewritten as

ZCOj=i=1nDtjeyi^αtjgtj(𝒙𝒋,π’Š)

Which is identical to the equation in AdaBoost. Thus the same process can be used to update the values of αtj as in AdaBoost using yi^ and Dtj. By alternating this, the minimization of ZCO1 and ZCO2 in this fashion ZCO is minimized in a greedy fashion.

References

Footnotes

Template:Reflist

  1. ↑ 1.0 1.1 Michael Collins and Yoram Singer, Unsupervised Models for Named Entity Classification. Proceedings of the 1999 Joint SIGDAT Conference on Empirical Methods in Natural Language Processing and Very Large Corpora, pp. 100-110, 1999.