ACL-OCL / Base_JSON /prefixD /json /D16 /D16-1003.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "D16-1003",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:34:37.157591Z"
},
"title": "A Neural Network for Coordination Boundary Prediction",
"authors": [
{
"first": "Jessica",
"middle": [],
"last": "Ficler",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Ilan University",
"location": {
"country": "Israel"
}
},
"email": "jessica.ficler@gmail.com"
},
{
"first": "Yoav",
"middle": [],
"last": "Goldberg",
"suffix": "",
"affiliation": {},
"email": "yoav.goldberg@gmail.com"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "We propose a neural-network based model for coordination boundary prediction. The network is designed to incorporate two signals: the similarity between conjuncts and the observation that replacing the whole coordination phrase with a conjunct tends to produce a coherent sentences. The modeling makes use of several LSTM networks. The model is trained solely on conjunction annotations in a Treebank, without using external resources. We show improvements on predicting coordination boundaries on the PTB compared to two state-of-the-art parsers; as well as improvement over previous coordination boundary prediction systems on the Genia corpus.",
"pdf_parse": {
"paper_id": "D16-1003",
"_pdf_hash": "",
"abstract": [
{
"text": "We propose a neural-network based model for coordination boundary prediction. The network is designed to incorporate two signals: the similarity between conjuncts and the observation that replacing the whole coordination phrase with a conjunct tends to produce a coherent sentences. The modeling makes use of several LSTM networks. The model is trained solely on conjunction annotations in a Treebank, without using external resources. We show improvements on predicting coordination boundaries on the PTB compared to two state-of-the-art parsers; as well as improvement over previous coordination boundary prediction systems on the Genia corpus.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Coordination is a common syntactic phenomena, appearing in 38.8% of the sentences in the Penn Treebank (PTB) (Marcus et al., 1993) , and in 60.71% of the sentences in the Genia Treebank (Ohta et al., 2002) . However, predicting the correct conjuncts span remain one of the biggest challenges for stateof-the-art syntactic parsers. Both the Berkeley and Zpar phrase-structure parsers (Petrov et al., 2006; Zhang and Clark, 2011) achieve F1 scores of around 69% when evaluated on their ability to recover coordination boundaries on the PTB test set. For example, in:",
"cite_spans": [
{
"start": 109,
"end": 130,
"text": "(Marcus et al., 1993)",
"ref_id": "BIBREF13"
},
{
"start": 186,
"end": 205,
"text": "(Ohta et al., 2002)",
"ref_id": "BIBREF15"
},
{
"start": 383,
"end": 404,
"text": "(Petrov et al., 2006;",
"ref_id": "BIBREF16"
},
{
"start": 405,
"end": 427,
"text": "Zhang and Clark, 2011)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\"He has the government's blessing to [build churches] and [spread Unificationism] in that country.\" the conjuncts are incorrectly predicted by both parsers: In this work we focus on coordination boundary prediction, and suggest a specialized model for this task. We treat it as a ranking task, and learn a scoring function over conjuncts candidates such that the correct candidate pair is scored above all other candidates. The scoring model is a neural network with two LSTM-based components, each modeling a different linguistic principle: (1) conjuncts tend to be similar (\"symmetry\"); and (2) replacing the coordination phrase with each of the conjuncts usually result in a coherent sentence (\"replacement\"). The symmetry component takes into account the conjuncts' syntactic structures, allowing to capture similarities that occur in different levels of the syntactic structure. The replacement component considers the coherence of the sequence that is produced when connecting the participant parts. Both of these signals are syntactic in nature, and are learned solely based on information in the Penn Treebank. Our model substantially outperforms both the Berkeley and Zpar parsers on the coordination prediction task, while using the exact same training corpus. Semantic signals (which are likely to be based on resources external to the treebank) are also relevant for coordination disambiguation (Kawahara and Kurohashi, 2008; Hogan, 2007) and provide complementary information. We plan to incorporate such signals in future work.",
"cite_spans": [
{
"start": 37,
"end": 53,
"text": "[build churches]",
"ref_id": null
},
{
"start": 1407,
"end": 1437,
"text": "(Kawahara and Kurohashi, 2008;",
"ref_id": "BIBREF12"
},
{
"start": 1438,
"end": 1450,
"text": "Hogan, 2007)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Coordination is a very common syntactic construction in which several sentential elements (called conjuncts) are linked. For example, in:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Background",
"sec_num": "2"
},
{
"text": "\"The Jon Bon Jovi Soul Foundation [was founded in 2006] and 1 [exists to combat issues that force (families) and 2 (individuals) into economic despair].\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Background",
"sec_num": "2"
},
{
"text": "The coordinator and 1 links the conjuncts surrounded with square brackets and the coordinator and 2 links the conjuncts surrounded with round brackets.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Background",
"sec_num": "2"
},
{
"text": "Coordination between NPs and between VPs are the most common, but other grammatical functions can also be coordinated: \"[relatively active] ADJP but [unfocused] ADJP \" ; \"[in] IN and [out] IN the market\". While coordination mostly occurs between elements with the same syntactic category, cross-category conjunctions are also possible: (\"Alice will visit Earth [tomorrow] N P or [in the next decade] P P \"). Less common coordinations involve non-constituent elements \"[equal to] or [higher than]\", argument clusters (\"Alice visited [4 planets] [in 2014] and [3 more] [since then]\"), and gapping (\"[Bob lives on Earth] and [Alice on Saturn]\") (Dowty, 1988) .",
"cite_spans": [
{
"start": 642,
"end": 655,
"text": "(Dowty, 1988)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background",
"sec_num": "2"
},
{
"text": "Coordinated conjuncts tend to be semantically related and have a similar syntactic structure. For example, in (a) and (b) the conjuncts include similar words (China/Asia, marks/yen) and have identical syntactic structures. Similarity between conjuncts was used as a guiding principle in previous work on coordination disambiguation (Hogan, 2007; Shimbo and Hara, 2007; Hara et al., 2009) .",
"cite_spans": [
{
"start": 332,
"end": 345,
"text": "(Hogan, 2007;",
"ref_id": "BIBREF10"
},
{
"start": 346,
"end": 368,
"text": "Shimbo and Hara, 2007;",
"ref_id": "BIBREF18"
},
{
"start": 369,
"end": 387,
"text": "Hara et al., 2009)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Symmetry between conjuncts",
"sec_num": "2.1"
},
{
"text": "Replacing a conjunct with the whole coordination phrase usually produce a coherent sentence (Huddleston et al., 2002) . For example, in \"Ethan has developed [new products] and [a new strategy]\", replacement results in: \"Ethan has developed new products\"; and \"Ethan has developed a new strategy\", both valid sentences. Conjuncts replacement holds also for conjuncts of different syntactic types, e.g.: \"inactivation of tumor-suppressor genes, [alone] or [in combination], appears crucial to the development of such scourges as cancer.\".",
"cite_spans": [
{
"start": 92,
"end": 117,
"text": "(Huddleston et al., 2002)",
"ref_id": "BIBREF11"
},
{
"start": 443,
"end": 450,
"text": "[alone]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Replaceability",
"sec_num": "2.2"
},
{
"text": "While both symmetry and replacebility are strong characteristics of coordination, neither principle holds universally. Coordination between syntactically dissimilar conjuncts is possible (\"tomorrow and for the entirety of the next decade\"), and the replacement principle fails in cases of ellipsis, gapping and others (\"The bank employs [8,000 people in Spain] and [2,000 abroad]\").",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Replaceability",
"sec_num": "2.2"
},
{
"text": "Coordination annotation in the Penn Treebank (Marcus et al., 1993) is inconsistent (Hogan, 2007) and lacks internal structure for NPs with nominal modifiers (Bies et al., 1995) . In addition, conjuncts in the PTB are not explicitly marked. These deficiencies led previous works on coordination disambiguation (Shimbo and Hara, 2007; Hara et al., 2009; Hanamoto et al., 2012) to use the Genia treebank of biomedical text (Ohta et al., 2002) which explicitly marks coordination phrases. However, using the Genia corpus is not ideal since it is in a specialized domain and much smaller than the PTB. In this work we rely on a version of the PTB released by Ficler and Goldberg (2016) in which the above deficiencies are manually resolved. In particular, coordinating elements, coordination phrases and conjunct boundaries are explicitly marked with specialized function labels.",
"cite_spans": [
{
"start": 45,
"end": 66,
"text": "(Marcus et al., 1993)",
"ref_id": "BIBREF13"
},
{
"start": 83,
"end": 96,
"text": "(Hogan, 2007)",
"ref_id": "BIBREF10"
},
{
"start": 157,
"end": 176,
"text": "(Bies et al., 1995)",
"ref_id": "BIBREF0"
},
{
"start": 309,
"end": 332,
"text": "(Shimbo and Hara, 2007;",
"ref_id": "BIBREF18"
},
{
"start": 333,
"end": 351,
"text": "Hara et al., 2009;",
"ref_id": "BIBREF8"
},
{
"start": 352,
"end": 374,
"text": "Hanamoto et al., 2012)",
"ref_id": "BIBREF7"
},
{
"start": 420,
"end": 439,
"text": "(Ohta et al., 2002)",
"ref_id": "BIBREF15"
},
{
"start": 654,
"end": 680,
"text": "Ficler and Goldberg (2016)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Coordination in the PTB",
"sec_num": "2.3"
},
{
"text": "We use w 1:n to indicate a list of vectors w 1 , w 2 , . . . w n and w n:1 to indicate the reversed list. We use \u2022 for vector concatenation. When a discrete symbol w is used as a neural network's input, the corresponding embedding vector is assumed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Neural Networks and Notation",
"sec_num": "2.4"
},
{
"text": "A multi-layer perceptron (MLP) is a non linear classifier. In this work we take MLP to mean a classifier with a single hidden layer:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Neural Networks and Notation",
"sec_num": "2.4"
},
{
"text": "M LP (x) = V \u2022 g(W x + b)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Neural Networks and Notation",
"sec_num": "2.4"
},
{
"text": "where x is the network's input, g is an activation function such as ReLU or Sigmoid, and W , V and b are trainable parameters. Recurrent Neural Networks (RNNs) (Elman, 1990) allow the representation of arbitrary sized sequences. In this work we use LSTMs (Hochreiter and Schmidhuber, 1997) , a variant of RNN that was proven effective in many NLP tasks. LSTM(w 1:n ) is the outcome vector resulting from feeding the sequence w 1:n into the LSTM in order. A bi-directional LSTM (biLSTM) takes into account both the past w 1:i and the future w i:n when representing the element in position i:",
"cite_spans": [
{
"start": 255,
"end": 289,
"text": "(Hochreiter and Schmidhuber, 1997)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Neural Networks and Notation",
"sec_num": "2.4"
},
{
"text": "biLST M (w 1:n , i) = LST M F (w 1:i ) \u2022 LST M B (w n:i )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Neural Networks and Notation",
"sec_num": "2.4"
},
{
"text": "where LST M F reads the sequence in its regular order and LST M B reads it in reverse.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Neural Networks and Notation",
"sec_num": "2.4"
},
{
"text": "Given a coordination word in a sentence, the coordination prediction task aims to returns the two conjuncts that are connected by it, or NONE if the word does not function as a coordinating conjunction of a relevant type. 1 Figure 1 provides an example.",
"cite_spans": [],
"ref_spans": [
{
"start": 224,
"end": 232,
"text": "Figure 1",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "Task Definition and Architecture",
"sec_num": "3"
},
{
"text": "Our system works in three phases: first, we determine if the coordinating word is indeed part of a conjunction of a desired type. We then extract a ranked list of candidate conjuncts, where a candidate is a",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Task Definition and Architecture",
"sec_num": "3"
},
{
"text": "And 1 the city decided to treat its guests more like royalty or 2 rock stars than factory owners.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Sentence:",
"sec_num": null
},
{
"text": "Expected output: and 1 : NONE or 2 : (11-11) royalty ; (12-13) rock stars Sentence:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Sentence:",
"sec_num": null
},
{
"text": "The president is expected to visit Minnesota, New York and 1 North Dakota by the end of the year.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Sentence:",
"sec_num": null
},
{
"text": "Expected output: and 1 : (9-10) New York ; (12-13) North Dakota pair of spans of the form ((i, j), (l, m)). The candidates are then scored and the highest scoring pair is returned. Section 4 describes the scoring model, which is the main contribution of this work. The coordination classification and candidate extraction components are described in Section 5.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Sentence:",
"sec_num": null
},
{
"text": "Our scoring model takes into account two signals, symmetry between conjuncts and the possibility of replacing the whole coordination phrase with its participating conjuncts.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Candidate Conjunctions Scoring",
"sec_num": "4"
},
{
"text": "As noted in Section 2.1, many conjuncts spans have similar syntactic structure. However, while the similarity is clear to human readers, it is often not easy to formally define, such as in:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "\"about/IN half/NN its/PRP$ revenue/NN and/CC more/JJR than/IN half/NN its/PRP$ profit/NN\" If we could score the amount of similarity between two spans, we could use that to identify correct coordination structures. However, we do not know the similarity function. We approach this by training the similarity function in a data-dependent manner. Specifically, we train an encoder that encodes spans into vectors such that vectors of similar spans will have a small Euclidean distance between them. This architecture is similar to Siamese Networks, which are used for learning similarity functions in vision tasks (Chopra et al., 2005) . Given two spans of lengths k and m with corresponding vector sequences u 1:k and v 1:m we encode each sequences using an LSTM, and take the euclidean distance between the resulting representations:",
"cite_spans": [
{
"start": 612,
"end": 633,
"text": "(Chopra et al., 2005)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "Sym(u 1:k , v 1:m ) = ||LST M (u 1:k ) \u2212 LST M (v 1:m )||",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "The network is trained such that the distance is minimized for compatible spans and large for incompatible ones in order to learn that vectors that represent correct conjuncts are closer than vectors that do not represent conjuncts.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "What are the elements in the sequences to be compared? One choice is to take the vectors u i to correspond to embeddings of the ith POS in the span. This approach works reasonably well, but does not consider the conjuncts' syntactic structure, which may be useful as symmetry often occurs on a higher level than POS tags. For example, in: the similarity is more substantial in the third level of the tree than in the POS level.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "A way to allow the model access to higher levels of syntactic symmetry is to represent each word as the projection of the grammatical functions from the word to the root. 2 For example, the projections for the first conjunct in Figure 2 are: 2 Similar in spirit to the spines used in Carreras et al. (2008) and Shen et al. (2003) . This decomposition captures the syntactic context of each word, but does not uniquely determine the structure of the tree. To remedy this, we add to the paths special symbols, R and L, which marks the lowest common ancestors with the right and left words respectively. These are added to the path above the corresponding nodes. For example consider the following paths which corresponds to the above syntactic structure: The lowest common ancestor of \"their\" and \"risks\" is NP. Thus, R is added after NP in the path of \"their\" and L is added after NP in the path of \"risks\". Similarly, L and R are added after the VP in the \"their\" and \"cut\" paths.",
"cite_spans": [
{
"start": 284,
"end": 306,
"text": "Carreras et al. (2008)",
"ref_id": "BIBREF1"
},
{
"start": 311,
"end": 329,
"text": "Shen et al. (2003)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [
{
"start": 228,
"end": 236,
"text": "Figure 2",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "The path for each word is encoded using an LSTM receiving vector embeddings of the elements in the path from the word to the root. We then use the resulting encodings instead of the POS-tag embeddings as input to the LSTMs in the similarity function. Figure 2 depicts the complete process for the spans \"cut their risks\" and \"take profits\".",
"cite_spans": [],
"ref_spans": [
{
"start": 251,
"end": 259,
"text": "Figure 2",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "Using syntactic projections requires the syntactic structures of the conjuncts. This is obtained by running the Berkeley parser over the sentence and taking the subtree with the highest probability from the Sentence:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "Rudolph Agnew, [55 years old] and [former chairman of CGF PLC] ,was named a nonexecutive director.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "w i\u22121 w i w j w k w l w m w m+1 P re Conj1 Conj2 P ost",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "Expansions:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "Rudolph Agnew, 55 years old ,was named a nonexecutive director. Rudolph Agnew, former chairman of CGF PLC ,was named a nonexecutive director. corresponding cell in the CKY chart. 3 In both approaches, the POS embeddings are initialized with vectors that are pre-trained by running word2vec (Mikolov et al., 2013) on the POS sequences in PTB training set.",
"cite_spans": [
{
"start": 179,
"end": 180,
"text": "3",
"ref_id": null
},
{
"start": 290,
"end": 312,
"text": "(Mikolov et al., 2013)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Symmetry Component",
"sec_num": "4.1"
},
{
"text": "The replacement component is based on the observation that, in many cases, the coordination phrase can be replaced with either one of its conjuncts while still preserving a grammatical and semantically coherent sentence (Section 2.2) When attempting such a replacement on incorrect conjuncts, the resulting sentence is likely to be either syntactically or semantically incorrect. For example, in the following erroneous analysis: \"Rudolph Agnew, [55 years old] and [former chairman] of Consolidated Gold Fields PLC\" replacing the conjunction with the first conjunct results in the semantically incoherent sequence \"Rudolph Agnew, 55 years old of Consolidated Golden Fields, PLC\". 4 Our goal is to distinguish replacements resulting from correct conjuncts from those resulting from erroneous ones. To this end, we focus on the connection points. A connection point in a resulting sentence is the point where the sentence splits into two sequences that were not connected in the original sentence. For example, consider the sentence in In order to model the validity of the connection points, we represent each connection point as the concatenation of a forward and reverse LSTMs centered around that point. Specifically, for the spans in Figure 3 the two connection points are represented as:",
"cite_spans": [
{
"start": 680,
"end": 681,
"text": "4",
"ref_id": null
}
],
"ref_spans": [
{
"start": 1237,
"end": 1245,
"text": "Figure 3",
"ref_id": "FIGREF7"
}
],
"eq_spans": [],
"section": "The Replacement Component",
"sec_num": "4.2"
},
{
"text": "LST M F (Rudolph,...,old)\u2022LST M B (director,...,was,,) and LST M F (Rudolph,Agnew,,)\u2022LST M B (director,...,former)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Replacement Component",
"sec_num": "4.2"
},
{
"text": "Formally, assuming words w 1:n in a sentence with coordination at position k and conjuncts w i:j and w l:m , 5 the connection points are between w 1:j and w m+1:n ; and between w 1:i\u22121 and w l:n . The two connection points representations are then concatenated, resulting in a replacement vector:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Replacement Component",
"sec_num": "4.2"
},
{
"text": "REPL(w 1:n , i, j, l, m) = CONPOINT(w 1:n , i \u2212 1, l) \u2022 CONPOINT(w 1:n , j, m + 1)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Replacement Component",
"sec_num": "4.2"
},
{
"text": "where:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Replacement Component",
"sec_num": "4.2"
},
{
"text": "CONPOINT(w 1:n , i, j) = LST M F (w 1:i ) \u2022 LST M B (w n:j )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Replacement Component",
"sec_num": "4.2"
},
{
"text": "We use two variants of the replacement vectors, corresponding to two levels of representation. The first variant is based on the sentence's words, while the second is based on its POS-tags.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Replacement Component",
"sec_num": "4.2"
},
{
"text": "In addition to the symmetry and replacement signals, we also incorporate some scores that are derived from the Berkeley parser. As detailed in Section 5, a list of conjuncts candidates are extracted from the CKY chart of the parser. The candidates are then sorted in descending order according to the multiplication of inside and outside scores of the candidate's spans:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parser based Features",
"sec_num": "4.3"
},
{
"text": "6 I (i,j) \u00d7 O (i,j) \u00d7 I (l,m) \u00d7 O (l,m) .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parser based Features",
"sec_num": "4.3"
},
{
"text": "Each candidate {(i, j), (l, m)} is assigned two numerical features based on this ranking: its position in the ranking, and the ratio between its score and the score of the adjacent higher-ranked candidate. We add an additional binary feature indicating whether the candidate spans are in the 1-best tree predicted by the parser. These three features are denoted as F eats(i, j, l, m).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parser based Features",
"sec_num": "4.3"
},
{
"text": "Finally, the score of a candidate {(i, j), (l, m)} in a sentence with words w 1:n and POS tags p 1:n is computed as:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Final Scoring and Training",
"sec_num": "4.4"
},
{
"text": "SCORE(w 1:n , p 1:n , {(i, j), (l, m)}) = M LP ( Sym(v P ath i:j , v P ath l:m ) \u2022 Repl(w 1:n , i, j, l, m) \u2022 Repl(p 1:n , i, j, l, m) \u2022 F eats(i, j, l, m) )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Final Scoring and Training",
"sec_num": "4.4"
},
{
"text": "where v P ath i:j and v P ath l:m are the vectors resulting from the path LSTMs, and Sym, Repl and F eats are the networks defined in Sections 4.1 -4.3 above. The network is trained jointly, attempting to minimize a pairwise ranking loss function, where the loss for each training case is given by:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Final Scoring and Training",
"sec_num": "4.4"
},
{
"text": "loss = max(0, 1 \u2212 (\u0177 \u2212 y g ))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Final Scoring and Training",
"sec_num": "4.4"
},
{
"text": "where\u0177 is the highest scoring candidate and y g is the correct candidate. The model is trained on all the coordination cases in Section 2-21 in the PTB.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Final Scoring and Training",
"sec_num": "4.4"
},
{
"text": "Candidates Extraction We extract candidate spans based on the inside-outside probabilities assigned by the Berkeley parser. Specifically, to obtain candidates for conjunct span we collect spans that are marked with COORD, are adjacent to the coordinating word, and have non-zero inside or outside probabilities. We then take as candidates all possible pairs of collected spans. On the PTB dev set, this method produces 6.25 candidates for each coordinating word on average and includes the correct candidates for 94% of the coordinations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Candidates Extraction and Supporting Classifiers",
"sec_num": "5"
},
{
"text": "We decide whether a coordination word w k in a sentence w 1:n functions as a coordinator by feeding the biLSTM vector centered around w k into a logistic classifier: NP coordinations amount to about half of the coordination cases in the PTB, and previous work is often evaluated specifically on NP coordination. When evaluating on NP coordination, we depart from the unrealistic scenario used in most previous work where the type of coordination is assumed to be known a-priori, and train a specialized model for predicting the coordination type. For a coordination candidate {(i, j), (l, m)} with a coordinator w k , we predict if it is NP coordination or not by feeding a logistic classifier with a biLSTM vector centered around the coordinator and constrained to the candidate spans:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Coordination Classification",
"sec_num": null
},
{
"text": "\u03c3(v \u2022 biLSTM(w 1:n , k) + b).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Coordination Classification",
"sec_num": null
},
{
"text": "\u03c3(v \u2022 biLSTM(w i:m , k) + b).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Coordination Classification",
"sec_num": null
},
{
"text": "The training examples are coordinations in the PTB training set, where where a coordinator is considered of type NP if its head is labeled with NP or NX. Evaluating on gold coordinations results in F1 scores of 95.06 (dev) and 93.89 (test).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Coordination Classification",
"sec_num": null
},
{
"text": "We evaluate our models on their ability to identify conjunction boundaries in the extended Penn Treebank (Ficler and Goldberg, 2016) and Genia Treebank (Ohta et al., 2002) 7 .",
"cite_spans": [
{
"start": 105,
"end": 132,
"text": "(Ficler and Goldberg, 2016)",
"ref_id": "BIBREF5"
},
{
"start": 152,
"end": 173,
"text": "(Ohta et al., 2002) 7",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "When evaluating on the PTB, we compare to the conjunction boundary predictions of the generative Berkeley parser (Petrov et al., 2006) and the discriminative Zpar parser (Zhang and Clark, 2011) . When evaluating on the Genia treebank, we compare to the results of the discriminative coordination-prediction model of Hara et al. (2009) . 8",
"cite_spans": [
{
"start": 113,
"end": 134,
"text": "(Petrov et al., 2006)",
"ref_id": "BIBREF16"
},
{
"start": 170,
"end": 193,
"text": "(Zhang and Clark, 2011)",
"ref_id": "BIBREF19"
},
{
"start": 316,
"end": 334,
"text": "Hara et al. (2009)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "Baseline Our baseline is the performance of the Berkeley and Zpar parsers on the task presented in Section 3, namely: for a given coordinating word, determine the two spans that are being conjoined by it, and return NONE if the coordinator is not conjoining spans or conjoins spans that are not of the expected type. We convert predicted trees to conjunction predictions by taking the two phrases that are immediately adjacent to the coordinator on both sides (ignoring phrases that contain solely punctuation). For example, in the following Zparpredicted parse tree the conjunct prediction is (\"Feb. 8, 1990 \",\"May 10, 1990 . Cases in which the coordination word is the leftmost or right-most non-punctuation element in its phrase (e.g. (PRN (P -)(CC and)(S it's been painful)(P -))) are considered as nocoordination (\"None\").",
"cite_spans": [
{
"start": 594,
"end": 608,
"text": "(\"Feb. 8, 1990",
"ref_id": null
},
{
"start": 609,
"end": 624,
"text": "\",\"May 10, 1990",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation on PTB",
"sec_num": "6.1"
},
{
"text": "We consider two setups. In the first we are interested in all occurrences of coordination, and in the second we focus on NP coordination. The second scenario requires typed coordinations. We take the type of a parser-predicted coordination to be the type of the phrase immediately dominating the coordination word. Evaluation Metrics We measure precision and recall compared to the gold-annotated coordination spans in the extended PTB, where an example is considered correct if both conjunct boundaries match exactly. When focusing on NPs coordinations, the type of the phrase above the CC level must match as well, and phrases of type NP/NX are considered as NP coordination.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation on PTB",
"sec_num": "6.1"
},
{
"text": "Results Tables (1) and (2) summarize the results. The Berkeley and Zpar parsers perform similarly on the coordination prediction task. Our proposed model outperforms both parsers, with a test-set F 1 score of 72.7 (3.78 F 1 points gain over the better parser) when considering all coordinations, and testset F 1 score of 76.1 (4.77 F 1 points gain) when considering NP coordination.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation on PTB",
"sec_num": "6.1"
},
{
"text": "To compare our model to previous work, we evaluate also on the Genia treebank (Beta), a collection of constituency trees for 4529 sentences from Medline abstracts. The Genia treebank coordination annotation explicitly marks coordination phrases with a special function label (COOD), making the corpus an appealing resource for previous work on coordination boundary prediction (Shimbo and Hara, 2007; Hara et al., 2009; Hanamoto et al., 2012) . Following Hara et al. (2009) , we evaluate the models' ability to predict the span of the entire coordination phrase, disregarding the individual conjuncts. For example, in \"My plan is to visit Seychelles, ko Samui and Sardinia by the end of the year\" the goal is to recover \"Seychelles, ko Samui and Sardinia\". This is a recall measure. We follow the exact protocol of Hara et al. (2009) and train and evaluate the model on 3598 coordination phrases in Genia Treebank Beta and report the micro-averaged results of a five-fold cross validation run. 9 As shown by Hara et al. (2009) , syntactic parsers do not perform well on the Genia treebank. Thus, in our symmetry component we opted to not rely on predicted tree structures, and instead use the simpler option of representing each conjunct by its sequence of POS tags. To handle coordination phrases with more than two conjuncts, we extract candidates which includes up to 7 spans and integrate the first and the last span in the model features. Like Hara et al., we use gold POS.",
"cite_spans": [
{
"start": 377,
"end": 400,
"text": "(Shimbo and Hara, 2007;",
"ref_id": "BIBREF18"
},
{
"start": 401,
"end": 419,
"text": "Hara et al., 2009;",
"ref_id": "BIBREF8"
},
{
"start": 420,
"end": 442,
"text": "Hanamoto et al., 2012)",
"ref_id": "BIBREF7"
},
{
"start": 455,
"end": 473,
"text": "Hara et al. (2009)",
"ref_id": "BIBREF8"
},
{
"start": 815,
"end": 833,
"text": "Hara et al. (2009)",
"ref_id": "BIBREF8"
},
{
"start": 1013,
"end": 1026,
"text": "et al. (2009)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation on Genia",
"sec_num": "6.2"
},
{
"text": "Results Table 3 summarizes the results. Our proposed model achieves Recall score of 64.14 (2.64 Recall points gain over Hara et al.) and significantly improves the score of several coordination types.",
"cite_spans": [
{
"start": 120,
"end": 132,
"text": "Hara et al.)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 8,
"end": 15,
"text": "Table 3",
"ref_id": "TABREF6"
}
],
"eq_spans": [],
"section": "Evaluation on Genia",
"sec_num": "6.2"
},
{
"text": "The neural networks (candidate scoring model and supporting classifiers) are implemented using the pyCNN package. 10 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Technical Details",
"sec_num": "6.3"
},
{
"text": "In the supporting models we use words embedding of size 50 and the Sigmoid activation function. The LSTMs have a dimension of 50 as well. The models are trained using SGD for 10 iterations over the train-set, where samples are randomly shuffled before each iteration. We choose the model with the highest F1 score on the development set.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Technical Details",
"sec_num": "6.3"
},
{
"text": "All the LSTMs in the candidate scoring model have a dimension of 50. The input vectors for the 10 https://github.com/clab/cnn/tree/master/pycnn 300) . We train for 20 iterations over the train set, randomly shuffling the examples before each iteration. We choose the model that achieves the highest F1 score on the dev set.",
"cite_spans": [],
"ref_spans": [
{
"start": 144,
"end": 148,
"text": "300)",
"ref_id": "FIGREF7"
}
],
"eq_spans": [],
"section": "Technical Details",
"sec_num": "6.3"
},
{
"text": "Our model combines four signals: symmetry, wordlevel replacement, POS-level replacement and features from Berkeley parser. Table 4 shows the PTB dev-set performance of each sub-model in isolation. On their own, each of the components' signals is relatively weak, seldom outperforming the parsers. However, they provide complementary information, as evident by the strong performance of the joint model. Figure 4 lists correct and incorrect predictions by each of the components, indicating that the individual models are indeed capturing the patterns they were designed to capture -though these patterns do not always lead to correct predictions.",
"cite_spans": [],
"ref_spans": [
{
"start": 123,
"end": 130,
"text": "Table 4",
"ref_id": "TABREF8"
},
{
"start": 403,
"end": 411,
"text": "Figure 4",
"ref_id": "FIGREF10"
}
],
"eq_spans": [],
"section": "Analysis",
"sec_num": "7"
},
{
"text": "The similarity property between conjuncts was explored in several previous works on coordination disambiguation. Hogan (2007) incorporated this principle in a generative parsing model by changing the generative process of coordinated NPs to condition on properties of the first conjunct when generating the second one. Shimbo and Hara (2007) proposed a discriminative sequence alignment model to detect similar conjuncts. They focused on disambiguation of non-nested coordination based on the learned edit distance between two conjuncts. Their work was extended by Hara et al. (2009) to handle nested coordinations as well. The discriminative edit distance model in these works is similar in spirit to our symmetry component, but is restricted to sequences of POS-tags, and makes use of a sequence alignment algorithm. We compare our results to Hara et al.'s in Section 6.2. Hanamoto et al. (2012) extended the previous method with dual decomposition and HPSG parsing. In contrast to these symmetry-directed efforts, Kawahara et al. (2008) focuses on the dependency relations that surround the conjuncts. This kind of semantic information provides an additional signal which is complementary to the syntactic signals explored in our work. Our neural-network based model easily supports incorporation of additional signals, and we plan to explore such semantic signals in future work.",
"cite_spans": [
{
"start": 113,
"end": 125,
"text": "Hogan (2007)",
"ref_id": "BIBREF10"
},
{
"start": 319,
"end": 341,
"text": "Shimbo and Hara (2007)",
"ref_id": "BIBREF18"
},
{
"start": 565,
"end": 583,
"text": "Hara et al. (2009)",
"ref_id": "BIBREF8"
},
{
"start": 845,
"end": 897,
"text": "Hara et al.'s in Section 6.2. Hanamoto et al. (2012)",
"ref_id": null
},
{
"start": 1017,
"end": 1039,
"text": "Kawahara et al. (2008)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "8"
},
{
"text": "We presented an neural-network based model for resolving conjuncts boundaries. Our model is based on the observation that (a) conjuncts tend to be similar and (b) that replacing the coordination phrase with a conjunct results in a coherent sentence. Our models rely on syntactic information and do not incorporate resources external to the training treebanks, yet improve over state-of-the-art parsers on the coordination boundary prediction task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "9"
},
{
"text": "We consider and, or, but, nor as coordination words. In case of more than two coordinated elements (conjuncts), we focus on the two conjuncts which are closest to the coordinator.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "The parser's CKY chart did not include a tree for 10% of the candidate spans, which have inside probability 0 and outside probability > 0. For those, we obtained the syntactic structure by running the parser on the span words only.4 While uncommon, incorrect conjuncts may also result in valid sentences, e.g. \"He paid $ 7 for cold[drinks] and [pizza] that just came out of the oven.\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Usually j = k \u2212 1 and l = k + 1, but in some cases punctuation symbols may interfere.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Inside-Outside probabilities(Goodman, 1998) represent the probability of a span with a given non-terminal symbol. The inside probability I (N,i,j) is the probability of generating words wi, wi+1, ..., wj given that the root is the non-terminal N . The outside probability O(N,i,j)is the probability of generating words w1, w2, ..., wi\u22121, the non-terminal N and the words wj+1, wj+2, ..., wn with the root S.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://www-tsujii.is.s.u-tokyo.ac.jp/GENIA",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Another relevant model in the literature is(Hanamoto et al., 2012), however the results are not directly comparable as they use a slightly different definition of conjuncts, and evaluate on a subset of the Genia treebank, containing only trees that were properly converted to an HPSG formalism.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We thank Kazuo Hara for providing us with the exact details of their splits.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This work was supported by The Israeli Science Foundation (grant number 1555/15) as well as the German Research Foundation via the German-Israeli Project Cooperation (DIP, grant DA 1600/1-1).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Bracketing guidelines for treebank ii style penn treebank project",
"authors": [
{
"first": "Ann",
"middle": [],
"last": "Bies",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Ferguson",
"suffix": ""
},
{
"first": "Karen",
"middle": [],
"last": "Katz",
"suffix": ""
},
{
"first": "Robert",
"middle": [],
"last": "Mac-Intyre",
"suffix": ""
},
{
"first": "Victoria",
"middle": [],
"last": "Tredinnick",
"suffix": ""
},
{
"first": "Grace",
"middle": [],
"last": "Kim",
"suffix": ""
},
{
"first": "Mary",
"middle": [
"Ann"
],
"last": "Marcinkiewicz",
"suffix": ""
},
{
"first": "Britta",
"middle": [],
"last": "Schasberger",
"suffix": ""
}
],
"year": 1995,
"venue": "",
"volume": "97",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ann Bies, Mark Ferguson, Karen Katz, Robert Mac- Intyre, Victoria Tredinnick, Grace Kim, Mary Ann Marcinkiewicz, and Britta Schasberger. 1995. Brack- eting guidelines for treebank ii style penn treebank project. University of Pennsylvania, 97:100.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Tag, dynamic programming, and the perceptron for efficient, feature-rich parsing",
"authors": [
{
"first": "Xavier",
"middle": [],
"last": "Carreras",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "Terry",
"middle": [],
"last": "Koo",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the Twelfth Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "9--16",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xavier Carreras, Michael Collins, and Terry Koo. 2008. Tag, dynamic programming, and the perceptron for efficient, feature-rich parsing. In Proceedings of the Twelfth Conference on Computational Natural Lan- guage Learning, pages 9-16. Association for Compu- tational Linguistics.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Learning a similarity metric discriminatively, with application to face verification",
"authors": [
{
"first": "Sumit",
"middle": [],
"last": "Chopra",
"suffix": ""
},
{
"first": "Raia",
"middle": [],
"last": "Hadsell",
"suffix": ""
},
{
"first": "Yann",
"middle": [],
"last": "Lecun",
"suffix": ""
}
],
"year": 2005,
"venue": "Computer Vision and Pattern Recognition, 2005. CVPR 2005. IEEE Computer Society Conference on",
"volume": "1",
"issue": "",
"pages": "539--546",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sumit Chopra, Raia Hadsell, and Yann LeCun. 2005. Learning a similarity metric discriminatively, with ap- plication to face verification. In Computer Vision and Pattern Recognition, 2005. CVPR 2005. IEEE Com- puter Society Conference on, volume 1, pages 539- 546. IEEE.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Type raising, functional composition, and non-constituent conjunction",
"authors": [
{
"first": "David",
"middle": [],
"last": "Dowty",
"suffix": ""
}
],
"year": 1988,
"venue": "Categorial grammars and natural language structures",
"volume": "",
"issue": "",
"pages": "153--197",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Dowty. 1988. Type raising, functional compo- sition, and non-constituent conjunction. In Catego- rial grammars and natural language structures, pages 153-197. Springer.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Finding structure in time",
"authors": [
{
"first": "",
"middle": [],
"last": "Jeffrey L Elman",
"suffix": ""
}
],
"year": 1990,
"venue": "Cognitive science",
"volume": "14",
"issue": "",
"pages": "179--211",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jeffrey L Elman. 1990. Finding structure in time. Cog- nitive science, 14(2):179-211.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Coordination annotation extension in the penn tree bank. Association for Computational Linguistics",
"authors": [
{
"first": "Jessica",
"middle": [],
"last": "Ficler",
"suffix": ""
},
{
"first": "Yoav",
"middle": [],
"last": "Goldberg",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jessica Ficler and Yoav Goldberg. 2016. Coordination annotation extension in the penn tree bank. Associa- tion for Computational Linguistics.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Coordination structure analysis using dual decomposition",
"authors": [
{
"first": "Atsushi",
"middle": [],
"last": "Hanamoto",
"suffix": ""
},
{
"first": "Takuya",
"middle": [],
"last": "Matsuzaki",
"suffix": ""
},
{
"first": "Jun'ichi",
"middle": [],
"last": "Tsujii",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of the 13th Conference of the European Chapter of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "430--438",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Atsushi Hanamoto, Takuya Matsuzaki, and Jun'ichi Tsu- jii. 2012. Coordination structure analysis using dual decomposition. In Proceedings of the 13th Conference of the European Chapter of the Association for Com- putational Linguistics, pages 430-438. Association for Computational Linguistics.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Coordinate structure analysis with global structural constraints and alignment-based local features",
"authors": [
{
"first": "Kazuo",
"middle": [],
"last": "Hara",
"suffix": ""
},
{
"first": "Masashi",
"middle": [],
"last": "Shimbo",
"suffix": ""
},
{
"first": "Hideharu",
"middle": [],
"last": "Okuma",
"suffix": ""
},
{
"first": "Yuji",
"middle": [],
"last": "Matsumoto",
"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": "2",
"issue": "",
"pages": "967--975",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kazuo Hara, Masashi Shimbo, Hideharu Okuma, and Yuji Matsumoto. 2009. Coordinate structure analysis with global structural constraints and alignment-based local features. 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 2-Volume 2, pages 967-975. Association for Computational Linguistics.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Long short-term memory",
"authors": [
{
"first": "Sepp",
"middle": [],
"last": "Hochreiter",
"suffix": ""
},
{
"first": "J\u00fcrgen",
"middle": [],
"last": "Schmidhuber",
"suffix": ""
}
],
"year": 1997,
"venue": "Neural computation",
"volume": "9",
"issue": "8",
"pages": "1735--1780",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sepp Hochreiter and J\u00fcrgen Schmidhuber. 1997. Long short-term memory. Neural computation, 9(8):1735- 1780.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Coordinate noun phrase disambiguation in a generative parsing model",
"authors": [
{
"first": "Deirdre",
"middle": [],
"last": "Hogan",
"suffix": ""
}
],
"year": 2007,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Deirdre Hogan. 2007. Coordinate noun phrase disam- biguation in a generative parsing model. Association for Computational Linguistics.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "The cambridge grammar of english. Language. Cambridge",
"authors": [
{
"first": "Rodney",
"middle": [],
"last": "Huddleston",
"suffix": ""
},
{
"first": "Geoffrey",
"middle": [
"K"
],
"last": "Pullum",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rodney Huddleston, Geoffrey K Pullum, et al. 2002. The cambridge grammar of english. Language. Cam- bridge: Cambridge University Press, page 1275.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Coordination disambiguation without any similarities",
"authors": [
{
"first": "Daisuke",
"middle": [],
"last": "Kawahara",
"suffix": ""
},
{
"first": "Sadao",
"middle": [],
"last": "Kurohashi",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the 22nd International Conference on Computational Linguistics",
"volume": "1",
"issue": "",
"pages": "425--432",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Daisuke Kawahara and Sadao Kurohashi. 2008. Coor- dination disambiguation without any similarities. In Proceedings of the 22nd International Conference on Computational Linguistics-Volume 1, pages 425-432. Association for Computational Linguistics.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Building a large annotated corpus of english: The penn treebank",
"authors": [
{
"first": "P",
"middle": [],
"last": "Mitchell",
"suffix": ""
},
{
"first": "Mary",
"middle": [
"Ann"
],
"last": "Marcus",
"suffix": ""
},
{
"first": "Beatrice",
"middle": [],
"last": "Marcinkiewicz",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Santorini",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational linguistics",
"volume": "19",
"issue": "2",
"pages": "313--330",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mitchell P Marcus, Mary Ann Marcinkiewicz, and Beat- rice Santorini. 1993. Building a large annotated cor- pus of english: The penn treebank. Computational lin- guistics, 19(2):313-330.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Efficient estimation of word representations in vector space",
"authors": [
{
"first": "Tomas",
"middle": [],
"last": "Mikolov",
"suffix": ""
},
{
"first": "Kai",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Greg",
"middle": [],
"last": "Corrado",
"suffix": ""
},
{
"first": "Jeffrey",
"middle": [],
"last": "Dean",
"suffix": ""
}
],
"year": 2013,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1301.3781"
]
},
"num": null,
"urls": [],
"raw_text": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. 2013. Efficient estimation of word representa- tions in vector space. arXiv preprint arXiv:1301.3781.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "The genia corpus: An annotated research abstract corpus in molecular biology domain",
"authors": [
{
"first": "Tomoko",
"middle": [],
"last": "Ohta",
"suffix": ""
},
{
"first": "Yuka",
"middle": [],
"last": "Tateisi",
"suffix": ""
},
{
"first": "Jin-Dong",
"middle": [],
"last": "Kim",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the second international conference on Human Language Technology Research",
"volume": "",
"issue": "",
"pages": "82--86",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tomoko Ohta, Yuka Tateisi, and Jin-Dong Kim. 2002. The genia corpus: An annotated research abstract cor- pus in molecular biology domain. In Proceedings of the second international conference on Human Lan- guage Technology Research, pages 82-86. Morgan Kaufmann Publishers Inc.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Learning accurate, compact, and interpretable tree annotation",
"authors": [
{
"first": "Slav",
"middle": [],
"last": "Petrov",
"suffix": ""
},
{
"first": "Leon",
"middle": [],
"last": "Barrett",
"suffix": ""
},
{
"first": "Romain",
"middle": [],
"last": "Thibaux",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Klein",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the 21st International Conference on Computational Linguistics and the 44th annual meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "433--440",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Slav Petrov, Leon Barrett, Romain Thibaux, and Dan Klein. 2006. Learning accurate, compact, and inter- pretable tree annotation. In Proceedings of the 21st International Conference on Computational Linguis- tics and the 44th annual meeting of the Association for Computational Linguistics, pages 433-440. Associa- tion for Computational Linguistics.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Using ltag based features in parse reranking",
"authors": [
{
"first": "Libin",
"middle": [],
"last": "Shen",
"suffix": ""
},
{
"first": "Anoop",
"middle": [],
"last": "Sarkar",
"suffix": ""
},
{
"first": "Aravind K",
"middle": [],
"last": "Joshi",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 2003 conference on Empirical methods in natural language processing",
"volume": "",
"issue": "",
"pages": "89--96",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Libin Shen, Anoop Sarkar, and Aravind K Joshi. 2003. Using ltag based features in parse reranking. In Pro- ceedings of the 2003 conference on Empirical methods in natural language processing, pages 89-96. Associ- ation for Computational Linguistics.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "A discriminative learning model for coordinate conjunctions",
"authors": [
{
"first": "Masashi",
"middle": [],
"last": "Shimbo",
"suffix": ""
},
{
"first": "Kazuo",
"middle": [],
"last": "Hara",
"suffix": ""
}
],
"year": 2007,
"venue": "EMNLP-CoNLL",
"volume": "",
"issue": "",
"pages": "610--619",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Masashi Shimbo and Kazuo Hara. 2007. A discrimi- native learning model for coordinate conjunctions. In EMNLP-CoNLL, pages 610-619.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Syntactic processing using the generalized perceptron and beam search",
"authors": [
{
"first": "Yue",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Stephen",
"middle": [],
"last": "Clark",
"suffix": ""
}
],
"year": 2011,
"venue": "Computational linguistics",
"volume": "37",
"issue": "1",
"pages": "105--151",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yue Zhang and Stephen Clark. 2011. Syntactic process- ing using the generalized perceptron and beam search. Computational linguistics, 37(1):105-151.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"num": null,
"text": "Berkeley: \"He has the government's blessing to [build churches] and [spread Unificationism in that country].\" Zpar: \"He [has the government's blessing to build churches] and [spread Unificationism in that country].\"",
"uris": null
},
"FIGREF2": {
"type_str": "figure",
"num": null,
"text": "The coordination prediction task.",
"uris": null
},
"FIGREF3": {
"type_str": "figure",
"num": null,
"text": "Illustration of the symmetry scoring component that takes into account the conjuncts syntactic structures. Each conjunct tree is decomposed into paths that are fed into the path-LSTMs (squares). The resulting vectors are fed into the symmetry LSTM function (circles). The outcome vectors (blue circles) are then fed into the euclidean distance function.",
"uris": null
},
"FIGREF7": {
"type_str": "figure",
"num": null,
"text": "The correct conjuncts spans of the coordinator and in the sentence and the outcome expansions.",
"uris": null
},
"FIGREF8": {
"type_str": "figure",
"num": null,
"text": "Figure 3. It has four parts, marked as Pre, Conj1, Conj2 and Post. Replacing the coordination phrase Conj1 and Conj2 with Conj2 results in a connection point between Pre and Conj2. Likewise, replacing the coordination phrase with Conj1 results in connection point between Conj1 and Post.",
"uris": null
},
"FIGREF10": {
"type_str": "figure",
"num": null,
"text": "Correct in incorrect predictions by the individual components.",
"uris": null
},
"TABREF0": {
"type_str": "table",
"text": "The training examples are all the coordination words (marked with CC) in the PTB training set. The model achieves 99.46 F1 on development set and 99.19 F1 on test set.",
"content": "<table/>",
"html": null,
"num": null
},
"TABREF1": {
"type_str": "table",
"text": "Berkeley 70.14 70.72 70.42 68.52 69.33 68.92 Zpar 72.21 72.72 72.46 68.24 69.42 68.82 Ours 72.34 72.25 72.29 72.81 72.61 72.7",
"content": "<table><tr><td/><td>Dev</td><td/><td/><td>Test</td><td/></tr><tr><td>P</td><td>R</td><td>F</td><td>P</td><td>R</td><td>F</td></tr></table>",
"html": null,
"num": null
},
"TABREF2": {
"type_str": "table",
"text": "Coordination prediction on PTB (All coordinations).",
"content": "<table><tr><td/><td/><td>Dev</td><td/><td/><td>Test</td></tr><tr><td/><td>P</td><td>R</td><td>F</td><td>P</td><td>R</td><td>F</td></tr><tr><td colspan=\"7\">Berkeley 67.53 70.93 69.18 69.51 72.61 71.02</td></tr><tr><td>Zpar</td><td colspan=\"6\">69.14 72.31 70.68 69.81 72.92 71.33</td></tr><tr><td>Ours</td><td colspan=\"6\">75.17 74.82 74.99 76.91 75.31 76.1</td></tr></table>",
"html": null,
"num": null
},
"TABREF3": {
"type_str": "table",
"text": "Coordination prediction on PTB (NP coordinations).",
"content": "<table/>",
"html": null,
"num": null
},
"TABREF4": {
"type_str": "table",
"text": "Everyone was concerned about the [general narrowness of the rally] and [failure of the OTC market] to get into plus territory. Rep w Correct: The newsletter said [she is 44 years old] and [she studied at the University of Puerto Rico School of Medicine]. Incorrect: But Robert Showalter said no special [bulletins] or [emergency meetings of the investors' clubs] are planned . On the Big Board floor] and [on trading desks], traders yelped their approval. Incorrect: It suddenly burst upward 7.5 as Goldman, Sachs & Co. [stepped in] and [bought almost] every share offer, traders said.",
"content": "<table><tr><td>Correct: Incorrect: Rep p Sym Correct:</td><td>Retail sales volume was [down 0.5% from the previous three months] and [up 1.2% from a year earlier]. [</td></tr></table>",
"html": null,
"num": null
},
"TABREF6": {
"type_str": "table",
"text": "Recall on the Beta version of Genia corpus. Numbers for Hara et al. are taken from their paper.",
"content": "<table/>",
"html": null,
"num": null
},
"TABREF8": {
"type_str": "table",
"text": "Performance of the individual components on PTB",
"content": "<table><tr><td>section 22 (dev). Sym: Symmetry. Repp: POS replace-</td></tr><tr><td>ment. Repw: Word replacement. Feats: features extracted from</td></tr><tr><td>Berkeley parser. Joint: the complete model.</td></tr><tr><td>symmetry LSTM is of size 50 as well. The MLP</td></tr><tr><td>in the candidate scoring model uses the Relu acti-</td></tr><tr><td>vation function, and the model is trained using the</td></tr><tr><td>Adam optimizer. The words and POS embeddings</td></tr><tr><td>are shared between the symmetry and replacment</td></tr><tr><td>components. The syntactic label embeddings are for</td></tr><tr><td>the path-encoding LSTM, We perform grid search</td></tr><tr><td>with 5 different seeds and the following: [1] MLP</td></tr><tr><td>hidden layer size (100, 200, 400); [2] input embed-</td></tr><tr><td>dings size for words, POS and syntactic labels (100,</td></tr></table>",
"html": null,
"num": null
}
}
}
}