Coreference for Discourse Parsing: a Neural Approach

Total Page:16

File Type:pdf, Size:1020Kb

Coreference for Discourse Parsing: a Neural Approach Coreference for Discourse Parsing: A Neural Approach Grigorii Guz and Giuseppe Carenini Department of Computer Science University of British Columbia Vancouver, BC, Canada, V6T 1Z4 fgguz, [email protected] Abstract 1-5 S We present preliminary results on investigat- Elab ing the benefits of coreference resolution fea- 2-5 tures for neural RST discourse parsing by con- N Temp sidering different levels of coupling of the dis- N course parser with the coreference resolver. In 2-4 S N particular, starting with a strong baseline neu- Elab ral parser unaware of any coreference informa- N 3-4 tion, we compare a parser which utilizes only N N the output of a neural coreference resolver, List with a more sophisticated model, where dis- 1 2 3 4 5 6 course parsing and coreference resolution are jointly learned in a neural multitask fashion. Figure 1: An example (Asher and Lascarides, 2003) Results indicate that these initial attempts to of a discourse being ill-formed due to the invalid incorporate coreference information do not anaphoric link. The leaf EDUs are as follows: [Max boost the performance of discourse parsing in had a great evening last night.]1 [He had a great meal.]2 a statistically significant way. [He ate salmon.]3 [He devoured lots of cheese.]4 [He then won a dancing competition.]5 [It was a beautiful 1 Introduction and Task Description pink]6 Discourse parsing is a very useful Natural Lan- guage Processing (NLP) task involving predicting Previous research has shown that the use of RST- and analyzing discourse structures, which repre- style discourse parsing as a system component can sent the coherence properties and relations among enhance important tasks, such as sentiment analy- constituents of multi-sentential documents. In this sis, summarization and text categorization (Bhatia work, we investigate discourse parsing in the con- et al., 2015; Nejat et al., 2017; Hogenboom et al., text of Rhetorical Structure Theory (RST) Mann 2015; Gerani et al., 2014; Ji and Smith, 2017). And and Thompson(1988), which encodes documents more recently, it has been found that RST discourse into complete constituency discourse trees. An structures can complement learned contextual em- RST tree is defined on the sequence of a docu- beddings (e.g., BERT (Devlin et al., 2018)), in ment’s EDUs (Elementary Discourse Units), which tasks where linguistic information on complete doc- are clause-like sentences or sentence fragments uments is critical, such as argumentation analysis (propositions), acting as the leaves of the tree. Ad- (Chakrabarty et al., 2019). jacent EDUs and constituents are hierarchically ag- In this work, we present preliminary results of gregated to form (possibly non-binary) constituents, investigating the benefits of coreference resolu- with internal nodes containing (1) a nuclearity la- tion features for RST discourse parsing. From bel, defining the importance of that subtree (rooted the theoretical perspective, it has long been estab- at the internal node) in the local context and (2) a lished (Asher and Lascarides, 2003) that discourse relation label, defining the type of semantic con- structure can impose constraints on mention an- nection between the two subtrees (e.g., Elaboration, tecedent distributions, with these constraints being Background). derived from the role of each discourse unit (sen- 160 Proceedings of the First Workshop on Computational Approaches to Discourse, pages 160–167 Online, November 20, 2020. c 2020 Association for Computational Linguistics https://doi.org/10.18653/v1/P17 tence or EDU) with respect to the global discourse. 2 Related Work The Veins theory (Cristea et al., 1998) is the most known formalization of anaphoric constraints with Dai and Huang(2019) have already explored the respect to RST tree structures, involving assigning benefit of using coreference information for neural to each EDU a subset of preceding EDUs defined PDTB implicit discourse relation classification, in by the nuclearity attributes of the EDU’s parent a way similar to our SpanBERT-CorefFeats model. nodes in the document’s discourse tree (see Ap- In our study, we also explore the use of shared pendixA for the exact definition). These constrains encoder architecture for both tasks to detect the act as a domain of referential accessibility where additional possible synergy. the antecedents must reside, for otherwise the dis- Modelwise, the most common approach to in- course would be considered incoherent. As an ex- fer discourse trees is the linear bottom-up shift- ample of this phenomenon, consider the discourse reduce method, adopted from syntactic parsing. structure in Figure1. In principle, a reader could Wang et al.(2017) uses hand-crafted features and apply commonsense knowledge to resolve the pro- the shift-reduce method predicted by two separate noun it in the last sentence to salmon in the third Support-Vector-Machines (SVMs) for structure- sentence, any proficient English speaker would call and nuclearity-prediction and relation-estimation. such a discourse ill-formed and incoherent, due The neural model by Yu et al.(2018) uses a similar to the fact that it breaks the discourse-imposed topology, but instead relies entirely on LSTMs for antecedent scope. In general, anaphora can only automatic feature extraction and on a single multi- be resolved with respect to the most salient (sen- layer-perceptron (MLP) for classifying all possible tence 1 in Figure1) units of the preceding discourse actions. Top-down approaches to discourse pars- (Asher and Lascarides, 2003). For our purposes, ing are also quite promising, with recent work of this means that having access to a document’s coref- Kobayashi et al.(2020) applying ELMO (Peters erence structure might be beneficial to the task of et al., 2018) for computing span representations and predicting the discourse structure, since the corefer- achieving the new absolute SOTA performance, re- ence structure can constrain the discourse parser’s porting however the scores of an ensemble of five solution space. However, as shown in a corpus independent runs of their proposed model instead study by Zeldes(2017), the antecedent boundaries of single-model results. In this work we follow the defined by Veins Theory are often too restrictive, shift-reduce strategy and apply SpanBERT-Base suggesting that while discourse structures can be (Joshi et al., 2020; Wolf et al., 2020), which we useful for predicting coreference structures and introduce below, for encoding the document con- vice versa, these mutual constrains must be defined tents. softly, at least in the context of RST theory. The field of coreference resolution has recently been dominated by deep learning models. The To explore these ideas computationally with re- current SOTA model by Joshi et al.(2020) is spect to modern neural models, we investigate built upon the neural coreference resolver of (Lee the utility of automatically extracted coreference et al., 2018) by incorporating SpanBERT language features and discourse-coreference shared repre- model, which modifies the commonly used BERT sentations in the context and for the benefit of (Devlin et al., 2019) architecture with a novel span neural RST discourse parsing. Our strong base- masking pretraining objective. In our work, we re- line SpanBERT-NoCoref utilizes SpanBERT (Joshi implemented their coreference resolver in PyTorch et al., 2020) as in the current SOTA coreference (Paszke et al., 2019). Our code for both models is resolver, without utilizing any direct coreference available1. information. Next, our SpanBERT-CorefFeats con- siders the output of coreference resolver as per Dai 3 Shift-Reduce Architecture and Huang(2019), letting us test the benefit of predicted and so possibly noisy coreference fea- All our proposed parsers share the same basic shift- tures. Finally, our more sophisticated SpanBERT- reduce architecture, consisting of a Queue, which Multitask model learns discourse parsing together is initially filled with documents EDUs in order with coreference resolution in the neural multitask 1http://www.cs.ubc.ca/ learning fashion, sharing the SpanBERT contextual cs-research/lci/research-groups/ word encoder for both models. natural-language-processing/index.html 161 vS2 vS1 si si+1 si+2 sj sj+1 ... ... ... ... vS2 vS1 ' ' ' ' SpanBERT w i w' w i+2 w j w j+1 ... i+1 ... ... si si+1 si+2 sj sj+1 ... ... ... wi wi+1 wi+2 wj wj+1 wi wi+1 wi+2 wj wj+1 ... ... ... ... ... ... ... S2 S1 Figure 2: Overview of our models. For spans S2 are S1, the wi:i+2 and wj;j+1 respectively are the nuclear EDUs. (Left) All components of SpanBERT-NoCoref. (Middle) SpanBERT-CorefFeats modifies the initial SpanBERT embeddings according to predicted coreference clusters (in red). (Right) SpanBERT-MultiTask updates the final span representations with embeddings of mentions of shared entities. from first to last one, and a Stack, which is initially embeddings for the aforementioned organizational empty, as well as the following actions on them: features. The first classifer predicts the action The Shift delays aggregations of sub-trees at the and nuclearity assignment among yAct;Nuc 2 beginning of the document by popping the top EDU fShift; ReduceNN ; ReduceNS; ReduceSN g, Q1 on the queue and pushing it onto the stack. and in case the Reduce action is chosen, the The Reduce-X aggregates the top subtrees second classifier predicts the discourse relation (S1;S2) on the stack into a single subtree (S1−2). among 18 coarse-grained RST relation classes Each reduce action further defines a nuclear- yRel 2 fAttribution; Elaboration; :::g. ity assignment XN 2 fNN, NS, SNg to the 3.2 Action Classifier Training and Inference nodes covered by S1−2 and a relation XR 2 fElaboration, Contrast, ...g holding between them. Both classifiers are trained using the Cross-Entropy loss, computed for each Stack-Queue parsing step. 3.1 Action Classifier Parametrization At test time, we apply the greedy decoding strategy to predict the discourse structure.
Recommended publications
  • Implicitness of Discourse Relations
    Implicitness of Discourse Relations F atemeh T orabi Asr and V era Demberg Cluster of Excellence Multimodal Computing and Interaction (MMCI) Saarland University Campus C7.4, !"# Saarbrüc&en, Germany [email protected], [email protected] Abstract The annotations of explicit and implicit discourse connectives in the Penn Discourse Treebank make it possible to investigate on a large scale how different types of discourse relations are expressed. Assuming an account of the Uniform Information Density hypothesis we expect that discourse relations should be expressed explicitly with a discourse connector when they are unexpected, but may be implicit when the discourse relation can be anticipated. !e investigate whether discourse relations which have been argued to be expected by the comprehender exhibit a higher ratio of implicit connectors. !e "nd support for two hypotheses put forth in previous research which suggest that continuous and causal relations are presupposed by language users when processing consecutive sentences in a text. !e then proceed to analyze the effect of Implicit Causality (IC) verbs (which have been argued to raise an expectation for an explanation) as a local cue for an upcoming causal relation. Keywords: Causality Continuity Discourse relations, Discourse cues Implicit discourse relations, Corpus study Uniform Information Density. Proceedings of COLING 2012: Technical Papers, pages 2669–2684, COLING 2012, Mumbai, December 2012. 2669 1 Introduction David Hume in his prominent work “An enquiry concerning human understanding” proposed that ideas in the human mind were associated according to at least three types of relations: resemblance contiguity in time or place, and causality (Hume, 1784).
    [Show full text]
  • Discourse Relations and Defeasible Knowledge`
    DISCOURSE RELATIONS AND DEFEASIBLE KNOWLEDGE* Alex Lascarides t Nicholas Asher Human Communication Research Centre Center for Cognitive Science University of Edinburgh University of Texas 2 Buccleuch Place, Edinburgh, EH8 9LW Austin, Texas 78712 Scotland USA alex@uk, ac. ed. cogsc£ asher@sygmund, cgs. utexas, edu Abstract of the event described in a, i.e. fl's event is part of the preparatory phase of a's: 2 This paper presents a formal account of the temporal interpretation of text. The distinct nat- (2) The council built the bridge. The architect ural interpretations of texts with similar syntax drew up the plans. are explained in terms of defeasible rules charac- terising causal laws and Gricean-style pragmatic Explanation(a, fl): For example the event de- maxims. Intuitively compelling patterns of defea,- scribed in clause fl caused the event described in sible entailment that are supported by the logic clause a: in which the theory is expressed are shown to un- derly temporal interpretation. (3) Max fell. John pushed him. Background(a, fl): For example the state de- The Problem scribed in fl is the 'backdrop' or circumstances under which the event in a occurred (so the event and state temporally overlap): The temporal interpretation of text involves an account of how the events described are related (4) Max opened the door. The room was pitch to each other. These relations follow from the dark. discourse relations that are central to temporal import. 1 Some of these are listed below, where Result(a, fl): The event described in a caused the clause a appears in the text before fl: the event or state described in fl: Narration(a,fl): The event described in fl is a consequence of (but not necessarily caused by) (5) Max switched off the light.
    [Show full text]
  • Negation Markers and Discourse Connective Omission
    Uniform Information Density at the Level of Discourse Relations: Negation Markers and Discourse Connective Omission Fatemeh Torabi Asr & Vera Demberg Saarland University fatemeh|[email protected] Abstract About half of the discourse relations annotated in Penn Discourse Treebank (Prasad et al., 2008) are not explicitly marked using a discourse connective. But we do not have extensive theories of when or why a discourse relation is marked explicitly or when the connective is omitted. Asr and Demberg (2012a) have suggested an information-theoretic perspective according to which discourse connectives are more likely to be omitted when they are marking a relation that is expected or pre- dictable. This account is based on the Uniform Information Density theory (Levy and Jaeger, 2007), which suggests that speakers choose among alternative formulations that are allowed in their lan- guage the ones that achieve a roughly uniform rate of information transmission. Optional discourse markers should thus be omitted if they would lead to a trough in information density, and be inserted in order to avoid peaks in information density. We here test this hypothesis by observing how far a specific cue, negation in any form, affects the discourse relations that can be predicted to hold in a text, and how the presence of this cue in turn affects the use of explicit discourse connectives. 1 Introduction Discourse connectives are known as optional linguistic elements to construct relations between clausal units in text: in the Penn Discourse Treebank (PDTB Prasad et al. 2008), only about half of the annotated discourse relations are marked in the text by a discourse connective.
    [Show full text]
  • Obligatory Presupposition in Discourse
    Obligatory presupposition in discourse Pascal Amsili1 & Claire Beyssade2* 1Université Paris Diderot & Laboratoire de Linguistique Formelle, CNRS/2Institut Jean Nicod, CNRS Paris Some presupposition triggers, like too, seem to be obligatory in discourses where the presupposition they induce is explicitely expressed. We show that this phenomenon concerns a larger class than is usually acknowledged, and suggest that this class corresponds to the class of presupposition triggers that have no asserted content. We then propose a pragmatic explanation relying on the neo-gricean notion of antipresupposition. We also show that the phenomenon has a complex interaction with discourse relations. 1. Introduction The starting point of this work is a number of situations where some presupposition triggers seem obligatory in discourse. Here are two examples. (1) a. Jean est allé il y a deux ans au Canada. Il n’ira plus là-bas. John went to Canada two years ago. He won’t go there anymore b. #Jean est allé il y a deux ans au Canada. Il n’ira pas là-bas. John went to Canada two years ago. He won’t go there c. Léa a fait une bêtise. Elle ne la refera pas. Lea did a silly thing. She won’t re-do it. d. #Léa a fait une bêtise. Elle ne la fera pas. Lea did a silly thing. She won’t do it. *This article benefitted from comments from the audience at CiD’06 (Maynooth), and particularly from discussion with Henk Zeevat. We are also very grateful to an anonymous reviewer who provided very detailed and constructive comments.
    [Show full text]
  • Discourse Relation Sense Classification with Two-Step
    Discourse Relation Sense Classification with Two-Step Classifiers Yusuke Kido Akiko Aizawa The University of Tokyo National Institute of Informatics 7-3-1 Hongo, Bunkyo-ku 2-1-2 Hitotsubashi, Chiyoda-ku Tokyo, Japan Tokyo, Japan [email protected] [email protected] Abstract introduction of a new evaluation criterion based on partial argument matching in the CoNLL- Discourse Relation Sense Classification is 2016 Shared Task. On the other hand, the the classification task of assigning a sense sense classification components, which assign to discourse relations, and is a part of a sense to each discourse relation, continue to the series of tasks in discourse parsing. perform poorly. In particular, Non-Explicit sense This paper analyzes the characteristics classification is a difficult task, and even the best of the data we work with and describes system achieved an F1 score of only 0.42 given the system we submitted to the CoNLL- the gold standard argument pairs without error 2016 Shared Task. Our system uses two propagation (Wang and Lan, 2015). sets of two-step classifiers for Explicit In response to this situation, Discourse Relation and AltLex relations and Implicit and Sense Classification has become a separate task EntRel relations, respectively. Regardless in the CoNLL-2016 Shared Task (Xue et al., of the simplicity of the implementation, 2016). In this task, participants implement a it achieves competitive performance using system that takes gold standard argument pairs and minimalistic features. assigns a sense to each of them. To tackle this The submitted version of our system task, we first analyzed the characteristics of the ranked 8th with an overall F1 score of discourse relation data.
    [Show full text]
  • Semantic Relations in Discourse: the Current State of ISO 24617-8
    Semantic Relations in Discourse: The Current State of ISO 24617-8 Rashmi Prasad* and Harry Bunt** *Department of Health Informatics and Administration, University of Wisconsin-Milwaukee, Milwaukee, USA **Tilburg Center for Cognition and Communication (TiCC), Tilburg University, Tilburg, Netherlands [email protected] [email protected] Abstract This paper describes some of the research conducted with the aim to develop a proposal for an ISO standard for the annotation of semantic relations in discourse. A range of theoretical approaches and annotation efforts were analysed for their commonalities and their differences, in order to define a clear delineation of the scope of the ISO effort and to give it a solid theoretical and empirical basis. A set of 20 core discourse relations was identified as indispensible for an annotation standard, and these relations were provided with clear definitions and illustrative examples from existing corpora. The ISO principles for linguistic annotation in general and semantic annotation in particular were applied to design a markup language (DRelML) for discourse relation annotation. 1 Introduction The last decade has seen a proliferation of linguistically annotated corpora coding many phenomena in support of empirical natural language research – both computational and theoretical. In the realm of discourse (which for the purposes of this paper is taken to include dialogue as well), a surge of interest in discourse processing has led to the development of several corpora annotated for discourse relations, for example, causal, contrastive and temporal relations. Discourse relations, also called ‘coherence relations’ or ‘rhetorical relations’, may be expressed explicitly or implicitly, and they convey meaning that is key to an understanding of the discourse, beyond the meaning conveyed by individual clauses and sentences.
    [Show full text]
  • Arxiv:1904.10419V2 [Cs.CL] 30 Aug 2019 (E.G
    GumDrop at the DISRPT2019 Shared Task: A Model Stacking Approach to Discourse Unit Segmentation and Connective Detection Yue Yu Yilun Zhu Yang Liu Computer Science Linguistics Linguistics Georgetown University Georgetown University Georgetown University Yan Liu Siyao Peng Mackenzie Gong Amir Zeldes Analytics Linguistics CCT Linguistics Georgetown University Georgetown University Georgetown University Georgetown University fyy476,yz565,yl879,yl1023,sp1184,mg1745,[email protected] Abstract However, as recent work (Braud et al., 2017b) has shown, performance on smaller or less homo- In this paper we present GumDrop, George- town University’s entry at the DISRPT 2019 geneous corpora than RST-DT, and especially in Shared Task on automatic discourse unit seg- the absence of gold syntax trees (which are real- mentation and connective detection. Our ap- istically unavailable at test time for practical ap- proach relies on model stacking, creating a plications), hovers around the mid 80s, making it heterogeneous ensemble of classifiers, which problematic for full discourse parsing in practice. feed into a metalearner for each final task. The This is more critical for languages and domains in system encompasses three trainable compo- which relatively small datasets are available, mak- nent stacks: one for sentence splitting, one for ing the application of generic neural models less discourse unit segmentation and one for con- nective detection. The flexibility of each en- promising. semble allows the system to generalize well to The DISRPT 2019 Shared Task aims to identify datasets of different sizes and with varying lev- spans associated with discourse relations in data els of homogeneity. from three formalisms: RST (Mann and Thomp- son, 1988), SDRT (Asher, 1993) and PDTB 1 Introduction (Prasad et al., 2014).
    [Show full text]
  • Discourse Connectives: from Historical Origin to Present-Day Development Magdaléna Rysová Charles University, Faculty of Mathematics and Physics
    Chapter 2 Discourse connectives: From historical origin to present-day development Magdaléna Rysová Charles University, Faculty of Mathematics and Physics The paper focuses on the description and delimitation of discourse connectives, i.e. linguistic expressions significantly contributing to text coherence and generally helping the reader to better understand semantic relations within a text. Thepaper discusses the historical origin of discourse connectives viewed from the perspec- tive of present-day linguistics. Its aim is to define present-day discourse connec- tives according to their historical origin through which we see what is happening in discourse in contemporary language. The paper analyzes the historical origin of the most frequent connectives in Czech, English and German (which could be useful for more accurate translations of connectives in these languages) and point out that they underwent a similar process to gain a status of present-day discourse connectives. The paper argues that this historical origin or process of rising dis- course connectives might be language universal. Finally, the paper demonstrates how these observations may be helpful for annotations of discourse in large cor- pora. 1 Introduction and motivation Currently, linguistic research focuses often on creating and analyzing big lan- guage data. One of the frequently discussed topics of corpus linguistics is the an- notation of discourse carried out especially through detection of discourse con- nectives. However, discourse connectives are not an easily definable group of expressions. Linguistic means signaling discourse relations may be conjunctions like but, or etc., prepositional phrases like for this reason, fixed collocations like Magdaléna Rysová. 2017. Discourse connectives: From historical origin to present- day development.
    [Show full text]
  • A Presuppositional Account of Causal and Temporal Interpretations of And
    Topoi DOI 10.1007/s11245-014-9289-9 A Presuppositional Account of Causal and Temporal Interpretations of and Joanna Blochowiak Ó Springer Science+Business Media Dordrecht 2014 Abstract Despite extensive studies, the issue concerning (1) a. He took off his boots and got into bed. the pragmatic mechanisms leading to causal and temporal b. He got into bed and took off his boots. interpretations of and remains problematic and has not yet c. P ^ Q = Q ^ P. been addressed in its totality within one framework. This Grice noticed that the meaning of and in (1)a and paper proposes a solution based on presuppositional (1)b cannot be reduced to its logical counterpart ^ mechanisms built into a comprehensive analysis that shown in (1)c. In particular, the commutativity of logical accounts for both the various interpretations of and-sen- conjunction is not attested in many cases in natural tences as well as those of other types of sentences language. Grice’s strategy to preserve the logical sense involving similar interpretations. This account is a specific of and consisted in moving the supplementary meaning part of a unified solution to the knotty problem of different material to pragmatics, i.e. non-truth-conditional aspects manners of conveying causal and temporal relations both of meaning. with connectives and also with juxtaposed sentences. It is In addition to the basic problem exposed in (1), any formulated within the Relevance Nomological Model theory aiming at explaining the behaviour of the connective which provides a general framework for the analysis of and faces at least two puzzles involving the temporal and causal constructions such as the connective because and causal interpretations of and.
    [Show full text]
  • Evidence from Evidentials
    UBCWPL University of British Columbia Working Papers in Linguistics Evidence from Evidentials Edited by: Tyler Peterson and Uli Sauerland September 2010 Volume 28 ii Evidence from Evidentials Edited by: Tyler Peterson and Uli Sauerland The University of British Columbia Working Papers in Linguistics Volume 28 September 2010 UBCWPL is published by the graduate students of the University of British Columbia. We feature current research on language and linguistics by students and faculty of the department, and we are the regular publishers of two conference proceedings: the Workshop on Structure and Constituency in Languages of the Americas (WSCLA) and the International Conference on Salish and Neighbouring Languages (ICSNL). If you have any comments or suggestions, or would like to place orders, please contact : UBCWPL Editors Department of Linguistics Totem Field Studios 2613 West Mall V6T 1Z4 Tel: 604 822 4256 Fax 604 822 9687 E-mail: <[email protected]> Since articles in UBCWPL are works in progress, their publication elsewhere is not precluded. All rights remain with the authors. iii Cover artwork by Lester Ned Jr. Contact: Ancestral Native Art Creations 10704 #9 Highway Compt. 376 Rosedale, BC V0X 1X0 Phone: (604) 793-5306 Fax: (604) 794-3217 Email: [email protected] iv TABLE OF CONTENTS TYLER PETERSON, ROSE-MARIE DÉCHAINE, AND ULI SAUERLAND ...............................1 Evidence from Evidentials: Introduction JASON BROWN ................................................................................................................9
    [Show full text]
  • Toward a Discourse Structure Account of Speech and Attitude Reports
    Toward a Discourse Structure Account of Speech and Attitude Reports Antoine Venant1,2 1 Laboratoire Parole et Langage 2 Ecole Normale Superieure de Cachan Abstract. This paper addresses the question of propositional attitude reports within Segmented Discourse Representation Theory (SDRT). In line with most SDRT discussions on attitudes reports, we argue that the reported attitude should be segmented in the same way as the rest of the discourse is. We identify several issues that are raised by the segmenta- tion of attitude reports. First, the nature of some relations crossing the boundaries between main and embedded speech remains unclear. More- over, such constructions are introducing a conflict between SDRT’s Right Frontier Constraint (RFC) and well established facts about accessibility from factual to modal contexts. We propose two solutions for adapting discourse structure to overcome these conflicts. The first one introduces a new ingredient in the theory while the second one is more conservative and relies on continuation-style semantics for SDRT. 1 Introduction From a semantic perspective, attitudes reports require to solve several notorious puz- zles. Among these, are a lot of problems triggered by definites: Substitution of directly co-referential expressions is generally not allowed under the scope of an attitude verb and neither does existential generalization(see the shortest spy problem raised by [8]). Closely related to those are effects of attitudes verbs on discourse referents availability. For instance factive epistemic verbs like ’to know’ allow referents introduced under their scope to be then referred from outside their scope, while non factive like ’to be- lieve’ do not.
    [Show full text]
  • A Simple Word Interaction Model for Implicit Discourse Relation
    Proceedings of the Twenty-Sixth International Joint Conference on Artificial Intelligence (IJCAI-17) SWIM: A Simple Word Interaction Model for Implicit Discourse Relation Recognition∗ Wenqiang Lei1, Xuancong Wang2, Meichun Liu3, Ilija Ilievski1, Xiangnan He1, Min-Yen Kan1 1National University of Singapore 2Institute for Infocomm Research 3City University of Hong Kong fwenqiang, xiangnan, [email protected], [email protected] [email protected], [email protected] Abstract Ex (1) You are so fortunate. The hurricane came five Capturing the semantic interaction of pairs of hours after you left. words across arguments and proper argument rep- Ex (2) In 1986, the number of cats was down to 1000. resentation are both crucial issues in implicit dis- In 2002, it went up to 2000. course relation recognition. The current state-of- Ex (3) I never gamble too far. In other words, I quit the-art represents arguments as distributional vec- after one try. tors that are computed via bi-directional Long Short-Term Memory networks (BiLSTMs), known Ex (4) I was sleeping when he entered. to have significant model complexity. Figure 1: Toy examples of each of the four Level–1 discourse re- In contrast, we demonstrate that word-weighted av- lations annotated in the PDTB formalism. (1) and (2) are implicit eraging can encode argument representation which relations; (3) and (4) are explicit. Arg1 is italicized and Arg2 is can be incorporated with word pair information ef- bolded, as per convention. ficiently. By saving an order of magnitude in pa- rameters and eschewing the recurrent structure, our proposed model achieves equivalent performance, 2017]) – inclusive of this one – restrict their use to the top- but trains seven times faster.
    [Show full text]