Template Based Affix Stemmer for a Morphologically Rich Language

Total Page:16

File Type:pdf, Size:1020Kb

Template Based Affix Stemmer for a Morphologically Rich Language 146 The International Arab Journal of Information Technology, Vol. 12, No. 2, March 2015 Template Based Affix Stemmer for a Morphologically Rich Language Sajjad Khan 1, Waqas Anwar 1,2 , Usama Bajwa 1 and Xuan Wang 2 1Department of Computer Science, COMSATS Institute of Information Technology, Pakistan 2Harbin Institute of Technology Shenzhen Graduate School, China Abstract: Word stemming is one of the most significant factors that affect the performance of a Natural Language Processing (NLP) application such as Information Retrieval (IR) system, part of speech tagging, machine translation system and syntactic parsing. Urdu language raises several challenges to NLP largely due to its rich morphology. In Urdu language, stemming process is different as compared to that for other languages, as it not only depends on removing prefixes and suffixes but also on removing infixes. In this paper, we introduce a template based stemmer that eliminates all kinds of affixes i.e., prefixes, infixes and suffixes, depending on the morphological pattern of the word. The presented results are excellent and this stemmer can prove to be very affective for a morphologically rich language. Keywords: IR, stemming, prefix, infix, suffix, exception lists. Received October 19, 2012; accepted January 20, 2013; published online April 23, 2014 1. Introduction both the query and the database are returned to the clients. This occurs when a match is present between For many researchers Human Computer Interaction the information items and the queries. (HCI) is a significant field of interest. Natural To get a match between these two elements, the Language Processing (NLP) is one of the core research items should be represented in some form, both in the areas that support HCI. documents as well as in the query. Variations of a Urdu NLP is one of the new research areas being word present in a document prevent an exact match explored since recent past. Urdu is an Indo-Aryan between a query word and the relevant document language. The word “Urdu” itself comes from a words. To overcome this issue, the replacement of the Turkish word “ordu”, meaning “tent” or “army”. words with their relevant stems should be performed. Therefore, Urdu is some times called “Lashkari Zaban” The stem is that portion of a word, which is left or “The Language of the Army”. It is the national after affixes truncation (prefixes, suffixes and infixes). language of Pakistan and is one of the twenty-three A usual example of a stem can be the word “mix” official languages of India. It is written in Perso-Arabic which is the stem for the variants “mixture”, “mixed” script. The Urdu’s vocabulary consists of several and “mixable”. Stemmer is an algorithm that reduces languages including Arabic, Turkish, Sanskrit and Farsi the word to their stem/ root form. Similarly, the Urdu (Persian). stemmer should stem the words (Presence), Urdu’s script is right-to-left and form of a word’s (The audience), (Absent) to Urdu character is context sensitive, means the form of a stem word (Present). character is dissimilar in a word because of the location Stemming is part of a complex process which of that character in the word (beginning, centre and on consists of taking out the words from text and turning the ending). them into index terms in an IR system. Indexing is the Information Retrieval (IR) system is used to make process of selecting keywords for representing a easy access to stored information. It also, deals with the document. The essential part of any IR system for text saving, representation and organization of information searching is the capability to correctly recognize the objects. Modules of an IR system consist of a group of variant word forms that take place ranging from information objects, a group of requests and a method grammatical variations to alternative spellings of the to decide which information items are most possibly to words in the query of user. Normally such variants are meet the requirements of the requests. Principally, covered by means of right-hand truncation or through customers of information shape their information needs stemming. The truncation is performed by the user, in the form of queries and forward them to the IR who eliminates letters from the right hand side of the system. Depending upon a query, the system yields word to make it look like a possible root; the search information items that are supposed to be related to the then retrieves all words that begin with this root, query. In other words, the objects that are common in despite their endings. On the other hand, Stemming is Template Based Affix Stemmer for a Morphologically Rich Language 147 carried out automatically by decreasing every word compile and compute are both stemmed to comp. having identical root to common form, usually by The under-stemming arises when words that are eliminating derivational and inflectional suffixes. definitely morphological variants are not conflated Urdu is a morphologically complex language. It uses e.g., compile being stemmed to comp and both types of morphologies, i.e., derivational and compiling to compil. inflectional. Therefore, depending on the • Suffix Substitution : Is the improved version of morphological complexity of a language, both suffix stripping. A number of rules are developed derivational and inflectional morphologies can result in for specific suffixes in which a suffix will replaces a vast numbers of variants for a single word. with some other suffix e.g., the suffix “ies” is Accordingly, word form variations can have a strong replaced with “y”. Suppose a word “families”, with impact on the efficiency of an IR system and on the help of suffix substitution we can change this morphological analysis tools. word to “family”. The stemmer is also applicable to other NLP • Lemmatization Algorithm : Is a different method of applications needing morphological analysis, for finding the stem of a word. This method first finds example, document compression, spell checkers, text out the part of speech of a word and then on each analysis, word frequency count studies, word parsing part of speech, normalization rules are applied. etc., after analyzing different stemmers, we have According to these rules stemming is performed. noticed that most of the stemmers are based on the • Stochastic Algorithm : Uses probability to discover truncation of prefixes and suffixes to get stem without the root form of a word. The algorithm is trained to dealing with the infixes. In Urdu language, applying a develop a probabilistic model. The model consists light weight stemmer on a word having infix produces of complex linguistic rules. The word is inputted to wrong stem by applying prefix and suffix stripping. the trained model and then by using its internal Therefore, this study handles those words that contain linguistic rules, the root form of a word is infixes by using different templates. generated. The rest of the paper organization is as follows: In • Hybrid Approaches : Use a number of approaches section 2 different stemming approaches are discussed, for stemming e.g., using suffix-stripping technique in section 3 characteristics of Urdu language are along with suffix substitution technique. discussed, section 4 discusses the proposed urdu • Affix Approaches : Remove prefix and suffix from a stemmer and finally the results of the stemmer are word to get a stem word e.g., “unnoted” is a word discussed in section 5. in which “un” is a prefix and “d” is a suffix. • N-gram Analysis : Is another technique, which is 2. Related Work used for stemming. The word “gram” is a unit of measurement of text that may refer to a single There are different approaches used for stemming. character or a single word. The series of two grams Some of the approaches are explained below: is called bigram and series of three grams is called • Table Lookup Method [16]: Is also, known as brute trigram. This technique uses a table of bigram and force method, where every word and its respective trigram words to find the stem of a word. stem are stored in table. The stemmer finds the stem • Iteration and Longest Match Algorithms : Are used of the input word in the respective stem table. This for stemming purpose. In the iteration method there process is very fast, but it has severe disadvantage is an order for classes for suffixes. The last order i.e., large memory space required for words and their class, which happens at the end of the word, stems and the difficulties in creating such tables. contains suffixes. Iteration algorithms use recursive This kind of stemming algorithm might not be procedure. This approach removes the string in practical. order class, starts from the endings and then shifts • Suffix Stripping Algorithms : Do not just depend on a towards the beginning. In the longest match lookup table that contains inflected forms and their principle here ending of the word is matched with stem form. As an alternative, a list can also be the list of suffixes. If more than one ending offers a maintained that contains “rules” which provide a match then the longest match should be removed path of execution for the algorithm, given an input e.g., if there are two suffixes “ies” and “es” will be word, to get its stem form. For example, if the word there then “ies” will be removed [16]. ends in “ing”, then eliminate the “ing”. If the word Lovins [8] published the first English stemmer and ends in “es”, remove the “es”. Suffix stripping used about 260 rules for stemming the English approach only removes the suffixes from a word and language. The author suggested a stemmer consisting it is much simpler to maintain.
Recommended publications
  • Malayalam Noun and Verb Morphological Analyzer: a Simple Approach
    Malayalam Noun and Verb Morphological Analyzer: A Simple Approach Nimal J Valath1, Narsheedha Beegum2 M.Tech Student1, M.Tech Student2 ABSTRACT Malayalam is a language of the Dravidian family and is one of This paper discusses the methods involved in the the four major languages of this family with a rich literary development of a Simple Malayalam Verb and Noun tradition. It is very close to Tamil, one of the major languages of Morphological Analyzer. Since in Malayalam, words can be the same family. This was due to the extensive cultural derived from a root word, a purely dictionary based approach synthesis that took place between the speakers of the two for Morphological analysis is not practical. Hence, a ‘Rule-cum- languages. The origin of Malayalam as a distinct language may Dictionary’ based approach is followed along with the Suffix be traced to the last quarter of 9th Century A.D. Throughout its Stripping concept. The grammatical behavior of the language, gradual evolution Malayalam has been influenced by the the formation of words with multiple suffixes and the various circumstances prevailed on different periods. preparation of the language are dealt with here, with examples of noun and verb forms in detail. Mainly Malayalam was influenced by Sanskrit and Prakrit brought into Kerala by Brahmins. After the 11th century a unique mixture of the native languages of Kerala and Sanskrit Keywords known as Manipravalam served as the medium of literary Morphological Analyzer, Malayalam, Suffix stripping, expression. Malayalam absorbed a lot from Sanskrit, not only in Transliteration, Retransliteration, Verb and Noun, Sandhi rules, the lexical level, but also in the phonemic, morphemic and Word Formation, Noun Cases, Algorithm.
    [Show full text]
  • Unsupervised Separation of Transliterable and Native Words For
    Unsupervised Separation of Transliterable and Native Words for Malayalam Deepak P Queen’s University Belfast, UK [email protected] Abstract names that need to be transliterated than translated to correlate with English text. On a manual analy- Differentiating intrinsic language words sis of a news article dataset, we found that translit- from transliterable words is a key step erated words and proper nouns each form 10-12% aiding text processing tasks involving dif- of all distinct words. It is useful to transliterate ferent natural languages. We consider such words for scenarios that involve processing the problem of unsupervised separation of Malayalam text in the company of English text; transliterable words from native words for this will avoid them being treated as separate index text in Malayalam language. Outlining a terms (wrt their transliteration) in a multi-lingual key observation on the diversity of char- retrieval engine, and help a statistical translation acters beyond the word stem, we develop system to make use of the link to improve effec- an optimization method to score words tiveness. In this context, it ia notable that there has based on their nativeness. Our method re- been recent interest in devising specialized meth- lies on the usage of probability distribu- ods to translate words that fall outside the core vo- tions over character n-grams that are re- cabulary (Tsvetkov and Dyer, 2015). fined in step with the nativeness scorings In this paper, we consider the problem of sepa- in an iterative optimization formulation. rating out such transliterable words from the other Using an empirical evaluation, we illus- words within an unlabeled dataset; we refer to trate that our method, DTIM, provides sig- the latter as “native” words.
    [Show full text]
  • Children's Possessive Structures
    Ling 404 Lecture Notes No.4 Synchronic Clines in Morphology Productivity Clines: Japanese, Navajo, Mohawk, Eskimo, vs. Spanish, Italian, English One of the questions will be asking throughout is where do the above languages fall on the productivity cline and why (providing data and analyses.) One question to ask is to what degree is the lexicon ‘morpheme-based’ or ‘word-based’ (Chapters 3-4)? ‘Working Memory’ is implicated in the choice. For instance, are speakers all equally productive with their morpheme-units as tucked within word, a [-Fusion] language, or do some languages rather require morphemes within words to be memorized and incorporated as part of the lexical item, a [+Fusion] language? In addition to labeling languages as [+]Synthetic (as in Turkish, Hungarian, Spanish, English, Mohawk) or [-]Synthetic (as in Chinese, Vietnamese), the following data provide an additional exercise in teasing out what might be going on in languages which carry such a large number of embedded morphemes. Question leading to mid-term: How might such morphemes in Polysynthetic-type languages be stored and processed? The notion of [+/-Fusion] will be the central question here as we move to our mid-term material of this class. Typically, agglutinative morphemes are considered to be ‘loosely’ structured in that one morpheme has a one-to-one meaning. But the question might rather be how productive are the morphemes in isolation—viz., do they allow for movement? The question of movement, both at the word-level and at the morpheme-level will allow us to determine the nature of +/- productivity and +/- fusion. Regarding Movement.
    [Show full text]
  • Abstracts of the Psychonomic Society — Volume 13 — November 2008 49Th Annual Meeting — November 13–16, 2008 — Chicago, Illinois
    Abstracts of the Psychonomic Society — Volume 13 — November 2008 49th Annual Meeting — November 13–16, 2008 — Chicago, Illinois Papers 1–7 Friday Morning Motion and Attention motion is mixed. In the present study, target stimuli were associated with Grand Ballroom, Friday Morning, 8:00–9:40 objects that loomed, receded or remained static in arrays of varying size. Results showed that both motion types received equal prioritization, as Chaired by Gary Chon-Wen Shyi, National Chung Cheng University evidenced by their parallel search slopes, yet looming targets benefited from an overall reduction in reaction time (RT). Further investigation 8:00–8:15 (1) ruled out possible confounding explanations for this RT advantage, Differential Distribution of Visuospatial Attention in Tracking Mul- while a perceptual measure of performance confirmed the attentional tiple Moving Objects. GARY C.-W. SHYI & SUNG-EN CHIEN, Na- equivalence of the two motion types. Taken together, these results in- tional Chung Cheng University—Paying attention to a relatively com- dicate that looming and receding objects receive equal prioritization plex object has shown evidence for differential distribution within the during attentional selection. However, it may be that postattentional pro- object. Here, we explored differential distribution of attention when mul- cesses, possibly those involved in motor preparation, facilitate responses tiple moving objects were visually tracked. In Experiments 1 and 2, we to looming motion. not only replicated the findings reported by Alvarez and Scholl (2005), demonstrating both attentional concentration and attentional amplifica- 9:20–9:35 (5) tion, but also generalized the effects to uniformed circular shapes. In Individual Differences in Voluntary Visual Attention.
    [Show full text]
  • Abstracts (PDF)
    Abstracts of the Psychonomic Society — Volume 12 — November 2007 48th Annual Meeting — November 15–18, 2007 — Long Beach, California Papers 1–7 Friday Morning Implicit Memory is a widely used experimental procedure that has been modeled in Regency ABC, Friday Morning, 8:00–9:20 order to obtain ostensibly separate measures for explicit memory and implicit memory. Existing models are critiqued here and a new con- Chaired by Neil W. Mulligan fidence process-dissociation (CPD) model is developed for a modi- University of North Carolina, Chapel Hill fied process-dissociation task that uses confidence ratings in con- junction with the usual old/new recognition response. With the new 8:00–8:15 (1) model there are several direct tests for the key assumptions of the stan- Attention and Auditory Implicit Memory. NEIL W. MULLIGAN, dard models for this task. Experimental results are reported here that University of North Carolina, Chapel Hill—Traditional theorizing are contrary to the critical assumptions of the earlier models for the stresses the importance of attentional state during encoding for later process-dissociation task. These results cast doubt on the suitability memory, based primarily on research with explicit memory. Recent re- of the process-dissociation procedure itself for obtaining separate search has investigated the role of attention in implicit memory in the measures for implicit and explicit memory. visual modality. The present experiments examined the effect of divided attention on auditory implicit memory, using auditory perceptual iden- Attentional Selection and Priming tification, word-stem completion, and word-fragment completion. Par- Regency DEFH, Friday Morning, 8:00–10:00 ticipants heard study words under full attention conditions or while si- multaneously carrying out a distractor task.
    [Show full text]
  • Processing Distinctions Between Stems and Affixes: Evidence from a Non-Fluent Aphasic Patient*
    cognition, 36 (1990) 129-153 Processing distinctions between stems and affixes: Evidence from a non-fluent aphasic patient* LORRAINE K. NLER SUSANBEHRENS HOWARD COBB University of Cambridge WlLLlAM MARSLEN-WILSON MRC Applied Psychology Unit, Cambridge Received June 2, 1989, final revision accepted February 19, 1990 Abstract Tyler, L.K., Behrens, S., Cobb, H., and Marsten-Witson, W., 1990. Processing distinctions between stems and affixes: Evidence from a non-fluent aphasic patient. Cognition, 36: 129-153. In this paper, we study the ability of a non-fluent aphasic patient, BX, to comprehend morphologically complex words when they appear in utterance contexts. Wefirst establish that he is insensitive to the contextual appropriateness of both derived and inflected words. In a further experiment we show that he has no difficulty processing the stems of complex words and conclude th-zt his problem is with the bound morphemes themselves. We then ask whether this problem is due to his inability to access either the phonological form of a morphologically complex word or its semantic andlor syntactic content. We find that only the access of semantic and syntactic content is impaired. We conclude from these six studies that: (a) BN presents a counter-example to the claim that non-fluent patients have particular dificulty with those aspects of morphology which have a syntactic function; (b) BN processes both derived and inflected words by mapping the sensory input onto the entire full-form of a complex word, but the semantic and syntactic content of the stem alone is accessed and integrated into the context. The semantic and syntactic implica- tions of the suffix are never evaluated.
    [Show full text]
  • Word Formation
    English 256 Spring 2005 Word (Stem) Formation I. Derivation A. Affixation 1. Prefixation a. English i. write/rewrite read/reread injure/reinjure shoot/reshoot play/replay do/redo move/remove tell/retell ii. large/enlarge dear/endear able/enable purple/empurple rich/enrich iii. do/undo tie/untie fasten/unfasten wrap/unwrap cover/uncover dress/undress latch/unlatch lock/unlock iv. kind/unkind easy/uneasy fit/unfit believable/unbelievable gentle/ungentle afraid/unafraid bound/unbound b. Maricopa (Southwest American Indian) i. a’uly ‘carry (something long)’ aduuly ‘hide (something long)’ ch’uly ‘carry (things)’ chduuly ‘hide (things)’ t’uly ‘carry (something round)’ tduuly ‘hide (something round)’ a’or ‘put (something long) on’ anak ‘put (something long) in liquid’ t’or ‘put (something round) on’ chnak ‘put (things) in liquid’ tnak ‘put (something round) in liquid’ ii. puy ‘die’ tpuy ‘kill’ pom ‘burn’ tpom ‘burn (something)’ ‘er ‘be scared’ t’er ‘scare’ herher ‘be wrinkled’ therher ‘wrinkle (something)’ hmaaly ‘be white’ thmaaly ‘white’ hpily ‘be dirty’ thpily ‘make dirty’ 2. Suffixation a. English i. writer/writer read/reader do/doer work/worker fly/flier sing/singer dance/dancer drive/driver run/runner ii. type/typist art/artist violin/violinist manicure/manicurist left/leftist race/racist duel/duelist iii. quick/quickly childish/childishly true/truly angry/angrily final/finally truthful/truthfully false/falsely amazing/amazingly happy/happily correct/correctly real/really English 256 Spring 2005 b. Kurdish (Near Eastern) aaqil ‘wise’ aaqilii ‘forethought’ draiz ‘long’ draizii ‘length’ diz ‘robber’ dizii ‘robbery’ garm ‘warm’ garmii ‘warmth’ c. Hanunoo (Philippines) usa ‘one’ ?usahi ‘make it one!’ upat ‘four’ upati ‘make it four!’ duwa ‘two’ duwahi ‘make it two!’ unum ‘six’ unumi ‘make it six!’ tulu ‘three’ tuluhi ‘make it three!’ 3.
    [Show full text]
  • Cree and Anishnaabe Narrative Medicine in the Renewal of Ancestral Literature
    MASKIHKÎYÂTAYÔHKÊWINA - MASHKIKIIWAADIZOOKEWIN: CREE AND ANISHNAABE NARRATIVE MEDICINE IN THE RENEWAL OF ANCESTRAL LITERATURE A dissertation submitted to the Committee of Graduate Studies in partial fulfillment of the requirements for the degree of Doctor of Philosophy in the Faculty of Arts and Science Trent University Naagaajiwanong : Peterborough, Ontario, Canada © Copyright Jud Sojourn 2013 Indigenous Studies Ph.D. Graduate Program January 2014 ABSTRACT maskihkîyâtayôhkêwina- mashkikiiwaadizookewin: Cree and Anishnaabe Narrative Medicine in the Renewal of Ancestral Literature Jud Sojourn This work represents an experiment in developing Cree and Anishnaabe nation- specific approaches to understanding Cree and Anishnaabe texts. The binding premise that guides this work has to do with narrative medicine, the concept that narrative arts, whether ancestral storytelling or current poetry have medicine, or the ability to heal and empower individuals and communities. As âtayôhkêwin in Cree and aadizookewin in Anishnaabemowin refer to ancestral traditional narratives, and while maskihkiy in Cree, and mashkiki in Anishnaabemowin refer to medicine, maskihkîyâtayôhkêwina and mashkikiiwaadizookewin mean simply ‘narrative medicine’ in Cree and Anishnaabemowin respectively. After establishing a formative sense for what narrative medicine is, this work continues by looking at the bilingual Ojibwa Texts (1917, 1919) transcribed by William Jones in 1903-1905 on the north shore of Lake Superior and in northern Minnesota Anishnaabe communities, those spoken by Anishnaabe community members Gaagigebinesiikwe, Gaagigebinesii, Midaasookanzh, Maajiigaaboo, and Waasaagooneshkang. Then focus then turns to the bilingual Plains Cree Texts (1934) transcribed by Leonard Bloomfield at the Sweet Grass Reserve in Saskatchewan and ii spoken by Cree community members nâhnamiskwêkâpaw, sâkêwêw, cicikwayaw, kâ- kîsikaw pîhtokêw , nakwêsis, mimikwâs, and kâ-wîhkaskosahk.
    [Show full text]
  • Word (Stem) Formation I
    English 256 Spring 2004 Word (Stem) Formation I. Derivation A. Affixation 1. Prefixation a. English i. write/rewrite read/reread injure/reinjure shoot/reshoot play/replay do/redo move/remove tell/retell ii. large/enlarge dear/endear able/enable purple/empurple rich/enrich iii. do/undo tie/untie fasten/unfasten wrap/unwrap cover/uncover dress/undress latch/unlatch lock/unlock iv. kind/unkind easy/uneasy fit/unfit believable/unbelievable gentle/ungentle afraid/unafraid bound/unbound b. Maricopa (Southwest American Indian) i. a’uly ‘carry (something long)’ aduuly ‘hide (something long)’ ch’uly ‘carry (things)’ chduuly ‘hide (things)’ t’uly ‘carry (something round)’ tduuly ‘hide (something round)’ a’or ‘put (something long) on’ anak ‘put (something long) in liquid’ t’or ‘put (something round) on’ chnak ‘put (things) in liquid’ tnak ‘put (something round) in liquid’ ii. puy ‘die’ tpuy ‘kill’ pom ‘burn’ tpom ‘burn (something)’ ‘er ‘be scared’ t’er ‘scare’ herher ‘be wrinkled’ therher ‘wrinkle (something)’ hmaaly ‘be white’ thmaaly ‘white’ hpily ‘be dirty’ thpily ‘make dirty’ 2. Suffixation a. English i. writer/writer read/reader do/doer work/worker fly/flier sing/singer dance/dancer drive/driver run/runner ii. type/typist art/artist violin/violinist manicure/manicurist left/leftist race/racist duel/duelist iii. quick/quickly childish/childishly true/truly angry/angrily final/finally truthful/truthfully false/falsely amazing/amazingly happy/happily correct/correctly real/really English 256 Spring 2004 b. Kurdish (Near Eastern) aaqil ‘wise’ aaqilii ‘forethought’ draiz ‘long’ draizii ‘length’ diz ‘robber’ dizii ‘robbery’ garm ‘warm’ garmii ‘warmth’ c. Hanunoo (Philippines) usa ‘one’ ?usahi ‘make it one!’ upat ‘four’ upati ‘make it four!’ duwa ‘two’ duwahi ‘make it two!’ unum ‘six’ unumi ‘make it six!’ tulu ‘three’ tuluhi ‘make it three!’ 3.
    [Show full text]
  • Word Construction: Tracing an Optimal Path Through the Lexicon
    Word construction: tracing an optimal path through the lexicon Gabriela Caballero (UC San Diego) and Sharon Inkelas (UC Berkeley) Word construction: tracing an optimal path through the lexicon 1. Introduction In this paper we propose a new theory of word formation which blends three components: the “bottom-up” character of lexical-incremental approaches of morphology, the “top-down” or meaning-driven character of inferential-realizational approaches to inflectional morphology, and the competition between word forms that is inherent in Optimality Theory.1 Optimal Construction Morphology (OCM) is a theory of morphology that selects the optimal combination of lexical constructions to best achieve a target meaning. OCM is an incremental theory, in that words are built one layer at a time. In response to a meaning target, the morphological grammar dips into the lexicon, building and assessing morphological constituents incrementally until the word being built optimally matches the target meaning. We apply this new theory to a vexing optimization puzzle confronted by all theories of morphology: why is redundancy in morphology rejected as ungrammatical in some situations (“blocking”), but absolutely required in others (“multiple / extended exponence”)? We show that the presence or absence of redundant layers of morphology follows naturally within OCM, without requiring external stipulations of a kind that have been necessary in other approaches. Our analysis draws on and further develops two notions of morphological strength that have been proposed in the literature: stem type, on a scale from root (weakest) to word (strongest), and exponence strength, which is related to productivity and parsability. 2. The case study: blocking vs.
    [Show full text]
  • Unsupervised Separation of Native and Loanwords for Malayalam and Telugu†‡
    Natural Language Engineering 1 (1): 000–000. Printed in the United Kingdom 1 c 1998 Cambridge University Press Unsupervised Separation of Native and Loanwords for Malayalam and Teluguyz Sridhama Prakhya1 and Deepak P2 1HHMI Janelia Research Campus, Ashburn VA, USA 2Queen’s University Belfast, UK [email protected] [email protected] ( Received 29 October 2019 ) Abstract Quite often, words from one language are adopted within a different language without translation; these words appear in transliterated form in text written in the latter lan- guage. This phenomenon is particularly widespread within Indian languages where many words are loaned from English. In this paper, we address the task of identifying loanwords automatically and in an unsupervised manner, from large datasets of words from aggluti- native Dravidian languages. We target two specific languages from the Dravidian family, viz., Malayalam and Telugu. Based on familiarity with the languages, we outline an obser- vation that native words in both these languages tend to be characterized by a much more versatile stem - stem being a shorthand to denote the subword sequence formed by the first few characters of the word - than words that are loaned from other languages. We harness this observation to build an objective function and an iterative optimization formulation to optimize for it, yielding a scoring of each word’s nativeness in the process. Through an extensive empirical analysis over real-world datasets from both Malayalam and Tel- ugu, we illustrate the effectiveness of our method in quantifying nativeness effectively over available baselines for the task. 1 Introduction arXiv:2002.05527v1 [cs.CL] 12 Feb 2020 Malayalam and Telugu are two widely spoken languages in southern India: Malay- alam is an official state language of Kerala, Lakshadweep, and Mahe while Telugu is the official state language of Telangana and Andhra Pradesh.
    [Show full text]
  • The Power of a Single Representation: Morphological Tone and Allomorphy Eva Zimmermann, Leipzig University 1. Introduction
    The power of a single representation: Morphological tone and allomorphy Eva Zimmermann, Leipzig University Allomorphy: its logic and limitations July 8, 2014, Jerusalem ¥ discuss instances of surface alternations in the domain of morphological tone ¥ propose mono-representational optimality-theoretic analyses based on marked- ness and faithfulness constraints on (autosegmental) tone 1. Introduction 1.1 PCSA and mono- vs. polyrespresentational analyses (1) Phonologically conditioned suppletive allomorphy (PCSA) (for example Paster, 2006) The surface representation/eect of one morpheme M is dierent depending on the phono- logical context and this dierence cannot be attributed to phonological changes indepen- dently expected in this context. (2) Segmental PCSA in Moroccan Arabic (Mascaró, 2007) Base 3.Sg.Masc Possible analysis: a. Safu Safuh ‘error’ 3.Sg.M $ /h/ /V__ b. ktab ktabu ‘book’ 3.Sg.M $ /u/ /C__ ¥ poly-representational analysis • another analysis: an elsewhere allomorph ‘steps in to ll the gap left behind’ by phonological blocking (Paster, 2009a, 19) • non-concatenative ‘PCSA’: in (3), dierent operations (gemination, vowel lengthening) apply and in (4), one non-concatenative operation applies in dierent positions of its base (3) Non-concatenative ‘PCSA’ in Asante Twi (Dolphyne, 1996; Paster, 2010) Base Past (+Obj) Possible analysis: a. tO ‘to buy’ tO: P80/98 µ + µ µ µ dane ‘to turn’ dane: P80/99 t O ! t O b. nom ‘to drink’ nom: P80/99 µ + µ µ µ Opame: ‘s/he sewed (it)’ Opam: D91 n o m ! n o m ¥ mono-representational analysis E.Zimmermann: Tone allomorphy (4) Non-concatenative ‘PCSA’ in Chaha (McCarthy, 1983, 179) Base 3.Sg.Masc.Object Possible analysis: a.
    [Show full text]