Hy-NLI: a Hybrid System for State-Of-The-Art Natural Language Inference

Total Page:16

File Type:pdf, Size:1020Kb

Hy-NLI: a Hybrid System for State-Of-The-Art Natural Language Inference Hy-NLI: a Hybrid system for state-of-the-art Natural Language Inference Doctoral thesis submitted for the degree of Doctor of Philosophy (Dr.phil.) presented by Aikaterini-Lida Kalouli at the Faculty of Humanities Department of Linguistics Konstanz, 2021 Konstanzer Online-Publikations-System (KOPS) URL: http://nbn-resolving.de/urn:nbn:de:bsz:352-2-1cwr6rmbvoqxv2 Date of the oral examination: March 18th, 2021 First referee: Prof. Dr. Miriam Butt Second referee: Prof. Dr. Maribel Romero Third referee: Prof. Dr. Lauri Karttunen The human spirit must prevail over technology. Albert Einstein Abstract A main characteristic of human language and understanding is our ability to reason about things, i.e., to infer conclusions from given facts. Within the field of Natural Language Processing and Natural Language Understanding, the task of inferring such conclusions has come to be known as Natural Language Inference (NLI) and is currently a popular field of research. NLI is most often formulated as the task of determining where a sentence entails (i.e., implies) or contradicts (i.e., implies the opposite) or is neutral (i.e., does not have any relation) with respect to another sentence (MacCartney and Manning, 2007). Although such a task sounds trivial for humans, it is less so for machines: the processes behind human inference require even more than understanding linguistic input; they presuppose our understanding about the world and everyday life and require the complex combination and interaction of this information. In this thesis, I implement a hybrid NLI system, Hy-NLI, which is able to deter- mine the inference relation between a pair of sentences. Hy-NLI consists of a symbolic and a deep-learning component, combining the best of both worlds: it exploits the strengths that each approach exhibits and mitigates their weaknesses. The imple- mented system relies on the finding that each of the two very different approaches is particularly suitable for a specific kind of phenomena. Deep-learning methods are good in dealing with graded and more fluid aspects of meaning, while symbolic approaches can efficiently deal with contextual phenomena of natural language, e.g., modals, negations, implicatives, etc. Hy-NLI learns to distinguish between the cases and respectively employ the component that is known to work best for each of them. Thus, this thesis contributes to the state-of-the-art in NLI. It also contributes to the general debate whether symbolic or deep-learning approaches are most efficient by showing that systems can benefit from both of them in different ways. Hence, the thesis at hand motivates research that does not choose one of the two, but marries them up into a successful combination. To reach the ultimate goal of closing the gap between these two approaches, this thesis makes four major contributions. First, it sheds light on the available NLI datasets, their issues and the insights they can offer us about the NLI task in gen- eral. Precisely, I investigate one of the well-known mainstream NLI datasets, SICK (Marelli et al., 2014b), and observe how certain corpus construction practices have vii viii influenced the quality of the data itself and of its annotations. I also show how the quality of annotations is not only affected by the corpus construction process but also from inherent human disagreements and fine-grained nuances of human in- ference. The issues found in the datasets are addressed in a variety of ways, from manually correcting subsets of the corpus to performing experiments that quantify and identify these aspects of the NLI task. The second major contribution of the thesis at hand is the development of the Graphical Knowledge Representation (GKR, Kalouli and Crouch (2018)), a semantic representation suitable for semantic tasks such as NLI, and the implementation of an efficient GKR parser. The representation stands out from other similar representations for its separation of the sentence infor- mation in different layers/graphs. Particularly, there is a strict separation between the conceptual, predicate-argument structure and the contextual, boolean structure. This modularity and projection architecture gives rise to a concept-based, intensional Description Logic (Baader et al., 2003) semantics. The efficiency and suitability of GKR for NLI is revealed through the implementation of the symbolic inference engine GKR4NLI, a further major goal of this thesis. GKR4NLI is developed as an infer- ence mechanism relying on Natural Logic (Van Benthem, 1986, Sánchez-Valencia, 1991) and on the semantics imposed by GKR. Its performance on different datasets confirms previous findings that symbolic engines are good in dealing with semanti- cally complex phenomena, but struggle with more robust aspects of meaning. Thus, these results motivate the need for a hybrid system, where each aspect of mean- ing is treated by the most suitable component. This need is addressed with the implementation of Hy-NLI, the final major goal of this thesis. The hybrid system uses GKR4NLI as its symbolic component and the state-of-the-art language repre- sentation model BERT (Devlin et al., 2019) as its deep-learning component. Their successful combination leads Hy-NLI to outperform other state-of-the-art methods across datasets of different nature and complexity. With such performance across the board, Hy-NLI confirms the need for hybrid systems and paves the way for more work in this research direction. Zusammenfassung Ein zentrales Merkmal der menschlichen Sprache und Kommunikation ist das logische Denkvermögen, d.h., die Fähigkeit auf Basis von gegebenen Fakten Schlussfolgerun- gen zu ziehen. Diese Fähigkeit wurde auf dem Gebiet der maschinellen Sprachverar- beitung und des maschinellen Sprachverständnis unter dem Namen Natural Lan- guage Inference (NLI – maschinelle Sprachinferenz) bekannt und ist derzeit ein beliebtes Forschungsgebiet. Das Ziel von NLI ist die Bestimmung der Beziehung zweier Sätze: ein Satz kann den anderen implizieren (entailment), er kann dem anderen widersprechen (contradiction) oder es kann keine Beziehung zwischen den beiden Sätzen geben (neutrality) (MacCartney and Manning, 2007). Solch eine Auf- gabestellung klingt zunächst trivial für den Menschen, aber nicht jedoch für Maschi- nen. Zusätzlich zum Verständnis linguistischer Strukturen, erfordern die Prozesse, die sich hinter menschlicher Inferenz verbergen, ein Verständnis unserer Welt und des alltäglichen Lebens, ebenso wie die komplexe Kombination und Interaktion dieser Informationen. In der vorliegenden Dissertation wird ein hybrides NLI System – im Folgen- den Hy-NLI genannt – implementiert, welches die Inferenzbeziehung zwischen zwei Sätzen bestimmen kann. Hy-NLI besteht aus einer symbolischen und einer Deep- Learning Komponente, sodass die Vorteile beider Ansätze vereint und gegebene Schwäche ausgeglichen werden können. Das hybribe System basiert auf der Erken- ntnis, dass jeweils einer der beiden Ansätze besonders gut geeignet ist bestimmte Fälle von Sprachphänomenen zu verarbeiten. So sind die Deep-Learning Metho- den hervorragend dafür geeignet abgestufte und vage Aspekte der Bedeutung zu er- fassen. Auf der anderen Seite können symbolische Ansätze kontextuelle Phänomene der Sprache, wie z.B. Modalverben, Negation und implikative Verben, zuverlässig behandeln. Das hybride System lernt zwischen den verschiedenen Fällen zu unter- scheiden und die Komponente zu nutzen, die für den vorliegenden Fall am besten geeignet ist. Dadurch leistet Hy-NLI einen relevanten Beitrag zum aktuellen Stand der Forschung. Außerdem trägt diese Dissertation zur Debatte bei ob symbolische oder Deep-Learning Systeme effektiver sind, indem sie zeigt, dass beide Ansätze eine Daseinsberechtigung haben. Systeme können von beiden Ansätzen auf verschiedene Arten profitieren. Auf diese Weise regt die vorliegende Dissertation die Forschung an, nicht eine der beiden Ansätze auszuwählen, sondern diese in einer erfolgver- ix x sprechenden Kombination zusammenzufügen. Aus diesem Grund wurde Hy-NLI mit dem Ziel entwickelt, die Kluft zwischen den beiden Ansätzen zu schließen. Um dies zu erreichen, leistet diese Arbeit vier Beiträge. Als Erstes werden die verfügbaren NLI Datensätze, deren Probleme und die Erkenntnisse, die diese über NLI im Allgemeinen geben können, erläutert. Ins- besondere wird einer der bekanntesten und weit verbreiteten Datensätze, das SICK (Marelli et al., 2014b) Korpus, untersucht und es wird aufgezeigt, wie einige der Tech- niken zur Korpuserstellung die Qualität der Daten und deren Annotation beeinflusst haben. Außerdem wird aufgezeigt wie die Annotationsqualität nicht nur vom Kor- puserstellungsprozess beeinflusst wird, sondern auch von inhärenten menschlichen Diskrepanzen und feinen Nuancen der menschlichen Inferenz. Die in den Daten- sätzen gefundenen Probleme werden auf unterschiedliche Art und Weise adressiert, z.B. durch die manuelle Korrektur eines Teiles des Korpus oder durch Experimente, die diese Aspekte von NLI identifizieren und quantifizieren. Der zweite Beitrag dieser Dissertation ist die Entwicklung einer semantischen Repräsentation – im Folgenden GKR (Graphical Knowledge Representation) genannt – die für semantische Anwen- dungen, wie z.B. NLI, geeignet ist, sowie die Implementierung eines effizienten GKR Parsers. Die entwickelte Repräsentation unterscheidet sich von ähnlichen Repräsen- tationen darin, dass die Satzinformation in verschiedenen Ebenen/Graphen getrennt wird. Es gibt eine strikte Trennung zwischen der konzeptuellen, Predikat-Argument Struktur und der kontextuellen,
Recommended publications
  • The Generative Lexicon
    The Generative Lexicon James Pustejovsky" Computer Science Department Brandeis University In this paper, I will discuss four major topics relating to current research in lexical seman- tics: methodology, descriptive coverage, adequacy of the representation, and the computational usefulness of representations. In addressing these issues, I will discuss what I think are some of the central problems facing the lexical semantics community, and suggest ways of best ap- proaching these issues. Then, I will provide a method for the decomposition of lexical categories and outline a theory of lexical semantics embodying a notion of cocompositionality and type coercion, as well as several levels of semantic description, where the semantic load is spread more evenly throughout the lexicon. I argue that lexical decomposition is possible if it is per- formed generatively. Rather than assuming a fixed set of primitives, I will assume a fixed number of generative devices that can be seen as constructing semantic expressions. I develop a theory of Qualia Structure, a representation language for lexical items, which renders much lexical ambiguity in the lexicon unnecessary, while still explaining the systematic polysemy that words carry. Finally, I discuss how individual lexical structures can be integrated into the larger lexical knowledge base through a theory of lexical inheritance. This provides us with the necessary principles of global organization for the lexicon, enabling us to fully integrate our natural language lexicon into a conceptual whole. 1. Introduction I believe we have reached an interesting turning point in research, where linguistic studies can be informed by computational tools for lexicology as well as an appre- ciation of the computational complexity of large lexical databases.
    [Show full text]
  • Property Modifiers
    Property Modifiers Marie Duží and Michal Fait VSB-Technical University Ostrava, Department of Computer Science FEI, 17. listopadu 15, 708 33 Ostrava, Czech Republic [email protected], [email protected] Abstract. In this paper, we deal with property modifiers defined as func- tions that associate a given root property P with a modified property [MP]. Property modifiers typically divide into four kinds, namely intersective, subsective, privative and modal. Here we do not deal with modal modi- fiers like alleged, which appear to be well-nigh logically lawless, because, for instance, an alleged assassin is or is not an assassin. The goal of this paper is to logically define the three remaining kinds of modifiers. Fur- thermore, we introduce the rule of pseudo-detachment as the rule of left subsectivity to replace the modifier M in the premise by the property M* in the conclusion, and prove that this rule is valid for all kinds of modifiers. Furthermore, it is defined in a way that avoids paradoxes like that a small elephant is smaller than a large mouse. Key words: Property modifier, subsective, intersective, privative, the rule of pseudo-detachment, Transparent intensional logic, TIL, intensional essentialism 1 Introduction We introduce a logic of property modifiers modelled as a mapping from proper- ties to properties, such that the result of the application of a modifier to a property is another property. This is because the result of modification does not depend on the state of the world, nor on time. For instance, if one applies the modifier Skilful to the property Surgeon, they obtain the property of being a skilful surgeon.
    [Show full text]
  • Intersective Entailments with Adverbials?
    Class 4 Modification and Events Modifiers in syntax Modifier = constituent that doesn’t change syntactic category of its sister. happy – adjective (phrase) very happy – adjective phrase (AP) very is an AP modifier women – noun (phrase) tall women – noun phrase (NP) tall is an NP modifier (adnominal) More examples? ran quickly – verb phrase (VP) modifier (adverb, adverbial) very quickly – (also) adverb modifier Further? men in the kitchen, men who knit, men and/or women, almost every man Semantics: Modifier Functions Modifier function = a function of type aa. happy – et very happy – et very – (et )( et ) very denotes a modifier function women – et tall women – et tall – (et )( et ) every man – (et )t Alternatively: almost every man – (et )t every – (et )(( et )t) almost – (( et )t)(( et )t) almost every – (et )(( et )t) almost – (( et )(( et )t))(( et )(( et )t)) Syntax-Semantics Hypothesis: All modifiers in syntax denote modifier functions. [ In categorial grammar: Type(N)=et Type(N N)=(et)(et) Type(NP)=(et)t Type(NP NP)=((et)t)((et)t) In general: Type(X X) = (Type(X))(Type(X)) ] But what denotations should modifier functions have? Intersective adnominal modifiers [[ fast cars ]] = car ∩ fast [[ houses in England ]] = house ∩ in_England [[ houses where I lived ]] = house ∩ { x∈E : live_in(I,x) } A function F of type ( et )( et ) is an intersective modifier if there is a set of entities B s.t. for every function get characterizing a set A, the et function F(g) characterizes the set A∩B. Adverbials – similarity to adnominals Adnominals Adverbials Adjectives/ Adverbs fast cars ate fast Preposition Phrases houses in England ate in England Relative Clauses houses where I lived ate where I lived Question: Can we treat adverbials as intersective modifiers? Common answer: - Surely not as (et)(et) modifiers.
    [Show full text]
  • Redalyc.Property Modifiers and Intensional Essentialism
    Computación y Sistemas ISSN: 1405-5546 [email protected] Instituto Politécnico Nacional México Duží, Marie Property Modifiers and Intensional Essentialism Computación y Sistemas, vol. 21, núm. 4, 2017, pp. 601-613 Instituto Politécnico Nacional Distrito Federal, México Available in: http://www.redalyc.org/articulo.oa?id=61553900004 How to cite Complete issue Scientific Information System More information about this article Network of Scientific Journals from Latin America, the Caribbean, Spain and Portugal Journal's homepage in redalyc.org Non-profit academic project, developed under the open access initiative ISSN 2007-9737 Property Modifiers and Intensional Essentialism Marie Duží VSB-Technical University of Ostrava, Department of Computer Science, Czech Republic [email protected] Abstract. In this paper, I deal with property modifiers characteristic function from individuals to truth- defined as functions that associate a given root property values. So, for an individual to instantiate a P with a modified property [M P]. Property modifiers property, whether modified or not, is to be an typically divide into four kinds, namely intersective, element of its extension at a given world and time. subsective, privative and modal. Here I do not deal with The novel contribution of this paper is a new modal modifiers like alleged, which appear to be well- nigh logically lawless, because, for instance, an alleged definition of subsective and privative modifiers in assassin is or is not an assassin. The goal of this paper terms of intensional essentialism. is to logically define the three remaining kinds of Kamp’s seminal [9] seeks to draw a line modifiers together with the rule of left subsectivity that I between those adjectives whose meaning is a launch as the rule of pseudo-detachment to replace the property and those adjectives whose meaning is a modifier M in the premise by the property M* in the function that maps properties to properties.
    [Show full text]
  • Lecture 8. Semantics of Possessives, Continued. Arguments Vs. Modifiers
    The Structure of Meaning, Lecture 8 Barbara H. Partee, March 20, 2006 Lecture 8. Semantics of Possessives, continued. Arguments vs. modifiers. Puzzles of predicate possessives. 1. Semantics of possessives, continued: arguments vs. modifiers. ................................................................................1 2. Different kinds of genitives/possessives: why Jensen and Vikner may be right for Russian genitives but not for all English genitives. ..........................................................................................................................................3 2.1. Predicate possessives: a problem for the “one genitive” approach? ...................................................................4 2.1.1. Predicate possessives in English. ...........................................................................................................5 2.1.2. Russian prenominal possessives vs. genitives........................................................................................6 2.1.3. German possessive pronouns. ................................................................................................................6 2.1.4. Polish possessive pronouns....................................................................................................................8 2.2. Conclusions about predicate possessives. ...........................................................................................................9 REFERENCES ..............................................................................................................................................................9
    [Show full text]
  • Correlative Clause Features in Sanskrit and Hindi/Urdu
    CORRELATIVE CLAUSE FEATURES IN SANSKRIT AND HINDI/URDU Alice Davison, University of Iowa [email protected] 12-10-06 1. Introduction Correlative clauses represent a parametric variation on relative clauses, found in various related and unrelated languages (cf. Grosu 2002, den Dikken 2005) In this paper I explore how this parameter is realized over a period of some thousands of years in Indic languages. I contrast correlative clauses related finite clauses in the earliest Indic language which is attested, the Sanskrit of the Rg Veda and early Sanskrit prose, with corresponding subordinate clauses in a modern Indic language, Hindi/Urdu. There is remarkable lexical continuity, in that the relative determiners are formally distinct from the interrogatives. Sanskrit has only one dependent clause type, the correlative construction, which corresponds to three kinds of subordinate clause in Hindi/Urdu: correlative clauses, complement clauses, and conditional/adverbial clauses. This comparison allows some exploration of how languages divided in time share a specific parameter (Gianollo et al, to appear), and to what degree they diverge. The two language have many common lexical and structural properties. But by many syntactic and semantic criteria, the correlative clauses in the two languages are sharply different. In Vedic Sanskrit, correlative clauses are loosely and paratactically related to another clause, while in Hindi/Urdu, the relation between a correlative clause and the other ‘host’ clause is very closely constrained, and dependent clauses are syntactically different from main clauses. I propose some formal features which form links between adjoined clauses, and guide semantic interpretation. This sequence of historical changes, which took place at some point between Vedic Sanskrit and the modern languages, involves the grammaticization of a semantic predicational feature, so that what was a default feature becomes a lexical feature of relative Ds.
    [Show full text]
  • Underspecification of Intersective Modifier
    Underspecification of Intersective Modifier Attachment: Some Arguments from German Berthold Crysmann DFKI, Saarland University Proceedings of the 11th International Conference on Head-Driven Phrase Structure Grammar Center for Computational Linguistics, Katholieke Universiteit Leuven Stefan Muller¨ (Editor) 2004 CSLI Publications pages 378–392 http://csli-publications.stanford.edu/HPSG/2004 Crysmann, Berthold. 2004. Underspecification of Intersective Modifier Attach- ment: Some Arguments from German. In Muller,¨ Stefan (Ed.), Proceedings of the 11th International Conference on Head-Driven Phrase Structure Grammar, Center for Computational Linguistics, Katholieke Universiteit Leuven, 378–392. Stanford, CA: CSLI Publications. Abstract In this paper, I shall discuss the semantic attachment of intersective mod- ifiers in German coherent constructions. I shall show that a purely syntactic solution to the observable attachment ambiguity is undesirable for reasons of processing efficiency and/or massive spurious ambiguity. Instead, I shall follow Egg and Lebeth (1995) and propose an extension to Minimal Recur- sion Semantics, permitting the expression of underspecified semantic attach- ment. This rather trivial move, as we shall see, will not only be preferable for processing reasons, but it will also be more in line with the spirit of under- specified semantics, effectively providing a compact representation of purely semantic distinctions, instead of unfolding these distinctions into a rain forest of tree representations and derivations. I will present
    [Show full text]
  • Person Features: Deriving the Inventory of Persons
    Chapter 2 Person Features: Deriving the Inventory of Persons 1. Introduction One long-standing aim of research into person has been to achieve a deeper understanding of the inventory of personal pronouns by decomposing them into a limited set of person features. The main aim of this chapter is to make a contribution to this enterprise. We will argue that a set of two privative person features is sufficient to derive the full inventory of attested pronouns and their interpretations, without generating non-attested pronouns. In chapter 1 we showed that the cross-linguistic inventory of attested persons is a small subset of the set of theoretically possible persons. The theoretically possible persons are those that can be formed by freely combining the speaker (for which we use the symbol i), associates of the speaker (ai), the addressee (u), associates of the addressee (au), and others (o). The generalizations that distinguish between the attested and non-attested persons are the following (repeated from (9) in chapter 1): (1) a. There is no person that contains associates of a participant but not the participant itself. b. There is no person that consists of others and only speaker(s) or of others and only addressee(s). c. No person system distinguishes pluralities containing a participant but not its associates from pluralities containing that participant as well as its associates. d. First and second person plural pronouns show an ‘associative effect’: any element contained in them other than i or u must be ai or au and cannot be o. 31 This leaves us with three persons with a singular interpretation and four persons with a plural interpretation.
    [Show full text]
  • Probing Syntax and Semantics with French Propre A
    UNIVERSITY OF CALIFORNIA Los Angeles On her own Parsimonious Compositionality: Probing Syntax and Semantics with French propre A dissertation submitted in partial satisfaction of the requirements for the degree Doctor of Philosophy in Linguistics by Isabelle Charnavel 2012 © Copyright by Isabelle Charnavel 2012 ABSTRACT OF THE DISSERTATION On her own Parsimonious Compositionality: Probing Syntax and Semantics with French propre by Isabelle Charnavel Doctor of Philosophy in Linguistics University of California, Los Angeles, 2012 Professor Dominique Sportiche, Chair This dissertation focuses on the French word propre roughly meaning ‘characteristic-of’ and corresponding to English own found in ‘her own thesis’. This adjective makes extremely varied and complex contributions to the meaning and properties of sentences it occurs in. The present work addresses the question of how these contributions arise. Parsimoniously assuming a unique lexical entry for propre, these contributions are compositionally derived by a specific DP-internal structure and different interactions with focus. More precisely, propre is analyzed as taking as argument a possessive relation characterized as most specific. Unlike postnominal propre , prenominal propre exhibits ii three main readings called restrictive, possessor and possessum propre : restrictive propre has a standard intersective truth-conditional effect; possessor and possessum propre do not, but induce focus alternatives respectively to the possessor and to the possessum; possessum propre moreover gives rise to scalarity effects. These readings are argued to derive from a principle of minimization and different interactions with focus; in particular, the behavior of possessum propre shows the presence of a covert focus operator akin to even . When combined with a pronominal possessor like son (‘his’), the behavior of propre provides probes bearing on binding theoretic issues.
    [Show full text]
  • Cross-Linguistic Representations of Numerals and Number Marking∗
    Proceedings of SALT 20: 582–598, 2011 Cross-linguistic representations of numerals and number marking∗ Alan Bale Michaël Gagnon Concordia University University of Maryland Hrayr Khanjian Massachusetts Institute of Technology Abstract Inspired by Partee(2010), this paper defends a broad thesis that all mod- ifiers, including numeral modifiers, are restrictive in the sense that they can only restrict the denotation of the NP or VP they modify. However, the paper concentrates more narrowly on numeral modification, demonstrating that the evidence that moti- vated Ionin & Matushansky(2006) to assign non-restrictive, privative interpretations to numerals – assigning them functions that map singular sets to sets containing groups – is in fact consistent with restrictive modification. Ionin & Matushansky’s (2006) argument for this type of interpretation is partly based on the distribution of Turkish numerals which exclusively combine with singular bare nouns. Section 2 demonstrates that Turkish singular bare nouns are not semantically singular, but rather are unspecified for number. Western Armenian has similar characteristics. Building on some of the observations in section2, section3 demonstrates that re- strictive modification can account for three different types of languages with respect to the distribution of numerals and plural nouns: (i) languages where numerals exclusively combine with plural nouns (e.g., English), (ii) languages where they exclusively combine with singular bare nouns (e.g., Turkish), (iii) languages where they optionally combine with either type of noun (e.g., Western Armenian). Ac- counting for these differences crucially involves making a distinction between two kinds of restrictive modification among the numerals: subsective vs. intersective modification. Section3 also discusses why privative interpretations of numerals have trouble accounting for these different language types.
    [Show full text]
  • Intersective and Subsective Adjectives Ling 5205: Semantics
    Outline Attributive uses of adjectives Practice Summary References Intersective and subsective adjectives Ling 5205: Semantics Brian Reese Institute of Linguistics University of Minnesota [email protected] 1 / 32 Outline Attributive uses of adjectives Practice Summary References 1 Attributive uses of adjectives 2 Practice 3 Summary 2 / 32 Outline Attributive uses of adjectives Practice Summary References 1 Attributive uses of adjectives 2 Practice 3 Summary 3 / 32 Outline Attributive uses of adjectives Practice Summary References Modificational adjectives So far we have considered only predicative occurrences of adjectives; but adjectives also occur before nouns in attributive, or modificational, uses. Examples (1) a. Tina is tall. (Predicative) b. Thin is thin. (2) a. Tina is a tall woman. (Modificational) b. The tall engineer visited us. c. I met five tall astronomers. 4 / 32 Outline Attributive uses of adjectives Practice Summary References Modificational adjectives In many cases there are strong semantic relations between modificational and predicative uses of adjectives. (We will focus on the equivalence in 3a.) Examples (3) a. Tina is a Chinese pianist , Tina is Chinese and Tina is a pianist. b. My doctor wears no white shirts , No shirts that my doctor wears are white. c. Dan saw six carnivorous animals , Six animals that Dan saw are carnivorous. 5 / 32 Outline Attributive uses of adjectives Practice Summary References New semantic assumptions Common nouns denote et functions; indefinite article a when used in predicative NPs denotes the identity function on et functions. Examples (4) Tina [ is [ a pianist]] (5) a. pianist = pianistet J K b. a = a(et)(et) = is = λget:g J K (6) (is(a(pianist)))(tina) = pianist(tina) = 1 if tina 2 pianist∗ and 0 otherwise 6 / 32 Outline Attributive uses of adjectives Practice Summary References Modificational adjectives Example (7) Tina [ is [ a [ Chinese pianist ]]] a *type-mismatch* a(et)(et) Chinese pianist chineseet pianistet Problem: We have no way to compose two et functions into an et function using function application.
    [Show full text]
  • MODIFICATION? 9 Not Elsewhere
    DRAFT Modification Marcin Morzycki Michigan State University June 12, 2013 Latest revision: June 2014 This is a draft of a book in preparation for the Cambridge University Press series Key Topics in Semantics and Pragmatics. It’s something between a textbook for people with a basic background in semantics and an introduc- tory survey of work on the semantics of adjectives, adverbs, and degrees. For a fuller explanation, see section 1.2. Comments would be extremely helpful, so please don’t hesitate to contact me if you have any, even very minor ones. DRAFT Contents Acknowledgments vii 1 Preliminaries 1 1.1 Two problems .............................. 1 1.2 What this book is and isn’t ..................... 2 1.3 Background assumptions ...................... 3 1.3.1 Glossing logical notation ................. 3 1.3.2 Theoretical framework ................... 4 1.3.3 Notational and typographical conventions ....... 7 1.4 What, if anything, is modification? ................ 8 1.5 Roadmap ................................ 12 2 The Lexical Semantics of Adjectives: More Than Just Scales 13 2.1 Introduction .............................. 13 2.2 How adjectives and nouns combine: a typology . 14 2.2.1 Intersective interpretations . 14 2.2.2 Subsective interpretations . 16 2.2.3 Apparently subsective intersective interpretations . 20 2.2.4 Ordinary non-subsective adjectives . 22 2.2.5 Privative adjectives, which may not exist . 24 2.3 The type of adjectives and the nature of subsectivity . 26 2.3.1 How powerful are adjectives? . 26 2.3.2 Siegel: The Doublet Theory . 30 2.3.3 Larson: events inside the nominal extended projection 34 2.3.4 The implicit argument approach .
    [Show full text]