| { |
| "paper_id": "H05-1010", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T03:33:46.768170Z" |
| }, |
| "title": "A Discriminative Matching Approach to Word Alignment", |
| "authors": [ |
| { |
| "first": "Ben", |
| "middle": [], |
| "last": "Taskar", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of California", |
| "location": { |
| "postCode": "94720", |
| "settlement": "Berkeley Berkeley", |
| "region": "CA" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Simon", |
| "middle": [], |
| "last": "Lacoste-Julien", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of California", |
| "location": { |
| "postCode": "94720", |
| "settlement": "Berkeley Berkeley", |
| "region": "CA" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Dan", |
| "middle": [], |
| "last": "Klein", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of California", |
| "location": { |
| "postCode": "94720", |
| "settlement": "Berkeley Berkeley", |
| "region": "CA" |
| } |
| }, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "We present a discriminative, largemargin approach to feature-based matching for word alignment. In this framework, pairs of word tokens receive a matching score, which is based on features of that pair, including measures of association between the words, distortion between their positions, similarity of the orthographic form, and so on. Even with only 100 labeled training examples and simple features which incorporate counts from a large unlabeled corpus, we achieve AER performance close to IBM Model 4, in much less time. Including Model 4 predictions as features, we achieve a relative AER reduction of 22% in over intersected Model 4 alignments.", |
| "pdf_parse": { |
| "paper_id": "H05-1010", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "We present a discriminative, largemargin approach to feature-based matching for word alignment. In this framework, pairs of word tokens receive a matching score, which is based on features of that pair, including measures of association between the words, distortion between their positions, similarity of the orthographic form, and so on. Even with only 100 labeled training examples and simple features which incorporate counts from a large unlabeled corpus, we achieve AER performance close to IBM Model 4, in much less time. Including Model 4 predictions as features, we achieve a relative AER reduction of 22% in over intersected Model 4 alignments.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "The standard approach to word alignment from sentence-aligned bitexts has been to construct models which generate sentences of one language from the other, then fitting those generative models with EM (Brown et al., 1990; Och and Ney, 2003) . This approach has two primary advantages and two primary drawbacks. In its favor, generative models of alignment are wellsuited for use in a noisy-channel translation system. In addition, they can be trained in an unsupervised fashion, though in practice they do require labeled validation alignments for tuning model hyper-parameters, such as null counts or smoothing amounts, which are crucial to producing alignments of good quality. A primary drawback of the generative approach to alignment is that, as in all generative models, explicitly incorporating arbitrary features of the input is difficult. For example, when considering whether to align two words in the IBM models (Brown et al., 1990) , one cannot easily include information about such features as orthographic similarity (for detecting cognates), presence of the pair in various dictionaries, similarity of the frequency of the two words, choices made by other alignment systems on this sentence pair, and so on. While clever models can implicitly capture some of these information sources, it takes considerable work, and can make the resulting models quite complex. A second drawback of generative translation models is that, since they are learned with EM, they require extensive processing of large amounts of data to achieve good performance. While tools like GIZA++ (Och and Ney, 2003) do make it easier to build on the long history of the generative IBM approach, they also underscore how complex high-performance generative models can, and have, become.", |
| "cite_spans": [ |
| { |
| "start": 201, |
| "end": 221, |
| "text": "(Brown et al., 1990;", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 222, |
| "end": 240, |
| "text": "Och and Ney, 2003)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 923, |
| "end": 943, |
| "text": "(Brown et al., 1990)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 1582, |
| "end": 1601, |
| "text": "(Och and Ney, 2003)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In this paper, we present a discriminative approach to word alignment. Word alignment is cast as a maximum weighted matching problem (Cormen et al., 1990) in which each pair of words (e j , f k ) in a sentence pair (e, f ) is associated with a score s jk (e, f ) reflecting the desirability of the alignment of that pair. The alignment for the sentence pair is then the highest scoring matching under some constraints, for example the requirement that matchings be one-to-one.", |
| "cite_spans": [ |
| { |
| "start": 133, |
| "end": 154, |
| "text": "(Cormen et al., 1990)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "This view of alignment as graph matching is not, in itself, new: Melamed (2000) uses competitive linking to greedily construct matchings where the pair score is a measure of wordto-word association, and Matusov et al. (2004) find exact maximum matchings where the pair scores come from the alignment posteriors of generative models. Tiedemann (2003) proposes incorporating a variety of word association \"clues\" into a greedy linking algorithm.", |
| "cite_spans": [ |
| { |
| "start": 65, |
| "end": 79, |
| "text": "Melamed (2000)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 203, |
| "end": 224, |
| "text": "Matusov et al. (2004)", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 333, |
| "end": 349, |
| "text": "Tiedemann (2003)", |
| "ref_id": "BIBREF15" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "What we contribute here is a principled approach for tractable and efficient learning of the alignment score s jk (e, f ) as a function of arbitrary features of that token pair. This contribution opens up the possibility of doing the kind of feature engineering for alignment that has been so successful for other NLP tasks. We first present the algorithm for large margin estimation of the scoring function. We then show that our method can achieve AER rates comparable to unsymmetrized IBM Model 4, using extremely little labeled data (as few as 100 sentences) and a simple feature set. Remarkably, by including bi-directional IBM Model 4 predictions as features, we achieve an absolute AER of 5.4 on the English-French Hansards alignment task, a relative reduction of 22% in AER over intersected Model 4 alignments and, to our knowledge, the best AER result published on this task.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "We model the alignment prediction task as a maximum weight bipartite matching problem, where nodes correspond to the words in the two sentences. For simplicity, we assume here that each word aligns to one or zero words in the other sentence. The edge weight s jk represents the degree to which word j in one sentence can translate into the word k in the other sentence. Our goal is to find an alignment that maximizes the sum of edge scores. We represent a matching using a set of binary variables y jk that are set to 1 if word j is assigned to word k in the other sentence, and 0 otherwise. The score of an assignment is the sum of edge scores: s(y) = jk s jk y jk . The maximum weight bipartite matching problem, arg max y\u2208Y s(y), can be solved using well known combinatorial algorithms or the following linear program:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Algorithm", |
| "sec_num": "2" |
| }, |
| { |
| "text": "max z jk s jk z jk (1) s.t. j z jk \u2264 1, k z jk \u2264 1, 0 \u2264 z jk \u2264 1,", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Algorithm", |
| "sec_num": "2" |
| }, |
| { |
| "text": "where the continuous variables z jk correspond to the binary variables y jk . This LP is guaranteed to have integral (and hence optimal) solutions for any scoring function s(y) (Schrijver, 2003) . Note that although the above LP can be used to compute alignments, combinatorial algorithms are generally more efficient. However, we use the LP to develop the learning algorithm below. For a sentence pair x, we denote position pairs by x jk and their scores as s jk . We let s jk = w f (x jk ) for some user provided feature mapping f and abbreviate w f (x, y) = jk y jk w f (x jk ). We can include in the feature vector the identity of the two words, their relative positions in their respective sentences, their part-of-speech tags, their string similarity (for detecting cognates), and so on.", |
| "cite_spans": [ |
| { |
| "start": 177, |
| "end": 194, |
| "text": "(Schrijver, 2003)", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Algorithm", |
| "sec_num": "2" |
| }, |
| { |
| "text": "At this point, one can imagine estimating a linear matching model in multiple ways, including using conditional likelihood estimation, an averaged perceptron update (see which matchings are proposed and adjust the weights according to the difference between the guessed and target structures (Collins, 2002) ), or in large-margin fashion. Conditional likelihood estimation using a log-linear model P (y | x) = 1 Zw(x) exp{w f (x, y)} requires summing over all matchings to compute the normalization Z w (x), which is #P-complete (Valiant, 1979) . In our experiments, we therefore investigated the averaged perceptron in addition to the large-margin method outlined below.", |
| "cite_spans": [ |
| { |
| "start": 292, |
| "end": 307, |
| "text": "(Collins, 2002)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 529, |
| "end": 544, |
| "text": "(Valiant, 1979)", |
| "ref_id": "BIBREF16" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Algorithm", |
| "sec_num": "2" |
| }, |
| { |
| "text": "We follow the large-margin formulation of Taskar et al. (2005a) . Our input is a set of training instances", |
| "cite_spans": [ |
| { |
| "start": 42, |
| "end": 63, |
| "text": "Taskar et al. (2005a)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "{(x i , y i )} m i=1", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": ", where each instance consists of a sentence pair x i and a target alignment y i . We would like to find parameters w that predict correct alignments on the training data:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "y i = arg max y i \u2208Y i w f (x i ,\u0233 i ), \u2200i,", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "where Y i is the space of matchings appropriate for the sentence pair i.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "In standard classification problems, we typically measure the error of prediction, (y i ,\u0233 i ), using the simple 0-1 loss. In structured problems, where we are jointly predicting multiple variables, the loss is often more complex. While the F-measure is a natural loss function for this task, we instead chose a sensible surrogate that fits better in our framework: Hamming distance between y i and\u0233 i , which simply counts the number of edges predicted incorrectly.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "We use an SVM-like hinge upper bound on the loss (y", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "i ,\u0233 i ), given by max\u0233 i \u2208Y i [w f i (\u0233 i ) + i (\u0233 i ) \u2212 w f i (y i )], where i (\u0233 i ) = (y i ,\u0233 i ), and f i (\u0233 i ) = f (x i ,\u0233 i ).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Minimizing this upper bound encourages the true alignment y i to be optimal with respect to w for each instance i:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "min ||w||\u2264\u03b3 i max y i \u2208Y i [w f i (\u0233 i ) + i (\u0233 i )] \u2212 w f i (y i ),", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "where \u03b3 is a regularization parameter.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "In this form, the estimation problem is a mixture of continuous optimization over w and combinatorial optimization over y i . In order to transform it into a more standard optimization problem, we need a way to efficiently handle the loss-augmented inference, max\u0233", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "i \u2208Y i [w f i (\u0233 i ) + i (\u0233 i )]", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": ". This optimization problem has precisely the same form as the prediction problem whose parameters we are trying to learn -max\u0233 i \u2208Y i w f i (\u0233 i ) -but with an additional term corresponding to the loss function. Our assumption that the loss function decomposes over the edges is crucial to solving this problem. In particular, we use weighted Hamming distance, which counts the number of variables in which a candidate solution\u0233 i differs from the target output y i , with different cost for false positives (c + ) and false negatives (c -):", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "i (\u0233 i ) = jk c -y i,jk (1 \u2212\u0233 i,jk ) + c +\u0233 i,jk (1 \u2212 y i,jk ) = jk c -y i,jk + jk [c + \u2212 (c -+ c + )y i,jk ]\u0233 i,jk .", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "The loss-augmented matching problem can then be written as an LP similar to Equation 1 (without the constant term jk cy i,jk ):", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "max z jk z i,jk [w f (x i,jk ) + c + \u2212 (c -+ c + )y i,jk ] s.t. j z i,jk \u2264 1, k z i,jk \u2264 1, 0 \u2264 z i,jk \u2264 1.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Hence, without any approximations, we have a continuous optimization problem instead of a combinatorial one:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "max y i \u2208Y i w f i (\u0233 i )+ i (\u0233 i ) = d i +max z i \u2208Z i (w F i +c i ) z i ,", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "where", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "d i = jk c -y i,jk", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "is the constant term, F i is the appropriate matrix that has a column of features f (x i,jk ) for each edge jk, c i is the vector of the loss terms c + \u2212 (c -+ c + )y i,jk and finally", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Z i = {z i : j z i,jk \u2264 1, k z i,jk \u2264 1, 0 \u2264 z i,jk \u2264 1}.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Plugging this LP back into our estimation problem, we have", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "EQUATION", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [ |
| { |
| "start": 0, |
| "end": 8, |
| "text": "EQUATION", |
| "ref_id": "EQREF", |
| "raw_str": "min ||w||\u2264\u03b3 max z\u2208Z i w F i z i + c i z i \u2212 w F i y i ,", |
| "eq_num": "(2)" |
| } |
| ], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "where", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "z = {z 1 , . . . , z m }, Z = Z 1 \u00d7 . . . \u00d7 Z m .", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "Instead of the derivation in Taskar et al. (2005a) , which produces a joint convex optimization problem using Lagrangian duality, here we tackle the problem in its natural saddle-point form.", |
| "cite_spans": [ |
| { |
| "start": 29, |
| "end": 50, |
| "text": "Taskar et al. (2005a)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Large-margin estimation", |
| "sec_num": "2.1" |
| }, |
| { |
| "text": "For saddle-point problems, a well-known solution strategy is the extragradient method (Korpelevich, 1976), which is closely related to projected-gradient methods. The gradient of the objective in Equation 2 is given by: i F i (z i \u2212 y i ) (with respect to w) and F i w + c i (with respect to each z i ). We denote the Euclidean projection of a vector onto Z i as P Z i (v) = arg min u\u2208Z i ||v \u2212 u|| and projection onto the ball ||w|| \u2264 \u03b3 as P \u03b3 (w) = \u03b3w/ max(\u03b3, ||w||).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "An iteration of the extragradient method consists of two very simple steps, prediction:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "w t+1 = P \u03b3 (w t + \u03b2 k i F i (y i \u2212 z t i )); z t+1 i = P Z i (z t i + \u03b2 k (F i w t + c i ));", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "and correction:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "w t+1 = P \u03b3 (w t + \u03b2 k i F i (y i \u2212z t+1 i )); z t+1 i = P Z i (z t i + \u03b2 k (F iw t+1 + c i )),", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "where \u03b2 k are appropriately chosen step sizes. The method is guaranteed to converge linearly to a solution w * , z * (Korpelevich, 1976; He and Liao, 2002; Taskar et al., 2005b) . Please see www.cs.berkeley.edu/~taskar/extragradient.pdf for more details.", |
| "cite_spans": [ |
| { |
| "start": 117, |
| "end": 136, |
| "text": "(Korpelevich, 1976;", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 137, |
| "end": 155, |
| "text": "He and Liao, 2002;", |
| "ref_id": "BIBREF6" |
| }, |
| { |
| "start": 156, |
| "end": 177, |
| "text": "Taskar et al., 2005b)", |
| "ref_id": "BIBREF14" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "The key subroutine of the algorithm is Euclidean projection onto the feasible sets Z i . In case of word alignment, Z i is the convex hull of bipartite matchings and the problem reduces to the much-studied minimum cost quadratic flow problem (Bertsekas et al., 1997) . The projection problem", |
| "cite_spans": [ |
| { |
| "start": 242, |
| "end": 266, |
| "text": "(Bertsekas et al., 1997)", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "P Z i (z i ) is given by min z jk 1 2 (z i,jk \u2212 z i,jk ) 2 s.t. j z i,jk \u2264 1, k z i,jk \u2264 1, 0 \u2264 z i,jk \u2264 1.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "We can now use a standard reduction of bipartite matching to min cost flow by introducing a source node connected to all the words in one sentence and a sink node connected to all the words in the other sentence, using edges of capacity 1 and cost 0. The original edges jk have a quadratic cost 1 2 (z i,jk \u2212 z i,jk ) 2 and capacity 1. Now the minimum cost flow from the source to the sink computes projection of z i onto Z i We use standard, publicly-available code for solving this problem (Guerriero and Tseng, 2002) .", |
| "cite_spans": [ |
| { |
| "start": 492, |
| "end": 519, |
| "text": "(Guerriero and Tseng, 2002)", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The extragradient method", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "We applied this matching algorithm to wordlevel alignment using the English-French Hansards data from the 2003 NAACL shared task (Mihalcea and Pedersen, 2003) . This corpus consists of 1.1M automatically aligned sentences, and comes with a validation set of 39 sentence pairs and a test set of 447 sentences. The validation and test sentences have been hand-aligned (see Och and Ney (2003) ) and are marked with both sure and possible alignments. Using these alignments, alignment error rate (AER) is calculated as:", |
| "cite_spans": [ |
| { |
| "start": 129, |
| "end": 158, |
| "text": "(Mihalcea and Pedersen, 2003)", |
| "ref_id": "BIBREF10" |
| }, |
| { |
| "start": 371, |
| "end": 389, |
| "text": "Och and Ney (2003)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experiments", |
| "sec_num": "3" |
| }, |
| { |
| "text": "AER(A, S, P ) = 1 \u2212 |A \u2229 S| + |A \u2229 P | |A| + |S|", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experiments", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Here, A is a set of proposed index pairs, S is the sure gold pairs, and P is the possible gold pairs. For example, in Figure 1 , proposed alignments are shown against gold alignments, with open squares for sure alignments, rounded open squares for possible alignments, and filled black squares for proposed alignments.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 118, |
| "end": 126, |
| "text": "Figure 1", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Experiments", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Since our method is a supervised algorithm, we need labeled examples. For the training data, we split the original test set into 100 training examples and 347 test examples. In all our experiments, we used a structured loss function (y i ,\u0233 i ) that penalized false negatives 3 times more than false positives, where 3 was picked by testing several values on the validation set. Instead of selecting a regularization parameter \u03b3 and running to convergence, we used early stopping as a cheap regularization method, by setting \u03b3 to a very large value (10000) and running the algorithm for 500 iterations. We selected a stopping point using the validation set by simply picking the best iteration on the validation set in terms of AER (ignoring the initial ten iterations, which were very noisy in our experiments). All selected iterations turned out to be in the first 50 iterations, as the algorithm converged fairly rapidly.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experiments", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Very broadly speaking, the classic IBM models of word-level translation exploit four primary sources of knowledge and constraint: association of words (all IBM models), competition between alignments (all models), zero-or first-order preferences of alignment positions (2,4+), and fertility (3+). We model all of these in some way, except fertility. 1 First, and, most importantly, we want to include information about word association; translation pairs are likely to co-occur together in a bitext. This information can be captured, among many other ways, using a feature whose value is the Dice coefficient (Dice, 1945) :", |
| "cite_spans": [ |
| { |
| "start": 609, |
| "end": 621, |
| "text": "(Dice, 1945)", |
| "ref_id": "BIBREF4" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Dice(e, f ) = 2C EF (e, f ) C E (e)C F (f )", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Here, C E and C F are counts of word occurrences in each language, while C EF is the number of co-occurrences of the two words. With just this feature on a pair of word tokens (which depends only on their types), we can already make a stab at word alignment, aligning, say, each English word with the French word (or null) with the highest Dice value (see (Melamed, 2000) ), simply as a matching-free heuristic model. With Dice counts taken from the 1.1M sentences, this gives and AER of 38.7 with English as the target, and 36.0 with French as the target (in line with the numbers from Och and Ney (2003) ).", |
| "cite_spans": [ |
| { |
| "start": 356, |
| "end": 371, |
| "text": "(Melamed, 2000)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 587, |
| "end": 605, |
| "text": "Och and Ney (2003)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "As observed in Melamed (2000) , this use of Dice misses the crucial constraint of competition: a candidate source word with high association to a target word may be unavailable for alignment because some other target has an even better affinity for that source word. Melamed uses competitive linking to incorporate this constraint explicitly, while the IBM-style models get this effect via explaining-away effects in EM training. We can get something much like the combination of Dice and competitive linking by running with just one feature on each pair: the Dice value of that pair's words. 2 With just a Dice feature -meaning no learning is needed yet -we achieve an AER of 29.8, between the Dice with competitive linking result of 34.0 and Model 1 of 25.9 given in Och and Ney (2003) . An example of the alignment at this stage is shown in Figure 1(a) . Note that most errors lie off the diagonal, for example the often-correct to-\u00e0 match.", |
| "cite_spans": [ |
| { |
| "start": 15, |
| "end": 29, |
| "text": "Melamed (2000)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 769, |
| "end": 787, |
| "text": "Och and Ney (2003)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 844, |
| "end": 855, |
| "text": "Figure 1(a)", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "IBM Model 2, as usually implemented, adds the preference of alignments to lie near the diagonal. Model 2 is driven by the product of a word-to-word measure and a (usually) Gaussian distribution which penalizes distortion from the diagonal. We can capture the same effect using features which reference the relative positions j and k of a pair (e j , f k ). In addition to a Model 2-style quadratic feature referencing relative position, we threw in the following proximity features: absolute difference in relative position abs(j/|e|\u2212k/|f |), and the square and square root of this value. In addition, we used a conjunction feature of the dice coefficient times the proximity. Finally, we added a bias feature on each edge, which acts as a threshold that allows 2 This isn't quite competitive linking, because we use a non-greedy matching. sparser, higher precision alignments. With these features, we got an AER of 15.5 (compare to 19.5 for Model 2 in (Och and Ney, 2003) ). Note that we already have a capacity that Model 2 does not: we can learn a non-quadratic penalty with linear mixtures of our various components -this gives a similar effect to learning the variance of the Gaussian for Model 2, but is, at least in principle, more flexible. 3 These features fix the to-\u00e0 error in Figure 1(a) , giving the alignment in Figure 1(b) . On top of these features, we included other kinds of information, such as word-similarity features designed to capture cognate (and exact match) information. We added a feature for exact match of words, exact match ignoring accents, exact matching ignoring vowels, and fraction overlap of the longest common subsequence. Since these measures were only useful for long words, we also added a feature which indicates that both words in a pair are short. These orthographic and other features improved AER to 14.4. The running example now has the alignment in Figure 1(c) , where one improvement may be attributable to the short pair feature -it has stopped proposing the-de, partially because the short pair feature downweights the score of that pair. A clearer example of these features making a difference is shown in Figure 2 , where both the exact-match and character overlap fea-tures are used.", |
| "cite_spans": [ |
| { |
| "start": 953, |
| "end": 972, |
| "text": "(Och and Ney, 2003)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 1288, |
| "end": 1299, |
| "text": "Figure 1(a)", |
| "ref_id": "FIGREF1" |
| }, |
| { |
| "start": 1326, |
| "end": 1337, |
| "text": "Figure 1(b)", |
| "ref_id": "FIGREF1" |
| }, |
| { |
| "start": 1897, |
| "end": 1908, |
| "text": "Figure 1(c)", |
| "ref_id": "FIGREF1" |
| }, |
| { |
| "start": 2158, |
| "end": 2166, |
| "text": "Figure 2", |
| "ref_id": "FIGREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "One source of constraint which our model still does not explicitly capture is the first-order dependency between alignment positions, as in the HMM model (Vogel et al., 1996) and IBM models 4+. The the-le error in Figure 1(c) is symptomatic of this lack. In particular, it is a slightly better pair according to the Dice value than the correct the-les. However, the latter alignment has the advantage that major-grands follows it. To use this information source, we included a feature which gives the Dice value of the words following the pair. 4 We also added a wordfrequency feature whose value is the absolute difference in log rank of the words, discouraging very common words from translating to very rare ones. Finally, we threw in bilexical features of the pairs of top 5 non-punctuation words in each language. 5 This helped by removing specific common errors like the residual tendency for French de to mistakenly align to English the (the two most common words). The resulting model produces the alignment in Figure 1(d) . It has sorted out the the-le / the-les confusion, and is also able to guess to-de, which is not the most common translation for either word, but which is supported by the good Dice value on the following pair (make-faire).", |
| "cite_spans": [ |
| { |
| "start": 154, |
| "end": 174, |
| "text": "(Vogel et al., 1996)", |
| "ref_id": "BIBREF17" |
| }, |
| { |
| "start": 545, |
| "end": 546, |
| "text": "4", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 214, |
| "end": 225, |
| "text": "Figure 1(c)", |
| "ref_id": "FIGREF1" |
| }, |
| { |
| "start": 1019, |
| "end": 1030, |
| "text": "Figure 1(d)", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "With all these features, we got a final AER of 10.7, broadly similar to the 8.9 or 9.7 AERs of unsymmetrized IBM Model 4 trained on the same data that the Dice counts were taken from. 6 Of course, symmetrizing Model 4 by intersecting alignments from both directions does yield an improved AER of 6.9, so, while our model does do surprisingly well with cheaply obtained count-based features, Model 4 does still outperform it so far. However, our model can 4 It is important to note that while our matching algorithm has no first-order effects, the features can encode such effects in this way, or in better ways -e.g. using as features posteriors from the HMM model in the style of Matusov et al. (2004) .", |
| "cite_spans": [ |
| { |
| "start": 681, |
| "end": 702, |
| "text": "Matusov et al. (2004)", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "5 The number of such features which can be learned depends on the number of training examples, and since some of our experiments used only a few dozen training examples we did not make heavy use of this feature.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "6 Note that the common word pair features affected common errors and therefore had a particularly large impact on AER. also easily incorporate the predictions of Model 4 as additional features. We therefore added three new features for each edge: the prediction of Model 4 in the English-French direction, the prediction in the French-English direction, and the intersection of the two predictions. With these powerful new features, our AER dropped dramatically to 5.4, a 22% improvement over the intersected Model 4 performance.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Another way of doing the parameter estimation for this matching task would have been to use an averaged perceptron method, as in Collins (2002) . In this method, we merely run our matching algorithm and update weights based on the difference between the predicted and target matchings. However, the performance of the average perceptron learner on the same feature set is much lower, only 8.1, not even breaking the AER of its best single feature (the intersected Model 4 predictions).", |
| "cite_spans": [ |
| { |
| "start": 129, |
| "end": 143, |
| "text": "Collins (2002)", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Features and Results", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "We explored the scaling of our method by learning on a larger training set, which we created by using GIZA++ intersected bi-directional Model 4 alignments for the unlabeled sentence pairs. We then took the first 5K sentence pairs from these 1.1M Model 4 alignments. This gave us more training data, albeit with noisier labels. On a 3.4GHz Intel Xeon CPU, GIZA++ took 18 hours to align the 1.1M words, while our method learned its weights in between 6 minutes (100 training sentences) and three hours (5K sentences).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Scaling Experiments", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "We have presented a novel discriminative, largemargin method for learning word-alignment models on the basis of arbitrary features of word pairs. We have shown that our method is suitable for the common situation where a moderate number of good, fairly general features must be balanced on the basis of a small amount of labeled data. It is also likely that the method will be useful in conjunction with a large labeled alignment corpus (should such a set be created). We presented features capturing a few separate sources of information, producing alignments on the order of those given by unsymmetrized IBM Model 4 (using labeled training data of about the size others have used to tune generative models). In addition, when given bi-directional Model 4 predictions as features, our method provides a 22% AER reduction over intersected Model 4 predictions alone. The resulting 5.4 AER on the English-French Hansarks task is, to our knowledge, the best published AER figure for this training scenario (though since we use a subset of the test set, evaluations are not problem-free). Finally, our method scales to large numbers of training sentences and trains in minutes rather than hours or days for the higher-numbered IBM models, a particular advantage when not using features derived from those slower models.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusions", |
| "sec_num": "4" |
| }, |
| { |
| "text": "In principle, we can model also model fertility, by allowing 0-k matches for each word rather than 0-1, and having bias features on each word. However, we did not explore this possibility.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "The learned response was in fact close to a Gaussian, but harsher near zero displacement.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "An e-relaxation method for separable convex cost network flow problems", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [ |
| "P" |
| ], |
| "last": "Bertsekas", |
| "suffix": "" |
| }, |
| { |
| "first": "L", |
| "middle": [ |
| "C" |
| ], |
| "last": "Polymenakos", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Tseng", |
| "suffix": "" |
| } |
| ], |
| "year": 1997, |
| "venue": "SIAM J. Optim", |
| "volume": "7", |
| "issue": "3", |
| "pages": "853--870", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. P. Bertsekas, L. C. Polymenakos, and P. Tseng. 1997. An e-relaxation method for separable convex cost net- work flow problems. SIAM J. Optim., 7(3):853-870.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "A statistical approach to machine translation", |
| "authors": [ |
| { |
| "first": "P", |
| "middle": [ |
| "F" |
| ], |
| "last": "Brown", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Cocke", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [ |
| "A" |
| ], |
| "last": "Della Pietra", |
| "suffix": "" |
| }, |
| { |
| "first": "V", |
| "middle": [ |
| "J" |
| ], |
| "last": "Della Pietra", |
| "suffix": "" |
| }, |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Jelinek", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [ |
| "D" |
| ], |
| "last": "Lafferty", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [ |
| "L" |
| ], |
| "last": "Mercer", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [ |
| "S" |
| ], |
| "last": "Roossin", |
| "suffix": "" |
| } |
| ], |
| "year": 1990, |
| "venue": "Computational Linguistics", |
| "volume": "16", |
| "issue": "2", |
| "pages": "79--85", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "P. F. Brown, J. Cocke, S. A. Della Pietra, V. J. Della Pietra, F. Jelinek, J. D. Lafferty, R. L. Mercer, and P. S. Roossin. 1990. A statistical approach to machine translation. Computational Linguistics, 16(2):79-85.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Discriminative training methods for hidden markov models: Theory and experiments with perceptron algorithms", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Collins", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proc. EMNLP", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "M. Collins. 2002. Discriminative training methods for hidden markov models: Theory and experiments with perceptron algorithms. In Proc. EMNLP.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Introduction to Algorithms", |
| "authors": [ |
| { |
| "first": "T", |
| "middle": [ |
| "H" |
| ], |
| "last": "Cormen", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [ |
| "E" |
| ], |
| "last": "Leiserson", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [ |
| "L" |
| ], |
| "last": "Rivest", |
| "suffix": "" |
| } |
| ], |
| "year": 1990, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "T. H. Cormen, C. E. Leiserson, and R. L. Rivest. 1990. Introduction to Algorithms. MIT Press, Cambridge, MA.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Measures of the amount of ecologic association between species", |
| "authors": [ |
| { |
| "first": "L", |
| "middle": [ |
| "R" |
| ], |
| "last": "Dice", |
| "suffix": "" |
| } |
| ], |
| "year": 1945, |
| "venue": "Journal of Ecology", |
| "volume": "26", |
| "issue": "", |
| "pages": "297--302", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "L. R. Dice. 1945. Measures of the amount of ecologic as- sociation between species. Journal of Ecology, 26:297- 302.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Implementation and test of auction methods for solving generalized network flow problems with separable convex cost", |
| "authors": [ |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Guerriero", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Tseng", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Journal of Optimization Theory and Applications", |
| "volume": "115", |
| "issue": "1", |
| "pages": "113--144", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "F. Guerriero and P. Tseng. 2002. Implementation and test of auction methods for solving generalized network flow problems with separable convex cost. Journal of Optimization Theory and Applications, 115(1):113-144, October.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Improvements of some projection methods for monotone nonlinear variational inequalities", |
| "authors": [ |
| { |
| "first": "B", |
| "middle": [ |
| "S" |
| ], |
| "last": "He", |
| "suffix": "" |
| }, |
| { |
| "first": "L", |
| "middle": [ |
| "Z" |
| ], |
| "last": "Liao", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "JOTA", |
| "volume": "112", |
| "issue": "111", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "B.S. He and L. Z. Liao. 2002. Improvements of some projection methods for monotone nonlinear variational inequalities. JOTA, 112:111:128.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "The extragradient method for finding saddle points and other problems", |
| "authors": [ |
| { |
| "first": "G", |
| "middle": [ |
| "M" |
| ], |
| "last": "Korpelevich", |
| "suffix": "" |
| } |
| ], |
| "year": 1976, |
| "venue": "Ekonomika i Matematicheskie Metody", |
| "volume": "12", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "G. M. Korpelevich. 1976. The extragradient method for finding saddle points and other problems. Ekonomika i Matematicheskie Metody, 12:747:756.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Symmetric word alignments for statistical machine translation", |
| "authors": [ |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Matusov", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Zens", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Ney", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "Proc. of COLING", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "E. Matusov, R. Zens, and H. Ney. 2004. Symmetric word alignments for statistical machine translation. In Proc. of COLING 2004.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Models of translational equivalence among words", |
| "authors": [ |
| { |
| "first": "I", |
| "middle": [ |
| "D" |
| ], |
| "last": "Melamed", |
| "suffix": "" |
| } |
| ], |
| "year": 2000, |
| "venue": "Computational Linguistics", |
| "volume": "26", |
| "issue": "2", |
| "pages": "221--249", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "I. D. Melamed. 2000. Models of translational equivalence among words. Computational Linguistics, 26(2):221- 249.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "An evaluation exercise for word alignment", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Mihalcea", |
| "suffix": "" |
| }, |
| { |
| "first": "T", |
| "middle": [], |
| "last": "Pedersen", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Proceedings of the HLT-NAACL 2003 Workshop, Building and Using parallel Texts: Data Driven Machine Translation and Beyond", |
| "volume": "", |
| "issue": "", |
| "pages": "1--6", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. Mihalcea and T. Pedersen. 2003. An evaluation ex- ercise for word alignment. In Proceedings of the HLT- NAACL 2003 Workshop, Building and Using parallel Texts: Data Driven Machine Translation and Beyond, pages 1-6, Edmonton, Alberta, Canada.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "A systematic comparison of various statistical alignment models", |
| "authors": [ |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Och", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Ney", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Computational Linguistics", |
| "volume": "29", |
| "issue": "1", |
| "pages": "19--52", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "F. Och and H. Ney. 2003. A systematic comparison of various statistical alignment models. Computational Linguistics, 29(1):19-52.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Combinatorial Optimization: Polyhedra and Efficiency", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Schrijver", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Schrijver. 2003. Combinatorial Optimization: Poly- hedra and Efficiency. Springer.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Learning structured prediction models: a large margin approach", |
| "authors": [ |
| { |
| "first": "B", |
| "middle": [], |
| "last": "Taskar", |
| "suffix": "" |
| }, |
| { |
| "first": "V", |
| "middle": [], |
| "last": "Chatalbashev", |
| "suffix": "" |
| }, |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Koller", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Guestrin", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of the International Conference on Machine Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "B. Taskar, V. Chatalbashev, D. Koller, and C. Guestrin. 2005a. Learning structured prediction models: a large margin approach. In Proceedings of the International Conference on Machine Learning.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Structured prediction via the extragradient method", |
| "authors": [ |
| { |
| "first": "B", |
| "middle": [], |
| "last": "Taskar", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Lacoste-Julien", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Jordan", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of Neural Information Processing Systems", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "B. Taskar, S. Lacoste-Julien, and M. Jordan. 2005b. Structured prediction via the extragradient method. In Proceedings of Neural Information Processing Sys- tems.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "Combining clues for word alignment", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Tiedemann", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "Proceedings of EACL", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Tiedemann. 2003. Combining clues for word align- ment. In Proceedings of EACL.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "The complexity of computing the permanent", |
| "authors": [ |
| { |
| "first": "L", |
| "middle": [ |
| "G" |
| ], |
| "last": "Valiant", |
| "suffix": "" |
| } |
| ], |
| "year": 1979, |
| "venue": "Theoretical Computer Science", |
| "volume": "8", |
| "issue": "", |
| "pages": "189--201", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "L. G. Valiant. 1979. The complexity of computing the permanent. Theoretical Computer Science, 8:189-201.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "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": "COLING 16", |
| "volume": "", |
| "issue": "", |
| "pages": "836--841", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Vogel, H. Ney, and C. Tillmann. 1996. HMM-based word alignment in statistical translation. In COLING 16, pages 836-841.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF1": { |
| "type_str": "figure", |
| "num": null, |
| "uris": null, |
| "text": "Example alignments for each successive feature set." |
| }, |
| "FIGREF2": { |
| "type_str": "figure", |
| "num": null, |
| "uris": null, |
| "text": "Example alignments showing the effects of orthographic cognate features. (a) Dice and Distance, (b) With Orthographic Features." |
| }, |
| "FIGREF3": { |
| "type_str": "figure", |
| "num": null, |
| "uris": null, |
| "text": "AER on the Hansards task." |
| } |
| } |
| } |
| } |