Tips

How to get feedback from the visitors?
Google Docs Form can be used to get feedback from the site visitors. Learn more here.

Some useful handy software

HOW to?

Recent site activity

411days since
Nepalese New Year 2068

Research‎ > ‎

Committee machines

Recently many researchers have investigated various techniques combining the predictions from multiple predictors to produce a single predictor. The resulting predictor is  generally more accurate than an individual one. The ensemble of predictors is often called a committee machine (or mixture of experts). In a committeemachine, an ensemble of predictors (often referred as a weak learning machine or simply a machine) is generated by means of a learning process; the overall predictions of the committee machine are
the combination of the individual committee members’ predictions.

Figure 1 presents the basic scheme of a committeemachine. Eachmachine (1 through T) is trained using training examples sampled from the given training set. A filter is employed when differentmachines are to be fedwith different subsets (denoted as type A) of the training set; in this case, the machines can be run in parallel. Flows of type B appear when machines pass unclassified data subsets to the subsequent machines, thus making a hierarchical committeemachine. The individual outputs yi for each example  are combined to produce the overall output y of the ensemble.

Bagging and boosting are the two popular committeemachines that combine the outputs from different predictors to improve overall accuracy. Several studies of boosting and bagging in classification have demonstrated that these techniques are generally more accurate than the individual classifiers.

Read more about review of boosting algorithm in the refereneces below.


I have developed  new boosting algorithm for regression problem (see reference below). This algorithm was implemented in Java language and incorporated in Weka, a popular machine learning tool.

Click here to view the user interface within the Weka environment.




References

Shrestha, D.L. and Solomatine, D.P. (2006). Experiments with AdaBoost.RT, an Improved Boosting Scheme for Regression. Neural Computation, 18(7), pp. 1678-1710. Full text (pdf)

Solomatine, D.P. and Shrestha, D.L. (2004). AdaBoost.RT: a Boosting Algorithm for Regression Problems, Proc. of the International Joint Conference on Neural Networks, IEEE, Budapest, Hungary, pp. 1163-1168. Download PDF.