Difference between revisions of "Minimum error rate training"

From Cohen Courses
Jump to navigationJump to search
Line 8: Line 8:
  
 
When training a model, often times it is beneficial to take into account the actual evaluation method for that model. In many cases, training methods do not. MERT attempts to train models for [[AddressesProblem::Machine Translation|statistical machine translation]]. It attempts to optimize the parameters of the model while considering a more complex evaluation method than simply counting incorrect translations. It essentially attempts to train the model based on the method that will be used to evaluate the model.
 
When training a model, often times it is beneficial to take into account the actual evaluation method for that model. In many cases, training methods do not. MERT attempts to train models for [[AddressesProblem::Machine Translation|statistical machine translation]]. It attempts to optimize the parameters of the model while considering a more complex evaluation method than simply counting incorrect translations. It essentially attempts to train the model based on the method that will be used to evaluate the model.
 +
 +
== Criteria ==
 +
 +
The goal of MERT, as the name would suggest, is to find a minimum error rate count, given:
 +
* <math>f_{1}^{s}</math>, the representative corpus
 +
* <math>\hat{e}_{1}^{s}</math>, the reference translations
 +
* <math>K</math>, a set of candidate translations
 +
** <math>C_{s} = \{e_{s,1},...,e_{s,K}\}</math> for each <math>f_{s}</math>
 +
* <math>M</math> feature functions <math>h_m(e,f)</math>
 +
* <math>M</math> model parameters <math>\lambda_m</math>
 +
 +
We then attempt to optimize:
 +
 +
<math>\hat{e}(f_s;\lambda_1^M) = \underset{e \in C}{\operatorname{argmax}}\{\sum_{m=1}^{M} \lambda_{m}h_m(e|f_s)\}</math>

Revision as of 13:01, 13 November 2011

Minimum error rate training (or MERT) is a method. This is a work in progress by Francis Keith

Citation

MERT was originally proposed in the paper “Minimum Error Rate Training in Statistical Machine Translation”, Franz Josef Och, ACL, 2003, pp. 160-167. (found here [1])

Background

When training a model, often times it is beneficial to take into account the actual evaluation method for that model. In many cases, training methods do not. MERT attempts to train models for statistical machine translation. It attempts to optimize the parameters of the model while considering a more complex evaluation method than simply counting incorrect translations. It essentially attempts to train the model based on the method that will be used to evaluate the model.

Criteria

The goal of MERT, as the name would suggest, is to find a minimum error rate count, given:

  • , the representative corpus
  • , the reference translations
  • , a set of candidate translations
    • for each
  • feature functions
  • model parameters

We then attempt to optimize: