| { |
| "paper_id": "D14-1045", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T15:54:08.385826Z" |
| }, |
| "title": "Composition of Word Representations Improves Semantic Role Labelling", |
| "authors": [ |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Roth", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of Edinburgh", |
| "location": {} |
| }, |
| "email": "mroth@inf.ed.ac.uk" |
| }, |
| { |
| "first": "Kristian", |
| "middle": [], |
| "last": "Woodsend", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of Edinburgh", |
| "location": {} |
| }, |
| "email": "kwoodsen@inf.ed.ac.uk" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "State-of-the-art semantic role labelling systems require large annotated corpora to achieve full performance. Unfortunately, such corpora are expensive to produce and often do not generalize well across domains. Even in domain, errors are often made where syntactic information does not provide sufficient cues. In this paper, we mitigate both of these problems by employing distributional word representations gathered from unlabelled data. While straightforward word representations of predicates and arguments improve performance, we show that further gains are achieved by composing representations that model the interaction between predicate and argument, and capture full argument spans.", |
| "pdf_parse": { |
| "paper_id": "D14-1045", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "State-of-the-art semantic role labelling systems require large annotated corpora to achieve full performance. Unfortunately, such corpora are expensive to produce and often do not generalize well across domains. Even in domain, errors are often made where syntactic information does not provide sufficient cues. In this paper, we mitigate both of these problems by employing distributional word representations gathered from unlabelled data. While straightforward word representations of predicates and arguments improve performance, we show that further gains are achieved by composing representations that model the interaction between predicate and argument, and capture full argument spans.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "The goal of semantic role labelling (SRL) is to discover the relations that hold between a predicate and its arguments in a given input sentence (e.g., \"who\" did \"what\" to \"whom\", \"when\", \"where\", and \"how\"). This semantic knowledge at the predicate-argument level is required by inference-based NLP tasks in order to identify meaning-preserving transformations, such as active/passive, verb alternations and nominalizations. Several manually-build semantic resources, including FrameNet (Ruppenhofer et al., 2010) and PropBank (Palmer et al., 2005) , have been developed with the goal of documenting and providing examples of such transformations and how they preserve semantic role information. Given that labelled corpora are inevitably restricted in size and coverage, and that syntactic cues are not by themselves unambiguous or sufficient, the success of systems that automatically provide corresponding analyses has been limited in practice.", |
| "cite_spans": [ |
| { |
| "start": 488, |
| "end": 514, |
| "text": "(Ruppenhofer et al., 2010)", |
| "ref_id": "BIBREF24" |
| }, |
| { |
| "start": 528, |
| "end": 549, |
| "text": "(Palmer et al., 2005)", |
| "ref_id": "BIBREF22" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Recent work on SRL has explored approaches that can leverage unlabelled data, following a semi-supervised (F\u00fcrstenau and Lapata, 2012; Titov and Klementiev, 2012) or unsupervised learning paradigm (Abend et al., 2009; Titov and Klementiev, 2011) . Unlabelled data provides additional statistical strength and can lead to more consistent models. For instance, latent representations of words can be computed, based on distributional similarity or language modelling, which can be used as additional features during traditional supervised learning. Although we would expect that extra features would improve classifier performance, this seems in part counter-intuitive. Just because one word has a specific representation does not mean that it should be assigned a specific argument label. Instead, one would expect a more complex interplay between predicate, argument and the context they appear in.", |
| "cite_spans": [ |
| { |
| "start": 106, |
| "end": 134, |
| "text": "(F\u00fcrstenau and Lapata, 2012;", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 135, |
| "end": 162, |
| "text": "Titov and Klementiev, 2012)", |
| "ref_id": "BIBREF27" |
| }, |
| { |
| "start": 197, |
| "end": 217, |
| "text": "(Abend et al., 2009;", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 218, |
| "end": 245, |
| "text": "Titov and Klementiev, 2011)", |
| "ref_id": "BIBREF26" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In this paper, we investigate the impact of distributional word representations for SRL. Initially, we augment the feature space with word representations for a predicate and its argument head. Furthermore, we use a compositional approach to model a representation of the full argument, by composing a joint representation of all words in the argument span, and we also investigate the interaction between predicate and argument, using a compositional representation of the dependency path. We demonstrate the benefits of these compositional features using a state-of-the-art semantic role labeller, which we evaluate on the English part of the CoNLL-2009 data set.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Research into using distributional information in SRL dates back to Gildea and Jurafsky (2002) , who used distributions over verb-object co-occurrence clusters to improve coverage in argument classification. The distribution of a word over these soft clusters assignments was added as features to their classifier. The SRL system by Croce et al. (2010) combines argument clustering based on co-occurrence frequencies with a language model. Collobert et al. (2011) used distributional word representations in a neural network model that can update representations during training. Zapirain et al. 2013suggested distributional information as a basis for a selectional preference model that can be used as a single additional feature for classifying potential arguments. Most recently, Hermann et al. (2014) used distributional word representations within pre-defined syntactic contexts as input to a classifier which learns to distinguish different predicate senses.", |
| "cite_spans": [ |
| { |
| "start": 68, |
| "end": 94, |
| "text": "Gildea and Jurafsky (2002)", |
| "ref_id": "BIBREF13" |
| }, |
| { |
| "start": 333, |
| "end": 352, |
| "text": "Croce et al. (2010)", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 440, |
| "end": 463, |
| "text": "Collobert et al. (2011)", |
| "ref_id": "BIBREF7" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "A complementary line of research explores the representation of sequence information. Prominent examples are the works by Deschacht and Moens (2009) and Huang and Yates (2010) who learned and applied Hidden Markov Models to assign state variables to words and word spans, which serve as supplementary features for classification. One drawback of this approach is that state variables are discrete and the number of states (i.e., their granularity) has to be chosen in advance.", |
| "cite_spans": [ |
| { |
| "start": 122, |
| "end": 148, |
| "text": "Deschacht and Moens (2009)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 153, |
| "end": 175, |
| "text": "Huang and Yates (2010)", |
| "ref_id": "BIBREF16" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The popularity of distributional methods for word representation has been a motivation for developing representations of larger constructions such as phrases and sentences, and there have been several proposals for computing the meaning of word combinations in vector spaces. Mitchell and Lapata (2010) introduced a general framework where composition is formulated as a function f of two vectors u and v. Depending on how f is chosen, different composition models arise, the simplest being an additive model where f (u, v) = u + v. To capture relational functions, Baroni and Zamparelli (2010) expanded on this approach by representing verbs, adjectives and adverbs by matrices which can modify the properties of nouns (represented by vectors). combined word representations with syntactic structure information, through a recursive neural network that learns vector space representations for multi-word phrases and sentences. An empirical comparison of these composition methods was provided in (Blacoe and Lapata, 2012) .", |
| "cite_spans": [ |
| { |
| "start": 276, |
| "end": 302, |
| "text": "Mitchell and Lapata (2010)", |
| "ref_id": "BIBREF20" |
| }, |
| { |
| "start": 566, |
| "end": 594, |
| "text": "Baroni and Zamparelli (2010)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 997, |
| "end": 1022, |
| "text": "(Blacoe and Lapata, 2012)", |
| "ref_id": "BIBREF4" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "In this work, we use type-based continuous representations of words to compose representations of multiple word sequences and spans, which can then be incorporated directly as features into SRL systems.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Work", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Computation ", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Distributional Feature", |
| "sec_num": null |
| }, |
| { |
| "text": "Argument a a Predicate p p Predicate-argument Interaction a + p Argument Span w 1 . . . w n \u03a3 i w i Dependency Path from a to p \u03a3 w\u2208path(a,p) w", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Distributional Feature", |
| "sec_num": null |
| }, |
| { |
| "text": "Following the set-up of the CoNLL shared task in 2009, we consider predicate-argument structures that consist of a verbal or nominal predicate p and PropBank-labelled arguments a i \u2208 {a 1 . . . a n }, where each a i corresponds to the head word of the phrase that constitutes the respective argument. Traditional semantic role labelling approaches compute a set of applicable features on each pair p, a i , such as the observed lemma type of a word and the grammatical relation to its head, that serve as indicators for a particular role label. The disadvantage of this approach lies in the fact that indicator features such as word and lemma type are often sparse in training data and hence do not generalize well across domains. In contrast, features based on distributional representations (e.g., raw co-occurrence frequencies) can be computed for every word, given that it occurs in some unlabelled corpus. In addition to this obvious advantage for out-of-domain settings, distributional representations can provide a more robust input signal to the classifier, for instance by projecting a matrix of co-occurrence frequencies to a lower-dimensional space. We hence hypothesize that such features enable the model to become more robust out-of-domain, while providing higher precision in-domain.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Method", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Although simply including the components of a word representation as features to a classifier can lead to immediate improvements in SRL performance, this observation seems in part counterintuitive. Just because one word has a specific representation does not mean that it should be assigned a specific argument label. In fact, one would expect a more complex interplay between the representation of an argument a i and the context it appears in. To model aspects of this interplay, we define an extended set of features that further includes representations for the combination of p and a i , the set of words in the dependency path between p and a i , and the set of words in the full span of a i . We compute additive compositional representations of multiple words, using the simplest method of Mitchell and Lapata (2010) where the composed representation is the uniformly weighted sum of each single representation. Our full set of feature types based on distributional word representations is listed in Table 1 .", |
| "cite_spans": [ |
| { |
| "start": 798, |
| "end": 824, |
| "text": "Mitchell and Lapata (2010)", |
| "ref_id": "BIBREF20" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 1008, |
| "end": 1015, |
| "text": "Table 1", |
| "ref_id": "TABREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Method", |
| "sec_num": "3" |
| }, |
| { |
| "text": "We evaluate the impact of different types of features by performing experiments on a benchmark dataset for semantic role labelling. To assess the gains of distributional representations realistically, we incorporate the features described in Section 3 into a state-of-the-art SRL system. The following paragraphs summarize the details of our experimental setup.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Semantic Role Labeller. In all our experiments, we use the publicly available system by Bj\u00f6rkelund et al. (2010) . 1 This system combines the first-ranked SRL system and the firstranked syntactic parser in the CoNLL 2009 shared task for English (Bj\u00f6rkelund et al., 2009; Bohnet, 2010) . To the best of our knowledge, this combination represents the current state-of-the-art for semantic role labelling following the Prop-Bank/NomBank paradigm (Palmer et al., 2005; Meyers et al., 2004) . To re-train and evaluate models with different feature sets, we use the same training, development and test sets as provided in the CoNLL shared task (Haji\u010d et al., 2009) . Although the employed system features a full syntactic-semantic parsing pipeline, we only modify the feature sets of the two components directly related to the actual role labelling task, namely argument identification and argument classification.", |
| "cite_spans": [ |
| { |
| "start": 88, |
| "end": 112, |
| "text": "Bj\u00f6rkelund et al. (2010)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 115, |
| "end": 116, |
| "text": "1", |
| "ref_id": null |
| }, |
| { |
| "start": 245, |
| "end": 270, |
| "text": "(Bj\u00f6rkelund et al., 2009;", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 271, |
| "end": 284, |
| "text": "Bohnet, 2010)", |
| "ref_id": "BIBREF5" |
| }, |
| { |
| "start": 443, |
| "end": 464, |
| "text": "(Palmer et al., 2005;", |
| "ref_id": "BIBREF22" |
| }, |
| { |
| "start": 465, |
| "end": 485, |
| "text": "Meyers et al., 2004)", |
| "ref_id": "BIBREF19" |
| }, |
| { |
| "start": 638, |
| "end": 658, |
| "text": "(Haji\u010d et al., 2009)", |
| "ref_id": "BIBREF14" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Word Representations. As a baseline, we simply added as features the word representations of the predicate and argument head involved in a classification decision (first two lines in Table 1 ). We experimented with a range of publicly available sets of word representations, including embeddings from various neural language models (Mnih and Hinton, 2009; Collobert et al., 2011; Huang et al., 2012) , eigenvectors (Dhillon et al., 2011) , Brown clusters (Brown et al., 1992) , and post-processed co-occurrence counts (Lebret and Collobert, 2014) . Results on the development set for various off-the-shelf representations are shown in Table 2 . The numbers reveal that any kind of word representation can be employed to improve results. We choose to perform all follow-up experiments using the 50-dimensional embeddings induced by Turian et al. (2010) , using the method by Collobert et al., as they led to slightly better results in F 1 -score than other representations. No significant differences were observed, however, using other types of representations or vector sizes.", |
| "cite_spans": [ |
| { |
| "start": 332, |
| "end": 355, |
| "text": "(Mnih and Hinton, 2009;", |
| "ref_id": "BIBREF21" |
| }, |
| { |
| "start": 356, |
| "end": 379, |
| "text": "Collobert et al., 2011;", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 380, |
| "end": 399, |
| "text": "Huang et al., 2012)", |
| "ref_id": "BIBREF17" |
| }, |
| { |
| "start": 415, |
| "end": 437, |
| "text": "(Dhillon et al., 2011)", |
| "ref_id": "BIBREF10" |
| }, |
| { |
| "start": 455, |
| "end": 475, |
| "text": "(Brown et al., 1992)", |
| "ref_id": "BIBREF6" |
| }, |
| { |
| "start": 518, |
| "end": 546, |
| "text": "(Lebret and Collobert, 2014)", |
| "ref_id": "BIBREF18" |
| }, |
| { |
| "start": 831, |
| "end": 851, |
| "text": "Turian et al. (2010)", |
| "ref_id": "BIBREF28" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 183, |
| "end": 190, |
| "text": "Table 1", |
| "ref_id": "TABREF0" |
| }, |
| { |
| "start": 635, |
| "end": 642, |
| "text": "Table 2", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Experimental Setup", |
| "sec_num": "4" |
| }, |
| { |
| "text": "We evaluate our proposed set of additional features on the CoNLL-2009 in-domain and out-ofdomain test sets, using the aforementioned SRL system and word representations. All results are computed using the system's built-in preprocessing pipeline and re-trained models for argument identification and classification. We report labelled precision, recall and semantic F1-score as computed by the official scorer. The upper part of Table 3 shows SRL performance on the in-domain CoNLL-2009 test set, with and without (Original) additional features based on distributional representations. The results reveal that any type of additional feature helps to improve precision and recall in this setting (from 85.2% F 1 -score up to 85.5%), with significant gains for 4 of the 5 additional features (computed using a randomization test; cf. Yeh, 2000) . Interestingly, we find that the features do not seem to have a cumulative effect here, as indicated by the results with all features (+All, 85.5% F 1 ). We conjecture that this is due to the high volume of existing in-domain training data, which renders our full feature set redundant. To test this conjecture, we further assess performance on the out-ofdomain test set of the CoNLL-2009 shared task.", |
| "cite_spans": [ |
| { |
| "start": 832, |
| "end": 842, |
| "text": "Yeh, 2000)", |
| "ref_id": "BIBREF29" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 429, |
| "end": 436, |
| "text": "Table 3", |
| "ref_id": "TABREF3" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "5" |
| }, |
| { |
| "text": "The results for the out-of-domain experiment are summarized in the lower part of Table 3 . We again observe that each single feature type improves classification, with absolute gains being slightly higher than in the in-domain setting. More interestingly though, we find that the complete feature set boosts performance even further, achieving an overall gain in precision and recall of 0.6 and 1.3 percentage points, respectively. The resulting F 1 -score of 75.2 lies even higher than the top score for this particular data set reported in the CoNLL shared task (Zhao et al., 2009; 74 .6 F 1 ).", |
| "cite_spans": [ |
| { |
| "start": 564, |
| "end": 583, |
| "text": "(Zhao et al., 2009;", |
| "ref_id": "BIBREF31" |
| }, |
| { |
| "start": 584, |
| "end": 586, |
| "text": "74", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 81, |
| "end": 88, |
| "text": "Table 3", |
| "ref_id": "TABREF3" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "5" |
| }, |
| { |
| "text": "We next investigate the benefits of compositional representations over features for single words by assessing their impact on the overall result in an ablation study. Table 4 : Results of an ablation study over features based on compositional representations. All numbers in percent.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 167, |
| "end": 174, |
| "text": "Table 4", |
| "ref_id": "TABREF4" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "5" |
| }, |
| { |
| "text": "a considerable loss in recall, indicating the importance of including compositional word representations and confirming our intuition that they can provide additional gains over simple type-level representations. In the next section, we discuss this result in more detail and provide examples of improved classification decisions.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "5" |
| }, |
| { |
| "text": "As a more detailed qualitative analysis, we examined the impact of word representations on SRL performance with respect to different argument labels and predicate types. Results on the in-domain data set, shown in the upper part of Table 5 , suggest that most improvements in terms of precision are gained for verbal predicates, while nominal predicates primarily benefit from higher recall. One reason for the latter observation might be that arguments of nominal predicates are generally much harder to identify for the Original model, as the cues provided by indicator features on words and syntax are often inconclusive. For verbal predicates, the word representations mainly provide reinforcing signals to the classifier, improving its precision at a slight cost of recall.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 232, |
| "end": 239, |
| "text": "Table 5", |
| "ref_id": "TABREF7" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Discussion", |
| "sec_num": "6" |
| }, |
| { |
| "text": "The results on the out-of-domain data set provide more insights regarding the suitability of word representations for generalization. As shown in the lower half of Table 5 , the additional features on average have a positive impact on precision and recall. For verbal predicates, we observe only one case, namely A0, in which improvements in recall came with a decline in precision. Regarding nominal predicates, the trend is similar to what we have seen in the in-domain setting, with most gains being achieved in terms of recall.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 164, |
| "end": 171, |
| "text": "Table 5", |
| "ref_id": "TABREF7" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Discussion", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Apart from assessing quantitative effects, we further examined cases that directly show the qualitative gains of the compositional features defined in Section 3. Table 6 lists examples from the out-of-domain data set that were misclassified by the Original model but could be correctly predicted using our enhanced feature set. As illustrated by Examples (1) and (2), the Interaction feature seems to help recall by guiding classification decisions towards more meaningful and complete structures. Improvements using the Path feature can be observed in cases where nested syntactic structures need to be processed, as required in Example (2). In another instance, Example (3), the following path is predicted between argument and predicate: He SBJ \u2212\u2192 rose COORD \u2190\u2212\u2212\u2212 and CONJ \u2190\u2212\u2212 went OPRD \u2190\u2212\u2212 to IM \u2190 \u2212 have.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 162, |
| "end": 169, |
| "text": "Table 6", |
| "ref_id": "TABREF6" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Discussion", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Such cases are particularly problematic for the Original model because long and potentially erroneous paths are sparse in the training data. Further gains in performance are achieved using the Span feature, which enables the model to better handle infrequent and out-of-vocabulary words occurring in an argument span, including \"hours\" and \"softly\" in Example (4) and (5), respectively.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Discussion", |
| "sec_num": "6" |
| }, |
| { |
| "text": "In this paper, we proposed to enhance the feature space of a state-of-the-art semantic role labeller by applying and composing distributional word representations. Our results indicate that combining such features with standard syntactic cues leads to more precise and more robust models, with significant improvements both in-domain and out-ofdomain. Ablation tests on an out-of-domain data set have shown that gains in recall are mostly due to features based on composed representations. Given the novelty of these features for SRL, we believe that this insight is remarkable and deserves further investigation. In future work, we plan to apply more sophisticated models of compositionality to better represent predicate-argument structures and to guide classification decisions towards outcomes that are semantically more plausible. We anticipate that this line of research will also be of interest for a range of related tasks beyond traditional SRL, including predicate-argument structure alignment (Roth and Frank, 2012) and implicit argument linking (Gerber and Chai, 2012) .", |
| "cite_spans": [ |
| { |
| "start": 1004, |
| "end": 1026, |
| "text": "(Roth and Frank, 2012)", |
| "ref_id": "BIBREF23" |
| }, |
| { |
| "start": 1057, |
| "end": 1080, |
| "text": "(Gerber and Chai, 2012)", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusions", |
| "sec_num": "7" |
| }, |
| { |
| "text": "http://code.google.com/p/mate-tools/ 2 http://metaoptimize.com/projects/wordreprs/ 3 http://ai.stanford.edu/%7eehhuang/ 4 http://lebret.ch/words/ 5 http://www.cis.upenn.edu/%7eungar/eigenwords/", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "This work has been supported by the FP7 Collaborative Project S-CASE (Grant Agreement No 610717) funded by the European Commission (Michael Roth), and by EPSRC (EP/K017845/1) in the framework of the CHIST-ERA READERS project (Kristian Woodsend).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgements", |
| "sec_num": null |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Unsupervised argument identification for semantic role labeling", |
| "authors": [ |
| { |
| "first": "Omri", |
| "middle": [], |
| "last": "Abend", |
| "suffix": "" |
| }, |
| { |
| "first": "Roi", |
| "middle": [], |
| "last": "Reichart", |
| "suffix": "" |
| }, |
| { |
| "first": "Ari", |
| "middle": [], |
| "last": "Rappoport", |
| "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": "", |
| "issue": "", |
| "pages": "28--36", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Omri Abend, Roi Reichart, and Ari Rappoport. 2009. Unsupervised argument identification for semantic role labeling. In Proceedings of the Joint Confer- ence of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Lan- guage Processing of the AFNLP, pages 28-36, Sun- tec, Singapore, August.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Nouns are vectors, adjectives are matrices: Representing adjective-noun constructions in semantic space", |
| "authors": [ |
| { |
| "first": "Marco", |
| "middle": [], |
| "last": "Baroni", |
| "suffix": "" |
| }, |
| { |
| "first": "Roberto", |
| "middle": [], |
| "last": "Zamparelli", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the 2010 Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "1183--1193", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Marco Baroni and Roberto Zamparelli. 2010. Nouns are vectors, adjectives are matrices: Representing adjective-noun constructions in semantic space. In Proceedings of the 2010 Conference on Empirical Methods in Natural Language Processing, pages 1183-1193, Cambridge, MA, October. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Multilingual semantic role labeling", |
| "authors": [ |
| { |
| "first": "Anders", |
| "middle": [], |
| "last": "Bj\u00f6rkelund", |
| "suffix": "" |
| }, |
| { |
| "first": "Love", |
| "middle": [], |
| "last": "Hafdell", |
| "suffix": "" |
| }, |
| { |
| "first": "Pierre", |
| "middle": [], |
| "last": "Nugues", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the Thirteenth Conference on Computational Natural Language Learning: Shared Task", |
| "volume": "", |
| "issue": "", |
| "pages": "43--48", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Anders Bj\u00f6rkelund, Love Hafdell, and Pierre Nugues. 2009. Multilingual semantic role labeling. In Pro- ceedings of the Thirteenth Conference on Compu- tational Natural Language Learning: Shared Task, pages 43-48. Association for Computational Lin- guistics.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "A high-performance syntactic and semantic dependency parser", |
| "authors": [ |
| { |
| "first": "Anders", |
| "middle": [], |
| "last": "Bj\u00f6rkelund", |
| "suffix": "" |
| }, |
| { |
| "first": "Bernd", |
| "middle": [], |
| "last": "Bohnet", |
| "suffix": "" |
| }, |
| { |
| "first": "Love", |
| "middle": [], |
| "last": "Hafdell", |
| "suffix": "" |
| }, |
| { |
| "first": "Pierre", |
| "middle": [], |
| "last": "Nugues", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Coling 2010: Demonstration Volume", |
| "volume": "", |
| "issue": "", |
| "pages": "33--36", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Anders Bj\u00f6rkelund, Bernd Bohnet, Love Hafdell, and Pierre Nugues. 2010. A high-performance syn- tactic and semantic dependency parser. In Coling 2010: Demonstration Volume, pages 33-36, Beijing, China, August. Coling 2010 Organizing Committee.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "A comparison of vector-based representations for semantic composition", |
| "authors": [ |
| { |
| "first": "William", |
| "middle": [], |
| "last": "Blacoe", |
| "suffix": "" |
| }, |
| { |
| "first": "Mirella", |
| "middle": [], |
| "last": "Lapata", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "546--556", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "William Blacoe and Mirella Lapata. 2012. A com- parison of vector-based representations for seman- tic composition. In Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Lan- guage Processing and Computational Natural Lan- guage Learning, pages 546-556, Jeju Island, Korea, July. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Top accuracy and fast dependency parsing is not a contradiction", |
| "authors": [ |
| { |
| "first": "Bernd", |
| "middle": [], |
| "last": "Bohnet", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the 23rd International Conference on Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "89--97", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Bernd Bohnet. 2010. Top accuracy and fast depen- dency parsing is not a contradiction. In Proceedings of the 23rd International Conference on Computa- tional Linguistics (Coling 2010), pages 89-97, Bei- jing, China, August.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Class-based n-gram models of natural language", |
| "authors": [ |
| { |
| "first": "", |
| "middle": [], |
| "last": "Peter F Brown", |
| "suffix": "" |
| }, |
| { |
| "first": "V", |
| "middle": [], |
| "last": "Peter", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Desouza", |
| "suffix": "" |
| }, |
| { |
| "first": "L", |
| "middle": [], |
| "last": "Robert", |
| "suffix": "" |
| }, |
| { |
| "first": "Vincent J Della", |
| "middle": [], |
| "last": "Mercer", |
| "suffix": "" |
| }, |
| { |
| "first": "Jenifer C", |
| "middle": [], |
| "last": "Pietra", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Lai", |
| "suffix": "" |
| } |
| ], |
| "year": 1992, |
| "venue": "Computational linguistics", |
| "volume": "18", |
| "issue": "4", |
| "pages": "467--479", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Peter F Brown, Peter V Desouza, Robert L Mercer, Vincent J Della Pietra, and Jenifer C Lai. 1992. Class-based n-gram models of natural language. Computational linguistics, 18(4):467-479.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Natural language processing (almost) from scratch", |
| "authors": [ |
| { |
| "first": "Ronan", |
| "middle": [], |
| "last": "Collobert", |
| "suffix": "" |
| }, |
| { |
| "first": "Jason", |
| "middle": [], |
| "last": "Weston", |
| "suffix": "" |
| }, |
| { |
| "first": "L\u00e9on", |
| "middle": [], |
| "last": "Bottou", |
| "suffix": "" |
| }, |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Karlen", |
| "suffix": "" |
| }, |
| { |
| "first": "Koray", |
| "middle": [], |
| "last": "Kavukcuoglu", |
| "suffix": "" |
| }, |
| { |
| "first": "Pavel", |
| "middle": [], |
| "last": "Kuksa", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "The Journal of Machine Learning Research", |
| "volume": "12", |
| "issue": "", |
| "pages": "2493--2537", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ronan Collobert, Jason Weston, L\u00e9on Bottou, Michael Karlen, Koray Kavukcuoglu, and Pavel Kuksa. 2011. Natural language processing (almost) from scratch. The Journal of Machine Learning Re- search, 12:2493-2537.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Towards open-domain semantic role labeling", |
| "authors": [ |
| { |
| "first": "Danilo", |
| "middle": [], |
| "last": "Croce", |
| "suffix": "" |
| }, |
| { |
| "first": "Cristina", |
| "middle": [], |
| "last": "Giannone", |
| "suffix": "" |
| }, |
| { |
| "first": "Paolo", |
| "middle": [], |
| "last": "Annesi", |
| "suffix": "" |
| }, |
| { |
| "first": "Roberto", |
| "middle": [], |
| "last": "Basili", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the 48th Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "237--246", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Danilo Croce, Cristina Giannone, Paolo Annesi, and Roberto Basili. 2010. Towards open-domain se- mantic role labeling. In Proceedings of the 48th An- nual Meeting of the Association for Computational Linguistics, pages 237-246, Uppsala, Sweden, July. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Semi-supervised semantic role labeling using the Latent Words Language Model", |
| "authors": [ |
| { |
| "first": "Koen", |
| "middle": [], |
| "last": "Deschacht", |
| "suffix": "" |
| }, |
| { |
| "first": "Marie-Francine", |
| "middle": [], |
| "last": "Moens", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the 2009 Conference on Empirical Methods in Natural Language Processing", |
| "volume": "", |
| "issue": "", |
| "pages": "21--29", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Koen Deschacht and Marie-Francine Moens. 2009. Semi-supervised semantic role labeling using the Latent Words Language Model. In Proceedings of the 2009 Conference on Empirical Methods in Nat- ural Language Processing, pages 21-29, Singapore, August.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "Multi-view learning of word embeddings via CCA", |
| "authors": [ |
| { |
| "first": "Paramveer", |
| "middle": [], |
| "last": "Dhillon", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Dean", |
| "suffix": "" |
| }, |
| { |
| "first": "Lyle", |
| "middle": [ |
| "H" |
| ], |
| "last": "Foster", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Ungar", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Advances in Neural Information Processing Systems", |
| "volume": "", |
| "issue": "", |
| "pages": "199--207", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Paramveer Dhillon, Dean P Foster, and Lyle H Ungar. 2011. Multi-view learning of word embeddings via CCA. In Advances in Neural Information Process- ing Systems, pages 199-207.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Semisupervised semantic role labeling via structural alignment", |
| "authors": [ |
| { |
| "first": "Hagen", |
| "middle": [], |
| "last": "F\u00fcrstenau", |
| "suffix": "" |
| }, |
| { |
| "first": "Mirella", |
| "middle": [], |
| "last": "Lapata", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Computational Linguistics", |
| "volume": "38", |
| "issue": "1", |
| "pages": "135--171", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Hagen F\u00fcrstenau and Mirella Lapata. 2012. Semi- supervised semantic role labeling via structural alignment. Computational Linguistics, 38(1):135- 171.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Semantic Role Labeling of Implicit Arguments for Nominal Predicates", |
| "authors": [ |
| { |
| "first": "Matthew", |
| "middle": [], |
| "last": "Gerber", |
| "suffix": "" |
| }, |
| { |
| "first": "Joyce", |
| "middle": [], |
| "last": "Chai", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Computational Linguistics", |
| "volume": "38", |
| "issue": "4", |
| "pages": "755--798", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Matthew Gerber and Joyce Chai. 2012. Semantic Role Labeling of Implicit Arguments for Nominal Predi- cates. Computational Linguistics, 38(4):755-798.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Automatic labeling of semantic roles", |
| "authors": [ |
| { |
| "first": "Daniel", |
| "middle": [], |
| "last": "Gildea", |
| "suffix": "" |
| }, |
| { |
| "first": "Daniel", |
| "middle": [], |
| "last": "Jurafsky", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "", |
| "volume": "28", |
| "issue": "", |
| "pages": "245--288", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Daniel Gildea and Daniel Jurafsky. 2002. Automatic labeling of semantic roles. Computational linguis- tics, 28(3):245-288.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "The conll-2009 shared task: Syntactic and semantic dependencies in multiple languages", |
| "authors": [ |
| { |
| "first": "Jan", |
| "middle": [], |
| "last": "Haji\u010d", |
| "suffix": "" |
| }, |
| { |
| "first": "Massimiliano", |
| "middle": [], |
| "last": "Ciaramita", |
| "suffix": "" |
| }, |
| { |
| "first": "Richard", |
| "middle": [], |
| "last": "Johansson", |
| "suffix": "" |
| }, |
| { |
| "first": "Daisuke", |
| "middle": [], |
| "last": "Kawahara", |
| "suffix": "" |
| }, |
| { |
| "first": "Maria", |
| "middle": [ |
| "Ant\u00f2nia" |
| ], |
| "last": "Mart\u00ed", |
| "suffix": "" |
| }, |
| { |
| "first": "Llu\u00eds", |
| "middle": [], |
| "last": "M\u00e0rquez", |
| "suffix": "" |
| }, |
| { |
| "first": "Adam", |
| "middle": [], |
| "last": "Meyers", |
| "suffix": "" |
| }, |
| { |
| "first": "Joakim", |
| "middle": [], |
| "last": "Nivre", |
| "suffix": "" |
| }, |
| { |
| "first": "Sebastian", |
| "middle": [], |
| "last": "Pad\u00f3", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Jan\u0161t\u011bp\u00e1nek", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the Thirteenth Conference on Computational Natural Language Learning: Shared Task", |
| "volume": "", |
| "issue": "", |
| "pages": "1--18", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jan Haji\u010d, Massimiliano Ciaramita, Richard Johans- son, Daisuke Kawahara, Maria Ant\u00f2nia Mart\u00ed, Llu\u00eds M\u00e0rquez, Adam Meyers, Joakim Nivre, Sebastian Pad\u00f3, Jan\u0160t\u011bp\u00e1nek, et al. 2009. The conll-2009 shared task: Syntactic and semantic dependencies in multiple languages. In Proceedings of the Thir- teenth Conference on Computational Natural Lan- guage Learning: Shared Task, pages 1-18.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "Semantic frame identification with distributed word representations", |
| "authors": [ |
| { |
| "first": "Karl", |
| "middle": [], |
| "last": "Moritz Hermann", |
| "suffix": "" |
| }, |
| { |
| "first": "Dipanjan", |
| "middle": [], |
| "last": "Das", |
| "suffix": "" |
| }, |
| { |
| "first": "Jason", |
| "middle": [], |
| "last": "Weston", |
| "suffix": "" |
| }, |
| { |
| "first": "Kuzman", |
| "middle": [], |
| "last": "Ganchev", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "1448--1458", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Karl Moritz Hermann, Dipanjan Das, Jason Weston, and Kuzman Ganchev. 2014. Semantic frame identification with distributed word representations. In Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics, pages 1448-1458, Baltimore, Maryland, June. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Open-domain semantic role labeling by modeling word spans", |
| "authors": [ |
| { |
| "first": "Fei", |
| "middle": [], |
| "last": "Huang", |
| "suffix": "" |
| }, |
| { |
| "first": "Alexander", |
| "middle": [], |
| "last": "Yates", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the 48th Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "968--978", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Fei Huang and Alexander Yates. 2010. Open-domain semantic role labeling by modeling word spans. In Proceedings of the 48th Annual Meeting of the As- sociation for Computational Linguistics, pages 968- 978, Uppsala, Sweden, July.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Improving word representations via global context and multiple word prototypes", |
| "authors": [ |
| { |
| "first": "Eric", |
| "middle": [], |
| "last": "Huang", |
| "suffix": "" |
| }, |
| { |
| "first": "Richard", |
| "middle": [], |
| "last": "Socher", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [], |
| "last": "Manning", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrew", |
| "middle": [], |
| "last": "Ng", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the 50th Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "873--882", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Eric Huang, Richard Socher, Christopher Manning, and Andrew Ng. 2012. Improving word represen- tations via global context and multiple word proto- types. In Proceedings of the 50th Annual Meeting of the Association for Computational Linguistics (Vol- ume 1: Long Papers), pages 873-882, Jeju Island, Korea, July.", |
| "links": null |
| }, |
| "BIBREF18": { |
| "ref_id": "b18", |
| "title": "Word embeddings through hellinger pca", |
| "authors": [ |
| { |
| "first": "R\u00e9mi", |
| "middle": [], |
| "last": "Lebret", |
| "suffix": "" |
| }, |
| { |
| "first": "Ronan", |
| "middle": [], |
| "last": "Collobert", |
| "suffix": "" |
| } |
| ], |
| "year": 2014, |
| "venue": "Proceedings of the 14th Conference of the European Chapter of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "482--490", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R\u00e9mi Lebret and Ronan Collobert. 2014. Word em- beddings through hellinger pca. In Proceedings of the 14th Conference of the European Chapter of the Association for Computational Linguistics, pages 482-490, Gothenburg, Sweden, April. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF19": { |
| "ref_id": "b19", |
| "title": "The nombank project: An interim report", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Meyers", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Reeves", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Macleod", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Szekely", |
| "suffix": "" |
| }, |
| { |
| "first": "V", |
| "middle": [], |
| "last": "Zielinska", |
| "suffix": "" |
| }, |
| { |
| "first": "B", |
| "middle": [], |
| "last": "Young", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Grishman", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "Workshop: Frontiers in Corpus Annotation", |
| "volume": "", |
| "issue": "", |
| "pages": "24--31", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Meyers, R. Reeves, C. Macleod, R. Szekely, V. Zielinska, B. Young, and R. Grishman. 2004. The nombank project: An interim report. In A. Meyers, editor, HLT-NAACL 2004 Workshop: Frontiers in Corpus Annotation, pages 24-31, Boston, Massachusetts, USA, May.", |
| "links": null |
| }, |
| "BIBREF20": { |
| "ref_id": "b20", |
| "title": "Composition in Distributional Models of Semantics", |
| "authors": [ |
| { |
| "first": "Jeff", |
| "middle": [], |
| "last": "Mitchell", |
| "suffix": "" |
| }, |
| { |
| "first": "Mirella", |
| "middle": [], |
| "last": "Lapata", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Cognitive Science", |
| "volume": "34", |
| "issue": "8", |
| "pages": "1388--1429", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jeff Mitchell and Mirella Lapata. 2010. Composition in Distributional Models of Semantics. Cognitive Science, 34(8):1388-1429.", |
| "links": null |
| }, |
| "BIBREF21": { |
| "ref_id": "b21", |
| "title": "A scalable hierarchical distributed language model", |
| "authors": [ |
| { |
| "first": "Andriy", |
| "middle": [], |
| "last": "Mnih", |
| "suffix": "" |
| }, |
| { |
| "first": "Geoffrey", |
| "middle": [], |
| "last": "Hinton", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Advances in Neural Information Processing Systems", |
| "volume": "21", |
| "issue": "", |
| "pages": "1081--1088", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Andriy Mnih and Geoffrey Hinton. 2009. A scal- able hierarchical distributed language model. In Ad- vances in Neural Information Processing Systems, volume 21, pages 1081-1088.", |
| "links": null |
| }, |
| "BIBREF22": { |
| "ref_id": "b22", |
| "title": "The proposition bank: An annotated corpus of semantic roles", |
| "authors": [ |
| { |
| "first": "Martha", |
| "middle": [], |
| "last": "Palmer", |
| "suffix": "" |
| }, |
| { |
| "first": "Daniel", |
| "middle": [], |
| "last": "Gildea", |
| "suffix": "" |
| }, |
| { |
| "first": "Paul", |
| "middle": [], |
| "last": "Kingsbury", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Computational Linguistics", |
| "volume": "31", |
| "issue": "1", |
| "pages": "71--106", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Martha Palmer, Daniel Gildea, and Paul Kingsbury. 2005. The proposition bank: An annotated cor- pus of semantic roles. Computational Linguistics, 31(1):71-106.", |
| "links": null |
| }, |
| "BIBREF23": { |
| "ref_id": "b23", |
| "title": "Aligning predicate argument structures in monolingual comparable texts: A new corpus for a new task", |
| "authors": [ |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Roth", |
| "suffix": "" |
| }, |
| { |
| "first": "Anette", |
| "middle": [], |
| "last": "Frank", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the First Joint Conference on Lexical and Computational Semantics", |
| "volume": "", |
| "issue": "", |
| "pages": "218--227", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Michael Roth and Anette Frank. 2012. Aligning predicate argument structures in monolingual com- parable texts: A new corpus for a new task. In Proceedings of the First Joint Conference on Lexi- cal and Computational Semantics, pages 218-227, Montreal, Canada, June.", |
| "links": null |
| }, |
| "BIBREF24": { |
| "ref_id": "b24", |
| "title": "FrameNet II: Extended Theory and Practice", |
| "authors": [ |
| { |
| "first": "Josef", |
| "middle": [], |
| "last": "Ruppenhofer", |
| "suffix": "" |
| }, |
| { |
| "first": "Michael", |
| "middle": [], |
| "last": "Ellsworth", |
| "suffix": "" |
| }, |
| { |
| "first": "Miriam", |
| "middle": [ |
| "R L" |
| ], |
| "last": "Petruck", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [ |
| "R" |
| ], |
| "last": "Johnson", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Josef Ruppenhofer, Michael Ellsworth, Miriam R. L. Petruck, Christopher R. Johnson, and Jan Schef- fczyk. 2010. FrameNet II: Extended Theory and Practice.", |
| "links": null |
| }, |
| "BIBREF25": { |
| "ref_id": "b25", |
| "title": "Semantic compositionality through recursive matrix-vector spaces", |
| "authors": [ |
| { |
| "first": "Richard", |
| "middle": [], |
| "last": "Socher", |
| "suffix": "" |
| }, |
| { |
| "first": "Brody", |
| "middle": [], |
| "last": "Huval", |
| "suffix": "" |
| }, |
| { |
| "first": "Christopher", |
| "middle": [ |
| "D" |
| ], |
| "last": "Manning", |
| "suffix": "" |
| }, |
| { |
| "first": "Andrew", |
| "middle": [ |
| "Y" |
| ], |
| "last": "Ng", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "1201--1211", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Richard Socher, Brody Huval, Christopher D. Man- ning, and Andrew Y. Ng. 2012. Semantic composi- tionality through recursive matrix-vector spaces. In Proceedings of the 2012 Joint Conference on Empir- ical Methods in Natural Language Processing and Computational Natural Language Learning, pages 1201-1211, Jeju Island, Korea, July. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF26": { |
| "ref_id": "b26", |
| "title": "A bayesian model for unsupervised semantic parsing", |
| "authors": [ |
| { |
| "first": "Ivan", |
| "middle": [], |
| "last": "Titov", |
| "suffix": "" |
| }, |
| { |
| "first": "Alexandre", |
| "middle": [], |
| "last": "Klementiev", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies", |
| "volume": "", |
| "issue": "", |
| "pages": "1445--1455", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ivan Titov and Alexandre Klementiev. 2011. A bayesian model for unsupervised semantic parsing. In Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies, pages 1445-1455, Port- land, Oregon, USA, June.", |
| "links": null |
| }, |
| "BIBREF27": { |
| "ref_id": "b27", |
| "title": "Semisupervised semantic role labeling: Approaching from an unsupervised perspective", |
| "authors": [ |
| { |
| "first": "Ivan", |
| "middle": [], |
| "last": "Titov", |
| "suffix": "" |
| }, |
| { |
| "first": "Alexandre", |
| "middle": [], |
| "last": "Klementiev", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "Proceedings of COLING 2012", |
| "volume": "", |
| "issue": "", |
| "pages": "2635--2652", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ivan Titov and Alexandre Klementiev. 2012. Semi- supervised semantic role labeling: Approaching from an unsupervised perspective. In Proceedings of COLING 2012, pages 2635-2652, Mumbai, In- dia, December.", |
| "links": null |
| }, |
| "BIBREF28": { |
| "ref_id": "b28", |
| "title": "Word representations: A simple and general method for semi-supervised learning", |
| "authors": [ |
| { |
| "first": "Joseph", |
| "middle": [], |
| "last": "Turian", |
| "suffix": "" |
| }, |
| { |
| "first": "Lev-Arie", |
| "middle": [], |
| "last": "Ratinov", |
| "suffix": "" |
| }, |
| { |
| "first": "Yoshua", |
| "middle": [], |
| "last": "Bengio", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Proceedings of the 48th Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "384--394", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Joseph Turian, Lev-Arie Ratinov, and Yoshua Bengio. 2010. Word representations: A simple and general method for semi-supervised learning. In Proceed- ings of the 48th Annual Meeting of the Association for Computational Linguistics, pages 384-394, Up- psala, Sweden, July. Association for Computational Linguistics.", |
| "links": null |
| }, |
| "BIBREF29": { |
| "ref_id": "b29", |
| "title": "More accurate tests for the statistical significance of result differences", |
| "authors": [ |
| { |
| "first": "Alexander", |
| "middle": [], |
| "last": "Yeh", |
| "suffix": "" |
| } |
| ], |
| "year": 2000, |
| "venue": "Proceedings of the 18th International Conference on Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "947--953", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Alexander Yeh. 2000. More accurate tests for the statistical significance of result differences. In Proceedings of the 18th International Confer- ence on Computational Linguistics, pages 947-953, Saarbr\u00fccken, Germany, August.", |
| "links": null |
| }, |
| "BIBREF30": { |
| "ref_id": "b30", |
| "title": "Selectional preferences for semantic role classification", |
| "authors": [ |
| { |
| "first": "Eneko", |
| "middle": [], |
| "last": "Be\u00f1at Zapirain", |
| "suffix": "" |
| }, |
| { |
| "first": "Llu\u00eds", |
| "middle": [], |
| "last": "Agirre", |
| "suffix": "" |
| }, |
| { |
| "first": "Mihai", |
| "middle": [], |
| "last": "M\u00e0rquez", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Surdeanu", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Computational Linguistics", |
| "volume": "39", |
| "issue": "3", |
| "pages": "631--663", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Be\u00f1at Zapirain, Eneko Agirre, Llu\u00eds M\u00e0rquez, and Mi- hai Surdeanu. 2013. Selectional preferences for se- mantic role classification. Computational Linguis- tics, 39(3):631-663.", |
| "links": null |
| }, |
| "BIBREF31": { |
| "ref_id": "b31", |
| "title": "Multilingual dependency learning: Exploiting rich features for tagging syntactic and semantic dependencies", |
| "authors": [ |
| { |
| "first": "Hai", |
| "middle": [], |
| "last": "Zhao", |
| "suffix": "" |
| }, |
| { |
| "first": "Wenliang", |
| "middle": [], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "Kiyotaka", |
| "middle": [], |
| "last": "Jun'ichi Kazama", |
| "suffix": "" |
| }, |
| { |
| "first": "Kentaro", |
| "middle": [], |
| "last": "Uchimoto", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Torisawa", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of the Thirteenth Conference on Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "61--66", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Hai Zhao, Wenliang Chen, Jun'ichi Kazama, Kiyotaka Uchimoto, and Kentaro Torisawa. 2009. Multi- lingual dependency learning: Exploiting rich fea- tures for tagging syntactic and semantic dependen- cies. In Proceedings of the Thirteenth Confer- ence on Computational Natural Language Learning (CoNLL 2009): Shared Task, pages 61-66, Boulder, Colorado, USA, June.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "TABREF0": { |
| "num": null, |
| "html": null, |
| "text": "Features based on distributional word representations and additive composition. Vector w denotes the representation of word w.", |
| "content": "<table/>", |
| "type_str": "table" |
| }, |
| "TABREF3": { |
| "num": null, |
| "html": null, |
| "text": "Results on both CoNLL-2009 test sets.", |
| "content": "<table/>", |
| "type_str": "table" |
| }, |
| "TABREF4": { |
| "num": null, |
| "html": null, |
| "text": "", |
| "content": "<table><tr><td>shows results</td></tr><tr><td>of ablation tests performed for the three composi-</td></tr><tr><td>tional feature types Interaction, Span and Path</td></tr><tr><td>on the out-of-domain test set. The results reveal</td></tr></table>", |
| "type_str": "table" |
| }, |
| "TABREF5": { |
| "num": null, |
| "html": null, |
| "text": "Sentence with predicate and [gold argument label ] He A0 ] rose late and went down to have breakfast. no label Path (4) He was able to sit [for hours AM-TMP ]. A2 Span (5) Because he had spoken [too softly AM-MNR ]. AM-TMP Span", |
| "content": "<table><tr><td/><td colspan=\"2\">Original Features required for correction</td></tr><tr><td>(1) He did not resent [their A0 ] supervision</td><td>A1</td><td>Interaction</td></tr><tr><td>(2) [He A1 ] is getting plenty of rest</td><td>no label</td><td>Interaction, Path</td></tr><tr><td>(3) [</td><td/><td/></tr></table>", |
| "type_str": "table" |
| }, |
| "TABREF6": { |
| "num": null, |
| "html": null, |
| "text": "Example sentences in which distributional features compensated for errors made by Original.", |
| "content": "<table><tr><td>In-domain</td><td colspan=\"2\">verbal</td><td colspan=\"2\">nominal</td></tr><tr><td>Label</td><td>P</td><td>R</td><td>P</td><td>R</td></tr><tr><td>A0</td><td colspan=\"4\">+0.4 +0.4 \u22120.1 +2.4</td></tr><tr><td>A1</td><td colspan=\"4\">+0.2 \u22120.4 +0.6 +1.5</td></tr><tr><td>A2</td><td colspan=\"2\">+1.7 \u22121.5</td><td>-</td><td>+2.5</td></tr><tr><td>AM-ADV</td><td colspan=\"4\">+0.8 +0.2 \u22129.9 \u22123.1</td></tr><tr><td>AM-DIS</td><td colspan=\"2\">+0.3 \u22123.2</td><td>-</td><td>-</td></tr><tr><td>AM-LOC</td><td colspan=\"4\">+0.8 +1.1 +0.6 +3.0</td></tr><tr><td>AM-MNR</td><td colspan=\"4\">\u22120.5 \u22121.2 +2.7 +0.3</td></tr><tr><td>AM-TMP</td><td colspan=\"4\">\u22121.2 \u22120.7 \u22121.9 +3.3</td></tr><tr><td>Out-of-domain</td><td>verbal</td><td/><td colspan=\"2\">nominal</td></tr><tr><td>Label</td><td>P</td><td>R</td><td>P</td><td>R</td></tr><tr><td>A0</td><td colspan=\"4\">\u22120.9 +2.5 \u22122.5 \u22120.4</td></tr><tr><td>A1</td><td colspan=\"4\">+1.7 +0.8 +1.0 +3.7</td></tr><tr><td>A2</td><td colspan=\"4\">+1.4 +0.7 \u22122.5 +3.2</td></tr><tr><td>AM-ADV</td><td colspan=\"2\">+5.6 +0.7</td><td>-</td><td>-</td></tr><tr><td>AM-DIS</td><td>+7.3</td><td>-</td><td>-</td><td>-</td></tr><tr><td>AM-LOC</td><td colspan=\"2\">+0.7 +2.4</td><td>-</td><td>+15.0</td></tr><tr><td>AM-MNR</td><td colspan=\"4\">+6.4 +10.5 +9.7 +10.7</td></tr><tr><td>AM-TMP</td><td colspan=\"4\">+1.6 +1.8 \u22126.7 +1.1</td></tr></table>", |
| "type_str": "table" |
| }, |
| "TABREF7": { |
| "num": null, |
| "html": null, |
| "text": "Differences in precision and recall per argument label and predicate word category. All numbers represent absolute percentage points.", |
| "content": "<table/>", |
| "type_str": "table" |
| } |
| } |
| } |
| } |