Boosting
Idea
It is the method combining several classifiers in a sequential way.
Correctly classified data doesn't need to be considered in our model, so it puts a weight on wrong classified data.
Notation
Classifiers:
Data:
Matrix:
Weight for classifiers:
Weight f or data:
Problem
The above optimization problem is an original problem, and the below one is the duality problem.
In this situation, if is lower than other values, it means the classifier is not good at predicting. So means the lowest value which the worst classifier has. When we make more weight on the worst classifier by making bigger, would be bigger.
To solve this problem, we can use subgradient method or mirror descent method.
Subgradient method
The optimization problem is defined as:
Last updated
Was this helpful?