Information Extraction from Web-Scale N-Gram Data

Information Extraction from Web-Scale N-Gram Data

Information Extraction from Web-Scale N-Gram Data Niket Tandon Gerard de Melo Max Planck Institute for Informatics Max Planck Institute for Informatics Saarbrücken, Germany Saarbrücken, Germany [email protected] [email protected] ABSTRACT Since much of the Web consists of unstructured text, in- Search engines are increasingly relying on structured data to formation extraction techniques have been developed to har- provide direct answers to certain types of queries. However, vest machine-readable structured information from textual extracting such structured data from text is challenging, es- data. Often, these techniques rely on pattern matching with pecially due to the scarcity of explicitly expressed knowl- textual templates. As an example, the pattern \<X> such edge. Even when relying on large document collections, as <Y>" has been found to work well for the isA relation: pattern-based information extraction approaches typically A matching word sequence like \. cities such as Paris . " expose only insufficient amounts of information. This paper allows us to induce knowledge of the form isA(Paris,City). evaluates to what extent n-gram statistics, derived from vol- Previous work has shown that textual patterns can be sur- umes of texts several orders of magnitude larger than typical prisingly reliable [17]. One major problem, however, is the corpora, can allow us to overcome this bottleneck. An exten- fact that occurrences of such patterns tend to be very rare. sive experimental evaluation is provided for three different For instance, in a 20 million word New York Times article binary relations, comparing different sources of n-gram data collection, Hearst found only 46 facts [17]. This paucity has as well as different learning algorithms. been an important bottleneck with respect to the goal of establishing large-scale repositories of structured data. Most information extraction systems have to date only Categories and Subject Descriptors been evaluated on small corpora, typically consisting of a H.3.1 [Information Storage and Retrieval]: Content couple of thousand [31] or perhaps a couple of hundred thou- Analysis and Indexing; I.2.6 [Artificial Intelligence]: Learn- sand documents [2]. Previous studies [7] have found that ing much greater precision and recall is possible by turning to search engines to benefit from Web-scale document collec- tions. This, however, is shown to slow down the extraction General Terms process by several orders of magnitude. In this paper, we Algorithms consider an alternative strategy. Instead of operating on spe- cific document collections, we turn to n-gram statistics com- puted from large fractions of the entire Web, consisting of 1. INTRODUCTION giga-scale numbers of documents. An n-gram is a sequence Search engine users generally search for information, not of n consecutive items in text. While character n-grams, for documents. In recent years, there has been a growing i.e. sequences of consecutive characters, are useful for tasks trend to go beyond standard keyword search over document like language identification and data compression, word n- collections by recognizing words and entity names and of- grams, i.e. sequences of consecutive word tokens, are useful fering additional structured results when available [26]. For for a wide range of tasks as listed in Section 2. An n-gram example, for a query like \Pablo Picasso artwork", the Bing dataset is a resource that, for a given sequence of n words, search engine displays a list of Picasso paintings delivered lists the corresponding occurrence frequency or probability by Freebase, a large database of structured data. Google of that string in a large document collection. Some of the has experimented with explicit answers to queries like \cap- available n-gram datasets [32] are computed from petabytes ital of Oregon" or \prime minister of india". Additionally, of the documents, yet such n-gram statistics have not been structured data is useful for query expansion [14], semantic used in information extraction systems in previous work. search [23], and faceted search [3], among other things. In this paper we a) discuss in which cases n-gram statis- tics may be used for information extraction b) present a framework to extract facts from n-grams and c) provide experimental results comparing different relations, n-gram Permission to make digital or hard copies of all or part of this work for datasets, and learning algorithms. The remainder of this pa- personal or classroom use is granted without fee provided that copies are per is organized as follows. Section 2 discusses related work not made or distributed for profit or commercial advantage and that copies in this area. Section 3 lays out our approach to information bear this notice and the full citation on the first page. To copy otherwise, to extraction from n-gram data. Extensive experimental re- republish, to post on servers or to redistribute to lists, requires prior specific sults are presented in Section 4. Finally, Section 5 provides permission and/or a fee. SIGIR 2010 Web N-Gram Workshop concluding remarks. Copyright 20XX ACM X-XXXXX-XX-X/XX/XX ...$10.00. 2. RELATED WORK bracketing, compound interpretation, and countability de- The idea of searching for occurrences of specific textual tection. Pre-computed n-gram frequencies have several ad- patterns in text to extract information has a long history. vantages, however, including much greater scalability and re- Patterns for finding isA relationships were first discussed by producibility of experimental results. N-gram datasets have Lyons [22] and Cruse [9]. Hearst [17] empirically evaluated been used for statistical machine translation [5], spelling the reliability of such patterns on corpora, and proposed a correction [19], word breaking to split \baseratesoughtto" method for finding them automatically using seed instances. into the most likely \base rates ought to" [32], and search Since then, a large range of approaches have built upon these query segmentation to segment web search engine queries ideas, extending them to other relationships like partOf [13] like\mike siwek laywer mi"into\mike siwek",\lawyer",\mi" as well as factual knowledge like birth dates of people and [18]. In our study, the n-gram data is used to find patterns capital cities of countries [7]. and extract structured information. Several projects studied using much more sophisticated techniques to extract very specific information from within 3. RELYING ON N-GRAM STATISTICS single web pages or even smaller units of text. The goal An n-gram dataset f is a resource that accepts n-gram was usually to extract information from the text as com- query strings s = s1 ··· sn consisting of n consecutive to- pletely as possible. Some used deeper NLP techniques to kens, and returns scores f(s) based on the occurrence fre- discover more complex extraction rules [28]. Other systems quency of that particular string of tokens in a large docu- investigated segmentation algorithms like CRFs to partition ment collection. In the simplest case, f(s) values will just citation references into individual parts (author names, title, be raw frequency counts, e.g. f(\major cities like London") year, etc.) [29]. Wrapper induction systems [20] attempted would yield the number of times the string \major cities like to discover rules for template-based web sites, e.g. to extract London" occurs in the document collection. Some n-gram pricing information from vendor product pages, as used by resources instead provide probabilities based on smoothed Google's Product Search. language models [32]. Additionally, we also consider n-gram A different line of research focussed instead on obtaining datasets supporting wildcards\?" or regular expressions like better results by scaling up the size of the document collec- \* ", in which case f returns a set of string-score tuples. tion. The idea is to avoid making risky decisions for individ- Some of the dangers of relying on Web n-grams include: ual pieces of information, but instead exploit the redundancy of information in large document collections. Agichtein [1] • Influence of spam and boilerplate text: Large portions and Pantel et al. [25] considered techniques to scale pattern- of the Web consist of automatically generated text. based approaches to larger corpora, however even these cor- This can be due to simple boilerplate text in templates, pora represent only a very small fraction of the Web. Since which is repeated on many pages, or due to malicious Web-scale document collections are not easily obtainable, (spam) web sites, consisting of non-sensical text, often other approaches relied on web search engines to find in- replicated millions of times on the same server or an stances [11, 24]. Approaches that directly rely on search en- entire network of servers. gines interfaces face major challenges. Those that use search engines to discover new tuples will generally only retrieve • Less control over the selection of input documents: top-k results for a limited k without being able to exploit With conventional extraction systems, one typically the large amounts of facts that are in the long tail. For ex- chooses a document collection likely to contain relevant ample, a query like \such as" can not be used on its own to information. N-gram data is usually not limited to a specific domain. Among other things, this may mean retrieve very large numbers of isA pairs. Those approaches that use search engines to derive more information for spe- that issues like polysemy become more of a problem. cific output tuples first need to obtain the set of candidates • Less context information: Word sense disambiguation from some other source, usually a much smaller document and part-of-speech tagging are more difficult when con- collection or perhaps pre-existing lists of named entities or sidered out-of-context. words, which is likely to be limited in coverage.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    8 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us