Trisha Shetty (Editor)

Randomized weighted majority algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The randomized weighted majority algorithm is an algorithm in machine learning theory. It improves the mistake bound of the weighted majority algorithm.

Contents

Imagine that every morning before the stock market opens, we get a prediction from each of our "experts" about whether the stock market will go up or down. Our goal is to somehow combine this set of predictions into a single prediction that we then use to make a buy or sell decision for the day. The RWMA gives us a way to do this combination such that our prediction record will be nearly as good as that of the single best expert in hindsight.

Motivation

In machine learning, the weighted majority algorithm (WMA) is a meta-learning algorithm which "predicts from expert advice". It is not a randomized algorithm:

initialize all experts to weight 1. for each round: poll all the experts and predict based on a weighted majority vote of their predictions. cut in half the weights of all experts that make a mistake.

Suppose there are n experts and the best expert makes m mistakes. The weighted majority algorithm (WMA) makes at most 2.4 ( log 2 n + m ) mistakes, which is not a very good bound. We can do better by introducing randomization.

Randomized weighted majority algorithm (RWMA)

The nonrandomized weighted majority algorithm (WMA) only guarantees an upper bound of 2.4 ( log 2 n + m ) , which is problematic for highly error-prone experts (e.g. the best expert still makes a mistake 20% of the time.) Suppose we do N = 100 rounds using n = 10 experts. If the best expert makes m = 20 mistakes, we can only guarantee an upper bound of 2.4 ( log 2 10 + 20 ) 56 on our number of mistakes.

As this is a known limitation of WMA, attempts to improve this shortcoming have been explored in order to improve the dependence on m . Instead of predicting based on majority vote, the weights are used as probabilities: hence the name randomized weighted majority. If w i is the weight of expert i , let W = i w i . We will follow expert i with probability w i W . The goal is to bound the worst-case expected number of mistakes, assuming that the adversary (the world) has to select one of the answers as correct before we make our coin toss. Why is this better in the worst case? Idea: the worst case for the deterministic algorithm (weighted majority algorithm) was when the weights split 50/50. But, now it is not so bad since we also have a 50/50 chance of getting it right. Also, to trade-off between dependence on m and log 2 n , we will generalize to multiply by β < 1 , instead of necessarily by 1 2 .

Analysis

At the   t -th round, define   F t to be the fraction of weight on the wrong answers. so,   F t is the probability we make a mistake on the   t -th round. Let   M denote the total number of mistakes we made so far. Furthermore, we define E [ M ] =   t F t , using the fact that expectation is additive. On the   t -th round, W becomes   W ( 1 ( 1 β ) F t ) . Reason: on   F t fraction, we are multiplying by   β . So,   W f i n a l = n ( 1 ( 1 β ) F 1 ) ( 1 ( 1 β ) F 2 ) . . .
Let's say that   m is the number of mistakes of the best expert so far. We can use the inequality   W β m . Now we solve. First, take the natural log of both sides. We get:   m ln β ln ( n ) + t ln ( 1 ( 1 β ) F t ) , Simplify:
  ln ( 1 x ) = x x 2 2 x 3 3 . . . , So,
  ln ( 1 ( 1 β ) F t ) < ( 1 β ) F t .
  m ln β ln ( n ) ( 1 β ) t F t
Now, use   E [ M ] =   t F t , and the result is:
  E [ M ] m ln ( 1 / β ) + ln ( n ) 1 β
Let's see if we made any progress:

If   β = 1 2 , we get,   1.39 m + 2 ln ( n ) . ,
if   β = 3 4 , we get,   1.15 m + 4 ln ( n ) .
so we can see we made progress. Roughly, of the form   ( 1 + ϵ ) m + ϵ 1 ln ( n ) .

Uses of Randomized weighted Majority(RWMN)

Can use to combine multiple algorithms to do nearly as well as best in hindsight.

can apply Randomized weighted majority algorithm in situations where experts are making choices that cannot be combined (or can't be combined easily).For instance, repeated game-playing or online shortest path problem.In the online shortest path problem, each expert is telling you a different way to drive to work. You pick one using Randomized weighted majority algorithm. Later you find out how well you would have done, and penalize appropriately. To do this right, we want to generalize from just "losS" of 0 to 1 to losses in [0,1]. Goal of having expected loss be not too much worse than loss of best expert.We generalize by penalize β l o s s , meaning having two examples of loss   1 2 gives same weight as one example of loss 1 and one example of loss 0 (Analysis still oes through).

Extensions

- "Bandit" problem
- Efficient algorithm for some cases with many experts.
- Sleeping experts/"specialists" setting.

References

Randomized weighted majority algorithm Wikipedia