Here we will implement in perl boosting (AdaBoost) for classifier.
The boosting allows to increase the quality of classifying by combining multiple models.
The AdaBoost source code below is the template where actual call to classifier and
classifier output should be placed. Naive Bayes classifier that was created before can be used with this source code.