Weighted majority algorithm (machine learning): Difference between revisions

Content deleted Content added
Open access status updates in citations with OAbot #oabot
 
(9 intermediate revisions by 8 users not shown)
Line 1:
{{Short description|Method of using a pool of algorithms}}
{{Underlinked|date=August 2016}}
In [[machine learning]], '''Weightedweighted Majoritymajority Algorithmalgorithm (WMA)''' is a [[meta-learning (computer science)|meta learning]] [[algorithm]] used to construct a compound algorithm from a [[Pool (computer science)|pool]] of prediction algorithms, which could be any type of learning algorithms, classifiers, or even real human experts.<ref name="LW94">{{cite journal
 
In [[machine learning]], '''Weighted Majority Algorithm (WMA)''' is a meta-learning algorithm used to construct a compound algorithm from a pool of prediction algorithms, which could be any type of learning algorithms, classifiers, or even real human experts.<ref name="LW94">{{cite journal
| last1 = Littlestone
| first1 = N.
Line 9 ⟶ 8:
| journal = Information and Computation
| volume = 108
| issue = 2
| date = 1994
| pages = 212–261
| doi=10.1006/inco.1994.1009}}</ref><ref| doi-access name="LW89">{{cite conferencefree
| url = http://www.dklevine.com/archive/refs4575.pdf
}}</ref><ref name="LW89">{{cite conference
| last1 = Littlestone
| first1 = N.
Line 21 ⟶ 23:
The algorithm assumes that we have no prior knowledge about the accuracy of the algorithms in the pool, but there are sufficient reasons to believe that one or more will perform well.
 
Assume that the problem is a binary [[decision problem]]. To construct the compound algorithm, a positive weight is given to each of the algorithms in the pool. The compound algorithm then collects weighted votes from all the algorithms in the pool, and gives the prediction that has a higher vote. If the compound algorithm makes a mistake, the algorithms in the pool that contributed to the wrong predicting will be discounted by a certain ratio β where 0<β<1.
 
It can be shown that the [[Upper and lower bounds|upper bounds]] on the number of mistakes made in a given sequence of predictions from a pool of algorithms <math> \mathbf{A} </math> is
 
:<math>\mathbf{O(log|A|+m)}</math>
Line 29 ⟶ 31:
if one algorithm in <math> \mathbf{x}_i </math> makes at most <math> \mathbf{m} </math> mistakes.
 
There are many variations of the Weightedweighted Majoritymajority Algorithmalgorithm to handle different situations, like shifting targets, infinite pools, or randomized predictions. The core mechanism remainremains similar, with the final performances of the compound algorithm bounded by a function of the performance of the '''specialist''' (best performing algorithm) in the pool.
 
== See also ==
* [[randomizedRandomized weighted majority algorithm]]
 
==References==