ACL-OCL / Base_JSON /prefixP /json /P08 /P08-1010.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "P08-1010",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:34:27.381434Z"
},
"title": "Phrase Table Training For Precision and Recall: What Makes a Good Phrase and a Good Phrase Pair?",
"authors": [
{
"first": "Yonggang",
"middle": [],
"last": "Deng",
"suffix": "",
"affiliation": {},
"email": "ydeng@us.ibm.com"
},
{
"first": "Jia",
"middle": [],
"last": "Xu",
"suffix": "",
"affiliation": {},
"email": "xujia@cs.rwth-aachen.de"
},
{
"first": "Yuqing",
"middle": [],
"last": "Gao",
"suffix": "",
"affiliation": {},
"email": "yuqing@us.ibm.com"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In this work, the problem of extracting phrase translation is formulated as an information retrieval process implemented with a log-linear model aiming for a balanced precision and recall. We present a generic phrase training algorithm which is parameterized with feature functions and can be optimized jointly with the translation engine to directly maximize the end-to-end system performance. Multiple data-driven feature functions are proposed to capture the quality and confidence of phrases and phrase pairs. Experimental results demonstrate consistent and significant improvement over the widely used method that is based on word alignment matrix only.",
"pdf_parse": {
"paper_id": "P08-1010",
"_pdf_hash": "",
"abstract": [
{
"text": "In this work, the problem of extracting phrase translation is formulated as an information retrieval process implemented with a log-linear model aiming for a balanced precision and recall. We present a generic phrase training algorithm which is parameterized with feature functions and can be optimized jointly with the translation engine to directly maximize the end-to-end system performance. Multiple data-driven feature functions are proposed to capture the quality and confidence of phrases and phrase pairs. Experimental results demonstrate consistent and significant improvement over the widely used method that is based on word alignment matrix only.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Phrase has become the standard basic translation unit in Statistical Machine Translation (SMT) since it naturally captures context dependency and models internal word reordering. In a phrase-based SMT system, the phrase translation table is the defining component which specifies alternative translations and their probabilities for a given source phrase. In learning such a table from parallel corpus, two related issues need to be addressed (either separately or jointly): which pairs are considered valid translations and how to assign weights, such as probabilities, to them. The first problem is referred to as phrase pair extraction, which identifies phrase pairs that are supposed to be translations of each other. Methods have been proposed, based on syntax, that take advantage of linguistic constraints and alignment of grammatical structure, such as in Yamada and Knight (2001) and Wu (1995) . The most widely used approach derives phrase pairs from word alignment matrix (Och and Ney, 2003; Koehn et al., 2003) . Other methods do not depend on word alignments only, such as directly modeling phrase alignment in a joint generative way (Marcu and Wong, 2002) , pursuing information extraction perspective (Venugopal et al., 2003) , or augmenting with modelbased phrase pair posterior (Deng and Byrne, 2005) .",
"cite_spans": [
{
"start": 864,
"end": 888,
"text": "Yamada and Knight (2001)",
"ref_id": "BIBREF21"
},
{
"start": 893,
"end": 902,
"text": "Wu (1995)",
"ref_id": "BIBREF20"
},
{
"start": 983,
"end": 1002,
"text": "(Och and Ney, 2003;",
"ref_id": "BIBREF11"
},
{
"start": 1003,
"end": 1022,
"text": "Koehn et al., 2003)",
"ref_id": "BIBREF7"
},
{
"start": 1147,
"end": 1169,
"text": "(Marcu and Wong, 2002)",
"ref_id": "BIBREF9"
},
{
"start": 1216,
"end": 1240,
"text": "(Venugopal et al., 2003)",
"ref_id": "BIBREF18"
},
{
"start": 1295,
"end": 1317,
"text": "(Deng and Byrne, 2005)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Using relative frequency as translation probability is a common practice to measure goodness of a phrase pair. Since most phrases appear only a few times in training data, a phrase pair translation is also evaluated by lexical weights (Koehn et al., 2003) or term weighting (Zhao et al., 2004) as additional features to avoid overestimation. The translation probability can also be discriminatively trained such as in Tillmann and Zhang (2006) .",
"cite_spans": [
{
"start": 235,
"end": 255,
"text": "(Koehn et al., 2003)",
"ref_id": "BIBREF7"
},
{
"start": 274,
"end": 293,
"text": "(Zhao et al., 2004)",
"ref_id": "BIBREF23"
},
{
"start": 418,
"end": 443,
"text": "Tillmann and Zhang (2006)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The focus of this paper is the phrase pair extraction problem. As in information retrieval, precision and recall issues need to be addressed with a right balance for building a phrase translation table. High precision requires that identified translation candidates are accurate, while high recall wants as much valid phrase pairs as possible to be extracted, which is important and necessary for online translation that requires coverage. In the word-alignment derived phrase extraction approach, precision can be improved by filtering out most of the entries by using a statistical significance test (Johnson et al., 2007) . On the other hand, there are valid translation pairs in the training corpus that are not learned due to word alignment errors as shown in Deng and Byrne (2005) .",
"cite_spans": [
{
"start": 602,
"end": 624,
"text": "(Johnson et al., 2007)",
"ref_id": "BIBREF6"
},
{
"start": 765,
"end": 786,
"text": "Deng and Byrne (2005)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We would like to improve phrase translation accuracy and at the same time extract as many as possible valid phrase pairs that are missed due to incorrect word alignments. One approach is to leverage underlying word alignment quality such as in Ayan and Dorr (2006) . In this work, we present a generic discriminative phrase pair extraction framework that can integrate multiple features aiming to identify correct phrase translation candidates. A significant deviation from most other approaches is that the framework is parameterized and can be optimized jointly with the decoder to maximize translation performance on a development set. Within the general framework, the main work is on investigating useful metrics. We employ features based on word alignment models and alignment matrix. We also propose information metrics that are derived from both bilingual and monolingual perspectives. All these features are data-driven and independent of languages. The proposed phrase extraction framework is general to apply linguistic features such as semantic, POS tags and syntactic dependency.",
"cite_spans": [
{
"start": 244,
"end": 264,
"text": "Ayan and Dorr (2006)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Let e = e I 1 denote an English sentence and let f = f J 1 denote its translation in a foreign language, say Chinese. Phrase extraction begins with sentence-aligned parallel corpora {(e i , f i )}. We use E = e ie i b and F = f je j b to denote an English and foreign phrases respectively, where i b (j b ) is the position in the sentence of the beginning word of the English(foreign) phrase and i e (j e ) is the position of the ending word of the phrase.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "We first train word alignment models and will use them to evaluate the goodness of a phrase and a phrase pair. Let f k (E, F ), k = 1, 2, \u2022 \u2022 \u2022 , K be K feature functions to be used to measure the quality of a given phrase pair (E, F ). The generic phrase extraction procedure is an evaluation, ranking, filtering, estimation and tuning process, presented in Algorithm 1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Step 1 (line 1) is the preparation stage. Beginning with a flat lexicon, we train IBM Model-1 word alignment model with 10 iterations for each translation direction. We then train HMM word alignment models (Vogel et al., 1996) in two directions simultaneously by merging statistics collected in the Algorithm 1 A Generic Phrase Training Procedure 1: Train Model-1 and HMM word alignment models 2: for all sentence pair (e, f ) do 3:",
"cite_spans": [
{
"start": 206,
"end": 226,
"text": "(Vogel et al., 1996)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Identify candidate phrases on each side 4:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "for all candidate phrase pair (E, F ) do 5:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Calculate its feature function values f k 6:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Obtain the score",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "q(E, F ) = K k=1 \u03bb k f k (E, F ) 7:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "end for 8:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Sort candidate phrase pairs by their final scores q 9:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Find the maximum score qm = max q(E, F ) 10:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "for all candidate phrase pair (E, F ) do 11:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "If q(E, F ) \u2265 qm \u2212 \u03c4 , dump the pair into the pool 12: end for 13: end for 14: Built a phrase translation table from the phrase pair pool 15: Discriminatively train feature weights \u03bb k and threshold \u03c4 E-step from two directions motivated by Zens et al. (2004) with 5 iterations. We use these models to define the feature functions of candidate phrase pairs such as phrase pair posterior distribution. More details will be given in Section 3.",
"cite_spans": [
{
"start": 241,
"end": 259,
"text": "Zens et al. (2004)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Step 2 (line 2) consists of phrase pair evaluation, ranking and filtering. Usually all n-grams up to a pre-defined length limit are considered as candidate phrases. This is also the place where linguistic constraints can be applied, say to avoid noncompositional phrases (Lin, 1999) . Each normalized feature score derived from word alignment models or language models will be log-linearly combined to generate the final score. Phrase pair filtering is simply thresholding on the final score by comparing to the maximum within the sentence pair. Note that under the log-linear model, applying threshold for filtering is equivalent to comparing the \"likelihood\" ratio.",
"cite_spans": [
{
"start": 271,
"end": 282,
"text": "(Lin, 1999)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Step 3 (line 14) pools all candidate phrase pairs that pass the threshold testing and estimates the final phrase translation table by maximum likelihood criterion. For each candidate phrase pair which is above the threshold, we assign HMM-based phrase pair posterior as its soft count when dumping them into the global phrase pair pool. Other possibilities for the weighting include assigning constant one or the exponential of the final score etc.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "One of the advantages of the proposed phrase training algorithm is that it is a parameterized procedure that can be optimized jointly with the trans-lation engine to minimize the final translation errors measured by automatic metrics such as BLEU (Papineni et al., 2002) . In the final step 4 (line 15), parameters {\u03bb k , \u03c4 } are discriminatively trained on a development set using the downhill simplex method (Nelder and Mead, 1965) .",
"cite_spans": [
{
"start": 247,
"end": 270,
"text": "(Papineni et al., 2002)",
"ref_id": "BIBREF15"
},
{
"start": 410,
"end": 433,
"text": "(Nelder and Mead, 1965)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "This phrase training procedure is general in the sense that it is configurable and trainable with different feature functions and their parameters. The commonly used phrase extraction approach based on word alignment heuristics (referred as ViterbiExtract algorithm for comparison in this paper) as described in (Och, 2002; Koehn et al., 2003 ) is a special case of the algorithm, where candidate phrase pairs are restricted to those that respect word alignment boundaries.",
"cite_spans": [
{
"start": 312,
"end": 323,
"text": "(Och, 2002;",
"ref_id": "BIBREF13"
},
{
"start": 324,
"end": 342,
"text": "Koehn et al., 2003",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "We rely on multiple feature functions that aim to describe the quality of candidate phrase translations and the generic procedure to figure out the best way of combining these features. A good feature function pops up valid translation pairs and pushes down incorrect ones.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Generic Phrase Training Procedure",
"sec_num": "2"
},
{
"text": "Now we present several feature functions that we investigated to help extracting correct phrase translations. All these features are data-driven and defined based on models, such as statistical word alignment model or language model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3"
},
{
"text": "In a statistical generative word alignment model (Brown et al., 1993) , it is assumed that (i) a random variable a specifies how each target word f j is generated by (therefore aligned to) a source 1 word e a j ; and (ii) the likelihood function f (f , a|e) specifies a generative procedure from the source sentence to the target sentence. Given a phrase pair in a sentence pair, there will be many generative paths that align the source phrase to the target phrase. The likelihood of those generative procedures can be accumulated to get the likelihood of the phrase pair (Deng and Byrne, 2005) . This is implemented as the summation of the likelihood function over all valid hidden word alignments.",
"cite_spans": [
{
"start": 49,
"end": 69,
"text": "(Brown et al., 1993)",
"ref_id": "BIBREF2"
},
{
"start": 573,
"end": 595,
"text": "(Deng and Byrne, 2005)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Model-based Phrase Pair Posterior",
"sec_num": "3.1"
},
{
"text": "A (j 1 ,j 2 ) (i 1 ,i 2 ) = {a : a j \u2208 [i 1 , i 2 ] iff j \u2208 [j 1 , j 2 ]}",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model-based Phrase Pair Posterior",
"sec_num": "3.1"
},
{
"text": "The alignment set given a phrase pair ignores those pairs with word links across the phrase boundary. Consequently, the phrase-pair posterior distribution is defined as",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model-based Phrase Pair Posterior",
"sec_num": "3.1"
},
{
"text": "P \u03b8 (e i 2 i 1 \u2192 f j 2 j 1 |e, f ) = a\u2208A (j 1 ,j 2 ) (i 1 ,i 2 ) f (a, f |e; \u03b8) a f (a, f |e; \u03b8) . (1)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model-based Phrase Pair Posterior",
"sec_num": "3.1"
},
{
"text": "Switching the source and the target, we can obtain the posterior distribution in another translation direction. This distribution is applicable to all word alignment models that follow assumptions (i) and (ii). However, the complexity of the likelihood function could make it impractical to calculate the summations in Equation 1 unless an approximation is applied.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model-based Phrase Pair Posterior",
"sec_num": "3.1"
},
{
"text": "Several feature functions will be defined on top of the posterior distribution. One of them is based on HMM word alignment model. We use the geometric mean of posteriors in two translation directions as a symmetric metric for phrase pair quality evaluation function under HMM alignment models. Table 1 shows the phrase pair posterior matrix of the example.",
"cite_spans": [],
"ref_spans": [
{
"start": 294,
"end": 302,
"text": "Table 1",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Model-based Phrase Pair Posterior",
"sec_num": "3.1"
},
{
"text": "Replacing the word alignment model with IBM Model-1 is another feature function that we added. IBM Model-1 is simple yet has been shown to be effective in many applications (Och et al., 2004) . There is a close form solution to calculate the phrase pair posterior under Model-1. Moreover, word to word translation table under HMM is more concentrated than that under Model-1. Therefore, the posterior distribution evaluated by Model-1 is smoother and potentially it can alleviate the overestimation problem in HMM especially when training data size is small.",
"cite_spans": [
{
"start": 173,
"end": 191,
"text": "(Och et al., 2004)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Model-based Phrase Pair Posterior",
"sec_num": "3.1"
},
{
"text": "Trying to find phrase translations for any possible ngram is not a good idea for two reasons. First, due to data sparsity and/or alignment model's capability, there would exist n-grams that cannot be aligned well, for instance, n-grams that are part of a paraphrase translation or metaphorical expression. To give an example, the unigram 'tomorrow' in 'the day after tomorrow' whose Chinese translation is a single word ' '. Extracting candidate translations for such kind of n-grams for the sake of improving coverage (recall) might hurt translation quality (precision). We will define a confidence metric to estimate how reliably the model can align an n-gram in one side to a phrase on the other side given a parallel sentence. Second, some n-grams themselves carry no linguistic meaning; their phrase translations can be misleading, for example non-compositional phrases (Lin, 1999) . We will address this in section 3.3.",
"cite_spans": [
{
"start": 875,
"end": 886,
"text": "(Lin, 1999)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Bilingual Information Metric",
"sec_num": "3.2"
},
{
"text": "f 1 f 2 f 3 1(that) 2(",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bilingual Information Metric",
"sec_num": "3.2"
},
{
"text": "Given a sentence pair, the basic assumption is that if the HMM word alignment model can align an English phrase well to a foreign phrase, the posterior distribution of the English phrase generating all foreign phrases on the other side is significantly biased. For instance, the posterior of one foreign phrase is far larger than that of the others. We use the entropy of the posterior distribution as the confidence metric:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bilingual Information Metric",
"sec_num": "3.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "H BL (e i 2 i 1 |e, f ) = H(P \u03b8 HM M (e i 2 i 1 \u2192 * ))",
"eq_num": "(2)"
}
],
"section": "Bilingual Information Metric",
"sec_num": "3.2"
},
{
"text": "where H(P ) = \u2212 x P (x) log P (x) is the entropy of a distribution P (x),P \u03b8 HM M (e i 2 i 1 \u2192 * ) is the normalized probability (sum up to 1) of the posterior P \u03b8 HM M (e i 2 i 1 \u2192 * ) as defined in Equation 1. Low entropy signals a high confidence that the English phrase can be aligned correctly. On the other hand, high entropy implies ambiguity presented in discriminating the correct foreign phrase from the others from the viewpoint of the model. Similarly we calculate the confidence metric of aligning a foreign phrase correctly with the word alignment model in foreign to English direction. Table 1 shows the entropy of phrases. The unigram of foreign side f 2 2 is unlikely to survive with such high ambiguity. Adding the entropy in two directions defines the bilingual information metric as another feature function, which describes the reliability of aligning each phrase correctly by the model. Note that we used HMM word alignment model to find the posterior distribution. Other models such as Model-1 can be applied in the same way. This feature function quantitatively captures the goodness of phrases. During phrase pair ranking, it can help to move upward phrases that can be aligned well and push downward phrases that are difficult for the model to find correct translations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bilingual Information Metric",
"sec_num": "3.2"
},
{
"text": "Now we turn to monolingual resources to evaluate the quality of an n-gram being a good phrase. A phrase in a sentence is specified by its boundaries. We assume that the boundaries of a good phrase should be the \"right\" place to break. More generally, we want to quantify how effective a word boundary is as a phrase boundary. One would perform say NP-chunking or parsing to avoid splitting a linguistic constituent. We apply a language model (LM) to describe the predictive uncertainty (P U ) between words in two directions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Monolingual Information Metric",
"sec_num": "3.3"
},
{
"text": "Given a history w n\u22121 1 , a language model specifies a conditional distribution of the future word being predicted to follow the history. We can find the entropy of such pdf:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Monolingual Information Metric",
"sec_num": "3.3"
},
{
"text": "H LM (w n\u22121 1 ) = H(P (\u2022|w n\u22121 1 )).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Monolingual Information Metric",
"sec_num": "3.3"
},
{
"text": "So given a sentence w N 1 , the P U of the boundary between word w i and w i+1 is established by two-way entropy sum using a forward and backward language model:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Monolingual Information Metric",
"sec_num": "3.3"
},
{
"text": "P U (w N 1 , i) = H LM F (w i 1 ) + H LM B (w i+1 N )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Monolingual Information Metric",
"sec_num": "3.3"
},
{
"text": "We assume that the higher the predictive uncertainty is, the more likely the left or right part of the word boundary can be \"cut-and-pasted\" to form another reasonable sentence. So a good phrase is characterized with high P U values on the boundaries. For example, in 'we want to have a table near the window', the P U value of the point after 'table' is 0.61, higher than that between 'near' and 'the' 0.3, using trigram LMs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Monolingual Information Metric",
"sec_num": "3.3"
},
{
"text": "With this, the feature function derived from monolingual clue for a phrase pair can be defined as the product of P U s of the four word boundaries.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Monolingual Information Metric",
"sec_num": "3.3"
},
{
"text": "The widely used ViterbiExtract algorithm relies on word alignment matrix and no-crossing-link assumption to extract phrase translation candidates. Practically it has been proved to work well. However, discarding correct phrase pairs due to incorrect word links leaves room for improving recall. This is especially true for not significantly large training corpora. Provided with a word alignment matrix, we define within phrase pair consistency ratio (WP-PCR) as another feature function. WPPCR was used as one of the scores in (Venugopal et al., 2003) for phrase extraction. It is defined as the number of consistent word links associated with any words within the phrase pair divided by the number of all word links associated with any words within the phrase pair. An inconsistent link connects a word within the phrase pair to a word outside the phrase pair. For example, the WPPCR for (e 2 1 , f 2 1 ) in Table 1 is 2/3. As a special case, the ViterbiExtract algorithm extracts only phrase pairs with WPPCR is 1.",
"cite_spans": [
{
"start": 528,
"end": 552,
"text": "(Venugopal et al., 2003)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [
{
"start": 910,
"end": 917,
"text": "Table 1",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Word Alignments Induced Metric",
"sec_num": "3.4"
},
{
"text": "To further discriminate the pairs with higher WP-PCR from those with lower ratio, we apply a Bi-Linear Transform (BLT) (Oppenheim and Schafer, 1989) mapping. BLT is commonly used in signal processing to attenuate the low frequency parts. When used to map WPPCR, it exaggerates the difference between phrase pairs with high WPPCR and those with low WPPCR, making the pairs with low ratio more unlikely to be selected as translation candidates. One of the nice properties of BLT is that there is a parameter that can be changed to adjust the degree of attenuation, which provides another dimension for system optimization.",
"cite_spans": [
{
"start": 119,
"end": 148,
"text": "(Oppenheim and Schafer, 1989)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Word Alignments Induced Metric",
"sec_num": "3.4"
},
{
"text": "We evaluate the effect of the proposed phrase extraction algorithm with translation performance. We do experiments on IWSLT (Paul, 2006) 2006 Chinese-English corpus. The task is to translate Chinese utterances in travel domain into English. We report only text (speech transcription) translation results.",
"cite_spans": [
{
"start": 124,
"end": 136,
"text": "(Paul, 2006)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Results",
"sec_num": "4"
},
{
"text": "The training corpus consists of 40K Chinese-English parallel sentences in travel domain with to- Table 2 . We will tune training and decoding parameters on 06dev and report results on other sets.",
"cite_spans": [],
"ref_spans": [
{
"start": 97,
"end": 104,
"text": "Table 2",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Experimental Results",
"sec_num": "4"
},
{
"text": "Our decoder is a phrase-based multi-stack implementation of the log-linear model similar to Pharaoh (Koehn et al., 2003) . Like other log-linear model based decoders, active features in our translation engine include translation models in two directions, lexicon weights in two directions, language model, lexicalized distortion models, sentence length penalty and other heuristics. These feature weights are tuned on the dev set to achieve optimal translation performance using downhill simplex method. The language model is a statistical trigram model estimated with Modified Kneser-Ney smoothing (Chen and Goodman, 1996) using only English sentences in the parallel training data.",
"cite_spans": [
{
"start": 100,
"end": 120,
"text": "(Koehn et al., 2003)",
"ref_id": "BIBREF7"
},
{
"start": 599,
"end": 623,
"text": "(Chen and Goodman, 1996)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Training and Translation Setup",
"sec_num": "4.1"
},
{
"text": "Starting from the collection of parallel training sentences, we build word alignment models in two translation directions, from English to Chinese and from Chinese to English, and derive two sets of Viterbi alignments. By combining word alignments in two directions using heuristics (Och and Ney, 2003) , a single set of static word alignments is then formed. Based on alignment models and word alignment matrices, we compare different approaches of building a phrase translation table and show the final translation results. We measure translation performance by the BLEU (Papineni et al., 2002) and METEOR (Banerjee and Lavie, 2005) scores with multiple translation references. ",
"cite_spans": [
{
"start": 283,
"end": 302,
"text": "(Och and Ney, 2003)",
"ref_id": "BIBREF11"
},
{
"start": 573,
"end": 596,
"text": "(Papineni et al., 2002)",
"ref_id": "BIBREF15"
},
{
"start": 608,
"end": 634,
"text": "(Banerjee and Lavie, 2005)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Training and Translation Setup",
"sec_num": "4.1"
},
{
"text": "Our baseline phrase table training method is the ViterbiExtract algorithm. All phrase pairs with respect to the word alignment boundary constraint are identified and pooled to build phrase translation tables with the Maximum Likelihood criterion. We prune phrase translation entries by their probabilities. The maximum number of words in Chinese and English phrases is set to 8 and 25 respectively for all conditions 2 . We perform online style phrase training, i.e., phrase extraction is not particular for any evaluation set. Two different word alignment models are trained as the baseline, one is symmetric HMM word alignment model, the other is IBM Model-4 as implemented in the GIZA++ toolkit (Och and Ney, 2003) . The translation results as measured by BLEU and METEOR scores are presented in Table 3 . We notice that Model-4 based phrase table performs roughly 1% better in terms of both BLEU and METEOR scores than that based on HMM.",
"cite_spans": [
{
"start": 698,
"end": 717,
"text": "(Och and Ney, 2003)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [
{
"start": 799,
"end": 806,
"text": "Table 3",
"ref_id": "TABREF5"
}
],
"eq_spans": [],
"section": "Translation Results",
"sec_num": "4.2"
},
{
"text": "We follow the generic phrase training procedure as described in section 2. The most time consuming part is calculating posteriors, which is carried out in parallel with 30 jobs in less than 1.5 hours.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Translation Results",
"sec_num": "4.2"
},
{
"text": "We use the Viterbi word alignments from HMM to define within phrase pair consistency ratio as discussed in section 3.4. Although Table 3 implies that Model-4 word alignment quality is better than that of HMM, we did not get benefits by switching to Model-4 to compute word alignments based feature values.",
"cite_spans": [],
"ref_spans": [
{
"start": 129,
"end": 136,
"text": "Table 3",
"ref_id": "TABREF5"
}
],
"eq_spans": [],
"section": "Translation Results",
"sec_num": "4.2"
},
{
"text": "In estimating phrase translation probability, we use accumulated HMM-based phrase pair posteriors as their 'soft' frequencies and then the final translation probability is the relative frequency. HMMbased posterior was shown to be better than treating each occurrence as count one.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Translation Results",
"sec_num": "4.2"
},
{
"text": "Once we have computed all feature values for all phrase pairs in the training corpus, we discriminatively train feature weights \u03bb k s and the threshold \u03c4 using the downhill simplex method to maximize the BLEU score on 06dev set. Since the translation engine implements a log-linear model, the discriminative training of feature weights in the decoder should be embedded in the whole end-to-end system jointly with the discriminative phrase table training process. This is globally optimal but computationally demanding. As a compromise, we fix the decoder feature weights and put all efforts on optimizing phrase training parameters to find out the best phrase table.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Translation Results",
"sec_num": "4.2"
},
{
"text": "The translation results with the discriminatively trained phrase table are shown as the row of \"New\" in Table 3 . We observe that the new approach is consistently better than the baseline ViterbiExtract algorithm with either Model-4 or HMM word alignments on all sets. Roughly, it has 0.5% higher BLEU score on 2006 sets and 1.5% to 3% higher on other sets than Model-4 based ViterbiExtract method. Similar superior results are observed when measured with METEOR score.",
"cite_spans": [],
"ref_spans": [
{
"start": 104,
"end": 111,
"text": "Table 3",
"ref_id": "TABREF5"
}
],
"eq_spans": [],
"section": "Translation Results",
"sec_num": "4.2"
},
{
"text": "The generic phrase training algorithm follows an information retrieval perspective as in (Venugopal et al., 2003) but aims to improve both precision and recall with the trainable log-linear model. A clear advantage of the proposed approach over the widely used ViterbiExtract method is trainability. Under the general framework, one can put as many features as possible together under the log-linear model to evaluate the quality of a phrase and a phase pair. The phrase table extracting procedure is trainable and can be optimized jointly with the translation engine.",
"cite_spans": [
{
"start": 89,
"end": 113,
"text": "(Venugopal et al., 2003)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussions",
"sec_num": "5"
},
{
"text": "Another advantage is flexibility, which is provided partially by the threshold \u03c4 . As the figure 1 shows, when we increase the threshold by allowing more candidate phrase pair hypothesized as valid translation, we observe the phrase table size increases monotonically. On the other hand, we notice that the translation performance improves gradually. After reaching its peak, the BLEU score drops as the threshold \u03c4 increases. When \u03c4 is large enough, the translation performance is not changing much but still worse than the peak value. It implies a balancing process between precision and recall. The final optimal threshold \u03c4 is around 5.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussions",
"sec_num": "5"
},
{
"text": "The flexibility is also enabled by multiple configurable features used to evaluate the quality of a phrase and a phrase pair. Ideally, a perfect combination of feature functions divides the correct and incorrect candidate phrase pairs within a parallel sentence into two ordered separate sets. We use feature functions to decide the order and the threshold \u03c4 to locate the boundary guided with a development set.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussions",
"sec_num": "5"
},
{
"text": "So the main issue to investigate now is which features are important and valuable in ranking candidate phrase pairs. We propose several information metrics derived from posterior distribution, language model and word alignments as feature functions. The ViterbiExtract is a special case where a single binary feature function defined from word alignments is used. Its good performance (as shown in Table 3 ) suggests that word alignments are very indicative of phrase pair quality. So we design comparative experiments to capture word alignment impact only. We start with basic features that include model-based posterior, bilingual and monolingual information metrics. Its results on different test sets are presented in the \"basic\" row of Table 4 . We add word alignment feature (\"+align\" row), and then apply bilinear transform to the consistency ratio WPPCR as described in section 3.4 (\"+align BLT\" row). The parameter controlling the degree of attenuation in BLT is also optimized together with other feature weights.",
"cite_spans": [],
"ref_spans": [
{
"start": 398,
"end": 405,
"text": "Table 3",
"ref_id": "TABREF5"
},
{
"start": 741,
"end": 748,
"text": "Table 4",
"ref_id": "TABREF7"
}
],
"eq_spans": [],
"section": "Discussions",
"sec_num": "5"
},
{
"text": "With the basic features, the new phrase extraction approach performs better than the baseline method with HMM word alignment models but similar to the baseline method with Model-4. With the word alignment based feature WPPCR, we obtain a 2% improvement on 04test set but not much on other sets except slight degradation on 06test. Finally, applying BLT transform to WPPCR leads to additional 0.8 BLEU point on 06dev set and 1.2 point on 06test set. This confirms the effectiveness of word alignment based features. Now we compare the phrase table using the proposed method to that extracted using the baseline ViterbiExtract method with Model-4 word alignments. The Venn diagram in Table 5 shows how the two phrase tables overlap with each other and size of each part. As expected, they have a large number of common phrase pairs (PP2). The new method is able to extract more phrase pairs than the baseline with Model-4. PP1 is the set of phrase pairs found by Model-4 alignments. Removing PP1 from the baseline phrase table (comparing the first group of scores) or adding PP1 to the new phrase table (the second group of scores) overall results in no or marginal performance change. On the other hand, adding phrase pairs extracted by the new method only (PP3) can lead to significant BLEU score increases (comparing row 1 vs. 3, and row 2 vs. 4).",
"cite_spans": [],
"ref_spans": [
{
"start": 682,
"end": 689,
"text": "Table 5",
"ref_id": "TABREF8"
}
],
"eq_spans": [],
"section": "Discussions",
"sec_num": "5"
},
{
"text": "In this paper, the problem of extracting phrase translation is formulated as an information retrieval process implemented with a log-linear model aiming for a balanced precision and recall. We have presented a generic phrase translation extraction procedure which is parameterized with feature functions. It can be optimized jointly with the translation engine to directly maximize the end-to-end translation performance. Multiple feature functions were investigated. Our experimental results on IWSLT Chinese-English corpus have demonstrated consistent and significant improvement over the widely used word alignment matrix based extraction method. 3 ",
"cite_spans": [
{
"start": 650,
"end": 651,
"text": "3",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "The word source and target are in the sense of word alignment direction, not as in the source-channel formulation.More specifically, let A (j 1 ,j 2 ) (i 1 ,i 2 ) be the set of word alignment a that aligns the source phrase e j 1 i 1 to the target phrase f j 2 j 1 (links to NULL word are ignored for simplicity):",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We chose large numbers for phrase length limit to build a strong baseline and to avoid impact of longer phase length.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We would like to thank Xiaodong Cui, Radu Florian and other IBM colleagues for useful discussions and the anonymous reviewers for their constructive suggestions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgement",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Going beyond AER: An extensive analysis of word alignments and their impact on MT",
"authors": [
{
"first": "N",
"middle": [],
"last": "Ayan",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Dorr",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "9--16",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "N. Ayan and B. Dorr. 2006. Going beyond AER: An extensive analysis of word alignments and their impact on MT. In Proc. of ACL, pages 9-16.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "METEOR: An automatic metric for MT evaluation with improved correlation with human judgments",
"authors": [
{
"first": "S",
"middle": [],
"last": "Banerjee",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Lavie",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. of the ACL Workshop on Intrinsic and Extrinsic Evaluation Measures for Machine Translation and/or Summarization",
"volume": "",
"issue": "",
"pages": "65--72",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Banerjee and A. Lavie. 2005. METEOR: An auto- matic metric for MT evaluation with improved cor- relation with human judgments. In Proc. of the ACL Workshop on Intrinsic and Extrinsic Evaluation Mea- sures for Machine Translation and/or Summarization, pages 65-72.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "The mathematics of machine translation: Parameter estimation",
"authors": [
{
"first": "P",
"middle": [],
"last": "Brown",
"suffix": ""
},
{
"first": "S",
"middle": [
"Della"
],
"last": "Pietra",
"suffix": ""
},
{
"first": "V",
"middle": [
"Della"
],
"last": "Pietra",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Mercer",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational Linguistics",
"volume": "19",
"issue": "",
"pages": "263--312",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P. Brown, S. Della Pietra, V. Della Pietra, and R. Mer- cer. 1993. The mathematics of machine transla- tion: Parameter estimation. Computational Linguis- tics, 19:263-312.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "An empirical study of smoothing techniques for language modeling",
"authors": [
{
"first": "S",
"middle": [
"F"
],
"last": "Chen",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Goodman",
"suffix": ""
}
],
"year": 1996,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "310--318",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. F. Chen and J. Goodman. 1996. An empirical study of smoothing techniques for language modeling. In Proc. of ACL, pages 310-318.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "HMM word and phrase alignment for statistical machine translation",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Deng",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Byrne",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. of HLT-EMNLP",
"volume": "",
"issue": "",
"pages": "169--176",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Deng and W. Byrne. 2005. HMM word and phrase alignment for statistical machine translation. In Proc. of HLT-EMNLP, pages 169-176.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "By parallelism, we have shown the feasibility and effectiveness (results not presented here) of the proposed method in handling millions of sentence pairs",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "By parallelism, we have shown the feasibility and effec- tiveness (results not presented here) of the proposed method in handling millions of sentence pairs.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Improving translation quality by discarding most of the phrasetable",
"authors": [
{
"first": "H",
"middle": [],
"last": "Johnson",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Martin",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Foster",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Kuhn",
"suffix": ""
}
],
"year": 2007,
"venue": "Proc. of EMNLP-CoNLL",
"volume": "",
"issue": "",
"pages": "967--975",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Johnson, J. Martin, G. Foster, and R. Kuhn. 2007. Im- proving translation quality by discarding most of the phrasetable. In Proc. of EMNLP-CoNLL, pages 967- 975.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Statistical phrasebased translation",
"authors": [
{
"first": "P",
"middle": [],
"last": "Koehn",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Och",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Marcu",
"suffix": ""
}
],
"year": 2003,
"venue": "Proc. of HLT-NAACL",
"volume": "",
"issue": "",
"pages": "48--54",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P. Koehn, F. Och, and D. Marcu. 2003. Statistical phrase- based translation. In Proc. of HLT-NAACL, pages 48- 54.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Automatic identification of noncompositional phrases",
"authors": [
{
"first": "D",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 1999,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "317--324",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Lin. 1999. Automatic identification of non- compositional phrases. In Proc. of ACL, pages 317- 324.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "A phrase-based, joint probability model for statistical machine translation",
"authors": [
{
"first": "D",
"middle": [],
"last": "Marcu",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Wong",
"suffix": ""
}
],
"year": 2002,
"venue": "Proc. of EMNLP",
"volume": "",
"issue": "",
"pages": "133--139",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Marcu and D. Wong. 2002. A phrase-based, joint probability model for statistical machine translation. In Proc. of EMNLP, pages 133-139.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "A simplex method for function minimization",
"authors": [
{
"first": "J",
"middle": [
"A"
],
"last": "Nelder",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Mead",
"suffix": ""
}
],
"year": 1965,
"venue": "Computer Journal",
"volume": "7",
"issue": "",
"pages": "308--313",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. A. Nelder and R. Mead. 1965. A simplex method for function minimization. Computer Journal, 7:308- 313.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "A systematic comparison of various statistical alignment models",
"authors": [
{
"first": "F",
"middle": [
"J"
],
"last": "Och",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Ney",
"suffix": ""
}
],
"year": 2003,
"venue": "Computational Linguistics",
"volume": "29",
"issue": "1",
"pages": "19--51",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. J. Och and H. Ney. 2003. A systematic comparison of various statistical alignment models. Computational Linguistics, 29(1):19-51.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "A smorgasbord of features for statistical machine translation",
"authors": [
{
"first": "F",
"middle": [
"J"
],
"last": "Och",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Gildea",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. of HLT-NAACL",
"volume": "",
"issue": "",
"pages": "161--168",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. J. Och, D. Gildea, and et al. 2004. A smorgasbord of features for statistical machine translation. In Proc. of HLT-NAACL, pages 161-168.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Statistical Machine Translation: From Single Word Models to Alignment Templates",
"authors": [
{
"first": "F",
"middle": [],
"last": "Och",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. Och. 2002. Statistical Machine Translation: From Single Word Models to Alignment Templates. Ph.D. thesis, RWTH Aachen, Germany.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Discrete-Time Signal Processing",
"authors": [
{
"first": "A",
"middle": [
"V"
],
"last": "Oppenheim",
"suffix": ""
},
{
"first": "R",
"middle": [
"W"
],
"last": "Schafer",
"suffix": ""
}
],
"year": 1989,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. V. Oppenheim and R. W. Schafer. 1989. Discrete- Time Signal Processing. Prentice-Hall.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Bleu: a method for automatic evaluation of machine translation",
"authors": [
{
"first": "K",
"middle": [],
"last": "Papineni",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Roukos",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Ward",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Zhu",
"suffix": ""
}
],
"year": 2002,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "311--318",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Papineni, S. Roukos, T. Ward, and W. Zhu. 2002. Bleu: a method for automatic evaluation of machine translation. In Proc. of ACL, pages 311-318.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Overview of the IWSLT 2006 evaluation campaign",
"authors": [
{
"first": "M",
"middle": [],
"last": "Paul",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. of IWSLT",
"volume": "",
"issue": "",
"pages": "1--15",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Paul. 2006. Overview of the IWSLT 2006 evaluation campaign. In Proc. of IWSLT, pages 1-15.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "A discriminative global training algorithm for statistical MT",
"authors": [
{
"first": "C",
"middle": [],
"last": "Tillmann",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "721--728",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. Tillmann and T. Zhang. 2006. A discriminative global training algorithm for statistical MT. In Proc. of ACL, pages 721-728.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Effective phrase translation extraction from alignment models",
"authors": [
{
"first": "A",
"middle": [],
"last": "Venugopal",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Vogel",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Waibel",
"suffix": ""
}
],
"year": 2003,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "319--326",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Venugopal, S. Vogel, and A. Waibel. 2003. Effective phrase translation extraction from alignment models. In Proc. of ACL, pages 319-326.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "HMM based word alignment in statistical translation",
"authors": [
{
"first": "S",
"middle": [],
"last": "Vogel",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Ney",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Tillmann",
"suffix": ""
}
],
"year": 1996,
"venue": "Proc. of the COLING",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Vogel, H. Ney, and C. Tillmann. 1996. HMM based word alignment in statistical translation. In Proc. of the COLING.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "An algorithm for simultaneously bracketing parallel texts by aligning words",
"authors": [
{
"first": "D",
"middle": [],
"last": "Wu",
"suffix": ""
}
],
"year": 1995,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "244--251",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Wu. 1995. An algorithm for simultaneously bracket- ing parallel texts by aligning words. In Proc. of ACL, pages 244-251.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "A syntax-based statistical translation model",
"authors": [
{
"first": "K",
"middle": [],
"last": "Yamada",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Knight",
"suffix": ""
}
],
"year": 2001,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "523--530",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Yamada and K. Knight. 2001. A syntax-based statis- tical translation model. In Proc. of ACL, pages 523- 530.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Improved word alignment using a symmetric lexicon model",
"authors": [
{
"first": "R",
"middle": [],
"last": "Zens",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Matusov",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Ney",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. of COLING",
"volume": "",
"issue": "",
"pages": "36--42",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Zens, E. Matusov, and H. Ney. 2004. Improved word alignment using a symmetric lexicon model. In Proc. of COLING, pages 36-42.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Phrase pair rescoring with term weighting for statistical machine translation",
"authors": [
{
"first": "B",
"middle": [],
"last": "Zhao",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Vogel",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Eck",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Waibel",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. of EMNLP",
"volume": "",
"issue": "",
"pages": "206--213",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "B. Zhao, S. Vogel, M. Eck, and A. Waibel. 2004. Phrase pair rescoring with term weighting for statistical ma- chine translation. In Proc. of EMNLP, pages 206-213.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "Thresholding effects on translation performance and phrase table size"
},
"TABREF1": {
"type_str": "table",
"num": null,
"content": "<table/>",
"text": "Phrase pair posterior distribution for the example",
"html": null
},
"TABREF3": {
"type_str": "table",
"num": null,
"content": "<table><tr><td>: Dev/test set statistics</td></tr><tr><td>tal 306K English words and 295K Chinese words.</td></tr><tr><td>In the data processing step, Chinese characters are</td></tr><tr><td>segmented into words. English text are normalized</td></tr><tr><td>and lowercased. All punctuation is removed.</td></tr><tr><td>There are five sets of evaluation sentences in</td></tr><tr><td>tourism domain for development and test. Their</td></tr><tr><td>statistics are shown in</td></tr></table>",
"text": "",
"html": null
},
"TABREF4": {
"type_str": "table",
"num": null,
"content": "<table><tr><td/><td>04test 05test 06dev 06test</td></tr><tr><td>HMM</td><td>0.367 0.407 0.473 0.200 0.190</td></tr><tr><td colspan=\"2\">Model-4 0.380 0.403 0.485 0.210 0.204</td></tr><tr><td>New</td><td>0.411 0.427 0.500 0.216 0.208</td></tr><tr><td/><td>METEOR Scores</td></tr><tr><td>Table</td><td>04dev 04test 05test 06dev 06test</td></tr><tr><td>HMM</td><td>0.532 0.586 0.675 0.482 0.471</td></tr><tr><td colspan=\"2\">Model-4 0.540 0.593 0.682 0.492 0.480</td></tr><tr><td>New</td><td>0.568 0.614 0.691 0.505 0.487</td></tr></table>",
"text": "",
"html": null
},
"TABREF5": {
"type_str": "table",
"num": null,
"content": "<table/>",
"text": "Translation Results",
"html": null
},
"TABREF7": {
"type_str": "table",
"num": null,
"content": "<table><tr><td colspan=\"2\">Model\u22124</td><td>New</td></tr><tr><td>PP1</td><td>PP2</td><td>PP3</td></tr><tr><td>75K</td><td>250K</td><td>132K</td></tr><tr><td>Features</td><td colspan=\"2\">04dev 04test 05test 06dev 06test</td></tr><tr><td>PP2</td><td colspan=\"2\">0.380 0.395 0.480 0.207 0.202</td></tr><tr><td>PP1+PP2</td><td colspan=\"2\">0.380 0.403 0.485 0.210 0.204</td></tr><tr><td>PP2+PP3</td><td colspan=\"2\">0.411 0.427 0.500 0.216 0.208</td></tr><tr><td colspan=\"3\">PP1+PP2+PP3 0.412 0.432 0.500 0.217 0.214</td></tr></table>",
"text": "Translation Results (BLEU) of discriminative phrase training approach using different features",
"html": null
},
"TABREF8": {
"type_str": "table",
"num": null,
"content": "<table/>",
"text": "Translation Results (BLEU) of Different Phrase Pair Combination",
"html": null
}
}
}
}