ACL-OCL / Base_JSON /prefixQ /json /Q17 /Q17-1005.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "Q17-1005",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T15:12:00.770367Z"
},
"title": "A Polynomial-Time Dynamic Programming Algorithm for Phrase-Based Decoding with a Fixed Distortion Limit",
"authors": [
{
"first": "Yin-Wen",
"middle": [],
"last": "Chang",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": "",
"affiliation": {},
"email": "mjcollins@google.com"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Decoding of phrase-based translation models in the general case is known to be NPcomplete, by a reduction from the traveling salesman problem (Knight, 1999). In practice, phrase-based systems often impose a hard distortion limit that limits the movement of phrases during translation. However, the impact on complexity after imposing such a constraint is not well studied. In this paper, we describe a dynamic programming algorithm for phrase-based decoding with a fixed distortion limit. The runtime of the algorithm is O(nd!lh d+1) where n is the sentence length, d is the distortion limit, l is a bound on the number of phrases starting at any position in the sentence, and h is related to the maximum number of target language translations for any source word. The algorithm makes use of a novel representation that gives a new perspective on decoding of phrase-based models.",
"pdf_parse": {
"paper_id": "Q17-1005",
"_pdf_hash": "",
"abstract": [
{
"text": "Decoding of phrase-based translation models in the general case is known to be NPcomplete, by a reduction from the traveling salesman problem (Knight, 1999). In practice, phrase-based systems often impose a hard distortion limit that limits the movement of phrases during translation. However, the impact on complexity after imposing such a constraint is not well studied. In this paper, we describe a dynamic programming algorithm for phrase-based decoding with a fixed distortion limit. The runtime of the algorithm is O(nd!lh d+1) where n is the sentence length, d is the distortion limit, l is a bound on the number of phrases starting at any position in the sentence, and h is related to the maximum number of target language translations for any source word. The algorithm makes use of a novel representation that gives a new perspective on decoding of phrase-based models.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Phrase-based translation models (Koehn et al., 2003; Och and Ney, 2004) are widely used in statistical machine translation. The decoding problem for phrase-based translation models is known to be difficult: the results from Knight (1999) imply that in the general case decoding of phrase-based translation models is NP-complete.",
"cite_spans": [
{
"start": 32,
"end": 52,
"text": "(Koehn et al., 2003;",
"ref_id": "BIBREF9"
},
{
"start": 53,
"end": 71,
"text": "Och and Ney, 2004)",
"ref_id": "BIBREF16"
},
{
"start": 224,
"end": 237,
"text": "Knight (1999)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The complexity of phrase-based decoding comes from reordering of phrases. In practice, however, various constraints on reordering are often imposed in phrase-based translation systems. A common constraint is a \"distortion limit\", which places a hard constraint on how far phrases can move. The complexity of decoding with such a distortion limit is an open question: the NP-hardness result from Knight * On leave from Columbia University. (1999) applies to a phrase-based model with no distortion limit.",
"cite_spans": [
{
"start": 439,
"end": 445,
"text": "(1999)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This paper describes an algorithm for phrasebased decoding with a fixed distortion limit whose runtime is linear in the length of the sentence, and for a fixed distortion limit is polynomial in other factors. More specifically, for a hard distortion limit d, and sentence length n, the runtime is O(nd!lh d+1 ), where l is a bound on the number of phrases starting at any point in the sentence, and h is related to the maximum number of translations for any word in the source language sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The algorithm builds on the insight that decoding with a hard distortion limit is related to the bandwidth-limited traveling salesman problem (BTSP) (Lawler et al., 1985) . The algorithm is easily amenable to beam search. It is quite different from previous methods for decoding of phrase-based models, potentially opening up a very different way of thinking about decoding algorithms for phrasebased models, or more generally for models in statistical NLP that involve reordering. Knight (1999) proves that decoding of word-to-word translation models is NP-complete, assuming that there is no hard limit on distortion, through a reduction from the traveling salesman problem. Phrasebased models are more general than word-to-word models, hence this result implies that phrase-based decoding with unlimited distortion is NP-complete.",
"cite_spans": [
{
"start": 149,
"end": 170,
"text": "(Lawler et al., 1985)",
"ref_id": "BIBREF13"
},
{
"start": 482,
"end": 495,
"text": "Knight (1999)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Phrase-based systems can make use of both reordering constraints, which give a hard \"distortion limit\" on how far phrases can move, and reordering models, which give scores for reordering steps, often penalizing phrases that move long distances. Moses (Koehn et al., 2007b ) makes use of a distortion limit, and a decoding algorithm that makes use of bit-strings representing which words have been translated. We show in Section 5.2 of this paper that this can lead to at least 2 n/4 bit-strings for an input sentence of length n, hence an exhaustive version of this algorithm has worst-case runtime that is exponential in the sentence length. The current paper is concerned with decoding phrase-based models with a hard distortion limit.",
"cite_spans": [
{
"start": 252,
"end": 272,
"text": "(Koehn et al., 2007b",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Various other reordering constraints have been considered. Zens and Ney (2003) and Zens et al. (2004) consider two types of hard constraints: the IBM constraints, and the ITG (inversion transduction grammar) constraints from the model of Wu (1997) . They give polynomial time dynamic programming algorithms for both of these cases. It is important to note that the IBM and ITG constraints are different from the distortion limit constraint considered in the current paper. Decoding algorithms with ITG constraints are further studied by Feng et al. (2010) and Cherry et al. (2012) . Kumar and Byrne (2005) describe a class of reordering constraints and models that can be encoded in finite state transducers. Lopez (2009) shows that several translation models can be represented as weighted deduction problems and analyzes their complexities. 1 Koehn et al. (2003) describe a beamsearch algorithm for phrase-based decoding that is in widespread use; see Section 5 for discussion.",
"cite_spans": [
{
"start": 59,
"end": 78,
"text": "Zens and Ney (2003)",
"ref_id": "BIBREF21"
},
{
"start": 83,
"end": 101,
"text": "Zens et al. (2004)",
"ref_id": "BIBREF22"
},
{
"start": 238,
"end": 247,
"text": "Wu (1997)",
"ref_id": "BIBREF19"
},
{
"start": 537,
"end": 555,
"text": "Feng et al. (2010)",
"ref_id": "BIBREF5"
},
{
"start": 560,
"end": 580,
"text": "Cherry et al. (2012)",
"ref_id": "BIBREF2"
},
{
"start": 583,
"end": 605,
"text": "Kumar and Byrne (2005)",
"ref_id": "BIBREF12"
},
{
"start": 709,
"end": 721,
"text": "Lopez (2009)",
"ref_id": "BIBREF14"
},
{
"start": 843,
"end": 844,
"text": "1",
"ref_id": null
},
{
"start": 845,
"end": 864,
"text": "Koehn et al. (2003)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "A number of reordering models have been proposed, see for example Tillmann (2004) , Koehn et al. (2007a) and Galley and Manning (2008) . DeNero and Klein (2008) consider the phrase alignment problem, that is, the problem of finding an optimal phrase-based alignment for a sourcelanguage/target-language sentence pair. They show that in the general case, the phrase alignment problem is NP-hard. It may be possible to extend the techniques in the current paper to the phrasealignment problem with a hard distortion limit.",
"cite_spans": [
{
"start": 66,
"end": 81,
"text": "Tillmann (2004)",
"ref_id": "BIBREF18"
},
{
"start": 84,
"end": 104,
"text": "Koehn et al. (2007a)",
"ref_id": "BIBREF10"
},
{
"start": 109,
"end": 134,
"text": "Galley and Manning (2008)",
"ref_id": "BIBREF6"
},
{
"start": 137,
"end": 160,
"text": "DeNero and Klein (2008)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Various methods for exact decoding of phrasebased translation models have been proposed. Zaslavskiy et al. (2009) describe the use of travel-1 An earlier version of this paper states the complexity of decoding with a distortion limit as O(I 3 2 d ) where d is the distortion limit and I is the number of words in the sentence; however (personal communication from Adam Lopez) this runtime is an error, and should be O(2 I ) i.e., exponential time in the length of the sentence. A corrected version of the paper corrects this.",
"cite_spans": [
{
"start": 89,
"end": 113,
"text": "Zaslavskiy et al. (2009)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "ing salesman algorithms for phrase-based decoding. Chang and Collins (2011) describe an exact method based on Lagrangian relaxation. Aziz et al. (2014) describe a coarse-to-fine approach. These algorithms all have exponential time runtime (in the length of the sentence) in the worst case.",
"cite_spans": [
{
"start": 51,
"end": 75,
"text": "Chang and Collins (2011)",
"ref_id": "BIBREF1"
},
{
"start": 133,
"end": 151,
"text": "Aziz et al. (2014)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Galley and Manning (2010) describe a decoding algorithm for phrase-based systems where phrases can have discontinuities in both the source and target languages. The algorithm has some similarities to the algorithm we propose: in particular, it makes use of a state representation that contains a list of disconnected phrases. However, the algorithms differ in several important ways: Galley and Manning (2010) make use of bit string coverage vectors, giving an exponential number of possible states; in contrast to our approach, the translations are not formed in strictly left-to-right ordering on the source side.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "This section first defines the bandwidth-limited traveling salesman problem, then describes a polynomial time dynamic programming algorithm for the traveling salesman path problem on bandwidth limited graphs. This algorithm is the algorithm proposed by Lawler et al. (1985) 2 with small modifications to make the goal a path instead of a cycle, and to consider directed rather than undirected graphs.",
"cite_spans": [
{
"start": 253,
"end": 273,
"text": "Lawler et al. (1985)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background: The Traveling Salesman Problem on Bandwidth-Limited Graphs",
"sec_num": "3"
},
{
"text": "The input to the problem is a directed graph G = (V, E), where V is a set of vertices and E is a set of directed edges. We assume that V = {1, 2, . . . , n}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bandwidth-Limited TSPPs",
"sec_num": "3.1"
},
{
"text": "A directed edge is a pair (i, j) where i, j \u2208 V , and i = j. Each edge (i, j) \u2208 E has an associated weight w i,j . Given an integer k \u2265 1, a graph is bandwidth-limited with bandwidth k if",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bandwidth-Limited TSPPs",
"sec_num": "3.1"
},
{
"text": "\u2200(i, j) \u2208 E, |i \u2212 j| \u2264 k",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bandwidth-Limited TSPPs",
"sec_num": "3.1"
},
{
"text": "The traveling salesman path problem (TSPP) on the graph G is defined as follows. We will assume that vertex 1 is the \"source\" vertex and vertex n is the \"sink\" vertex. The TSPP is to find the minimum cost directed path from vertex 1 to vertex n, which passes through each vertex exactly once.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bandwidth-Limited TSPPs",
"sec_num": "3.1"
},
{
"text": "The key idea of the dynamic-programming algorithm for TSPPs is the definition of equivalence classes corresponding to dynamic programming states, and an argument that the number of equivalence classes depends only on the bandwidth k. The input to our algorithm will be a directed graph G = (V, E), with weights w i,j , and with bandwidth k. We define a 1-n path to be any path from the source vertex 1 to the sink vertex n that visits each vertex in the graph exactly once. A 1-n path is a subgraph",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "(V , E ) of G, where V = V and E \u2286 E.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "We will make use of the following definition:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "Definition 1. For any 1-n path H, define H j to be the subgraph that H induces on vertices 1, 2, . . . j, where 1 \u2264 j \u2264 n.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "That is, H j contains the vertices 1, 2, . . . j and the edges in H between these vertices.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "For a given value for j, we divide the vertices V into three sets A j , B j and C j :",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "\u2022 A j = {1, 2, . . . , (j \u2212 k)} (A j is the empty set if j \u2264 k). \u2022 B j = {1 . . . j} \\ A j . 3 \u2022 C j = {j + 1, j + 2, .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": ". . , n} (C j is the empty set if j = n).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "Note that the vertices in subgraph H j are the union of the sets A j and B j . A j is the empty set if j \u2264 k, but B j is always non-empty. The following Lemma then applies:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "Lemma 1. For any 1-n path H in a graph with bandwidth k, for any 1 \u2264 j \u2264 n, the subgraph H j has the following properties:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "1. If vertex 1 is in A j , then vertex 1 has degree one.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An Algorithm for Bandwidth-Limited TSPPs",
"sec_num": "3.2"
},
{
"text": "v \u2208 A j with v \u2265 2, vertex v has degree two. 3. H j contains no cycles.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "Proof. The first and second properties are true because of the bandwidth limit. Under the constraint of bandwidth k, any edge (u, v) in H such that",
"cite_spans": [
{
"start": 126,
"end": 132,
"text": "(u, v)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "u \u2208 A j , must have v \u2208 A j \u222a B j = H j . This fol- lows because if v \u2208 C j = {j + 1, j + 2, . . . n} and u \u2208 A j = {1, 2, . . . j \u2212 k}, then |u \u2212 v| > k. Similarly any edge (u, v) \u2208 H such that v \u2208 A j must have u \u2208 A j \u222a B j = H j .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "It follows that for any vertex u \u2208 A j , with u > 1, there are edges (u, v) \u2208 H j and (v , u) \u2208 H j , hence vertex u has degree 2. For vertex u \u2208 A j with u = 1, there is an edge (u, v) \u2208 H j , hence vertex u has degree 1. The third property (no cycles) is true because H j is a subgraph of H, which has no cycles.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "It follows that each connected component of H j is a directed path, that the start points of these paths are in the set {1} \u222a B j , and that the end points of these paths are in the set B j .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "We now define an equivalence relation on subgraphs. Two subgraphs H j and H j are in the same equivalence class if the following conditions hold (taken from Lawler et al. (1985) ):",
"cite_spans": [
{
"start": 157,
"end": 177,
"text": "Lawler et al. (1985)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "1. For any vertex v \u2208 B j , the degree of v in H j",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "and H j is the same. 2. For each path (connected component) in H j there is a path in H j with the same start and end points, and conversely.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "The significance of this definition is as follows. Assume that H * is an optimal 1-n path in the graph, and that it induces the subgraph H j on vertices 1 . . . j. Assume that H j is another subgraph over vertices 1 . . . j, which is in the same equivalence class as H j . For any subgraph H j , define c(H j ) to be the sum of edge weights in H j :",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "c(H j ) = (u,v)\u2208H j w u,v",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "Then it must be the case that c(H j ) \u2265 c(H j ). Otherwise, we could simply replace H j by H j in H * , thereby deriving a new 1-n path with a lower cost, implying that H * is not optimal.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "This observation underlies the dynamic programming approach. Define \u03c3 to be a function that maps a subgraph H j to its equivalence class \u03c3(H j ). The equivalence class \u03c3(H j ) is a data structure that stores the degrees of the vertices in B j , together with the start and end points of each connected component in H j .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "Next, define \u2206 to be a set of 0, 1 or 2 edges between vertex (j + 1) and the vertices in B j . For any subgraph H j+1 of a 1-n path, there is some \u2206, simply found by recording the edges incident to vertex (j + 1). For any H j , define \u03c4 (\u03c3(H j ), \u2206) to be the equivalence class resulting from adding the edges in \u2206 to the data structure \u03c3(H j ). If adding the edges in \u2206 to \u03c3(H j ) results in an ill-formed subgraph-for example, a subgraph that has one or more cyclesthen \u03c4 (\u03c3(H j ), \u2206) is undefined. The following recurrence then defines the dynamic program (see Eq. 20 of Lawler et al. (1985) ):",
"cite_spans": [
{
"start": 574,
"end": 594,
"text": "Lawler et al. (1985)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "\u03b1(j + 1, S) = min \u2206,S :\u03c4 (S ,\u2206)=S \u03b1(j, S ) + c(\u2206)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "Here S is an equivalence class over vertices {1 . . . (j +1)}, and \u03b1(S, j +1) is the minimum score for any subgraph in equivalence class S. The min is taken over all equivalence classes S over vertices {1 . . . j}, together with all possible values for \u2206.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "For any vertex",
"sec_num": "2."
},
{
"text": "Phrase-Based Decoding",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dynamic Programming Algorithm for",
"sec_num": "4"
},
{
"text": "We now describe the dynamic programming algorithm for phrase-based decoding with a fixed distortion limit. We first give basic definitions for phrasebased decoding, and then describe the algorithm.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dynamic Programming Algorithm for",
"sec_num": "4"
},
{
"text": "Consider decoding an input sentence consisting of words x 1 . . . x n for some integer n. We assume that x 1 = <s> and x n = </s> where <s> and </s> are the sentence start and end symbols respectively. A phrase-based lexicon specifies a set of possible translations in the form of phrases p = (s, t, e), where s and t are integers such that 1 \u2264 s \u2264 t \u2264 n, and e is a sequence of m \u2265 1 target-language words e 1 . . . e m . This signifies that words x s . . . x t in the source language have a translation as e 1 . . . e m in the target language. We use s(p), t(p) and e(p) to refer to the three components of a phrase p = (s, t, e), and e 1 (p) . . . e m (p) to refer to the words in the targetlanguage string e(p). We assume that (1, 1, <s>) and (n, n, </s>) are the only translation entries with s(p) \u2264 1 and t(p) \u2265 n respectively. A derivation is then defined as follows: Definition 2 (Derivations). A derivation is a sequence of phrases p 1 . . . p L such that",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "\u2022 p 1 = (1, 1, <s>) and p L = (n, n, </s>).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "\u2022 Each source word is translated exactly once.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "\u2022 The distortion limit is satisfied for each pair of phrases p i\u22121 , p i , that is:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "|t(p i\u22121 ) + 1 \u2212 s(p i )| \u2264 d \u2200 i = 2 . . . L.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "where d is an integer specifying the distortion limit in the model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "Given a derivation p 1 . . . p L , a target-language translation can be obtained by concatenating the target-language strings e(p 1 ) . . . e(p L ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "The scoring function is defined as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "f (p 1 . . . p L ) = \u03bb(e(p 1 ) . . . e(p L )) + L i=1 \u03ba(p i ) + L i=2 \u03b7 \u00d7 |t(p i\u22121 ) + 1 \u2212 s(p i )| (1)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "For each phrase p, \u03ba(p) is the translation score for the phrase. The parameter \u03b7 is the distortion penalty, which is typically a negative constant. \u03bb(e) is a language model score for the string e. We will assume a bigram language model:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "\u03bb(e 1 . . . e m ) = m i=2 \u03bb(e i |e i\u22121 ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "The generalization of our algorithm to higher-order n-gram language models is straightforward. The goal of phrase-based decoding is to find y * = arg max y\u2208Y f (y) where Y is the set of valid derivations for the input sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "Remark (gap constraint): Note that a common restriction used in phrase-based decoding (Koehn et al., 2003; Chang and Collins, 2011) , is to impose an additional \"gap constraint\" while decoding. See Chang and Collins (2011) for a description. In this case it is impossible to have a dynamicprogramming state where word x i has not been translated, and where word x i+k has been translated, for k > d. This limits distortions further, and it can be shown in this case that the number of possible bitstrings is O(2 d ) where d is the distortion limit. Without this constraint the algorithm of Koehn et al. (2003) actually fails to produce translations for many input sentences (Chang and Collins, 2011) .",
"cite_spans": [
{
"start": 86,
"end": 106,
"text": "(Koehn et al., 2003;",
"ref_id": "BIBREF9"
},
{
"start": 107,
"end": 131,
"text": "Chang and Collins, 2011)",
"ref_id": "BIBREF1"
},
{
"start": 590,
"end": 609,
"text": "Koehn et al. (2003)",
"ref_id": "BIBREF9"
},
{
"start": 674,
"end": 699,
"text": "(Chang and Collins, 2011)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "H 1 = \u03c0 1 = 1, 1, <s> H 3 = \u03c0 1 = 1, 1, <s> 2, 3, we must H 4 = \u03c0 1 =",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "1, 1, <s> 2, 3, we must 4, 4, also H 6 = \u03c0 1 , \u03c0 2 = 1, 1, <s> 2, 3, we must 4, 4, also , 5, 6, these criticisms H 7 = \u03c0 1 , \u03c0 2 = 1, 1, <s> 2, 3, we must 4, 4, also , 5, 6, these criticisms 7, 7, seriously H 8 = \u03c0 1 = 1, 1, <s> 2, 3, we must 4, 4, also 8, 8, take 5, 6, these criticisms 7, 7, seriously H 9 = \u03c0 1 = 1, 1, <s> 2, 3, we must 4, 4, also 8, 8, take 5, 6, these criticisms 7, 7, seriously 9, 9, </s> Figure 1 : Sub-derivations H j for j \u2208 {1, 3, 4, 6, 7, 8, 9} induced by the full derivation H = (1, 1, <s>)(2, 3, we must)(4, 4, also)(8, 8, take)(5, 6, these criticisms)(7, 7, seriously)(9, 9</s>) . Note that H j includes the phrases that cover spans ending before or at position j. Sub-derivation H j is extended to another subderivation H j+i by incorporating a phrase of length i.",
"cite_spans": [],
"ref_spans": [
{
"start": 412,
"end": 420,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Basic Definitions",
"sec_num": "4.1"
},
{
"text": "We now describe the dynamic programming algorithm. Intuitively the algorithm builds a derivation by processing the source-language sentence in strictly left-to-right order. This is in contrast with the algorithm of Koehn et al. (2007b) , where the targetlanguage sentence is constructed from left to right.",
"cite_spans": [
{
"start": 215,
"end": 235,
"text": "Koehn et al. (2007b)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Throughout this section we will use \u03c0, or \u03c0 i for some integer i, to refer to a sequence of phrases:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u03c0 = p 1 . . . p l where each phrase p i = (s(p i ), t(p i ), e(p i ))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": ", as defined in the previous section.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We overload the s, t and e operators, so that if",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u03c0 = p 1 . . . p l , we have s(\u03c0) = s(p 1 ), t(\u03c0) = t(p l )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": ", and e(\u03c0) = e(p 1 ) \u2022 e(p 2 ) . . . \u2022 e(p l ), where x \u2022 y is the concatenation of strings x and y.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "A derivation H consists of a single phrase sequence \u03c0 = p 1 . . . p L :",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "H = \u03c0 = p 1 . . . p L",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "where the sequence p 1 . . . p L satisfies the constraints in definition 2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We now give a definition of sub-derivations and complement sub-derivations:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Definition 3 (Sub-derivations and Complement Sub--derivations). For any",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "H = p 1 . . . p L , for any j \u2208 {1 . . . n} such that \u2203 i \u2208 {1 . . . L} s.t. t(p i ) =",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "j, the sub-derivation H j and the complement sub-derivationH j are defined as",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "H j = \u03c0 1 . . . \u03c0 r ,H j = \u03c0 1 . . .\u03c0 r",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "where the following properties hold:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 r is an integer with r \u2265 1. \u2022 Each \u03c0 i for i = 1 . . . r is a sequence of one or more phrases, where each phrase p \u2208 \u03c0 i has t(p) \u2264 j.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 Each\u03c0 i for i = 1 . . . (r \u2212 1) is a sequence of one or more phrases, where each phrase p \u2208\u03c0 i has s(p) > j.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022\u03c0 r is a sequence of zero or more phrases, where each phrase p \u2208\u03c0 r has s(p) > j. We have zero phrases in\u03c0 r iff j = n where n is the length of the sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 Finally, \u03c0 1 \u2022\u03c0 1 \u2022 \u03c0 2 \u2022\u03c0 2 . . . \u03c0 r \u2022\u03c0 r = p 1 . . . p L",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "where x \u2022 y denotes the concatenation of phrase sequences x and y.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Note that for any j \u2208 {1 . . . n} such that i \u2208 {1 . . . L} such that t(p i ) = j, the sub-derivation H j and the complement sub-derivationH j is not defined.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Thus for each integer j such that there is a phrase in H ending at point j, we can divide the phrases in H into two sets: phrases p with t(p) \u2264 j, and phrases p with s(p) > j. The sub-derivation H j lists all maximal sub-sequences of phrases with t(p) \u2264 j. The complement sub-derivationH j lists all maximal sub-sequences of phrases with s(p) > j. Figure 1 gives all sub-derivations H j for the derivation",
"cite_spans": [],
"ref_spans": [
{
"start": 348,
"end": 356,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "H = p 1 . . . p 7 = (1, 1, <s>)(2, 3, we must)(4, 4, also) (8, 8, take)(5, 6, these criticisms) (7, 7, seriously)(9, 9, </s>)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "As one example, the sub-derivation H 7 = \u03c0 1 , \u03c0 2 induced by H has two phrase sequences:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u03c0 1 = (1, 1, <s>)(2, 3, we must)(4, 4, also)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u03c0 2 = (5, 6, these criticisms)(7, 7, seriously)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Note that the phrase sequences \u03c0 1 and \u03c0 2 give translations for all words x 1 . . . x 7 in the sentence. There are two disjoint phrase sequences because in the full derivation H, the phrase p = (8, 8, take), with t(p) = 8 > 7, is used to form a longer sequence of phrases \u03c0 1 p \u03c0 2 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "For the above example, the complement sub-derivationH 7 is as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u03c0 1 = (8, 8, take) \u03c0 2 = (9, 9, </s>)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "It can be verified that \u03c0 1 \u2022\u03c0 1 \u2022\u03c0 2 \u2022\u03c0 2 = H as required by the definition of sub-derivations and complement sub-derivations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We now state the following Lemma: Lemma 2. For any derivation H = p 1 . . . p L , for any j such that \u2203i such that t(p i ) = j, the subderivation H j = \u03c0 1 . . . \u03c0 r satisfies the following properties:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "1. s(\u03c0 1 ) = 1 and e 1 (\u03c0 1 ) = <s>. 2. For all positions i \u2208 {1 . . . j}, there exists a phrase p \u2208 \u03c0, for some phrase sequence \u03c0 \u2208",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "H j , such that s(p) \u2264 i \u2264 t(p). 3. For all i = 2 . . . r, s(\u03c0 i ) \u2208 {(j \u2212 d + 2) . . . j} 4. For all i = 1 . . . r, t(\u03c0 i ) \u2208 {(j \u2212 d) . . . j}",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Here d is again the distortion limit.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "This lemma is a close analogy of Lemma 1. The proof is as follows: Proof of Property 1: For all values of j, the phrase p 1 = (1, 1, <s>) has t(p 1 ) \u2264 j, hence we must have \u03c0 1 = p 1 . . . p k for some k \u2208 {1 . . . L}. It follows that s(\u03c0 1 ) = 1 and e 1 (\u03c0 1 ) = <s>. Proof of Property 2: For any position i \u2208 {1 . . . j}, define the phrase (s, t, e) in the derivation H to be the phrase that covers word i; i.e., the phrase such that s \u2264 i \u2264 t. We must have s \u2208 {1 . . . j}, because s \u2264 i and i \u2264 j. We must also have t \u2208 {1 . . . j}, because otherwise we have s \u2264 j < t, which contradicts the assumption that there is some i \u2208 {1 . . . L} such that t(p i ) = j. It follows that the phrase (s, t, e) has t \u2264 j, and from the definition of sub-derivations it follows that the phrase is in one of the phrase sequences \u03c0 1 . . . \u03c0 r . Proof of Property 3: This follows from the distortion limit. Consider the complement sub-derivation H j = \u03c0 1 . . .\u03c0 r . For the distortion limit to be satisfied, for all i \u2208 {2 . . . r}, we must have",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "|t(\u03c0 i\u22121 ) + 1 \u2212 s(\u03c0 i )| \u2264 d",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We must also have t(\u03c0 i\u22121 ) > j, and s(\u03c0 i ) \u2264 j, by the definition of sub-derivations. It follows that s(\u03c0 i ) \u2208 {(j \u2212 d + 2) . . . j}. Proof of Property 4: This follows from the distortion limit. First consider the case where\u03c0 r is non-empty. For the distortion limit to be satisfied, for all i \u2208 {1 . . . r}, we must have",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "|t(\u03c0 i ) + 1 \u2212 s(\u03c0 i )| \u2264 d",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We must also have t(\u03c0 i ) \u2264 j, and s(\u03c0 i ) > j, by the definition of sub-derivations. It follows that t(\u03c0 i ) \u2208 {(j \u2212 d) . . . j}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Next consider the case where\u03c0 r is empty. In this case we must have j = n. For the distortion limit to be satisfied, for all i \u2208 {1 . . . (r \u2212 1)}, we must have",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "|t(\u03c0 i ) + 1 \u2212 s(\u03c0 i )| \u2264 d",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We must also have t(\u03c0 i ) \u2264 j, and s(\u03c0 i ) > j, by the definition of sub-derivations. It follows that t(\u03c0 i ) \u2208 {(j \u2212 d) . . . j} for i \u2208 {1 . . . (r \u2212 1)}. For i = r, we must have t(\u03c0 i ) = n, from which it again follows that t(\u03c0 r ) = n \u2208 {(j \u2212 d) . . . j}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We now define an equivalence relation between sub-derivations, which will be central to the dynamic programming algorithm. We define a function \u03c3 that maps a phrase sequence \u03c0 to its signature. The signature is a four-tuple:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u03c3(\u03c0) = (s, w s , t, w t ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "where s is the start position, w s is the start word, t is the end position and w t is the end word of the phrase sequence. We will use s(\u03c3), w s (\u03c3), t(\u03c3), and w t (\u03c3) to refer to each component of a signature \u03c3.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "For example, given a phrase sequence \u03c0 = (1, 1, <s>) (2, 2, we) (4, 4, also) , its signature is \u03c3(\u03c0) = (1, <s>, 4, also).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "The signature of a sub-derivation H j = \u03c0 1 . . . \u03c0 r is defined to be \u03c3(H j ) = \u03c3(\u03c0 1 ) . . . \u03c3(\u03c0 r ) .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "For example, with H 7 as defined above, we have \u03c3(H 7 ) = 1, <s>, 4, also , 5, these, 7, seriously Two partial derivations H j and H j are in the same equivalence class iff \u03c3(H j ) = \u03c3(H j ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We can now state the following Lemma:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Lemma 3. Define H * to be the optimal derivation for some input sentence, and H * j to be a subderivation of H * . Suppose H j is another subderivation with j words, such that \u03c3(H j ) = \u03c3(H * j ). Then it must be the case that f (H * j ) \u2265 f (H j ), where f is the function defined in Section 4.1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Proof. Define the sub-derivation and complement sub-derivation of H * as",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "H * j = \u03c0 1 . . . \u03c0 r H * j = \u03c0 1 . . .\u03c0 r We then have f (H * ) = f (H * j ) + f (H * j ) + \u03b3",
"eq_num": "(2)"
}
],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "where f (. . .) is as defined in Eq. 1, and \u03b3 takes into account the bigram language modeling scores and the distortion scores for the transitions",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u03c0 1 \u2192\u03c0 1 , \u03c0 1 \u2192 \u03c0 2 , \u03c0 2 \u2192\u03c0 2 , etc.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "The proof is by contradiction. Define",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "H j = \u03c0 1 . . . \u03c0 r and assume that f (H * j ) < f (H j ). Now consider H = \u03c0 1\u03c0 1 \u03c0 2\u03c0 2 . . . \u03c0 r\u03c0 r",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "This is a valid derivation because the transitions \u03c0 1 \u2192\u03c0 1 ,\u03c0 1 \u2192 \u03c0 2 , \u03c0 2 \u2192\u03c0 2 have the same distortion distances as \u03c0 1 \u2192\u03c0 1 ,\u03c0 1 \u2192 \u03c0 2 , \u03c0 2 \u2192\u03c0 2 , hence they must satisfy the distortion limit.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "We have",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "f (H ) = f (H j ) + f (H * j ) + \u03b3",
"eq_num": "(3)"
}
],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "where \u03b3 has the same value as in Eq. 2. This follows because the scores for the transitions \u03c0 1 \u2192\u03c0 1 , \u03c0 1 \u2192 \u03c0 2 , \u03c0 2 \u2192\u03c0 2 are identical to the scores for the transitions \u03c0 1 \u2192\u03c0 1 ,\u03c0 1 \u2192 \u03c0 2 , \u03c0 2 \u2192\u03c0 2 , because \u03c3(H * j ) = \u03c3(H j ). It follows from Eq. 2 and Eq. 3 that if f (H j ) > f (H * j ), then f (H ) > f (H * ). But this contradicts the assumption that H * is optimal. It follows that we must have f (H j ) \u2264 f (H * j ). This lemma leads to a dynamic programming algorithm. Each dynamic programming state consists of an integer j \u2208 {1 . . . n} and a set of r signatures: Figure 2 shows the dynamic programming algorithm. It relies on the following functions:",
"cite_spans": [],
"ref_spans": [
{
"start": 580,
"end": 588,
"text": "Figure 2",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "T = (j, {\u03c3 1 . . . \u03c3 r })",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Inputs:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 An integer n specifying the length of the input sequence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 A function \u03b4(T ) returning the set of valid transitions from state T .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 A function \u03c4 (T, \u2206) returning the state reached from state T by transition \u2206 \u2208 \u03b4(T ). \u2022 A function valid(T ) returning TRUE if state T is valid, otherwise FALSE. \u2022 A function score(\u2206) that returns the score for any transition \u2206.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Initialization:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "T 1 = (1, {(1, <s>, 1, <s>)}) \u03b1(T 1 ) = 0 T 1 = {T 1 }, \u2200j \u2208 {2 . . . n}, T j = \u2205 for j = 1, . . . , n \u2212 1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "for each state T \u2208 T j for each \u2206 \u2208 \u03b4(T )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "T = \u03c4 (T, \u2206)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "if valid(T ) = FALSE: continue score = \u03b1(T ) + score(\u2206) Define t to be the integer such that",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "T = (t, {\u03c3 1 . . . \u03c3r}) if T / \u2208 Tt Tt = Tt \u222a {T } \u03b1(T ) = score bp(T ) = (\u2206) else if score > \u03b1(T ) \u03b1(T ) = score bp(T ) = (\u2206)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Return: the score of the state (n, {(1, <s>, n, </s>)}) in Tn, and backpointers bp defining the transitions leading to this state. is the score for state T . The bp(T ) variables are backpointers used in recovering the highest scoring sequence of transitions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 For any state T , \u03b4(T ) is the set of outgoing transitions from state T .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 For any state T , for any transition \u2206 \u2208 \u03b4(T ), \u03c4 (T, \u2206) is the state reached by transition \u2206 from state T .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 For any state T , valid(T ) checks if a resulting state is valid.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "\u2022 For any transition \u2206, score(\u2206) is the score for the transition. We next give full definitions of these functions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Algorithm",
"sec_num": "4.2"
},
{
"text": "Recall that for any state T , \u03b4(T ) returns the set of possible transitions from state T . In addition \u03c4 (T, \u2206) returns the state reached when taking transition \u2206 \u2208 \u03b4(T ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "Given the state T = (j, {\u03c3 1 . . . \u03c3 r }), each transition is of the form \u03c8 1 p \u03c8 2 where \u03c8 1 , p and \u03c8 2 are defined as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "\u2022 p is a phrase such that s(p) = j + 1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "\u2022 \u03c8 1 \u2208 {\u03c3 1 . . . \u03c3 r } \u222a {\u03c6}. If \u03c8 1 = \u03c6, it must be the case that |t(\u03c8 1 ) + 1 \u2212 s(p)| \u2264 d and t(\u03c8 1 ) = n.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "\u2022 \u03c8 2 \u2208 {\u03c3 1 . . . \u03c3 r } \u222a {\u03c6}. If \u03c8 2 = \u03c6, it must be the case that |t(p) + 1 \u2212 s(\u03c8 2 )| \u2264 d and s(\u03c8 2 ) = 1.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "\u2022 If \u03c8 1 = \u03c6 and \u03c8 2 = \u03c6, then \u03c8 1 = \u03c8 2 . Thus there are four possible types of transition from a state T = (j, {\u03c3 1 . . . \u03c3 r }):",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "Case 1: \u2206 = \u03c6 p \u03c6. In this case the phrase p is incorporated as a stand-alone phrase. The new state T is equal to (j , {\u03c3 1 . . . \u03c3 r+1 }) where j = t(p), where \u03c3 i = \u03c3 i for i = 1 . . . r, and \u03c3 r+1 = (s(p), e 1 (p), t(p), e m (p)).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "Case 2: \u2206 = \u03c3 i p \u03c6 for some \u03c3 i \u2208 {\u03c3 1 . . . \u03c3 r }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "In this case the phrase p is appended to the signature \u03c3 i . The new state T = \u03c4 (T, \u2206) is of the form (j , \u03c3 1 . . . \u03c3 r ), where",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "j = t(p), where \u03c3 i is replaced by (s(\u03c3 i ), w s (\u03c3 i ), t(p)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": ", e m (p)), and where \u03c3 i = \u03c3 i for all i = i.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "Case 3:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "\u2206 = \u03c6 p \u03c3 i for some \u03c3 i \u2208 {\u03c3 1 . . . \u03c3 r }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "In this case the phrase p is prepended to the signature \u03c3 i . The new state T = \u03c4 (T, \u2206) is of the form (j , \u03c3 1 . . . \u03c3 r ), where j = t(p), where \u03c3 i is replaced by (s(p), e 1 (p), t(\u03c3 i ), w t (\u03c3 i )), and where \u03c3 i = \u03c3 i for all i = i.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "Case 4: \u2206 = \u03c3 i p \u03c3 i for some \u03c3 i , \u03c3 i \u2208 {\u03c3 1 . . . \u03c3 r }, with i = i. In this case phrase p is appended to signature \u03c3 i , and prepended to signature \u03c3 i , effectively joining the two signatures together. In this case the new state T = \u03c4 (T, \u2206) is of the form (j , \u03c3 1 . . . \u03c3 r\u22121 ), where signatures \u03c3 i and \u03c3 i are replaced by a new signature",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "(s(\u03c3 i ), w s (\u03c3 i ), t(\u03c3 i ), w t (\u03c3 i ))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": ", and all other signatures are copied across from T to T . Figure 3 gives the dynamic programming states and transitions for the derivation H in Figure 1 . For example, the sub-derivation H 7 = (1, 1, <s>)(2, 3, we must)(4, 4, also) , (5, 6, these criticisms)(7, 7, seriously)",
"cite_spans": [],
"ref_spans": [
{
"start": 59,
"end": 67,
"text": "Figure 3",
"ref_id": null
},
{
"start": 145,
"end": 153,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "will be mapped to a state T = 7, \u03c3(H 7 ) = 7, (1, <s>, 4, also), (5, these, 7, seriously) 1, \u03c3 1 = 1, <s>, 1, <s> 3, \u03c3 1 = 1, <s>, 3, must 4, \u03c3 1 = 1, <s>, 4, also 6, \u03c3 1 = 1, <s>, 4, also , \u03c3 2 = 5, these, 6, criticisms 7, \u03c3 1 = 1, <s>, 4, also , \u03c3 2 = 5, these, 7, seriously 8, \u03c3 1 = 1, <s>, 7, seriously 9, \u03c3 1 = 1, <s>, 9, </s> \u03c3 1 (2, 3, we must) \u03c6 \u03c3 1 (4, 4, also) \u03c6 \u03c6 (5, 6, these criticisms) \u03c6 \u03c3 2 (7, 7, seriously) \u03c6 \u03c3 1 (8, 8, take) \u03c3 2 \u03c3 1 (9, 9, </s>) \u03c6 Figure 3 : Dynamic programming states and the transitions from one state to another, using the same example as in Figure 1 . Note that",
"cite_spans": [],
"ref_spans": [
{
"start": 466,
"end": 474,
"text": "Figure 3",
"ref_id": null
},
{
"start": 580,
"end": 588,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "\u03c3 i = \u03c3(\u03c0 i ) for all \u03c0 i \u2208 H j .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "The transition \u03c3 1 (8, 8, take) \u03c3 2 from this state leads to a new state,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "T = 8, \u03c3 1 = (1, <s>, 7, seriously)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "4.3 Definition of score(\u2206) Figure 4 gives the definition of score(\u2206), which incorporates the language model, phrase scores, and distortion penalty implied by the transition \u2206. Figure 5 gives the definition of valid(T ). This function checks that the start and end points of each signature are in the set of allowed start and end points given in Lemma 2.",
"cite_spans": [],
"ref_spans": [
{
"start": 27,
"end": 35,
"text": "Figure 4",
"ref_id": null
},
{
"start": 176,
"end": 184,
"text": "Figure 5",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Definitions of \u03b4(T ) and \u03c4 (T, \u2206)",
"sec_num": "4.2.1"
},
{
"text": "We now give a bound on the algorithm's run time. This will be the product of terms N and M , where N is an upper bound on the number of states in the dynamic program, and M is an upper bound on the number of outgoing transitions from any state. For any j \u2208 {1 . . . n}, define first(j) to be the set of target-language words that can begin at position j and last(j) to be the set of target-language \u2206 Resulting phrase sequence score(\u2206) Figure 4 : Four operations that can extend a state T = (j, {\u03c3 1 . . . \u03c3 r }) by a phrase p = (s, t, e 1 . . . e m ), and the scores incurred. We define\u0175(p) = \u03ba(p) + m i=2 \u03bb(e i (p)|e i\u22121 (p)). The function\u0175(p) includes the phrase translation model \u03ba and the language model scores that can be computed using p alone. The weight \u03b7 is the distortion penalty.",
"cite_spans": [],
"ref_spans": [
{
"start": 436,
"end": 444,
"text": "Figure 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "A Bound on the Runtime of the Algorithm",
"sec_num": "4.5"
},
{
"text": "\u03c6 p \u03c6 (s, e 1 , t, em)\u0175(p) \u03c3 i p \u03c6 (s(\u03c3 i ), ws(\u03c3 i ), t, em)\u0175(p) + \u03bb(e 1 |wt(\u03c3 i )) + \u03b7 \u00d7 |t(\u03c3 i ) + 1 \u2212 s| \u03c6 p \u03c3 i (s, e 1 , t(\u03c3 i ), wt(\u03c3 i ))\u0175(p) + \u03bb(ws(\u03c3 i )|em) + \u03b7 \u00d7 |t + 1 \u2212 s(\u03c3 i )| \u03c3 i p \u03c3 i (s(\u03c3 i ), ws(\u03c3 i ), t(\u03c3 i ), wt(\u03c3 i ))\u0175(p) + \u03bb(e 1 |wt(\u03c3 i )) + \u03b7 \u00d7 |t(\u03c3 i ) + 1 \u2212 s| +\u03bb(ws(\u03c3 i )|em) + \u03b7 \u00d7 |t + 1 \u2212 s(\u03c3 i )|",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Bound on the Runtime of the Algorithm",
"sec_num": "4.5"
},
{
"text": "Input: In addition, define singles(j) to be the set of phrases that translate the single word at position j: singles(j) = {p : s(p) = j and t(p) = j} Next, define h to be the smallest integer such that for all j, |first(j)| \u2264 h, |last(j)| \u2264 h, and |singles(j)| \u2264 h. Thus h is a measure of the maximal ambiguity of any word x j in the input.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "State T = j, {\u03c3 1 . . . \u03c3r} for i = 1 . . . r if s(\u03c3 i ) < j \u2212 d + 2 and s(\u03c3 i ) = 1 return FALSE if t(\u03c3 i ) < j \u2212 d return FALSE return TRUE",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Finally, for any position j, define start(j) to be the set of phrases starting at position j: start(j) = {p : s(p) = j} and define l to be the smallest integer such that for all j, |start(j)| \u2264 l. Given these definitions we can state the following result: Theorem 1. The time complexity of the algorithm is O(nd!lh d+1 ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "To prove this we need the following definition:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Definition 4 (p-structures). For any finite set A of integers with |A| = k, a p-structure is a set of r ordered pairs {(s i , t i )} r i=1 that satisfies the following properties: 1) 0 \u2264 r \u2264 k; 2) for each i \u2208 {1 . . . r}, s i \u2208 A and t i \u2208 A (both s i = t i and s i = t i are allowed); 3) for each j \u2208 A, there is at most one index i \u2208 {1 . . . r} such that (s i = j) or (t i = j) or (s i = j and t i = j).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "We use g(k) to denote the number of unique pstructures for a set A with |A| = k.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "We then have the following Lemmas:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Lemma 4. The function g(k) satisfies g(0) = 0, g(1) = 2, and the following recurrence for k \u2265 2:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "g(k) = 2g(k \u2212 1) + 2(n \u2212 1)g(k \u2212 2)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Proof. The proof is in Appendix A.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Lemma 5. Consider the function h(k) = k 2 \u00d7 g(k). h(k) is in O((k \u2212 2)!).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Proof. The proof is in Appendix B.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "We can now prove the theorem: Proof of Theorem 1: First consider the number of states in the dynamic program. Each state is of the form (j, {\u03c3 1 . . . \u03c3 r }) where the set",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "{(s(\u03c3 i ), t(\u03c3 i ))} r",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "i=1 is a p-structure over the set {1}\u222a {(j \u2212 d) . . . d}. The number of possible values for {(s(\u03c3 i ), e(\u03c3 i ))} r i=1 is at most g(d + 2). For a fixed choice of {(s(\u03c3 i ), t(\u03c3 i ))} r i=1 we will argue that there are at most h d+1 possible values for",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "{(w s (\u03c3 i ), w t (\u03c3 i ))} r i=1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": ". This follows because for each k \u2208 {(j \u2212 d) . . . j} there are at most h possible choices: if there is some i such that s(\u03c3 i ) = k, and t(\u03c3 i ) = k, then the associated word w s (\u03c3 i ) is in the set first(k); alternatively if there is some i such that t(\u03c3 i ) = k, and s(\u03c3 i ) = k, then the associated word w t (\u03c3 i ) is in the set last(k); alternatively if there is some i such that s(\u03c3 i ) = t(\u03c3 i ) = k then the associated words w s (\u03c3 i ), w t (\u03c3 i ) must be the first/last word of some phrase in singles(k); alternatively there is no i such that s(\u03c3 i ) = k or t(\u03c3 i ) = k, in which case there is no choice associated with position k in the sentence. Hence there are at most h choices associated with each position k \u2208 {(j \u2212 d) . . . j}, giving h d+1 choices in total. Combining these results, and noting that there are n choices of the variable j, implies that there are at most ng(d + 2)h d+1 states in the dynamic program.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Now consider the number of transitions from any state. A transition is of the form \u03c8 1 p\u03c8 2 as defined in Section 4.2.1. For a given state there are at most (d + 2) choices for \u03c8 1 and \u03c8 2 , and l choices for p, giving at most (d + 2) 2 l choices in total.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "Multiplying the upper bounds on the number of states and number of transitions for each state gives an upper bound on the runtime of the algorithm as O(ng(d + 2)h d+1 (d + 2) 2 l). Hence by Lemma 5 the runtime is O(nd!lh d+1 ) time.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "The bound g(d + 2) over the number of possible values for {(s(\u03c3 i ), e(\u03c3 i ))} r i=1 is somewhat loose, as the set of p-structures over {1} \u222a",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "{(j \u2212 d) . . . d} in- cludes impossible values {(s i , t i )} r i=1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "where for example there is no i such that s(\u03c3 i ) = 1. However the bound is tight enough to give the O(d!) runtime.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Function valid(T )",
"sec_num": null
},
{
"text": "We conclude the paper with discussion of some issues. First we describe how the dynamic programming structures we have described can be used in conjunction with beam search. Second, we give more analysis of the complexity of the widely-used decoding algorithm of Koehn et al. (2003) .",
"cite_spans": [
{
"start": 263,
"end": 282,
"text": "Koehn et al. (2003)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "5"
},
{
"text": "Beam search is widely used in phrase-based decoding; it can also be applied to our dynamic programming construction. We can replace the line for each state T \u2208 T j in the algorithm in Figure 2 with",
"cite_spans": [],
"ref_spans": [
{
"start": 184,
"end": 192,
"text": "Figure 2",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Beam Search",
"sec_num": "5.1"
},
{
"text": "for each state T \u2208 beam(T j )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beam Search",
"sec_num": "5.1"
},
{
"text": "where beam is a function that returns a subset of T j , most often the highest scoring elements of T j under some scoring criterion. A key question concerns the choice of scoring function \u03b3(T ) used to rank states. One proposal is to define \u03b3(T ) = \u03b1(T ) + \u03b2(T ) where \u03b1(T ) is the score used in the dynamic program, and",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beam Search",
"sec_num": "5.1"
},
{
"text": "\u03b2(T ) = i:ws(\u03c3 i ) =<s> \u03bb u (w s (\u03c3 i )).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beam Search",
"sec_num": "5.1"
},
{
"text": "Here \u03bb u (w) is the score of word w under a unigram language model. The \u03b2(T ) scores allow different states in T j , which have different words w s (\u03c3 i ) at the start of signatures, to be comparable: for example it compensates for the case where w s (\u03c3 i ) is a rare word, which will incur a low probability when the bigram w w s (\u03c3 i ) for some word w is constructed during search.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beam Search",
"sec_num": "5.1"
},
{
"text": "The \u03b2(T ) values play a similar role to \"future scores\" in the algorithm of Koehn et al. (2003) . However in the Koehn et al. (2003) algorithm, different items in the same beam can translate different subsets of the input sentence, making futurescore estimation more involved. In our case all items in T j translate all words x 1 . . . x j inclusive, which may make comparison of different hypotheses more straightforward.",
"cite_spans": [
{
"start": 76,
"end": 95,
"text": "Koehn et al. (2003)",
"ref_id": "BIBREF9"
},
{
"start": 113,
"end": 132,
"text": "Koehn et al. (2003)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Beam Search",
"sec_num": "5.1"
},
{
"text": "A common method for decoding phrase-based models, as described in Koehn et al. (2003) , is to use beam search in conjunction with a search algorithm that 1) creates the target language string in strictly left-to-right order; 2) uses a bit string with bits b i \u2208 {0, 1} for i = 1 . . . n representing at each point whether word i in the input has been translated. A natural question is whether the number of possible bit strings for a model with a fixed distortion limit d can grow exponentially quickly with respect to the length of the input sentence. This section gives an example that shows that this is indeed the case. Assume that our sentence length n is such that (n \u2212 2)/4 is an integer. Assume as before x 1 = <s> and x n = </s>. For each k \u2208 {0 . . . ((n \u2212 2)/4 \u2212 1)}, assume we have the following phrases for the words x 4k+2 . . . x 4k+5 :",
"cite_spans": [
{
"start": 66,
"end": 85,
"text": "Koehn et al. (2003)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Complexity of Decoding with Bit-string Representations",
"sec_num": "5.2"
},
{
"text": "(4k + 2, 4k + 2, u k ) (4k + 3, 4k + 3, v k ) (4k + 4, 4k + 4, w k ) (4k + 5, 4k + 5, z k ) (4k + 4, 4k + 5, y k )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Complexity of Decoding with Bit-string Representations",
"sec_num": "5.2"
},
{
"text": "Note that the only source of ambiguity is for each k whether we use y k to translate the entire phrase x 4k+4 x 4k+5 , or whether we use w k and z k to translate x 4k+4 and x 4k+5 separately. With a distortion limit d \u2265 5, the number of possible bit strings in this example is at least 2 (n\u22122)/4 . This follows because for any setting of the variables",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Complexity of Decoding with Bit-string Representations",
"sec_num": "5.2"
},
{
"text": "b 4k+4 \u2208 {0, 1} for k \u2208 {0 . . . ((n \u2212 2)/4 \u2212 1)},",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Complexity of Decoding with Bit-string Representations",
"sec_num": "5.2"
},
{
"text": "there is a valid derivation p 1 . . . p L such that the prefix p 1 . . . p l where l = 1 + (n \u2212 2)/4 gives this bit string. Simply choose p 1 = (1, 1, <s>) and for l \u2208 {0 . . . (n \u2212 2)/4 \u2212 1} choose p l +2 = (4l + 4, 4l + 5, y i ) if b 4k+4 = 1, p l +2 = (4l + 5, 4l + 5, z i ) otherwise. It can be verified that p 1 . . . p l is a valid prefix (there is a valid way to give a complete derivation from this prefix). As one example, for n = 10, and b 4 = 1 and b 8 = 0, a valid derivation is",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Complexity of Decoding with Bit-string Representations",
"sec_num": "5.2"
},
{
"text": "(1, 1, <s>)(4, 5, y 1 )(9, 9, z 2 )(7, 7, v 2 )(3, 3, v 1 ) (2, 2, u 1 )(6, 6, u 2 )(8, 8, w 2 )(10, 10, </s>)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Complexity of Decoding with Bit-string Representations",
"sec_num": "5.2"
},
{
"text": "In this case the prefix (1, 1, <s>)(4, 5, y 1 )(9, 9, z 2 ) gives b 4 = 1 and b 8 = 0. Other values for b 4 and b 8 can be given by using (5, 5, z 1 ) in place of (4, 5, y 1 ), and (8, 9, y 2 ) in place of (9, 9, z 2 ), with the following phrases modified appropriately.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Complexity of Decoding with Bit-string Representations",
"sec_num": "5.2"
},
{
"text": "We have given a polynomial-time dynamic programming algorithm for phrase-based decoding with a fixed distortion limit. The algorithm uses a quite different representation of states from previous decoding algorithms, is easily amenable to beam search, and leads to a new perspective on phrase-based decoding. Future work should investigate the effectiveness of the algorithm in practice.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "6"
},
{
"text": "Without loss of generality assume A = {1, 2, 3, . . . k}. We have g(1) = 2, because in this case the valid p-structures are {(1, 1)} and \u2205. To calculate g(k) we can sum over four possibilities:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Case 1: There are g(k \u2212 1) p-structures with s i = t i = 1 for some i \u2208 {1 . . . r}. This follows because once s i = t i = 1 for some i, there are g(k \u2212 1) possible p-structures for the integers {2, 3, 4 . . . k}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Case 2: There are g(k \u2212 1) p-structures such that s i = 1 and t i = 1 for all i \u2208 {1 . . . r}. This follows because once s i = 1 and t i = 1 for all i, there are g(k \u2212 1) possible p-structures for the integers {2, 3, 4 . . . k}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Case 3: There are (k \u2212 1) \u00d7 g(k \u2212 2) p-structures such that there is some i \u2208 {1 . . . r} with s i = 1 and t i = 1. This follows because for the i such that s i = 1, there are (k \u2212 1) choices for the value for t i , and there are then g(k \u2212 2) possible p-structures for the remaining integers in the set {1 . . . k}/{1, t i }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Case 4: There are (k \u2212 1) \u00d7 g(k \u2212 2) p-structures such that there is some i \u2208 {1 . . . r} with t i = 1 and s i = 1. This follows because for the i such that t i = 1, there are (k \u2212 1) choices for the value for s i , and there are then g(k \u2212 2) possible p-structures for the remaining integers in the set {1 . . . k}/{1, s i }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Summing over these possibilities gives the following recurrence: g(k) = 2g(k \u2212 1) + 2(k \u2212 1) \u00d7 g(k \u2212 2) B Proof of Lemma 5",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Recall that h(k) = f (k) \u00d7 g(k) where f (k) = k 2 . Define k 0 to be the smallest integer such that for all k \u2265 k 0 ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "2f (k) f (k \u2212 1) + 2f (k) f (k \u2212 2) \u2022 k \u2212 1 k \u2212 3 \u2264 k \u2212 2 (4)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "For f (k) = k 2 we have k 0 = 9. Now choose a constant c such that for all k \u2208 {1 . . . (k 0 \u2212 1)}, h(k) \u2264 c \u00d7 (k \u2212 2)!. We will prove by induction that under these definitions of k 0 and c we have h(k) \u2264 c(k \u2212 2)! for all integers k, hence h(k) is in O((k \u2212 2)!).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "For values k \u2265 k 0 , we have h(k) = f (k)g(k) = 2f (k)g(k \u2212 1) + 2f (k)(k \u2212 1)g(k \u2212 2) (5)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "= 2f (k) f (k \u2212 1) h(k \u2212 1) + 2f (k) f (k \u2212 2) (k \u2212 1)h(k \u2212 2) \u2264 2cf (k) f (k \u2212 1) + 2cf (k) f (k \u2212 2) \u2022 k \u2212 1 k \u2212 3 (k \u2212 3)! (6) \u2264 c(k \u2212 2)!",
"eq_num": "(7)"
}
],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Eq. 5 follows from g(k) = 2g(k\u22121)+2(k\u22121)g(k\u2212 2). Eq. 6 follows by the inductive hypothesis that h(k \u2212 1) \u2264 c(k \u2212 3)! and h(k \u2212 2) \u2264 c(k \u2212 4)!. Eq 7 follows because Eq. 4 holds for all k \u2265 k 0 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Proof of Lemma 4",
"sec_num": null
},
{
"text": "Transactions of the Association for Computational Linguistics, vol. 5, pp. 59-71, 2017. Action Editor: Holger Schwenk.Submission batch: 10/2016; Revision batch: 11/2016; Published 2/2017. c 2017 Association for Computational Linguistics. Distributed under a CC-BY 4.0 license.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "The algorithm is based on the ideas ofMonien and Sudborough (1981) andRatliff and Rosenthal (1983).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "For sets X and Y we use the notation X \\ Y to refer to the set difference: i.e., X \\ Y = {x|x \u2208 X and x / \u2208 Y }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Exact decoding for phrase-based statistical machine translation",
"authors": [
{
"first": "Wilker",
"middle": [],
"last": "Aziz",
"suffix": ""
},
{
"first": "Marc",
"middle": [],
"last": "Dymetman",
"suffix": ""
},
{
"first": "Lucia",
"middle": [],
"last": "Specia",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing. Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wilker Aziz, Marc Dymetman, and Lucia Specia. 2014. Exact decoding for phrase-based statistical machine translation. In Proceedings of the Conference on Em- pirical Methods in Natural Language Processing. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Exact decoding of phrase-based translation models through Lagrangian relaxation",
"authors": [
{
"first": "Yin-Wen",
"middle": [],
"last": "Chang",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "26--37",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yin-Wen Chang and Michael Collins. 2011. Exact de- coding of phrase-based translation models through La- grangian relaxation. In Proceedings of the Conference on Empirical Methods in Natural Language Process- ing, pages 26-37. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "On hierarchical re-ordering and permutation parsing for phrase-based decoding",
"authors": [
{
"first": "Colin",
"middle": [],
"last": "Cherry",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Robert",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Moore",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Quirk",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of the Seventh Workshop on Statistical Machine Translation",
"volume": "",
"issue": "",
"pages": "200--209",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Colin Cherry, Robert C Moore, and Chris Quirk. 2012. On hierarchical re-ordering and permutation parsing for phrase-based decoding. In Proceedings of the Seventh Workshop on Statistical Machine Translation, pages 200-209. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "The complexity of phrase alignment problems",
"authors": [
{
"first": "John",
"middle": [],
"last": "Denero",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Klein",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the 46th",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John DeNero and Dan Klein. 2008. The complexity of phrase alignment problems. In Proceedings of the 46th",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Annual Meeting of the Association for Computational Linguistics on Human Language Technologies: Short Papers",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "25--28",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Annual Meeting of the Association for Computational Linguistics on Human Language Technologies: Short Papers, pages 25-28. Association for Computational Linguistics.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "An efficient shift-reduce decoding algorithm for phrasedbased machine translation",
"authors": [
{
"first": "Yang",
"middle": [],
"last": "Feng",
"suffix": ""
},
{
"first": "Haitao",
"middle": [],
"last": "Mi",
"suffix": ""
},
{
"first": "Yang",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Qun",
"middle": [],
"last": "Liu",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 23rd International Conference on Computational Linguistics: Posters",
"volume": "",
"issue": "",
"pages": "285--293",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yang Feng, Haitao Mi, Yang Liu, and Qun Liu. 2010. An efficient shift-reduce decoding algorithm for phrased- based machine translation. In Proceedings of the 23rd International Conference on Computational Linguis- tics: Posters, pages 285-293. Association for Compu- tational Linguistics.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "A simple and effective hierarchical phrase reordering model",
"authors": [
{
"first": "Michel",
"middle": [],
"last": "Galley",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Christopher",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "848--856",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michel Galley and Christopher D Manning. 2008. A simple and effective hierarchical phrase reordering model. In Proceedings of the Conference on Empir- ical Methods in Natural Language Processing, pages 848-856. Association for Computational Linguistics.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Accurate non-hierarchical phrase-based translation",
"authors": [
{
"first": "Michel",
"middle": [],
"last": "Galley",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Christopher",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2010,
"venue": "Human Language Technologies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "966--974",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michel Galley and Christopher D Manning. 2010. Accu- rate non-hierarchical phrase-based translation. In Hu- man Language Technologies: The 2010 Annual Con- ference of the North American Chapter of the Associ- ation for Computational Linguistics, pages 966-974. Association for Computational Linguistics.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Decoding complexity in wordreplacement translation models",
"authors": [
{
"first": "Kevin",
"middle": [],
"last": "Knight",
"suffix": ""
}
],
"year": 1999,
"venue": "Computational Linguistics",
"volume": "25",
"issue": "4",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kevin Knight. 1999. Decoding complexity in word- replacement translation models. Computational Lin- guistics, 25(4).",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Statistical phrase-based translation",
"authors": [
{
"first": "Philipp",
"middle": [],
"last": "Koehn",
"suffix": ""
},
{
"first": "Franz",
"middle": [
"Josef"
],
"last": "Och",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Marcu",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 2003 Conference of the North American Chapter of the Association for Computational Linguistics on Human Language Technology",
"volume": "1",
"issue": "",
"pages": "48--54",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Philipp Koehn, Franz Josef Och, and Daniel Marcu. 2003. Statistical phrase-based translation. In Proceed- ings of the 2003 Conference of the North American Chapter of the Association for Computational Linguis- tics on Human Language Technology-Volume 1, pages 48-54. Association for Computational Linguistics.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Edinburgh system description for the 2005 IWSLT speech translation evaluation",
"authors": [
{
"first": "Philipp",
"middle": [],
"last": "Koehn",
"suffix": ""
},
{
"first": "Amittai",
"middle": [],
"last": "Axelrod",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Callison-Burch",
"suffix": ""
},
{
"first": "Miles",
"middle": [],
"last": "Osborne",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Talbot",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the Second Workshop on Statistical Machine Translation, StatMT '07",
"volume": "",
"issue": "",
"pages": "224--227",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Philipp Koehn, Amittai Axelrod, Chris Callison-Burch, Miles Osborne, and David Talbot. 2007a. Edinburgh system description for the 2005 IWSLT speech trans- lation evaluation. In Proceedings of the Second Work- shop on Statistical Machine Translation, StatMT '07, pages 224-227, Stroudsburg, PA, USA. Association for Computational Linguistics.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Moses: Open source toolkit for statistical machine translation",
"authors": [
{
"first": "Philipp",
"middle": [],
"last": "Koehn",
"suffix": ""
},
{
"first": "Hieu",
"middle": [],
"last": "Hoang",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Birch",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Callison-Burch",
"suffix": ""
},
{
"first": "Marcello",
"middle": [],
"last": "Federico",
"suffix": ""
},
{
"first": "Nicola",
"middle": [],
"last": "Bertoldi",
"suffix": ""
},
{
"first": "Brooke",
"middle": [],
"last": "Cowan",
"suffix": ""
},
{
"first": "Wade",
"middle": [],
"last": "Shen",
"suffix": ""
},
{
"first": "Christine",
"middle": [],
"last": "Moran",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Zens",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
},
{
"first": "Ond\u0159ej",
"middle": [],
"last": "Bojar",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the 45th annual meeting of the ACL on interactive poster and demonstration sessions",
"volume": "",
"issue": "",
"pages": "177--180",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Philipp Koehn, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola Bertoldi, Brooke Cowan, Wade Shen, Christine Moran, Richard Zens, Chris Dyer, Ond\u0159ej Bojar, Alexandra Con- stantin, and Evan Herbst. 2007b. Moses: Open source toolkit for statistical machine translation. In Proceed- ings of the 45th annual meeting of the ACL on inter- active poster and demonstration sessions, pages 177- 180. Association for Computational Linguistics.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Local phrase reordering models for statistical machine translation",
"authors": [
{
"first": "Shankar",
"middle": [],
"last": "Kumar",
"suffix": ""
},
{
"first": "William",
"middle": [],
"last": "Byrne",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "161--168",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Shankar Kumar and William Byrne. 2005. Local phrase reordering models for statistical machine translation. In Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Lan- guage Processing, pages 161-168. Association for Computational Linguistics.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "The Traveling Salesman Problem",
"authors": [
{
"first": "Eugene",
"middle": [
"Leighton"
],
"last": "Lawler",
"suffix": ""
}
],
"year": 1985,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Eugene Leighton Lawler, Jan Karel Lenstra, Alexander Hendrik George Rinnooy Kan, and David Bernard Shmoys. 1985. The Traveling Salesman Problem. John Wiley & Sons Ltd.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Translation as weighted deduction",
"authors": [
{
"first": "Adam",
"middle": [],
"last": "Lopez",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 12th Conference of the European Chapter of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "532--540",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Adam Lopez. 2009. Translation as weighted deduction. In Proceedings of the 12th Conference of the European Chapter of the Association for Computational Linguis- tics, pages 532-540. Association for Computational Linguistics.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Bandwidth constrained NP-complete problems",
"authors": [
{
"first": "Burkhard",
"middle": [],
"last": "Monien",
"suffix": ""
},
{
"first": "Ivan",
"middle": [
"Hal"
],
"last": "Sudborough",
"suffix": ""
}
],
"year": 1981,
"venue": "Proceedings of the thirteenth annual ACM symposium on Theory of computing",
"volume": "",
"issue": "",
"pages": "207--217",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Burkhard Monien and Ivan Hal Sudborough. 1981. Bandwidth constrained NP-complete problems. In Proceedings of the thirteenth annual ACM symposium on Theory of computing, pages 207-217. ACM.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "The alignment template approach to statistical machine translation",
"authors": [
{
"first": "Josef",
"middle": [],
"last": "Franz",
"suffix": ""
},
{
"first": "Hermann",
"middle": [],
"last": "Och",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Ney",
"suffix": ""
}
],
"year": 2004,
"venue": "Computational linguistics",
"volume": "30",
"issue": "4",
"pages": "417--449",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Franz Josef Och and Hermann Ney. 2004. The align- ment template approach to statistical machine transla- tion. Computational linguistics, 30(4):417-449.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Orderpicking in a rectangular warehouse: a solvable case of the traveling salesman problem",
"authors": [
{
"first": "Donald",
"middle": [],
"last": "Ratliff",
"suffix": ""
},
{
"first": "Arnon S",
"middle": [],
"last": "Rosenthal",
"suffix": ""
}
],
"year": 1983,
"venue": "Operations Research",
"volume": "31",
"issue": "3",
"pages": "507--521",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H Donald Ratliff and Arnon S Rosenthal. 1983. Order- picking in a rectangular warehouse: a solvable case of the traveling salesman problem. Operations Research, 31(3):507-521.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "A unigram orientation model for statistical machine translation",
"authors": [
{
"first": "Christoph",
"middle": [],
"last": "Tillmann",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of HLT-NAACL 2004: Short Papers",
"volume": "",
"issue": "",
"pages": "101--104",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Christoph Tillmann. 2004. A unigram orientation model for statistical machine translation. In Proceedings of HLT-NAACL 2004: Short Papers, pages 101-104. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Stochastic inversion transduction grammars and bilingual parsing of parallel corpora",
"authors": [
{
"first": "Dekai",
"middle": [],
"last": "Wu",
"suffix": ""
}
],
"year": 1997,
"venue": "Computational linguistics",
"volume": "23",
"issue": "3",
"pages": "377--403",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dekai Wu. 1997. Stochastic inversion transduction grammars and bilingual parsing of parallel corpora. Computational linguistics, 23(3):377-403.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Phrase-based statistical machine translation as a traveling salesman problem",
"authors": [
{
"first": "Mikhail",
"middle": [],
"last": "Zaslavskiy",
"suffix": ""
},
{
"first": "Marc",
"middle": [],
"last": "Dymetman",
"suffix": ""
},
{
"first": "Nicola",
"middle": [],
"last": "Cancedda",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing of the AFNLP",
"volume": "1",
"issue": "",
"pages": "333--341",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mikhail Zaslavskiy, Marc Dymetman, and Nicola Can- cedda. 2009. Phrase-based statistical machine transla- tion as a traveling salesman problem. In Proceedings of the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing of the AFNLP: Volume 1-Volume 1, pages 333-341. Association for Compu- tational Linguistics.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "A comparative study on reordering constraints in statistical machine translation",
"authors": [
{
"first": "Richard",
"middle": [],
"last": "Zens",
"suffix": ""
},
{
"first": "Hermann",
"middle": [],
"last": "Ney",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 41st Annual Meeting on Association for Computational Linguistics",
"volume": "1",
"issue": "",
"pages": "144--151",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Richard Zens and Hermann Ney. 2003. A comparative study on reordering constraints in statistical machine translation. In Proceedings of the 41st Annual Meeting on Association for Computational Linguistics-Volume 1, pages 144-151. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Reordering constraints for phrase-based statistical machine translation",
"authors": [
{
"first": "Richard",
"middle": [],
"last": "Zens",
"suffix": ""
},
{
"first": "Hermann",
"middle": [],
"last": "Ney",
"suffix": ""
},
{
"first": "Taro",
"middle": [],
"last": "Watanabe",
"suffix": ""
},
{
"first": "Eiichiro",
"middle": [],
"last": "Sumita",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the 20th international conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Richard Zens, Hermann Ney, Taro Watanabe, and Ei- ichiro Sumita. 2004. Reordering constraints for phrase-based statistical machine translation. In Pro- ceedings of the 20th international conference on Computational Linguistics, page 205. Association for Computational Linguistics.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "The phrase-based decoding algorithm. \u03b1(T )",
"type_str": "figure",
"uris": null,
"num": null
},
"FIGREF1": {
"text": "The valid function. words that can end at position j. first(j) = {w : \u2203 p = (s, t, e) s.t. s = j, e 1 = w} last(j) = {w : \u2203 p = (s, t, e) s.t. t = j, e m = w}",
"type_str": "figure",
"uris": null,
"num": null
}
}
}
}