Margin-infused relaxed algorithm
{{Short description|Machine learning algorithm}}
Margin-infused relaxed algorithm (MIRA)
{{cite journal
| last1 = Crammer | first1 = Koby
| last2 = Singer | first2 = Yoram
| year = 2003
| title = Ultraconservative Online Algorithms for Multiclass Problems
| journal = Journal of Machine Learning Research
| volume = 3
| pages = 951–991
| url = http://jmlr.csail.mit.edu/papers/v3/crammer03a.html
}}
is a machine learning algorithm, an online algorithm for multiclass classification problems. It is designed to learn a set of parameters (vector or matrix) by processing all the given training examples one-by-one and updating the parameters according to each training example, so that the current training example is classified correctly with a margin against incorrect classifications at least as large as their loss.
{{cite conference
| last1 = McDonald | first1 = Ryan
| last2 = Crammer | first2 = Koby
| last3 = Pereira | first3 = Fernando
| title = Online Large-Margin Training of Dependency Parsers
| book-title = Proceedings of the 43rd Annual Meeting of the ACL
| publisher = Association for Computational Linguistics
| date = 2005
| pages = 91–98
| url = http://aclweb.org/anthology-new/P/P05/P05-1012.pdf }}
The change of the parameters is kept as small as possible.
A two-class version called binary MIRA simplifies the algorithm by not requiring the solution of a quadratic programming problem (see below). When used in a one-vs-all configuration, binary MIRA can be extended to a multiclass learner that approximates full MIRA, but may be faster to train.
The flow of the algorithmWatanabe, T. et al (2007): "Online Large Margin Training for Statistical Machine Translation". In: Proceedings of the 2007 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning, 764–773.Bohnet, B. (2009): Efficient Parsing of Syntactic and Semantic Dependency Structures. Proceedings of Conference on Natural Language Learning (CoNLL), Boulder, 67–72. looks as follows:
{{Algorithm-begin|name=MIRA}}
Input: Training examples
Output: Set of parameters
← 0, ← 0
for ← 1 to
for ← 1 to
← update according to
←
end for
end for
return
{{Algorithm-end}}
The update step is then formalized as a quadratic programming problem: Find , so that , i.e. the score of the current correct training must be greater than the score of any other possible by at least the loss (number of errors) of that in comparison to .
References
{{Reflist}}