Questions: Multiplicative Weights Method

4 questions to test your understanding

Score: 0 / 4
Question 1 Multiple Choice

In the multiplicative weights update, the learning rate eta controls a tradeoff. What happens if eta is too large or too small?

ALarge eta causes convergence to a single expert too quickly (high regret from commitment); small eta causes uniform weighting for too long (high regret from slow adaptation)
BLarge eta causes numerical overflow; small eta causes underflow
CLarge eta makes the algorithm equivalent to follow-the-leader; small eta makes it equivalent to random guessing
DThe learning rate has no effect on the regret bound — only the number of rounds T matters
Question 2 True / False

The multiplicative weights method guarantees that the learner's cumulative loss is at most the best expert's loss plus O(sqrt(T * ln N)). This bound holds even if the adversary knows the algorithm the learner is using.

TTrue
FFalse
Question 3 True / False

The multiplicative weights method is only applicable to prediction with expert advice — it cannot be used for continuous optimization problems.

TTrue
FFalse
Question 4 Short Answer

Explain why the multiplicative weights method achieves the same regret bound as AdaBoost's weight update, and what the conceptual connection between them is.

Think about your answer, then reveal below.