Headword Amplified Multi-Span Distantly Supervised Method For

Total Page:16

File Type:pdf, Size:1020Kb

Headword Amplified Multi-Span Distantly Supervised Method For The Thirty-Fourth AAAI Conference on Artificial Intelligence (AAAI-20) HAMNER: Headword Amplified Multi-Span Distantly Supervised Method for Domain Specific Named Entity Recognition∗ Shifeng Liu,1 Yifang Sun,1 Bing Li,1 Wei Wang,1,2 Xiang Zhao3 1University of New South Wales, 2Dongguan University of Technology 3National University of Defence Technology {shifeng.liu, bing.li}@unsw.edu.au, {yifangs, weiw}@cse.unsw.edu.au, [email protected] Abstract methods firstly find entity mentions by exact string match- ing (Giannakopoulos et al. 2017; Shang et al. 2018b) or reg- To tackle Named Entity Recognition (NER) tasks, super- ular expression matching (Fries et al. 2017) with the dictio- vised methods need to obtain sufficient cleanly annotated data, which is labor and time consuming. On the contrary, nary, and then assign corresponding types to the mentions. distantly supervised methods acquire automatically annotated A model is trained on the training corpus with the pseudo data using dictionaries to alleviate this requirement. Unfortu- annotations. As the result, distant supervision significantly nately, dictionaries hinder the effectiveness of distantly su- reduces the annotation cost, while not surprisingly, the ac- pervised methods for NER due to its limited coverage, espe- curacy (e.g., precision and recall) reduces. cially in specific domains. In this paper, we aim at the limita- In this paper, we aim to reduce the gap between dis- tions of the dictionary usage and mention boundary detection. tantly supervised methods and supervised methods. We ob- We generalize the distant supervision by extending the dic- served two limitations in distantly supervised methods. The tionary with headword based non-exact matching. We apply first limitation is that the information in the dictionary has a function to better weight the matched entity mentions. We not been fully mined and used. For example, consider a propose a span-level model, which classifies all the possible spans then infers the selected spans with a proposed dynamic newly discovered disease namely ROSAH syndrome, which programming algorithm. Experiments on all three benchmark is unlikely to exist in the dictionaries, and hence cannot be datasets demonstrate that our method outperforms previous correctly extracted and annotated if we use simple surface state-of-the-art distantly supervised methods. matching. However, human beings can easily recognize it as a disease, since there are many disease entity mentions in the dictionaries that are ended with syndrome. This mo- 1 Introduction tivates us to use headwords of entity mentions as indicators Named entity recognition (NER) is a task that extracts entity of entity types, and thus improves the quality of the pseudo mentions from sentences and classifies them into pre-defined annotations. types, such as person, location, disease, chemical, etc. It is a The second limitation in distantly supervised methods is vital task in natural language processing (NLP), which ben- that most of the errors come from incorrect boundaries1. efits many downstream applications including relation ex- Most methods (including supervised methods) model the traction (Mintz et al. 2009), event extraction (Nguyen and NER problem as a sequence labeling task and use popular Grishman 2018), and co-reference resolution (Chang, Sam- architectures/classifiers like BiLSTM-CRF (Ma and Hovy dani, and Roth 2013). 2016). However, CRFs suffer from sparse boundary tags (Li, With a sufficient amount of cleanly annotated texts (i.e., Ye, and Shang 2019), and pseudo annotations can only be the training data), supervised methods (Lample et al. 2016; more sparse and noisy. In addition, CRFs focus more on Ma and Hovy 2016) have shown their ability to achieve word-level information and thus cannot make full use of high-quality performance in general domain NER tasks and span-level information (Zhuo et al. 2016). Some methods benchmarks. However, obtaining cleanly annotated texts is choose to fix the entity boundaries before predict the entity labor-intensive and time-consuming, especially in specific type. Apparently, any incorrect boundary will definitely lead domains, such as the biomedical domain and the technical to incorrect output, no matter how accurate the subsequent domain. This hinders the usage of supervised methods in classifier is. Therefore, we propose to decide entity bound- real-world applications. aries after predicting entity types. As such, there would be Distantly supervised methods circumvent the above is- more information, such as the types and confidence scores of sue by generating pseudo annotations according to do- entity mentions, which can help to determine more accurate main specific dictionaries. Dictionary is a collection entity boundaries. of entity mention, entity type pairs. Distantly supervised 1For example, even the state-of-the-art distantly supervised ∗S. Liu and W. Wang are the co-corresponding authors. method (Shang et al. 2018b) has at least 40% errors coming from Copyright c 2020, Association for the Advancement of Artificial incorrect boundaries, on all three benchmarks that are evaluated in Intelligence (www.aaai.org). All rights reserved. this paper. 8401 Based on the above two ideas, we propose a new distantly tasks (Fries et al. 2017; Giannakopoulos et al. 2017; Shang supervised method named HAMNER (Headword Amplified et al. 2018b). SwellShark (Fries et al. 2017) utilizes a col- Multi-span NER) for NER tasks in specific domains. We first lection of dictionaries, ontologies, and, optionally, heuris- introduce a novel dictionary extension method based on the tic rules to generate annotations and predict entity mentions semantic matching of headwords. To account for the possi- in the biomedical domain without human annotated data. ble noise introduced by the extended entity mentions, we Shang et al. 2018b use exact string matching to generate also use the similarity between the headwords of the ex- pseudo annotated data, and apply high-quality phrases (i.e., tended entity mentions and the original entity mentions to mined in the same domain without assigning any entity represent the quality of the extended entity mentions. The types) to reduce the number for false negative annota- extended dictionary will be used to generate pseudo annota- tions (Shang et al. 2018b). However, their annotation qual- tions. We then train a model to estimate the type of a given ity is limited by the coverage of the dictionary, which leads span from a sentence based on its contextual information. to a relatively low recall. In the technical domain, Distant- Given a sentence, HAMNER uses the trained model to pre- LSTM-CRF (Giannakopoulos et al. 2017) applies syntactic dict types of all the possible spans subject to the pre-defined rules and pruned high-quality phrases to generate pseudo an- maximum number of words, and uses a dynamic program- notated data for distant supervision. The major differences ming based inference algorithm to select the most proper between HAMNER and other distantly supervised methods boundaries and types of entity mentions while suppressing are 1. HAMNER extended the coverage of dictionaries with- overlapping and spurious entity mentions. out human efforts. 2. HAMNER makes predictions in the The main contributions of this paper are span level with both entity type and boundary information. • We generalize the distant supervision idea for NER by ex- tending the dictionaries using semantic matching of head- 3 Problem Definition words. Our extension is grounded in linguistic and dis- We represent a sentence as a word sequence tributional semantics. We use the extended dictionary to (x1,x2,...,xN ). For span (xi,...,xj) from the sen- improve the quality of the pseudo annotations. tence, we use i, j to denote its boundaries, and use l ∈ L • We propose a span-level model with both span informa- to denote its type, where L represents the list of pre-defined tion and contextual information to predict the type for a types (e.g., Disease, Chemical) and none type (e.g., given span. We propose a dynamic programming infer- None). We let None be the last element in L (i.e., L|L|). ence algorithm to select the spans which are the most We tackle the problem with distant supervision. Unlike likely to be entity mentions. supervised and semi-supervised methods, we require no hu- • Experiments on three benchmark datasets have demon- man annotated training data. Instead, we only require a dic- strated that HAMNER achieves the best performance with tionary as the input in addition to the raw text. The dictionary dictionaries only and no human efforts. Detailed analysis is a collection of entity mention, entity type-tuples. We use has shown the effectiveness of our designed method. dictionary in the training phase to help generate pseudo an- notations on the training corpus. 2 Related Work We argue that dictionaries are easy to obtain, either from publicly available resources, such as Freebase (Bollacker et Named entity recognition (NER) attracts researchers and has al. 2008) and SNOMED Clinical Terms2, or by crawling been tackled by both supervised and semi-supervised meth- terms from some domain-specific high-quality websites 3. ods. Supervised methods, including feature based meth- ods (Ratinov and Roth 2009; Liu et al. 2018; Sun et 4 The Proposed Method al. 2019) and neural network based methods (Lample et al. 2016; Ma and Hovy 2016), require cleanly annotated Figure 1 illustrates the key steps in HAMNER. In training, texts. Semi-supervised methods either utilize more unla- our method firstly generates pseudo annotations according beled data (Peters et al. 2018) or generate annotated data to a headword-based extended dictionary (details in Sec- gradually (Tomanek and Hahn 2009; Han, Kwoh, and Kim tion 4.1). Then a neural model is trained using the pseudo 2016; Brooke, Hammond, and Baldwin 2016). annotated data. The model takes a span and its context in the sentence as input, and predicts the type of the span. The Distant supervision is proposed to alleviate human efforts structure of the neural model is introduced in Section 4.2.
Recommended publications
  • Problem of Creating a Professional Dictionary of Uncodified Vocabulary
    Utopía y Praxis Latinoamericana ISSN: 1315-5216 ISSN: 2477-9555 [email protected] Universidad del Zulia Venezuela Problem of Creating a Professional Dictionary of Uncodified Vocabulary MOROZOVA, O.A; YAKHINA, A.M; PESTOVA, M.S Problem of Creating a Professional Dictionary of Uncodified Vocabulary Utopía y Praxis Latinoamericana, vol. 25, no. Esp.7, 2020 Universidad del Zulia, Venezuela Available in: https://www.redalyc.org/articulo.oa?id=27964362018 DOI: https://doi.org/10.5281/zenodo.4009661 This work is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International. PDF generated from XML JATS4R by Redalyc Project academic non-profit, developed under the open access initiative O.A MOROZOVA, et al. Problem of Creating a Professional Dictionary of Uncodified Vocabulary Artículos Problem of Creating a Professional Dictionary of Uncodified Vocabulary Problema de crear un diccionario profesional de vocabulario no codificado O.A MOROZOVA DOI: https://doi.org/10.5281/zenodo.4009661 Kazan Federal University, Rusia Redalyc: https://www.redalyc.org/articulo.oa? [email protected] id=27964362018 http://orcid.org/0000-0002-4573-5858 A.M YAKHINA Kazan Federal University, Rusia [email protected] http://orcid.org/0000-0002-8914-0995 M.S PESTOVA Ural State Law University, Rusia [email protected] http://orcid.org/0000-0002-7996-9636 Received: 03 August 2020 Accepted: 10 September 2020 Abstract: e article considers the problem of lexicographical fixation of uncodified vocabulary in a professional dictionary. e oil sublanguage, being one of the variants of common language realization used by a limited group of its medium in conditions of official and also non-official communication, provides interaction of people employed in the oil industry.
    [Show full text]
  • Towards a Conceptual Representation of Lexical Meaning in Wordnet
    Towards a Conceptual Representation of Lexical Meaning in WordNet Jen-nan Chen Sue J. Ker Department of Information Management, Department of Computer Science, Ming Chuan University Soochow University Taipei, Taiwan Taipei, Taiwan [email protected] [email protected] Abstract Knowledge acquisition is an essential and intractable task for almost every natural language processing study. To date, corpus approach is a primary means for acquiring lexical-level semantic knowledge, but it has the problem of knowledge insufficiency when training on various kinds of corpora. This paper is concerned with the issue of how to acquire and represent conceptual knowledge explicitly from lexical definitions and their semantic network within a machine-readable dictionary. Some information retrieval techniques are applied to link between lexical senses in WordNet and conceptual ones in Roget's categories. Our experimental results report an overall accuracy of 85.25% (87, 78, 89, and 87% for nouns, verbs, adjectives and adverbs, respectively) when evaluating on polysemous words discussed in previous literature. 1 Introduction Knowledge representation has traditionally been thought of as the heart of various applications of natural language processing. Anyone who has built a natural language processing system has had to tackle the problem of representing its knowledge of the world. One of the applications for knowledge representation is word sense disambiguation (WSD) for unrestricted text, which is one of the major problems in analyzing sentences. In the past, the substantial literature on WSD has concentrated on statistical approaches to analyzing and extracting information from corpora (Gale et al. 1992; Yarowsky 1992, 1995; Dagan and Itai 1994; Luk 1995; Ng and Lee 1996).
    [Show full text]
  • Inferring Parts of Speech for Lexical Mappings Via the Cyc KB
    to appear in Proceeding 20th International Conference on Computational Linguistics (COLING-04), August 23-27, 2004 Geneva Inferring parts of speech for lexical mappings via the Cyc KB Tom O’Hara‡, Stefano Bertolo, Michael Witbrock, Bjørn Aldag, Jon Curtis,withKathy Panton, Dave Schneider,andNancy Salay ‡Computer Science Department Cycorp, Inc. New Mexico State University Austin, TX 78731 Las Cruces, NM 88001 {bertolo,witbrock,aldag}@cyc.com [email protected] {jonc,panton,daves,nancy}@cyc.com Abstract in the phrase “painting for sale.” In cases like this, semantic or pragmatic criteria, as opposed We present an automatic approach to learn- to syntactic criteria only, are necessary for deter- ing criteria for classifying the parts-of-speech mining the proper part of speech. The headword used in lexical mappings. This will fur- part of speech is important for correctly identifying ther automate our knowledge acquisition sys- phrasal variations. For instance, the first term can tem for non-technical users. The criteria for also occur in the same sense in “paint for money.” the speech parts are based on the types of However, this does not hold for the second case, the denoted terms along with morphological since “paint for sale” has an entirely different sense and corpus-based clues. Associations among (i.e., a substance rather than an artifact). these and the parts-of-speech are learned us- When lexical mappings are produced by naive ing the lexical mappings contained in the Cyc users, such as in DARPA’s Rapid Knowledge For- knowledge base as training data. With over mation (RKF) project, it is desirable that tech- 30 speech parts to choose from, the classifier nical details such as the headword part of speech achieves good results (77.8% correct).
    [Show full text]
  • Symbols Used in the Dictionary
    Introduction 1. This dictionary will help you to be able to use Einglish - English Dictionary well & use it in your studying. 2. The exercies will provide you with what information your dictionary contains & how to find as well use them quickly & correctly. So you MUST: 1. make sure you understand the instructuion of the exercise. 2. check on yourself by working out examples, using your dictionay. 3. Do it carefully but quickly as you can even if you think you know the answer. 4. always scan the whole entry first to get the general idea, then find the part that you’re interested in. 5. Read slowly & carefully. 6. Help to make the learning process interesting. 7. If you make a mistake, find out why. Remember, the more you use the dictionary, the more uses you will find for it. 1 Chapter one Dictionary Entry • Terms used in the Dictionary. •Symbols used in the Dictionary. •Different typfaces used in the Dictionary. •Abbreviation used in the Dictionary. 2 1- Terms used in the Dictionay: -What is Headword? -What is an Entry? -What is a Definition? -What is a Compound? -What is a Derivative? -What information does an entry contain? 3 1- What is Headword? It’s the word you look up in a dictionary. Also, it’s the name given to each of the words listed alphabetically. 4 2- What is an Entry? It consists of a headword & all the information about the headword. 5 3- What is a Definition? It’s a part of an entry which describes a particular meaning & usage of the headword.
    [Show full text]
  • DICTIONARY News
    Number 17 y July 2009 Kernerman kdictionaries.com/kdn DICTIONARY News KD’s BLDS: a brief introduction In 2005 K Dictionaries (KD) entered a project of developing We started by establishing an extensive infrastructure both dictionaries for learners of different languages. KD had already contentwise and technologically. The lexicographic compilation created several non-English titles a few years earlier, but those was divided into 25 projects: 1 for the French core, 8 for the were basic word-to-word dictionaries. The current task marked dictionary cores of the eight languages, another 8 for the a major policy shift for our company since for the first time we translation from French to eight languages, and 8 more for the were becoming heavily involved in learner dictionaries with translation of each language to French. target languages other than English. That was the beginning of An editorial team was set up for developing each of the nine our Bilingual Learners Dictionaries Series (BLDS), which so (French + 8) dictionary cores. The lexicographers worked from far covers 20 different language cores and keeps growing. a distance, usually at home, all over the world. The chief editor The BLDS was launched with a program for eight French for each language was responsible for preparing the editorial bilingual dictionaries together with Assimil, a leading publisher styleguide and the list of headwords. Since no corpora were for foreign language learning in France which made a strategic publicly available for any of these languages, each editor used decision to expand to dictionaries in cooperation with KD. different means to retrieve information in order to compile the The main target users were identified as speakers of French headword list.
    [Show full text]
  • Japanese-English Cross-Language Headword Search of Wikipedia
    Japanese-English Cross-Language Headword Search of Wikipedia Satoshi Sato and Masaya Okada Graduate School of Engineering Nagoya University Chikusa-ku, Nagoya, Japan [email protected] masaya [email protected] Abstract glish article. To realize CLHS, term translation is required. This paper describes a Japanese-English cross-language headword search system of Term translation is not a mainstream of machine Wikipedia, which enables to find an appro- translation research, because a simple dictionary- priate English article from a given Japanese based method is widely used and enough for query term. The key component of the sys- general terms. For technical terms and proper tem is a term translator, which selects an ap- nouns, automatic extraction of translation pairs propriate English headword among the set from bilingual corpora and the Web has been in- of headwords in English Wikipedia, based on the framework of non-productive ma- tensively studied (e.g., (Daille et al., 1994) and chine translation. An experimental result (Lin et al., 2008)) in order to fill the lack of en- shows that the translation performance of tries in a bilingual dictionary. However, the qual- our system is equal or slightly better than ity of automatic term translation is not well exam- commercial machine translation systems, ined with a few exception (Baldwin and Tanaka, Google translate and Mac-Transer. 2004). Query translation in cross-language infor- mation retrieval is related to term translation, but it concentrates on translation of content words in 1 Introduction a query (Fujii and Ishikawa, 2001). Many people use Wikipedia, an encyclopedia on In the CLHS situation, the ultimate goal of the Web, to find meanings of unknown terms.
    [Show full text]
  • Download in the Conll-Format and Comprise Over ±175,000 Tokens
    Integrated Sequence Tagging for Medieval Latin Using Deep Representation Learning Mike Kestemont1, Jeroen De Gussem2 1 University of Antwerp, Belgium 2 Ghent University, Belgium *Corresponding author: [email protected] Abstract In this paper we consider two sequence tagging tasks for medieval Latin: part-of-speech tagging and lemmatization. These are both basic, yet foundational preprocessing steps in applications such as text re-use detection. Nevertheless, they are generally complicated by the considerable orthographic variation which is typical of medieval Latin. In Digital Classics, these tasks are traditionally solved in a (i) cascaded and (ii) lexicon-dependent fashion. For example, a lexicon is used to generate all the potential lemma-tag pairs for a token, and next, a context-aware PoS-tagger is used to select the most appropriate tag-lemma pair. Apart from the problems with out-of-lexicon items, error percolation is a major downside of such approaches. In this paper we explore the possibility to elegantly solve these tasks using a single, integrated approach. For this, we make use of a layered neural network architecture from the field of deep representation learning. keywords tagging, lemmatization, medieval Latin, LSTM, deep learning INTRODUCTION Latin —and its historic variants in particular— have long been a topic of major interest in Natural Language Processing [Piotrowksi 2012]. Especially in the community of Digital Humanities, the automated processing of Latin texts has always been a popular research topic. In a variety of computational applications, such as text re-use detection [Franzini et al, 2015], it is desirable to annotate and augment Latin texts with useful morpho-syntactical or lexical information, such as lemmas.
    [Show full text]
  • Phonemic Similarity Metrics to Compare Pronunciation Methods
    Phonemic Similarity Metrics to Compare Pronunciation Methods Ben Hixon1, Eric Schneider1, Susan L. Epstein1,2 1 Department of Computer Science, Hunter College of The City University of New York 2 Department of Computer Science, The Graduate Center of The City University of New York [email protected], [email protected], [email protected] error rate. The minimum number of insertions, deletions and Abstract substitutions required for transformation of one sequence into As grapheme­to­phoneme methods proliferate, their careful another is the Levenshtein distance [3]. Phoneme error rate evaluation becomes increasingly important. This paper ex­ (PER) is the Levenshtein distance between a predicted pro­ plores a variety of metrics to compare the automatic pronunci­ nunciation and the reference pronunciation, divided by the ation methods of three freely­available grapheme­to­phoneme number of phonemes in the reference pronunciation. Word er­ packages on a large dictionary. Two metrics, presented here ror rate (WER) is the proportion of predicted pronunciations for the first time, rely upon a novel weighted phonemic substi­ with at least one phoneme error to the total number of pronun­ tution matrix constructed from substitution frequencies in a ciations. Neither WER nor PER, however, is a sufficiently collection of trusted alternate pronunciations. These new met­ sensitive measurement of the distance between pronunciations. rics are sensitive to the degree of mutability among phonemes. Consider, for example, two pronunciation pairs that use the An alignment tool uses this matrix to compare phoneme sub­ ARPAbet phoneme set [4]: stitutions between pairs of pronunciations. S OW D AH S OW D AH Index Terms: grapheme­to­phoneme, edit distance, substitu­ S OW D AA T AY B L tion matrix, phonetic distance measures On the left are two reasonable pronunciations for the English word “soda,” while the pair on the right compares a pronuncia­ 1.
    [Show full text]
  • Towards Structuring an Arabic-English Machine-Readable Dictionary Using Parsing Expression Grammars
    Towards Structuring an Arabic-English Machine-Readable Dictionary Using Parsing Expression Grammars Diaa Mohamed Fayed1 Aly Aly Fahmy2 Mohsen Abdelrazek Rashwan3 Wafaa Kamel Fayed4 1 Department of Computer Science, Faculty of Computers and Information, 2 Department of Computer Science, Faculty of Computers and Information, 3 Department of EECE, Faculty of Engineering, 4 Department of Arabic Language and Literatures, Faculty of Arts, Cairo University, [email protected], [email protected], [email protected], [email protected] ABSTRACT: Dictionaries are rich sources of lexical information about words that is required for many applications of human language technology. However, publishers prepare printed dictionaries for human usage not for machine processing. This paper presents a method to structure partly a machine-readable version of the Arabic-English Al-Mawrid dictionary. The method converted the entries of Al-Mawrid from a stream of words and punctuation marks into hierarchical structures. The hierarchical structure or tree structure expresses the components of each dictionary entry in explicit format. The components of an entry are subentries and each subentry consists of defining phrases, domain labels, cross-references, and translation equivalences. We designed the proposed method as cascaded steps where parsing is the main step. We implemented the parser through the parsing expression grammar formalism. In conclusion, although Arabic dictionaries do not have microstructure standardization, this study demonstrated that it is possible to structure them automatically or semi- automatically with plausible accuracy after inducing their microstructure. Keywords: Al-Mawrid, Arabic-English, Machine-Readable Dictionary, Parsing Expression Grammars Received: 16 November 2013, Revised 19 December 2013, Accepted 24 December 2013 © 2014 DLINE.
    [Show full text]
  • Effects of Mora Phonemes on Japanese Word Accent
    PACLIC 18, December 8th-10th, 2004, Waseda University, Tokyo Effects of Mora Phonemes on Japanese Word Accent Yasuyo TOKUHIRO Shizuo HIKI Graduate School of Japanese Applied Waseda University Linguistics, Waseda University 2-579-15 Mikajima 1-7-14, Nishi-Waseda, Shinjuku-ku Tokorozawa, 359-1192 Japan Tokyo, 169-8050 Japan [email protected] [email protected] Abstract Effects of mora phonemes on Japanese word accent was analyzed statistically, utilizing a set of about 124,000 frequently used common nouns derived from the Japanese Word Dictionary edited by EDR (the Japan Electronic Dictionary Research Institute, Ltd., Japan). In this analysis, Japanese syllable was defined as preceding consonant (+semi-vowel) +following vowel, accompanied / not accompanied by mora phoneme. Mora phonemes adopted here were elongated portion of vowel: /H/, chocked sound: /Q/, syllabic nasal: /N/, and /i/ portion of diphthongs: /I/. The average ratio of attachment of accent to vowel type syllables was 13% and to semi-vowel +vowel type syllables 16%. In both types, the difference according to the kind of following vowels was not significant. As for the effect of mora phonemes, the ratios of accent attached to the syllables accompanied by mora phonemes were about several percents higher than their average for any kind of following semi-vowels and vowels. The average ratio of accent attached to vowel and semi-vowel +vowel type syllables was 14%, but in syllables of any kind of preceding consonants accompanied by mora phoneme, the ratios were more than several percents higher than the average. The words which involve the mora phonemes were categorized by each kind of mora phoneme, and compiled into the list in the order of Japanese syllabary, and the lists of different number of syllables composing each word in the order of Japanese syllabary.
    [Show full text]
  • From Machine Readable Dictionaries to Lexicons for NLP: the Cobuild Dictionaries - a Different Approach
    Carol Peters Istituto di Elaborazione dell'Informazione, CNR, Pisa Stefano Federici Istituto di Linguistica Computazionale, CNR, Pisa Simonetta Montemagni Istituto di Linguistica Computazionale, CNR, Pisa Nicoletta Calzolari Istituto di Linguistica Computazionale, CNR, Pisa From Machine Readable Dictionaries to Lexicons for NLP: the Cobuild Dictionaries - a Different Approach Abstract We describe the results of a syntactic-semantic parser for Cobuild dictionary definitions. Unlike previous work on the automatic analysis of machine readable dictionaries, the particular structure of the Cobuild definition allows us to derive information that classifies the lexical item mainly in terms of the selectional restrictions or preferences encoded on its arguments. The resulting formalized lexical entries contain data that has generally been lacking in other lexical representations but which is expected to be very useful in a wide range of NLP purposes. We show how this information can be used in dictionary sense disambiguation by creating links throughout the lexicon both on the paradigmatic and the syntagmatic axes. 1. Introduction It is widely recognized that machine readable dictionaries are important sources of lexical data which, suitably analysed, extracted and formalized, could be used effectively in the construction of lexical components for NLP applications. Recent studies in this direction have concentrated on classifying the headword in terms of the particular semantic features that can be derived from the genus items and their differentiae, and representing the lexicon as a hierarchical inheritance network (see, for example, the ACQUILEX project as described in Calzolari et al., forthcoming). In the paper we describe a different strategy that has been adopted to acquire lexical information from the Cobuild Student's dictionary.
    [Show full text]
  • Data for Lexicography the Central Role of the Corpus
    Wacana, Vol. 12 No. 2 (October 2010): 219—242 Data for lexicography The central role of the corpus ALLAN F. LAUDER Abstract This paper looks at the nature of data for lexicography and in particular on the central role that electronic corpora can play in providing it. Data has traditionally come from existing dictionaries, citations, and from the lexicographer’s own knowledge of words, through introspection. Each of these is examined and evaluated. Then the electronic corpus is considered. Different kinds of corpora are described and key design criteria are explained, in particular the size of corpus needed for lexicography as well as the issue of representativeness and sampling. The advantages and disadvantages of corpora are weighed and compared against the other types of data. :hile each of these has Eenefits, it is argued that corpora are a requirement, not an option, as data for dictionary making. Keywords Corpus linguistics, lexicography, data, linguistic intuition, citations, reading program, corpora, lexical database, type, token, corpus size, corpus representativeness, corpus balance, headword, lemma, lexeme, word form, word, general corpus, specialized corpus, monitor corpus, reference corpus, synchronic corpus Introduction For a dictionary to be reliable, it should provide generalizations about word behaviour that closely approximate the ways people generally use language for actual communication (Atkins and Rundell 2008: 45-46). These generalizations should be derived from evidence. Lexicographers have a number of sources of ALLAN F. LAUDER took his PhD at the University of Atma Jaya in Jakarta with a corpus linguistic study of keywords and collocates in an Indonesian paper. He has been a guest lecturer in Postgraduate Linguistics at the Faculty of Humanities at Universitas Indonesia teaching Psycholinguistics but currently holds a full time position in the central administration of the university as Consultant to the Rector.
    [Show full text]