Multiplicative weight update method

The multiplicative weights update method is an algorithmic technique most commonly used for decision making and prediction, and also widely deployed in game theory and algorithm design. The simplest use case is the problem of prediction from expert advice, in which a decision maker needs to iteratively decide on an expert whose advice to follow. The method assigns initial weights to the experts (usually identical initial weights), and updates these weights multiplicatively and iteratively according to the feedback of how well an expert performed: reducing it in case of poor performance, and increasing it otherwise. [1] It was discovered repeatedly in very diverse fields such as machine learning (AdaBoost, Winnow, Hedge), optimization (solving linear programs), theoretical computer science (devising fast algorithm for LPs and SDPs), and game theory.

Name

"Multiplicative weights" implies the iterative rule used in algorithms derived from the multiplicative weight update method.[2] It is given with different names in the different fields where it was discovered or rediscovered.

History and background

The earliest known version of this technique was in an algorithm named "fictitious play" which was proposed in game theory in the early 1950s. Grigoriadis and Khachiyan[3] applied a randomized variant of "fictitious play" to solve two-player zero-sum games efficiently using the multiplicative weights algorithm. In this case, player allocates higher weight to the actions that had a better outcome and choose his strategy relying on these weights. In machine learning, Littlestone applied the earliest form of the multiplicative weights update rule in his famous winnow algorithm, which is similar to Minsky and Papert's earlier perceptron learning algorithm. Later, he generalized the winnow algorithm to weighted majority algorithm. Freund and Schapire followed his steps and generalized the winnow algorithm in the form of hedge algorithm.

The multiplicative weights algorithm is also widely applied in computational geometry such as Clarkson's algorithm for linear programming (LP) with a bounded number of variables in linear time.[4][5] Later, Bronnimann and Goodrich employed analogous methods to find set covers for hypergraphs with small VC dimension.[6]

In operation research and on-line statistical decision making problem field, the weighted majority algorithm and its more complicated versions have been found independently.

In computer science field, some researchers have previously observed the close relationships between multiplicative update algorithms used in different contexts. Young discovered the similarities between fast LP algorithms and Raghavan's method of pessimistic estimators for derandomization of randomized rounding algorithms; Klivans and Servedio linked boosting algorithms in learning theory to proofs of Yao's XOR Lemma; Garg and Khandekar defined a common framework for convex optimization problems that contains Garg-Konemann and Plotkin-Shmoys-Tardos as subcases.[7]

General setup

A binary decision needs to be made based on n experts’ opinions to attain an associated payoff. In the first round, all experts’ opinions have the same weight. The decision maker will make the first decision based on the majority of the experts' prediction. Then, in each successive round, the decision maker will repeatedly update the weight of each expert's opinion depending on the correctness of his prior predictions. Real life examples includes predicting if it is rainy tomorrow or if the stock market will go up or go down.

Algorithm analysis

Halving algorithm[2]

Given a sequential game played between an adversary and an aggregator who is advised by N experts, the goal is for the aggregator to make as few mistakes as possible. Assume there is an expert among the N experts who always gives the correct prediction. In the halving algorithm, only the consistent experts are retained. Experts who make mistakes will be dismissed. For every decision, the aggregator decides by taking a majority vote among the remaining experts. Therefore, every time the aggregator makes a mistake, at least half of the remaining experts are dismissed. The aggregator makes at most log2(N) mistakes.[2]

Weighted majority algorithm[7][8]

Unlike halving algorithm which dismisses experts who have made mistakes, weighted majority algorithm discounts their advice. Given the same "expert advice" setup, suppose we have n decisions, and we need to select one decision for each loop. In each loop, every decision incurs a cost. All costs will be revealed after making the choice. The cost is 0 if the expert is correct, and 1 otherwise. this algorithm's goal is to limit its cumulative losses to roughly the same as the best of experts. The very first algorithm that makes choice based on majority vote every iteration does not work since the majority of the experts can be wrong consistently every time. The weighted majority algorithm corrects above trivial algorithm by keeping a weight of experts instead of fixing the cost at either 1 or 0.[7] This would make fewer mistakes compared to halving algorithm.

   Initialization: 
      Fix an 
. For each expert, associate the weight 
≔1.
   For 
 = 
, 
,…,

      1. Make the prediction that is the weighted majority of the experts' predictions based on the weights 
. That is, making a binary choice depending on which prediction has a higher total weight of experts advising it (breaking ties arbitrarily). 
      2. For every expert i who predicts wrongly, decrease his weight for the next round by multiplying it by a factor of (1-η):
                                                             
=
 (update rule)

If , the weight of the expert's advice will remain the same. When increases, the weight of the expert's advice will decrease. Note that some researchers fix in weighted majority algorithm.

After steps, let be the number of mistakes of expert i and be the number of mistakes our algorithm has made. Then we have the following bound for every :

                             
.

In particular, this holds for i which is the best expert. Since the best expert will have the least , it will give the best bound on the number of mistakes made by the algorithm as a whole.

Randomized weighted majority algorithm[2][9]

Given the same setup with N experts. Consider the special situation where the proportions of experts predicting positive and negative, counting the weights, are both close to 50%. Then, there might be a tie. Following the weight update rule in weighted majority algorithm, the predictions made by the algorithm would be randomized. The algorithm calculates the probabilities of experts predicting positive or negatives, and then makes a random decision based on the computed fraction:

predict

where

               
.

The number of mistakes made by the randomized weighted majority algorithm is bounded as:

                

where and .

Note that only the learning algorithm is randomized. The underlying assumption is that the examples and experts' predictions are not random. The only randomness is the randomness where the learner makes his own prediction. In this randomized algorithm, if . Compared to weighted algorithm, this randomness halved the number of mistakes the algorithm is going to make.[10] However, it is important to note that in some research, people define in weighted majority algorithm and allow in randomized weighted majority algorithm.[2]

Applications

The multiplicative weights method is usually used to solve a constrained optimization problem. Let each expert be the constraint in the problem, and the events represent the points in the area of interest. The punishment of the expert corresponds to how well its corresponding constraint is satisfied on the point represented by an event.[1]

Solving zero-sum games approximately (Oracle algorithm):[1][7][10]

Suppose we were given the distribution on experts. Let = payoff matrix of a finite two-player zero-sum game, with rows.

When the row player uses plan and the column player uses plan , the payoff of player is , assuming .

If player chooses action from a distribution over the rows, then the expected result for player selecting action is .

To maximize , player is should choose plan . Similarly, the expected payoff for player is . Choosing plan would minimize this payoff. By John Von Neumann's Min-Max Theorem, we obtain:

                                          

where P and i changes over the distributions over rows, Q and j changes over the columns.

Then, let denote the common value of above quantities, also named as the "value of the game". Let be an error parameter. To solve the zero-sum game bounded by additive error of ,

                                                 

                                                 

So there is an algorithm solving zero-sum game up to an additive factor of δ using O(log2(n)/ ) calls to ORACLE, with an additional processing time of O(n) per call[10]

Machine learning

In machine learning, Littlestone and Warmuth generalized the winnow algorithm to the weighted majority algorithm.[11] Later, Freund and Schapire generalized it in the form of hedge algorithm.[12] AdaBoost Algorithm formulated by Yoav Freund and Robert Schapire also employed the Multiplicative Weight Update Method.[7]

Winnow algorithm

Based on current knowledge in algorithms, multiplicative weight update method was first used in Littlestone's winnow algorithm.[7] It is used in machine learning to solve a linear program.

Given labeled examples where are feature vectors, and are their labels.

The aim is to find non-negative weights such that for all examples, the sign of the weighted combination of the features matches its labels. That is, require that for all . Without loss of generality, assume the total weight is 1 so that they form a distribution. Thus, for notational convenience, redefine to be , the problem reduces to finding a solution to the following LP:

                     
,
                     
,
                     
.

This is general form of LP.

Hedge algorithm [2]

The hedge algorithm is similar to the weighted majority algorithm. However, their exponential update rules are different.[2] It is generally used to solve the problem of binary allocation in which we need to allocate different portion of resources into N different options. The loss with every option is available at the end of every iteration. The goal is to reduce the total loss suffered for a particular allocation. The allocation for the following iteration is then revised, based on the total loss suffered in the current iteration using multiplicative update.[13]

Analysis

Assume the learning rate and for , is picked by Hedge. Then for all experts ,

                                

Initialization: Fix an . For each expert, associate the weight ≔1 For t=1,2,…,T:

      1. Pick the distribution 
 where 
.
      2. Observe the cost of the decision 
. 
      3. Set 
                              
).

AdaBoost algorithm

This algorithm[12] maintains a set of weights over the training examples. On every iteration , a distribution is computed by normalizing these weights. This distribution is fed to the weak learner WeakLearn which generates a hypothesis that (hopefully) has small error with respect to the distribution. Using the new hypothesis , AdaBoost generates the next weight vector . The process repeats. After T such iterations, the final hypothesis is the output. The hypothesis combines the outputs of the T weak hypotheses using a weighted majority vote.[12]

Input: 
      Sequence of 
 labeled examples (
,
),…,(
, 
)
      Distribution 
 over the 
 examples
      Weak learning algorithm "'WeakLearn"'
      Integer 
 specifying number of iterations
Initialize the weight vector: 
 for 
,..., 
.
Do for 
,..., 

      1. Set 
.
      2. Call WeakLearn, providing it with the distribution 
; get back a hypothesis 
 [0,1].
      3. Calculate the error of 
|
.
      4. Set 
.                                     
      5. Set the new weight vector to be 
.

Output the hypothesis:
      

Solving linear programs approximately[14]

Problem

Given a matrix and , is there a such that ?

                      
              (1)

Assumption

Using the oracle algorithm in solving zero-sum problem, with an error parameter , the output would either be a point such that or a proof that does not exist, i.e., there is no solution to this linear system of inequalities.

solution

Given vector , solves the following relaxed problem

                     
             (2)

If there exists a x satisfying (1), then x satisfies (2) for all . The contrapositive of this statement is also true. Suppose if oracle returns a feasible solution for a , the solution it returns has bounded width . So if there is a solution to (1), then there is an algorithm that its output x satisfies the system (2) up to an additive error of . The algorithm makes at most calls to a width-bounded oracle for the problem (2). The contrapositive stands true as well. The multiplicative updates is applied in the algorithm in this case.

Other applications

Operations research and online statistical decision-making[7]

In operations research and on-line statistical decision making problem field, the weighted majority algorithm and its more complicated versions have been found independently.

Computational geometry

The multiplicative weights algorithm is also widely applied in computational geometry[7], such as Clarkson's algorithm for linear programming (LP) with a bounded number of variables in linear time.[4][5] Later, Bronnimann and Goodrich employed analogous methods to find Set Covers for hypergraphs with small VC dimension.[6]

References

  1. 1 2 3 4 5 "The Multiplicative Weights Update Method: A Meta-Algorithm and Applications" (PDF). May 2012.
  2. 1 2 3 4 5 6 7 "The Multiplicative Weights Algorithm*" (PDF). Retrieved 2016-11-09.
  3. "A sublinear-time randomized approximation algorithm for matrix games" (PDF)|format= requires |url= (help). 1995. Missing or empty |url= (help); |access-date= requires |url= (help)
  4. 1 2 KENNETH L. CLARKSON. A Las Vegas algorithm for linear programming when the dimension is small., In Proc. 29th FOCS, pp. 452–456. IEEE Comp. Soc. Press, 1988.[doi:10.1109/SFCS.1988.21961] 123, 152.
  5. 1 2 KENNETH L. CLARKSON. A Las Vegas algorithm for linear and integer programming when the dimension is small., J. ACM, 42:488–499, 1995. [doi:10.1145/201019.201036] 123, 152.
  6. 1 2 H. BRONNIMANN AND ¨ M.T. GOODRICH. Almost optimal set covers in finite VC-dimension., Discrete Comput. Geom., 14:463–479, 1995. Preliminary version in 10th Ann. Symp. Comp. Geom. (SCG'94). [doi:10.1007/BF02570718] 123, 152
  7. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 "The Multiplicative Weights Update Method: A Meta-Algorithm and Applications" (PDF). 2012.
  8. "Lecture 8: Decision-making under total uncertainty: the multiplicative weight algorithm" (PDF). 2013.
  9. "COS 511: Foundations of Machine Learning" (PDF). 20 March 2006.
  10. 1 2 3 "An Algorithmist's Toolkit". 8 December 2009. Retrieved 2016-11-09.
  11. DEAN P. FOSTER AND RAKESH VOHRA (1999). Regret in the on-line decision problem, p. 29. Games and Economic Behaviour
  12. 1 2 3 Yoav, Freund. Robert, E. Schapire (1996). TA Decision-Theoretic Generalization of On-Line Learning and an Application to Boosting*, p. 55. journal of computer and system sciences.
  13. "Online Learning from Experts: Weighed Majority and Hedge" (PDF). Retrieved 2016-12-07.
  14. "Fundamentals of Convex Optimization" (PDF). Retrieved 2016-11-09.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.