Engineering ABSTRACT Building an Efficient Reverse Dictionary

Total Page:16

File Type:pdf, Size:1020Kb

Engineering ABSTRACT Building an Efficient Reverse Dictionary Research Paper Volume : 3 | Issue : 5 | EngineeringMay 2014 • ISSN No 2277 - 8179 KEYWORDS : Building an Efficient Reverse Dictionary Sneha P.S PG Scholar, Department of Computer Science & Engineering, Vedavyasa Institute of Technology, University of Calicut , Kerala, India Mrs.S.Kavitha Associate Professor, Department of Computer Science & Engineering, Vedavyasa Murugesan Institute of Technology, University of Calicut , Kerala, India ABSTRACT In a traditional forward dictionary, words are mapped to their definitions. In the case of a reverse diction- ary, a phrase describing the desired concept is taken as the user input, and returns a set of candidate words that satisfy the input phrase. This research work describes the implementation of an efficient reverse dictionary where the user is also able to find out the actual dictionary definition of those words returned as output and thereby help the user to check the accuracy of the re- sults obtained from the reverse dictionary output. Effectively, a Reverse Dictionary addresses the “word is on the tip of my tongue, but I can’t quite remember it” problem. This work has significant application not only for the general public, particularly those who work closely with words, but also in the general field of conceptual search. This research work proposes a novel approach called “wordster” to create and process the reverse dictionary and also evaluate the retrieval accuracy and runtime response time performance. The wordster approach can provide significant improvements in performance scale without sacrificing the quality of the result. I. INTRODUCTION dictionary .An online dictionary [1] is a dictionary that is acces- WordNet organizes them in the order of the most frequently sibleThis papervia the report Internet work through on creation a web of browser. an efficient A forward online dictionreverse- used to the least frequently used (Semcor). word searching. However, there is no text stemming. The exact we already had the meaning or the idea but aren’t too sure of Work in text analyzer, surveyed in detail in [3] , performs exact theary appropriateis one which word, maps thenfrom REVERSEwords to DICTIONARYtheir definitions. is the What right if aretext words matching that isare case used sensitive. in particular That phrasesmeans, wherethe word they “JAVA” denote is different from the word “Java”. Synonyms such as “sick” and “ill” one for use. For example, to find the word “doctor” knowing only that he is a “person who cures disease”. The RD addresses the mustunique consider meaning multi-word but are not expressions identified. andThe multiplework discussed senses inof students,“word is onprofessional the tip of writers,my tongue, scientists, but I can’tmarketing quite andremember adver- polysemous[4] need to tackle words other and theirparts translations.of speech in additionThe pairwise to nouns similar and- tisementit” problem. professionals, This problem teachers, is mainly the facedlist goes by writers,on. including ity of words in two phrases is well described in and the major - the following two constraints. First, the user input phrase may drawback identified in the work is sequence of words is not con While creating a reverse dictionary, it is important to consider thesidered same important.For words and so example, the method Consider in [2] twowould phrases: consider “the them dog - who bit the man” and “the man who bit the dog.” They contain not exactly match the forward dictionary definition of a word.- convey very different meanings. For example, user may enter the phrase “talks a lot” when look virtually equivalent, without considering that the two phrases containing for asame concept words such but as are“garrulous” conceptually whose similar. dictionary Second, defini the SVM approach discussed in [5] deal with the pre-creation of a tion might be “full of trivial conversation”. Both phrases do not online. According to a recent study, online users become impa- phase.Since the SVM approach has access to all the word rela- response to a request must be quick since it needs to be usable tionshipcontext vector data available for each andword compares in WordNet the inputduring phrase the learning to the - tient if the response to a request takes longer than 4-5 seconds. In order to build a is reverse a lexical dictionary, database whichfirst a is forward available diction online context vector for each word in the WordNet corpus, we can use andary isprovides needed. a WordNetlarge repository is the forward of English dictionary lexical items.used inThere this asthe in SVM SVM).Once quality as the a roughmodel benchmark has been created for high and quality given output. input Into work. WordNet [2] which are theLSI[6], system, pre-create it can thebe directlymodel for searched each word by ain user WordNet(Similar input U. The main disadvantage with the SVM approach and LSI is that the is a multilingual WordNet for European languages response time is high. fourstructured types ofin Partsthe same of Speech way as (POS) the English- noun, verb,language adjective, WordNet. and WordNet was designed to establish the connections between- In LDA [7], input all the dictionary words and their correspond- - ing context vectors to GibbsLDA++, and receive a set of classes adverb. The smallest unit in a WordNet is synset, which repre as output. Then provide the user input U to identify the class undersents a one specific type meaningof POS is ofcalled a word. a sense. It includes Each sense the word, of a word its ex is to which U belongs, based on GibbsLDA++ inference. The dic- planation, and its synonyms. The specific meaning of one word- tures containing sets of terms with synonymous meanings. Each Reverse Dictionary output. LDA can be readily embedded in a in a different synset. Synsets are equivalent to senses= struc- moretionary complex words correspondingmodel—a property to that that class is not are possessed identified by as LSI.the ample, the words night, night-time and dark constitute a single The work described in need to compute the user input concept synset hasthat a hasgloss the that following defines thegloss: concept the time it represents. after sunset For and ex before sunrise while it is dark outside. Synsets are connected between this and the dictionary concept vectors. Vector com- to one another through the explicit semantic relations. Some of vector at runtime and then subsequently compute the distance these relations (hypernym, hyponym for nouns and hypernym and troponym for verbs) constitute is-a-kind-of (holonymy) and schemes.putation is known to be quite computationally intensive even is-a-part-of (meronymy for nouns) hierarchies.For example, though much effort has been expended in building efficient tree is a kind of plant, tree is a hyponym of plant and plant is a The Cp/cv method described in deals with single word focus hypernym of tree. Analogously, trunk is a part of a tree and takes and addresses multiword similarity problem- where semantic trunk as a meronym of tree and tree is a holonym of trunk. For similarity must be computed between multiword phrases. The one word and one type of POS, if there is more than one sense, two existing online reverse dictionaries [6],[7] available do not IJSR - INTERNATIONAL JOURNAL OF SCIENTIFIC RESEARCH 259 Research Paper Volume : 3 | Issue : 5 | May 2014 • ISSN No 2277 - 8179 parameter representing the maximum number of words to be rank the output and thereby reduces the efficiency. returnedbased on similarityas output. to U and return top β Ws where β is an input overcome all the problems discussed above and thereby create This paper introduces a new approach called Wordster that C. Ranking candidate words II.an efficient PROPOSED reverse APPROACH dictionary. found is compared with the user input phrase U. On the basis The proposed RD system is based on the fact that the user input ofHere that, semantic sorts a similarityset of output of definitionwords in theof candidate order of decreasingwords “S” similarity to U as compared to S. There is a need to assign a exactly matching, then at least it must be conceptually similar. similarity measure for each ( S,U ) pair, where U is the user in- phrase should resemble the word’s actual definition, and, if not phase is the find candidate word .In this phase, when a user in- Here it is necessary to compute both term similarity and term The proposed approach mainly consists of two phases. The first importance.put phrase and S is the definition of candidate words found out. inputput phrase phrase. is received, This phase first consists find candidate of two keywords substeps: from a forward 1)build D. Term Similarity dictionary, whose definition have some similarity to the user Compute term similarity between two terms based on their lo- - the RMS ; and 2) query the RMS. The second phase involves - the ranking of those candidate words in the order of quality cation in the WordNet hierarchy. The WordNet hierarchy organ of match. Before discussing the above steps in detail, there is a ofizes the words two terms in English and iflanguage the LCA from of two general terms at in root this tohierarchy most spe is Synonymneed to define set, severalsyn(t): A concepts set of conceptually used in this work.related terms for t. root,cific at then leaf those nodes. two Consider terms will the have LCA little(Least similarity. Common If Ancestor the LCA is ) syn(talk) might consist of {speak, utter, mouth}. more deeper, two terms will have greater similarity. W AntonymFor example, set, Want(t) : A set of conceptually opposite or negated to compute the similarity ant - W Define a similarity function terms for t. For example, W (pleasant) might consist of {“un between two terms ‘a’ and ‘b’.
Recommended publications
  • Phonotactic Complexity of Finnish Nouns FRED KARLSSON
    7 Phonotactic Complexity of Finnish Nouns FRED KARLSSON 7.1 Introduction In the continuous list of publications on his homepage, Kimmo Koskenniemi gives an item from 1979 as the first one. But this is not strictly speaking his first publication. Here I shall elevate from international oblivion a report of Kimmo’s from 1978 from which the following introductory prophecy is taken: “The computer might be an extremely useful tool for linguistic re- search. It is fast and precise and capable of treating even large materials” (Koskenniemi 1978: 5). This published report is actually a printed version of Kimmo’s Master’s Thesis in general linguistics where he theoretically analyzed the possibili- ties of automatic lemmatization of Finnish texts, including a formalization of Finnish inflectional morphology. On the final pages of the report he esti- mates that the production rules he formulated may be formalized as analytic algorithms in several ways, that the machine lexicon might consist of some 200,000 (more or less truncated) stems, that there are some 4,000 inflectional elements, that all of these stems and elements can be accommodated on one magnetic tape or in direct-access memory, and that real-time computation could be ‘very reasonable’ (varsin kohtuullista) if the data were well orga- nized and a reasonably big computer were available (ibid.: 52-53). I obviously am the happy owner of a bibliographical rarity because Kimmo’s dedication of 1979 tells me that this is the next to the last copy. This was five years before two-level morphology was launched in 1983 when Kimmo substantiated his 1978 exploratory work by presenting a full- blown theory of computational morphology and entered the international computational-linguistic scene where he has been a main character ever since.
    [Show full text]
  • A Reverse Dictionary of Cypriot Greek
    Cypriot Greek Lexicography: A Reverse Dictionary of Cypriot Greek Charalambos Themistocleous, Marianna Katsoyannou, Spyros Armosti & Kyriaki Christodoulou Keywords: reverse dictionary, Cypriot Greek, orthographic variation, orthography standardisation, dialectal lexicography. Abstract This article explores the theoretical issues of producing a dialectal reverse dictionary of Cypriot Greek, the collection of data, the principles for selecting the lemmas among various candidates of word types, their orthographic representation, and the choices that were made for writing a variety without a standardized orthography. 1. Introduction Cypriot Greek (henceforth CG) is a variety of Greek spoken by almost a million people in the Republic of Cyprus. CG differs from Standard Modern Greek (henceforth SMG) with regard to its phonetics, phonology, morphology, syntax, and even pragmatics (Goutsos and Karyolemou 2004; Papapavlou and Pavlou 1998; Papapavlou 2005; Tsiplakou 2004; Katsoyannou et al. 2006; Tsiplakou 2007; Arvaniti 2002; Terkourafi 2003). The study of the vocabulary of CG was one of the research goals of ‘Syntychies’, a research project for the production of lexicographic resources undertaken by the Department of Byzantine and Modern Greek Studies of the University of Cyprus between 2006 and 2010. Another research goal of the project has been the study of the written representation of the dialect—since there exists no standardized CG orthography. The applied part of the Syntychies project includes the creation of a lexicographic database suitable for the production of dialectal dictionaries of CG, such as a reverse dictionary of CG (henceforth RDCG), which is currently under publication. The lexicographic database is hosted in a dedicated webpage, which allows online searching of the database.
    [Show full text]
  • Reverse Dictionary
    Imperial Journal of Interdisciplinary Research (IJIR) Vol-2, Issue-4, 2016 ISSN: 2454-1362, http://www.onlinejournal.in Reverse Dictionary Veena Gurram1, Sweta Rathod2, Anish Lushte3, Pranay Vaidya4, Prof. Vinod Alone5 & Prof. Mahendra Pawar6 1,2,3,4B.E Student 5,6Assistant Professor 1,2,3,4,5,6Department Of Computer Engineering, PVPPCOE Sion, Mumbai 400022 Abstract— In this paper, we describe the design and dictionary are the reverse dictionaries [3][4] which is implementation of a reverse dictionary. Unlike a tra- built with certain drawbacks. The existing dictionary ditional forward dictionary, which maps from words receives an input phrase and outputs many output to their definitions, a reverse dictionary takes a user words; therefore it can be tedious for the user to input phrase describing the desired concept, and re- search one from it. Whereas, building a ranking based turns a set of candidate words that satisfy the input dictionary, allows the user to choose from a set of phrase. This work has significant application not only words which are closely related to each other. for the general public, particularly those who work Example: In the existing reverse dictionary, the user closely with words, but also in the general field of inputs a phrase “unknown name” outputs over a 100 conceptual search. search results including “anonymous”, “nameless”, “incognito”, “jane doe”, “john doe”, “some”, “sky- Index Terms—Dictionaries, thesauruses, search pro- blue pink”, “dark horse” etc. [4], But the most cess, web-based services. accurate result for “unknown name” shall be “anonymous”, “nameless” but “incognito” also I. INTRODUCTION contributes some primary meaning to the user input phrase.
    [Show full text]
  • Using an On-Line Dictionary to Find Rhyming Words And
    USING AN ON=LINE DICTIONARY TO FIND RHYMING WORDS AND PRONUNCIATIONS FOR UNKNOWN WORDS Roy J Byrd I.B.M. Thomas J. Watson Research Center Yorktown Heights, New York 10598 Martin S. Chodorow Department of Psychology, Hunter College of CUNY and I.B.M. Thomas J. Watson Research Center Yorktown Heights, New York 10598 ABSTRACT word not found in the dictionary. WordSmith also shows the user words that are "close" to a given word Humans know a great deal about relationships among along dimensions such as spelling (as in published dic- words. This paper discusses relationships among word tionaries), meaning (as in thesauruses), and sound (as in pronunciations. We describe a computer system which rhyming dictionaries). models human judgement of rhyme by assigning specific roles to the location of primary stress, the similarity of Figure I shows a sample of the WordSmith user inter- phonetic segments, and other factors. By using the face. The current word, urgency, labels the text box at model as an experimental tool, we expect to improve our the center of the screen. The box contains the output understanding of rhyme. A related computer model will of the PRONUNC application applied to the current attempt to generate pronunciations for unknown words word: it shows the pronunciation of urgency and the by analogy with those for known words. The analogical mapping between the word's spelling and pronunciation. processes involve techniques for segmenting and PRONUNC represents pronunciations in an alphabet matching word spellings, and for mapping spelling to derived from Webster's Seventh Collegiate Dictionary. In sound in known words.
    [Show full text]
  • Implementing a Reverse Dictionary, Based on Word Definitions, Using A
    Implementing a Reverse Dictionary, based on word definitions, using a Node-Graph Architecture Sushrut Thorat Varad Choudhari Center for Mind/Brain Sciences Department of Computer Science University of Trento Rajarambapu Institute of Technology Rovereto, TN 38068, Italy Islampur, MH 415414, India [email protected] [email protected] Abstract In this paper, we outline an approach to build graph-based reverse dictionaries using word defi- nitions. A reverse dictionary takes a phrase as an input and outputs a list of words semantically similar to that phrase. It is a solution to the Tip-of-the-Tongue problem. We use a distance-based similarity measure, computed on a graph, to assess the similarity between a word and the input phrase. We compare the performance of our approach with the Onelook Reverse Dictionary and a distributional semantics method based on word2vec, and show that our approach is much better than the distributional semantics method, and as good as Onelook, on a 3k lexicon. This simple approach sets a new performance baseline for reverse dictionaries.1 1 Introduction A forward dictionary (FD) maps words to their definitions. A reverse dictionary (RD) (Sierra, 2000), also known as an inverse dictionary, or search-by-concept dictionary (Calvo et al., 2016), maps phrases to single words that approximate the meaning of those phrases. In the Oxford Learner’s Dictionary2, one definition of ‘brother’ is ‘a boy or man who has the same mother and father as another person’. A reverse dictionary will map not only this phrase to ‘brother’, but also phrases such as ‘son of my parents’.
    [Show full text]
  • Find the Right Words with Thesauruses Ebook, Epub
    FIND THE RIGHT WORDS WITH THESAURUSES PDF, EPUB, EBOOK Kara Fribley | 24 pages | 01 Jan 2012 | Cherry Lake Publishing | 9781610803694 | English | Ann Arbor, United States Find the Right Words with Thesauruses PDF Book How is the word barren an attack on women? Login or Register. This essential guide for writers provides real-life example sentences and a careful selection of the most relevant synonyms, as well as new usage notes, hints for choosing between similar words, a Word Finder section organized by subject, and a comprehensive language guide. An easy to access list of synonyms can greatly influence any writing assignment a student has. Stay a step ahead with Microsoft For some types of searches only the first result or the first few results are likely to be useful. Check your dictionary… help you extend your vocabulary. Words formed from any letters in thesauruses , plus an optional blank or existing letter All words formed from thesauruses by changing one letter Browse words starting with thesauruses by next letter. Thy shalt If you get back nothing but junk, try restating your query so that it's just two or three simple words. You can also train yourself to self-edit by watching out for words you know you over-rely on. It is a great tool to use for building a vocabulary, however, it should be handled with care when used for writing purposes as it can have the adverse effect. In Excel , on the Review tab, click Thesaurus. At the bottom of the Thesaurus task pane, select a language from the drop- down list.
    [Show full text]
  • A Survey of Building a Reverse Dictionary
    Jincy A K et al, / (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 5 (6) , 2014, 7727-7728 A Survey of Building a Reverse Dictionary Jincy A K, Sindhu L Department of Computer Science& Engg,College Of Engineering, Cochin university of science and Technology, Poonjar,Kottayam,kerala,India Abstract- A reverse dictionary takes as input a phrase or II. GENERAL TECHNIQUE a sentence describing a concept, and returns a set of The different steps for the implementation of reverse candidate words that satisfy the meaning of the input dictionary includes lexical analysis, elimination of stop phrase. This paper presents a literature survey words, stemming, pos tagging, concept mapping, building regarding the design and implementation of a reverse the reverse mapping set, querying the reverse mapping set, dictionary. The reverse dictionary identifies a ranking candidate words, term similarity... concept/idea/definition to words and phrases used to describe that concept. It has significant application for A. Stemming those who work closely with words and also in the Stemming is the process of finding the root word of a general field of conceptual search. Mainly for linguists, word contained in a given phrase. Normally stemming is poets, anthropologists and forensics specialist accomplished by means of porter stemmer but studies examining a damaged text that had only the final proved that it has certain drawbacks portion of a particular word preserved. B. POS Tagging Part-Of-Speech Tagging is the process of assigning parts Keywords- Thesaurus, Stemming, Pos Tagging, Concept of speech to each word (and other token), such as noun, Mining verb, adjective, etc.
    [Show full text]
  • Reversing a One-Way Bilingual Dictionary
    Leonard NEWMARK, University of California, San Diego Reversing a One-Way Bilingual Dictionary Abstract In 1996, I completed a 10-year project to compile an Albanian-English dictionary of some 75,000 entries and sub-entries. With that project completed, I decided to prepare a companion English-Albanian dictionary, but I did not want to devote another 10 years to that compilation. Instead, I wanted to see how far purely computa­ tional techniques would go in converting my dictionary into its derived reverse. This paper is a report on the degree to which the attempt succeeded and the degree to which human intervention was required. Examples are provided to illustrate some rather surprising results, and a general conclusion is drawn for bilingual lexicography. For the past year I have been trying to convert a computerized bilingual dictionary automati­ cally into another dictionary in the reverse direction: specifically my Albanian-English dictionary, designed for readers whose access language is English, into an English-Albanian dictionary for writers. My source dictionary, published in March 1998 by the Oxford University Press as Oxford Albanian-English Dictionary,1 has some 75,000 entries and sub- entries, more than any other dictionary of Albanian, bilingual or monolingual. It boasts a number of features that distinguish it from many other bilingual dictionaries: 1) inclusion of large numbers of non-standard items (indicated by the symbol •) as well as all attested standard stems; 2) marking of morpheme boundaries in Albanian words; 3)
    [Show full text]
  • Word Parts Dictionary: Standard and Reverse Listings of Prefixes
    www.IELTS4U.blogfa.com www.IELTS4U.blogfa.com Word Parts Dictionary www.IELTS4U.blogfa.com www.IELTS4U.blogfa.com Word Parts Dictionary Standard and Reverse Listings of Prefixes, Suffixes, Roots and Combining Forms by MICHAEL J. SHEEHAN www.IELTS4U.blogfa.com McFarland & Company, Inc., Publishers Jefferson, North Carolina, and London Librarwww.IELTS4U.blogfa.comy of Congress Cataloguing-in-Publication Data Sheehan, Michael, 1939- Word parts dictionary : standard and reverse listings of prefixes, suffixes, and combining forms / by Michael Sheehan. p. cm. Includes index. ISBN 0-7864-0819-7 (library binding : 50# alkaline paper) @ 1. English language — Suffixes and prefixes — Dictionaries. 2. English language — Word formation — Dictionaries. 3. English language — Reverse dictionaries. I. Title. PE1175.S45 2000 423M—dc21 00-37217 British Library cataloguing data are available ©2000 Michael J. Sheehan. All rights reserved No part of this book may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying or recording, or by any information storage and retrieval system, without permission in writing from the publisher. Manufactured in the United States of America McFarland & Company, Inc., Publishers Box 611, Jefferson, North Carolina 28640 www. mcfarlandpub. com To Dona Sheehan, salubrious wife and gift www.IELTS4U.blogfa.com www.IELTS4U.blogfa.com Table of Contents Preface 1 PARTI Dictionary 3 PART II Finder (Reverse Dictionary) 97 PART III www.IELTS4U.blogfa.comCategories 181 ANIMALS 182 THE BODY 187 COLORS 193 DIMENSIONS 196 DIRECTIONS 197 DIVINATION 197 THE ENVIRONMENT 200 FEAR OR DISLIKE OF ... 205 FOOD 214 LOCATION 216 NEGATIVES 217 NUMBERS 218 THE SENSES 220 SHAPES 222 TIME 226 Vll www.IELTS4U.blogfa.com Preface This dictionary is based on word parts — those prefixes, suffixes, com¬ bining forms and roots which show up repeatedly to form words — and is meant to be used in conjunction with a standard dictionary and a thesaurus.
    [Show full text]
  • Learning to Represent Bilingual Dictionaries
    Learning to Represent Bilingual Dictionaries Muhao Chen1∗, Yingtao Tian2∗, Haochen Chen2, Kai-Wei Chang1, Steven Skiena2 & Carlo Zaniolo1 1University of California, Los Angeles, CA, USA 2The State University of New York, Stony Brook, NY, USA [email protected]; fkwchang, [email protected]; fyittian, haocchen, [email protected] Abstract mantic transfers, these approaches critically sup- port many cross-lingual NLP tasks including neu- Bilingual word embeddings have been widely ral machine translations (NMT) (Devlin et al., used to capture the correspondence of lexi- 2014), bilingual document classification (Zhou cal semantics in different human languages. However, the cross-lingual correspondence et al., 2016), knowledge alignment (Chen et al., between sentences and words is less studied, 2018b) and entity linking (Upadhyay et al., 2018). despite that this correspondence can signifi- While many existing approaches have been pro- cantly benefit many applications such as cross- posed to associate lexical semantics between lan- lingual semantic search and textual inference. guages (Chandar et al., 2014; Gouws et al., 2015; To bridge this gap, we propose a neural em- Luong et al., 2015a), modeling the correspon- bedding model that leverages bilingual dictio- dence between lexical and sentential semantics naries1. The proposed model is trained to map the lexical definitions to the cross-lingual tar- across different languages is still an unresolved get words, for which we explore with differ- challenge. We argue that learning to represent ent sentence encoding techniques. To enhance such cross-lingual and multi-granular correspon- the learning process on limited resources, our dence is well desired and natural for multiple rea- model adopts several critical learning strate- sons.
    [Show full text]
  • 'It Works in Practice but Will It Work in Theory?' the Uneasy Relationship Between Lexicography and Matters Theoretical
    ‘It works in practice but will it work in theory?’ The uneasy relationship between lexicography and matters theoretical1 Michael Rundell Keywords: lexicographical theory, function theory, metalexicography, prototype theory, regular polysemy, lexical functions, user-generated content, collaborative lexicography, adaptive hypermedia. Abstract This paper considers how the practical business of producing dictionaries may be informed by and facilitated by theoretical considerations. What kinds of theory have the potential to make dictionaries better? And is there such a thing as ‘theoretical lexicography’? Several theoretical paradigms are discussed. In the case of the metalexicographic contributions of L.V. Shcherba and H.E. Wiegand, it is suggested that their relevance to the practical task of dictionary-creation is limited; and it is argued that the so-called ‘theory of lexicographical functions’ proposed by Henning Bergenholtz and his colleagues, while helpfully focussing on users and uses, adds little that is new to the debate. Conversely, it is shown that linguistic theory has much to offer lexicographers, and the direct applicability of various linguistic theories is demonstrated in a number of case studies. Finally, the whole discussion regarding appropriate theoretical inputs for lexicography is brought into the radically changed digital world in which lexicography now finds itself. 1. Introduction: Zgusta’s dilemma. Back in 1985, Anna Wierzbicka observed that ‘Lexicography has no theoretical foundation, and even the best lexicographers, when pressed, can never explain what they are doing, and why’ (Wierzbicka 1985: 5). Is this still true? And if true, does it matter? It depends who you ask; this is a divisive issue. To simplify a little: we have, ranged on one side, a diverse group united by their fervent belief in the idea of ‘lexicographic theories’ which dictionary-makers ought to follow.
    [Show full text]
  • WPSSIN SCANDINAVIAN SYNTAX Working Papers in Scandinavian Syntax Is an Electronic Publication for Current Articles Relating to the Study of Scandinavian Syntax
    Issue 100 June 2018 WORKING PAPERS WPSSIN SCANDINAVIAN SYNTAX Working Papers in Scandinavian Syntax is an electronic publication for current articles relating to the study of Scandinavian syntax. The articles appearing herein are previously unpublished reports of ongoing research activities and may subsequently appear, revised or unrevised, in other publications. The WPSS homepage: http://project.sol.lu.se/grimm/working-papers-in-scandinavian-syntax/ The 101st volume of WPSS will be published in December 2018. Papers intended for publication should be submitted no later than November 15, 2018. June 2018, Johan Brandtler, editor Contact: Johan Brandtler Stockholm University Department of Swedish Language and Multilingualism 106 91 Stockholm, Sweden E-mail: [email protected] Working Papers in Scandinavian Syntax ISSN: 1100-097x Editor: Johan Brandtler, Stockholm University Editorial Board: Valéria Molnár, Lund University Halldór Ármann Sigurðsson, Lund University WPSS 100 June 2018 Contents From impersonal to reflexive verb 1 Cecilia Falk Revisiting the etymology of the Norse negative enclitic -a/-at 20 Eric Lander Constraints on movement 41 Mayumi Hosono Elvis Presley, God and Jane: the Germanic proprial article in a 64 contrastive perspective Joachim Kokkelmans From impersonal to reflexive verb Cecilia Falk Stockholm University Abstract Old Swedish had impersonally construed verbs with an oblique subject(-like) Experiencer argu- ment. Most of them are personally construed verbs today, with nominative Experiencer. Whereas this change for most formerly impersonal verbs just showed up as a change from oblique to nomi- native, a small number of verbs showed an additional change: a reflexive pronoun became oblig- atory. In this paper I will discuss two possible analyses of this change.
    [Show full text]