Questions: Boosting Theory (AdaBoost Analysis)

4 questions to test your understanding

Score: 0 / 4
Question 1 Multiple Choice

AdaBoost combines T weak classifiers, each with VC dimension 1 (decision stumps). The combined classifier's VC dimension could be as large as O(T). Yet AdaBoost with T = 1000 often generalizes well. How does margin theory explain this?

AThe VC dimension analysis is wrong — the combined classifier has the same VC dimension as each weak learner
BThe VC-based generalization bound is loose. Margin-based bounds show that generalization depends on the distribution of margins (confidence of predictions), not the number of weak classifiers — large margins imply low generalization error regardless of T
CAdaBoost uses early stopping to prevent the VC dimension from growing too large
DThe weak classifiers are correlated, so the effective VC dimension is much lower than T
Question 2 True / False

After T rounds of AdaBoost with a weak learner that achieves at most gamma advantage over random guessing (error at most 1/2 - gamma), the training error is at most exp(-2 * gamma^2 * T).

TTrue
FFalse
Question 3 True / False

Boosting is guaranteed to overfit if you run it for enough rounds, because the combined classifier becomes increasingly complex.

TTrue
FFalse
Question 4 Short Answer

Explain the equivalence between weak and strong learnability and why this result is considered one of the most important in computational learning theory.

Think about your answer, then reveal below.