1 | initial version |
I dug a little deeper into the CV code of CvBoostTree and CvDTree and I got a slightly different explanation:
A weak classifier is indeed trained by minimizing some misclassification function (in case of Real Adaboost, its the Gini index, see: CV doc). So the wanted Hit-Rate does not come into play in this part of the algorithm.
It then takes the best feature (lowest misclassification) and uses this one as the next weak classifier in the current stage.
If you take all of this in consideration, it is clear that a HR of 1 and FA of 1 are possible!