Margin Infused Relaxed Algorithm

From Cohen Courses
Jump to navigationJump to search

This method is used by Watanabe et al., EMNLP 2007 to train an MT system a with a very large number of features of the order of millions. The training step was performed using a specific algorithm called the Margin Infused Relaxed Algorithm (MIRA) proposed by Crammer et al., 2006.

Summary

MIRA is an online large-margin training algorithm which updates the weight vector according to certain margin constraints and loss function.

It is used to learn the weights of features after processing each training instance similar to the structured perceptron algorithm with an additional loss function and margin constraint in its update rule.

General Definition

A general definition of online training algorithms can be written down as follows:

Online-training.jpg
  • and a list of -best oracles . A -best list of candidates is generated by using the current weight vector . Each training instance can have a multiple number of correct outputs or references, , in this case, target translations.
  • Using the -best list, -best oracle translations is updated by in each iteration.
  • New weight vector is computed using the -list with respect to the oracle .
  • After iterations, the algorithm returns an averaged weight vector over training instances to avoid overfitting.

MIRA

The difference in MIRA lies in the weight update rule which differs from one algorithm to the other. It has been widely used in structured classification tasks such as dependency parsing (McDonald et al., 2005) and joint-labeling/chunking (Shimizu and Haas, 2006).

  • The basic idea is to keep the norm of the updates to the weight vector as small as possible,
  • Considering a margin at least as large as the loss of the incorrect classification.
  • The update rule in MIRA is given by:

subject to


where, .

is a nonnegative slack variable and is a constant to control the influence to the objective function. A larger C implies larger updates to the weight vector.

is a loss function, that measures the "difference" between and according to the set of references .


A larger error means a larger distance between the scores of the predicted correct and incorrect outputs.

Dual Form

The Langrage dual form for MIRA's objective function is given by:

subject to

with the weight vector update,

The dual form is solved using a QP-solver, such as a coordinate ascent algorithm, by heuristically selecting and by updating iteratively:




is used to clip the amount of updates.

Related Papers

[1] Koby Crammer, Ofer Dekel, Joseph Keshet, Shai Shalev-Shwartz, Yoram Singer. Online Passive-Aggressive Algorithms. Journal of Machine Learning Research, 7(Mar):551--585, 2006.

[2] Taro Watanabe, Jun Suzuki, Hajime Tsukada, Hideki Isozaki. 2007. Online large-margin training for statistical machine translation. In Proceedings of EMNLP-CoNLL, pp 764–773.

[3] David Chiang, Yuval Marton and Philip Resnik. 2008. Online Large-Margin Training of Syntactic and Structural Translation Features. In Proceedings of EMNLP-2008.