Automatic Animacy Classification

Total Page:16

File Type:pdf, Size:1020Kb

Automatic Animacy Classification Automatic Animacy Classification Samuel R. Bowman Harshit Chopra Department of Linguistics Department of Computer Science Stanford University Stanford University 450 Serra Mall 353 Serra Mall Stanford, CA 94305-2150 Stanford, CA 94305-9025 [email protected] [email protected] Abstract machine translation. We introduce the automatic annotation of The handful of papers that we have found on noun phrases in parsed sentences with tags animacy annotation—centrally Ji and Lin (2009), from a fine-grained semantic animacy hierar- Øvrelid (2005), and Orasan and Evans (2001)— chy. This information is of interest within lex- classify only the basic ANIMATE/INANIMATE con- ical semantics and has potential value as a fea- trast, but show some promise in doing so. Their ture in several NLP tasks. work shows success in automatically classifying in- We train a discriminative classifier on an an- dividual words, and related work has shown that an- notated corpus of spoken English, with fea- imacy can be used to improve parsing performance tures capturing each noun phrase’s constituent (Øvrelid and Nivre, 2007). words, its internal structure, and its syntactic relations with other key words in the sentence. We adopt the class set presented in Zaenen et al. Only the first two of these three feature sets (2004), and build our model around the annotated have a substantial impact on performance, but corpus presented in that work. Their hierarchy con- the resulting model is able to fairly accurately tains ten classes, meant to cover a range of cate- classify new data from that corpus, and shows gories known to influence animacy-related phenom- promise for binary animacy classification and ena cross-linguistically. They are HUMAN, ORG (or- for use on automatically parsed text. ganizations), ANIMAL, MAC (automata), VEH (vehi- cles), PLACE, TIME, CONCRETE (other physical ob- 1 Introduction jects), NONCONC (abstract entities), and MIX (NPs An animacy hierarchy, in the sense of Zaenen et al. describing heterogeneous groups of entities). The (2004), is a set of mutually exclusive categories de- class definitions are straightforward—every NP de- scribing noun phrases (NPs) in natural language sen- scribing a vehicle is a VEH—and Zaenen et al. of- tences. These classes capture the degree to which fer a detailed treatment of ambiguous cases. Unlike the entity described by an NP is capable of human- the class sets used in named entity recognition work, like volition: a key lexical semantic property which these classes are crucially meant to cover all NPs. has been shown to trigger a number of morphologi- This includes freestanding nouns like people, as well cal and syntactic phenomena across languages. An- as pronominals like that one, for which the choice of notating a corpus with this information can facili- class often depends on contextual information not tate statistical semantic work, as well as providing a contained within the NP, or even the sentence. potentially valuable feature—discussed in Zaenen et In the typical case where the head of an NP be- al.—for tasks like relation extraction, parsing1, and longs unambiguously to a single animacy class, the phrase as a whole nearly always takes on the class 1Using our model in parsing would require bootstrapping from c oarser parses, as our model makes use of some syntactic of its head: The Panama hat I gave to my uncle features. on Tuesday contains numerous nominals of differ- ent animacy classes, but hat is the unique syntactic and its POS tag. HEADSHAPE-tag-shape attempts head, and determines the phrase to be CONCRETE. to cover unseen head words by replacing the word Heads can easily be ambiguous, though: My stereo string with its orthographic shape (substituting, for speakers and the speakers at the panel session be- example, Stanford with Ll and 3G-related with dL- long to different classes, but share a (polysemous) l). head. The corpus that we use is Zaenen et al.’s animacy- 2.3 External syntactic features annotated subset of the hand-parsed Switchboard The information captured by our tag set overlaps corpus of conversational American English. It is considerably with the information that verbs use to built on, and now included in, Calhoun et al.’s select their arguments.3 The subject of see, for ex- (2010) NXT version of Switchboard. This anno- ample, must be a HUMAN, MAC, ANIMAL, or ORG, tated section consists of about 110,000 sentences and the complement of above cannot be a TIME. As with about 300,000 NPs. We divide these sentences such, we expect the verb or preposition that an NP into a training set (80%), a development set (10%), depends upon and the type of dependency involved and a test set (10%).2 Every NP in this section is ei- (subject, direct object, or prepositional complement) ther assigned a class or marked as problematic, and to be powerful predictors of animacy, and introduce we train and test on all the NPs for which the an- the following features: SUBJ(-OF-verb), DOBJ(-OF- notators were able to agree (after discussion) on an verb) and PCOMP(-OF-prep)(-WITH-verb). We ex- assignment. tract these dependency relations from our parses, and mark an occurrence of each feature both with 2 Methods and without each of its optional (parenthetical) pa- We use a standard maximum entropy classifier rameters. (Berger et al., 1996) to classify constituents: For 3 Results each labeled NP in the corpus, the model selects the locally most probable class. Our features are de- The following table shows our model’s precision scribed in this section. and recall (as percentages) for each class and the We considered features that required dependen- model’s overall accuracy (the percent of labeled cies between consecutively assigned classes, allow- NPs which were labeled correctly), as well as the ing large NPs to depend on smaller NPs contained number of instances of each class in the test set. within them, as in conjoined structures. These achieved somewhat better coverage of the rare MIX Class Count Precision Recall class, but did not yield any gains in overall perfor- VEH 534 88.56 39.14 mance, and are not included in our results. TIME 1,101 88.24 80.38 NONCONC 12,173 83.39 93.32 2.1 Bag-of-words features MAC 79 63.33 24.05 Our simplest feature set, HASWORD-(tag-)word, PLACE 754 64.89 63.00 simply captures each word in the NP, both with and ORG 1,208 58.26 27.73 without its accompanying part-of-speech (POS) tag. MIX 29 7.14 3.45 CONCRETE 1402 58.82 37.58 2.2 Internal syntactic features ANIMAL 137 69.44 18.25 Motivated by the observation that syntactic heads HUMAN 11,320 91.19 93.30 tend to determine animacy class, we introduce two Overall 28,737 Accuracy: 84.90 features: HEAD-tag-word contains the head word of The next table shows the performance of each the phrase (extracted automatically from the parse) feature bundle when it alone is used in classification, 2We inadvertently did some initial feature selection using as well as the performance of the model when each training data that included both our training and test sets. While we have re-run all of those experiments, this introduces a possi- 3See Levin and Rappaport Hovav (2005) for a survey of ar- ble bias towards features which perform well on our test set. gument selection criteria, including animacy. feature bundle is excluded. We offer for comparison consider accuracy measured only over those hypoth- a baseline model that always chooses the most esized NPs which encompass the same string of frequent class, NONCONC. words as an NP in the gold standard data. Our parser generated correct (evaluable) NPs with preci- Only these features: Accuracy (%) sion 88.63% and recall 73.51%, but for these evalu- Bag of words 83.04 able NPs, accuracy was marginally better than on Internal Syntactic 75.85 hand-parsed data: 85.43% using all features. The External Syntactic 50.35 parser likely tended to misparse those NPs which All but these features: — were hardest for our model to classify. Bag of words 77.02 Internal syntactic 83.36 3.3 Error analysis External syntactic 84.58 A number of the errors made by the model pre- Most frequent class 42.36 sented above stem from ambiguous cases where Full model 84.90 head words, often pronouns, can take on referents of multiple animacy classes, and where there is no clear 3.1 Binary classification evidence within the bounds of the sentence of which one is correct. In the following example the model We test our model’s performance on the incorrectly assigns mine the class CONCRETE, and somewhat better-known task of binary nothing in the sentence provides evidence for the (ANIMATE/INANIMATE) classification by merging surprising correct class, HUMAN. the model’s class assignments into two sets after classification, following the grouping defined in Za- Well, I’ve used mine on concrete treated enen et al.4 While none of our architectural choices wood. were made with binary classification in mind, it is heartening to know that the model performs well on For a model to correctly treat cases like this, it would this easier task. be necessary to draw on a simple co-reference reso- Overall accuracy is 93.50%, while a baseline lution system and incorporate features dependent on plausibly co-referent sentences elsewhere in the text. model that labels each NP ANIMATE achieves only 53.79%. All of the feature sets contribute mea- The distinction between an organization (ORG) surably to the binary model, and external syntactic and a non-organized group of people (HUMAN) in features do much better on this task than on fine- this corpus is troublesome for our model.
Recommended publications
  • Not So Quirky: on Subject Case in Ice- Landic1
    5 Not so Quirky: On Subject Case in Ice- landic 1 JÓHANNES GÍSLI JÓNSSON 1 Introduction The purpose of this paper is to provide an overview of subject case in Icelandic, extending and refining the observations of Jónsson (1997-1998) and some earlier work on this topic. It will be argued that subject case in Icelandic is more predictable from lexical semantics than previous studies have indicated (see also Mohanan 1994 and Narasimhan 1998 for a similar conclusion about Hindi). This is in line with the work of Jónsson (2000) and Maling (2002) who discuss various semantic generalizations about case as- signment to objects in Icelandic. This paper makes two major claims. First, there are semantic restrictions on non-nominative subjects in Icelandic which go far beyond the well- known observation that such subjects cannot be agents. It will be argued that non-nominative case is unavailable to all kinds of subjects that could be described as agent-like, including subjects of certain psych-verbs and intransitive verbs of motion and change of state. 1 I would like to thank audiences in Marburg, Leeds, York and Reykjavík and three anony- mous reviewers for useful comments. This study was supported by grants from the Icelandic Science Fund (Vísindasjóður) and the University of Iceland Research Fund (Rannsóknasjóður HÍ). New Perspectives in Case Theory. Ellen Brandner and Heike Zinsmeister (eds.). Copyright © 2003, CSLI Publications. 129 130 / JOHANNES GISLI JONSSON Second, the traditional dichotomy between structural and lexical case is insufficient in that two types of lexical case must be recognized: truly idio- syncratic case and what we might call semantic case.
    [Show full text]
  • Old English: 450 - 1150 18 August 2013
    Chapter 4 Old English: 450 - 1150 18 August 2013 As discussed in Chapter 1, the English language had its start around 449, when Germanic tribes came to England and settled there. Initially, the native Celtic inhabitants and newcomers presumably lived side-by-side and the Germanic speakers adopted some linguistic features from the original inhabitants. During this period, there is Latin influence as well, mainly through missionaries from Rome and Ireland. The existing evidence about the nature of Old English comes from a collection of texts from a variety of regions: some are preserved on stone and wood monuments, others in manuscript form. The current chapter focusses on the characteristics of Old English. In section 1, we examine some of the written sources in Old English, look at some special spelling symbols, and try to read the runic alphabet that was sometimes used. In section 2, we consider (and listen to) the sounds of Old English. In sections 3, 4, and 5, we discuss some Old English grammar. Its most salient feature is the system of endings on nouns and verbs, i.e. its synthetic nature. Old English vocabulary is very interesting and creative, as section 6 shows. Dialects are discussed briefly in section 7 and the chapter will conclude with several well-known Old English texts to be read and analyzed. 1 Sources and spelling We can learn a great deal about Old English culture by reading Old English recipes, charms, riddles, descriptions of saints’ lives, and epics such as Beowulf. Most remaining texts in Old English are religious, legal, medical, or literary in nature.
    [Show full text]
  • Animacy and Alienability: a Reconsideration of English
    Running head: ANIMACY AND ALIENABILITY 1 Animacy and Alienability A Reconsideration of English Possession Jaimee Jones A Senior Thesis submitted in partial fulfillment of the requirements for graduation in the Honors Program Liberty University Spring 2016 ANIMACY AND ALIENABILITY 2 Acceptance of Senior Honors Thesis This Senior Honors Thesis is accepted in partial fulfillment of the requirements for graduation from the Honors Program of Liberty University. ______________________________ Jaeshil Kim, Ph.D. Thesis Chair ______________________________ Paul Müller, Ph.D. Committee Member ______________________________ Jeffrey Ritchey, Ph.D. Committee Member ______________________________ Brenda Ayres, Ph.D. Honors Director ______________________________ Date ANIMACY AND ALIENABILITY 3 Abstract Current scholarship on English possessive constructions, the s-genitive and the of- construction, largely ignores the possessive relationships inherent in certain English compound nouns. Scholars agree that, in general, an animate possessor predicts the s- genitive while an inanimate possessor predicts the of-construction. However, the current literature rarely discusses noun compounds, such as the table leg, which also express possessive relationships. However, pragmatically and syntactically, a compound cannot be considered as a true possessive construction. Thus, this paper will examine why some compounds still display possessive semantics epiphenomenally. The noun compounds that imply possession seem to exhibit relationships prototypical of inalienable possession such as body part, part whole, and spatial relationships. Additionally, the juxtaposition of the possessor and possessum in the compound construction is reminiscent of inalienable possession in other languages. Therefore, this paper proposes that inalienability, a phenomenon not thought to be relevant in English, actually imbues noun compounds whose components exhibit an inalienable relationship with possessive semantics.
    [Show full text]
  • Learn Pronouns As Part of Speech for Bank & SSC Exams
    Learn Pronouns as Part of Speech for Bank & SSC Exams - English Notes in PDF Are you preparing for Banking or SSC Exams? If you aim at making a career in the government sector & get a reputed job, it is very important to know the basics of English Language. To score maximum marks in this section with great accuracy, it is important for you to be prepared with the basic grammar & vocabulary. Here we are with a detailed explanatory article on Pronouns as Part of Speech with relevant examples. So, read the article carefully & then take our Online Mock Tests to check your level of preparation. Before moving ahead with Pronouns, let’s have a look at what are parts of speech in brief: Parts of Speech Parts of speech are the basic categories of words according to their function in a sentence. It is a category to which a word is assigned in accordance with its syntactic functions. English has eight main parts of speech, namely, Nouns, Pronouns, Adjectives, Verbs, Adverbs, Prepositions, Conjunctions & Interjections. In grammar, the parts of speech, also called lexical categories, grammatical categories or word classes is a linguistic category of words. Pronouns as Part of Speech 1 | Pronouns as part of speech are the words which are used in place of nouns like people, places, or things. They are used to avoid sounding unnatural by reusing the same noun in a sentence multiple times. In the sentence Maya saw Sanjay, and she waved at him, the pronouns she and him take the place of Maya and Sanjay, respectively.
    [Show full text]
  • Classifiers: a Typology of Noun Categorization Edward J
    Western Washington University Western CEDAR Modern & Classical Languages Humanities 3-2002 Review of: Classifiers: A Typology of Noun Categorization Edward J. Vajda Western Washington University, [email protected] Follow this and additional works at: https://cedar.wwu.edu/mcl_facpubs Part of the Modern Languages Commons Recommended Citation Vajda, Edward J., "Review of: Classifiers: A Typology of Noun Categorization" (2002). Modern & Classical Languages. 35. https://cedar.wwu.edu/mcl_facpubs/35 This Book Review is brought to you for free and open access by the Humanities at Western CEDAR. It has been accepted for inclusion in Modern & Classical Languages by an authorized administrator of Western CEDAR. For more information, please contact [email protected]. J. Linguistics38 (2002), I37-172. ? 2002 CambridgeUniversity Press Printedin the United Kingdom REVIEWS J. Linguistics 38 (2002). DOI: Io.IOI7/So022226702211378 ? 2002 Cambridge University Press Alexandra Y. Aikhenvald, Classifiers: a typology of noun categorization devices.Oxford: OxfordUniversity Press, 2000. Pp. xxvi+ 535. Reviewedby EDWARDJ. VAJDA,Western Washington University This book offers a multifaceted,cross-linguistic survey of all types of grammaticaldevices used to categorizenouns. It representsan ambitious expansion beyond earlier studies dealing with individual aspects of this phenomenon, notably Corbett's (I99I) landmark monograph on noun classes(genders), Dixon's importantessay (I982) distinguishingnoun classes fromclassifiers, and Greenberg's(I972) seminalpaper on numeralclassifiers. Aikhenvald'sClassifiers exceeds them all in the number of languages it examines and in its breadth of typological inquiry. The full gamut of morphologicalpatterns used to classify nouns (or, more accurately,the referentsof nouns)is consideredholistically, with an eye towardcategorizing the categorizationdevices themselvesin terms of a comprehensiveframe- work.
    [Show full text]
  • Nouns, Adjectives, Verbs, and Adverbs
    Unit 1: The Parts of Speech Noun—a person, place, thing, or idea Name: Person: boy Kate mom Place: house Minnesota ocean Adverbs—describe verbs, adjectives, and other Thing: car desk phone adverbs Idea: freedom prejudice sadness --------------------------------------------------------------- Answers the questions how, when, where, and to Pronoun—a word that takes the place of a noun. what extent Instead of… Kate – she car – it Many words ending in “ly” are adverbs: quickly, smoothly, truly A few other pronouns: he, they, I, you, we, them, who, everyone, anybody, that, many, both, few A few other adverbs: yesterday, ever, rather, quite, earlier --------------------------------------------------------------- --------------------------------------------------------------- Adjective—describes a noun or pronoun Prepositions—show the relationship between a noun or pronoun and another word in the sentence. Answers the questions what kind, which one, how They begin a prepositional phrase, which has a many, and how much noun or pronoun after it, called the object. Articles are a sub category of adjectives and include Think of the box (things you have do to a box). the following three words: a, an, the Some prepositions: over, under, on, from, of, at, old car (what kind) that car (which one) two cars (how many) through, in, next to, against, like --------------------------------------------------------------- Conjunctions—connecting words. --------------------------------------------------------------- Connect ideas and/or sentence parts. Verb—action, condition, or state of being FANBOYS (for, and, nor, but, or, yet, so) Action (things you can do)—think, run, jump, climb, eat, grow A few other conjunctions are found at the beginning of a sentence: however, while, since, because Linking (or helping)—am, is, are, was, were --------------------------------------------------------------- Interjections—show emotion.
    [Show full text]
  • LINGUISTICS 221 Lecture #3 DISTINCTIVE FEATURES Part 1. an Utterance Is Composed of a Sequence of Discrete Segments. Is the Segm
    LINGUISTICS 221 Lecture #3 DISTINCTIVE FEATURES Part 1. An utterance is composed of a sequence of discrete segments. Is the segment indivisible? Is the segment the smallest unit of phonological analysis? If it is, segments ought to differ randomly from one another. Yet this is not true: pt k prs What is the relationship between members of the two groups? p t k - the members of this set have an internal relationship: they are all voiceles stops. p r s - no such relationship exists p b d s bilabial bilabial alveolar alveolar stop stop stop fricative voiceless voiced voiced voiceless SIMILARITIES AND DIFFERENCES! Segments may be viewed as composed of sets of properties rather than indivisible entities. We can show the relationship by listing the properties of each segment. DISTINCTIVE FEATURES • enable us to describe the segments in the world’s languages: all segments in any language can be characterized in some unique combination of features • identifies groups of segments → natural segment classes: they play a role in phonological processes and constraints • distinctive features must be referred to in terms of phonetic -- articulatory or acoustic -- characteristics. 1 Requirements on distinctive feature systems (p. 66): • they must be capable of characterizing natural segment classes • they must be capable of describing all segmental contrasts in all languages • they should be definable in phonetic terms The features fulfill three functions: a. They are capable of describing the segment: a phonetic function b. They serve to differentiate lexical items: a phonological function c. They define natural segment classes: i.e. those segments which as a group undergo similar phonological processes.
    [Show full text]
  • Introduction to Case, Animacy and Semantic Roles: ALAOTSIKKO
    1 Introduction to Case, animacy and semantic roles Please cite this paper as: Kittilä, Seppo, Katja Västi and Jussi Ylikoski. (2011) Introduction to case, animacy and semantic roles. In: Kittilä, Seppo, Katja Västi & Jussi Ylikoski (Eds.), Case, Animacy and Semantic Roles, 1-26. Amsterdam: John Benjamins. Seppo Kittilä Katja Västi Jussi Ylikoski University of Helsinki University of Oulu University of Helsinki University of Helsinki 1. Introduction Case, animacy and semantic roles and different combinations thereof have been the topic of numerous studies in linguistics (see e.g. Næss 2003; Kittilä 2008; de Hoop & de Swart 2008 among numerous others). The current volume adds to this list. The focus of the chapters in this volume lies on the effects that animacy has on the use and interpretation of cases and semantic roles. Each of the three concepts discussed in this volume can also be seen as somewhat problematic and not always easy to define. First, as noted by Butt (2006: 1), we still have not reached a full consensus on what case is and how it differs, for example, from 2 the closely related concept of adpositions. Second, animacy, as the label is used in linguistics, does not fully correspond to a layperson’s concept of animacy, which is probably rather biology-based (see e.g. Yamamoto 1999 for a discussion of the concept of animacy). The label can therefore, if desired, be seen as a misnomer. Lastly, semantic roles can be considered one of the most notorious labels in linguistics, as has been recently discussed by Newmeyer (2010). There is still no full consensus on how the concept of semantic roles is best defined and what would be the correct or necessary number of semantic roles necessary for a full description of languages.
    [Show full text]
  • Verbal Agreement with Collective Nominal Constructions: Syntactic and Semantic Determinants
    ATLANTIS Journal of the Spanish Association of Anglo-American Studies 39.1 (June 2017): 33-54 issn 0210-6124 | e-issn 1989-6840 Verbal Agreement with Collective Nominal Constructions: Syntactic and Semantic Determinants Yolanda Fernández-Pena Universidade de Vigo [email protected] This corpus-based study investigates the patterns of verbal agreement of twenty-three singular collective nouns which take of-dependents (e.g., a group of boys, a set of points). The main goal is to explore the influence exerted by theof -PP on verb number. To this end, syntactic factors, such as the plural morphology of the oblique noun (i.e., the noun in the of- PP) and syntactic distance, as well as semantic issues, such as the animacy or humanness of the oblique noun within the of-PP, were analysed. The data show the strongly conditioning effect of plural of-dependents on the number of the verb: they favour a significant proportion of plural verbal forms. This preference for plural verbal patterns, however, diminishes considerably with increasing syntactic distance when the of-PP contains a non-overtly- marked plural noun such as people. The results for the semantic issues explored here indicate that animacy and humanness are also relevant factors as regards the high rate of plural agreement observed in these constructions. Keywords: agreement; collective; of-PP; distance; animacy; corpus . Concordancia verbal con construcciones nominales colectivas: sintaxis y semántica como factores determinantes Este estudio de corpus investiga los patrones de concordancia verbal de veintitrés nombres colectivos singulares que toman complementos seleccionados por la preposición of, como en los ejemplos a group of boys, a set of points.
    [Show full text]
  • Pronouns: a Resource Supporting Transgender and Gender Nonconforming (Gnc) Educators and Students
    PRONOUNS: A RESOURCE SUPPORTING TRANSGENDER AND GENDER NONCONFORMING (GNC) EDUCATORS AND STUDENTS Why focus on pronouns? You may have noticed that people are sharing their pronouns in introductions, on nametags, and when GSA meetings begin. This is happening to make spaces more inclusive of transgender, gender nonconforming, and gender non-binary people. Including pronouns is a first step toward respecting people’s gender identity, working against cisnormativity, and creating a more welcoming space for people of all genders. How is this more inclusive? People’s pronouns relate to their gender identity. For example, someone who identifies as a woman may use the pronouns “she/her.” We do not want to assume people’s gender identity based on gender expression (typically shown through clothing, hairstyle, mannerisms, etc.) By providing an opportunity for people to share their pronouns, you're showing that you're not assuming what their gender identity is based on their appearance. If this is the first time you're thinking about your pronoun, you may want to reflect on the privilege of having a gender identity that is the same as the sex assigned to you at birth. Where do I start? Include pronouns on nametags and during introductions. Be cognizant of your audience, and be prepared to use this resource and other resources (listed below) to answer questions about why you are making pronouns visible. If your group of students or educators has never thought about gender-neutral language or pronouns, you can use this resource as an entry point. What if I don’t want to share my pronouns? That’s ok! Providing space and opportunity for people to share their pronouns does not mean that everyone feels comfortable or needs to share their pronouns.
    [Show full text]
  • Arxiv:2106.08037V1 [Cs.CL] 15 Jun 2021 Alternative Ways the World Could Be
    The Possible, the Plausible, and the Desirable: Event-Based Modality Detection for Language Processing Valentina Pyatkin∗ Shoval Sadde∗ Aynat Rubinstein Bar Ilan University Bar Ilan University Hebrew University of Jerusalem [email protected] [email protected] [email protected] Paul Portner Reut Tsarfaty Georgetown University Bar Ilan University [email protected] [email protected] Abstract (1) a. We presented a paper at ACL’19. Modality is the linguistic ability to describe b. We did not present a paper at ACL’20. events with added information such as how de- sirable, plausible, or feasible they are. Modal- The propositional content p =“present a paper at ity is important for many NLP downstream ACL’X” can be easily verified for sentences (1a)- tasks such as the detection of hedging, uncer- (1b) by looking up the proceedings of the confer- tainty, speculation, and more. Previous studies ence to (dis)prove the existence of the relevant pub- that address modality detection in NLP often p restrict modal expressions to a closed syntac- lication. The same proposition is still referred to tic class, and the modal sense labels are vastly in sentences (2a)–(2d), but now in each one, p is different across different studies, lacking an ac- described from a different perspective: cepted standard. Furthermore, these senses are often analyzed independently of the events that (2) a. We aim to present a paper at ACL’21. they modify. This work builds on the theoreti- b. We want to present a paper at ACL’21. cal foundations of the Georgetown Gradable Modal Expressions (GME) work by Rubin- c.
    [Show full text]
  • Personal Pronouns, Pronoun-Antecedent Agreement, and Vague Or Unclear Pronoun References
    Personal Pronouns, Pronoun-Antecedent Agreement, and Vague or Unclear Pronoun References PERSONAL PRONOUNS Personal pronouns are pronouns that are used to refer to specific individuals or things. Personal pronouns can be singular or plural, and can refer to someone in the first, second, or third person. First person is used when the speaker or narrator is identifying himself or herself. Second person is used when the speaker or narrator is directly addressing another person who is present. Third person is used when the speaker or narrator is referring to a person who is not present or to anything other than a person, e.g., a boat, a university, a theory. First-, second-, and third-person personal pronouns can all be singular or plural. Also, all of them can be nominative (the subject of a verb), objective (the object of a verb or preposition), or possessive. Personal pronouns tend to change form as they change number and function. Singular Plural 1st person I, me, my, mine We, us, our, ours 2nd person you, you, your, yours you, you, your, yours she, her, her, hers 3rd person he, him, his, his they, them, their, theirs it, it, its Most academic writing uses third-person personal pronouns exclusively and avoids first- and second-person personal pronouns. MORE . PRONOUN-ANTECEDENT AGREEMENT A personal pronoun takes the place of a noun. An antecedent is the word, phrase, or clause to which a pronoun refers. In all of the following examples, the antecedent is in bold and the pronoun is italicized: The teacher forgot her book.
    [Show full text]