Open Information Extraction: the Second Generation

Total Page:16

File Type:pdf, Size:1020Kb

Open Information Extraction: the Second Generation Proceedings of the Twenty-Second International Joint Conference on Artificial Intelligence Open Information Extraction: The Second Generation Oren Etzioni, Anthony Fader, Janara Christensen, Stephen Soderland, and Mausam Turing Center Department of Computer Science and Engineering University of Washington Box 352350 Seattle, WA 98195, USA {etzioni,afader,janara,soderlan,mausam}@cs.washington.edu Abstract understanding of text.” [Etzioni et al., 2006]. In response to the challenge of Machine Reading, we have investigated How do we scale information extraction to the mas- the Open Information Extraction (Open IE) paradigm, which sive size and unprecedented heterogeneity of the aims to scale IE methods to the size and diversity of the Web Web corpus? Beginning in 2003, our KnowItAll corpus [Banko et al., 2007]. project has sought to extract high-quality knowl- edge from the Web. Typically, Information Extraction (IE) systems learn an ex- tractor for each target relation from labeled training examples In 2007, we introduced the Open Information Ex- [Kim and Moldovan, 1993; Riloff, 1996; Soderland, 1999]. traction (Open IE) paradigm which eschews hand- This approach to IE does not scale to corpora where the num- labeled training examples, and avoids domain- ber of target relations is very large, or where the target re- specific verbs and nouns, to develop unlexical- lations cannot be specified in advance. Open IE solves this ized, domain-independent extractors that scale to problem by identifying relation phrases—phrases that denote the Web corpus. Open IE systems have extracted relations in English sentences [Banko et al., 2007]. The auto- billions of assertions as the basis for both common- matic identification of relation phrases enables the extraction sense knowledge and novel question-answering of arbitrary relations from sentences, obviating the restriction systems. to a pre-specified vocabulary. This paper describes the second generation of Open Open IE systems avoid specific nouns and verbs at all costs. IE systems, which rely on a novel model of how The extractors are unlexicalized—formulated only in terms of relations and their arguments are expressed in En- syntactic tokens (e.g., part-of-speech tags) and closed-word glish sentences to double precision/recall compared classes (e.g., of, in, such as). Thus, Open IE extractors fo- with previous systems such as TEXTRUNNER and cus on generic ways in which relationships are expressed in WOE. English—naturally generalizing across domains. Open IE systems have achieved a notable measure of suc- 1 Introduction cess on massive, open-domain corpora drawn from the Web, Wikipedia, and elsewhere. [Banko et al., 2007; Wu and Weld, Ever since its invention, text has been the fundamental repos- 2010; Zhu et al., 2009]. The output of Open IE systems has itory of human knowledge and understanding. With the in- been used to support tasks like learning selectional prefer- vention of the printing press, the computer, and the explosive ences [Ritter et al., 2010], acquiring common-sense knowl- growth of the Web, we find that the amount of readily ac- edge [Lin et al., 2010], and recognizing entailment rules cessible text has long surpassed the ability of humans to read [Schoenmackers et al., 2010; Berant et al., 2011]. In addition, it. This challenge has only become worse with the explo- Open IE extractions have been mapped onto existing ontolo- sive popularity of new text production engines such as Twitter gies [Soderland et al., 2010]. where hundreds of millions of short “texts” are created daily [Ritter et al., 2011]. Even finding relevant text has become in- This paper outlines our recent efforts to develop the sec- creasingly challenging. Clearly, automatic text understanding ond generation systems for Open Information Extraction. An has the potential to help, but the relevant technologies have to important aspect of our methodology is a thorough linguistic scale to the Web. analysis of randomly sampled sentences. Our analysis ex- Starting in 2003, the KnowItAll project at the Univer- posed the simple canonical ways in which verbs express rela- sity of Washington has sought to extract high-quality col- tionships in English. This analysis guided the design of these lections of assertions from massive Web corpora. In 2006, Open IE systems, resulting in a substantially higher perfor- we wrote: “The time is ripe for the AI community to set its mance over previous work. sights on Machine Reading—the automatic, unsupervised Specifically, we describe two novel Open IE systems: RE- 3 VERB1 and R2A2 [Fader et al., 2011; Christensen et al., Sentence Incoherent Relation 2011a], which substantially improve both precision and recall The guide contains dead links contains omits and omits sites. when compared to previous extractors such as TEXTRUNNER The Mark 14 was central to the was central torpedo and WOE. In particular, REVERB implements a novel relation torpedo scandal of the fleet. phrase identifier based on generic syntactic and lexical con- They recalled that Nungesser recalled began straints. R2A2 adds an argument identifier, ARGLEARNER, began his career as a precinct to better extract the arguments for these relation phrases. leader. Both systems are based on almost five years of experience Examples of incoherent extractions. Incoherent extrac- with Open IE systems, including TEXTRUNNER, WOE, and a Table 1: tions make up approximately 13% of TEXTRUNNER’s output, 15% careful analysis of their errors. pos parse of WOE ’s output, and 30% of WOE ’s output. The remainder of the paper is organized as follows. We first define the Open IE task and briefly describe previous is is an album by, is the author of, is a city in Open IE systems in Section 2. Section 3 outlines the architec- has has a population of, has a Ph.D. in, has a cameo in made made a deal with, made a promise to ture of REVERB and Section 4 compares this to the existing took took place in, took control over, took advantage of Open IE extractors. We present R2A2’s argument learning gave gave birth to, gave a talk at, gave new meaning to component in Section 5. We compare R2A2 and REVERB got got tickets to see, got a deal on, got funding from in Section 6. Section 7 describes some recent research re- lated to large scale IE. We conclude with directions for future Table 2: Examples of uninformative relations (left) and their com- pletions (right). Uninformative extractions account for approxi- research in Section 8. parse pos mately 4% of WOE ’s output, 6% of WOE ’s output, and 7% of TEXTRUNNER’s output. 2 Open Information Extraction Open IE systems make a single (or constant number of) [Wu and Weld, 2010]. They also show that dependency parse pass(es) over a corpus and extract a large number of relational features result in a dramatic increase in precision and recall tuples (Arg1, Pred, Arg2) without requiring any relation- over shallow linguistic features, but at the cost of extraction specific training data. For instance, given the sentence, “Mc- speed. Cain fought hard against Obama, but finally lost the elec- tion,” an Open IE system should extract two tuples, (Mc- 2.1 Limitations in Previous Open IE Systems Cain, fought against, Obama), and (McCain, lost, the elec- We identify two significant problems in all prior Open IE sys- tion). The strength of Open IE systems is in their efficient tems: incoherent extractions and uninformative extractions. processing as well as ability to extract an unbounded number Incoherent extractions are cases where the extracted relation of relations. phrase has no meaningful interpretation (see Table 1 for ex- Several Open IE systems have been proposed before now, amples). Incoherent extractions arise because the learned ex- including TEXTRUNNER [Banko et al., 2007], WOE [Wu and tractor makes a sequence of decisions about whether to in- Weld, 2010], and StatSnowBall [Zhu et al., 2009]. All these clude each word in the relation phrase, often resulting in in- systems use the following three-step method: comprehensible relation phrases. The second problem, uninformative extractions, occurs 1. Label: Sentences are automatically labeled with extrac- when extractions omit critical information. For example, tions using heuristics or distant supervision. consider the sentence “Hamas claimed responsibility for the 2. Learn: A relation phrase extractor is learned using a Gaza attack”. Previous Open IE systems return the uninfor- sequence-labeling graphical model (e.g., CRF). mative: (Hamas, claimed, responsibility) instead of (Hamas, 3. Extract: the system takes a sentence as input, identi- claimed responsibility for, the Gaza attack). This type of er- fies a candidate pair of NP arguments (Arg1, Arg2) from ror is caused by improper handling of light verb construc- the sentence, and then uses the learned extractor to label tions (LVCs). An LVC is a multi-word predicate composed each word between the two arguments as part of the re- of a verb and a noun, with the noun carrying the seman- [ lation phrase or not. tic content of the predicate Grefenstette and Teufel, 1995; Stevenson et al., 2004; Allerton, 2002]. Table 2 illustrates The extractor is applied to the successive sentences in the cor- the wide range of relations expressed with LVCs, which are pus, and the resulting extractions are collected. not captured by previous open extractors. The first Open IE system was TEXTRUNNER [Banko et al., 2007], which used a Naive Bayes model with unlexi- 3 ReVerb Extractor for Verb-based Relations calized POS and NP-chunk features, trained using examples heuristically generated from the Penn Treebank. Subsequent In response to these limitations, we introduce REVERB, work showed that utilizing a linear-chain CRF [Banko and which implements a general model of verb-based relation Etzioni, 2008] or Markov Logic Network [Zhu et al., 2009] phrases, expressed as two simple constraints. We first de- can lead to improved extractions.
Recommended publications
  • ARCHITECTS of INTELLIGENCE for Xiaoxiao, Elaine, Colin, and Tristan ARCHITECTS of INTELLIGENCE
    MARTIN FORD ARCHITECTS OF INTELLIGENCE For Xiaoxiao, Elaine, Colin, and Tristan ARCHITECTS OF INTELLIGENCE THE TRUTH ABOUT AI FROM THE PEOPLE BUILDING IT MARTIN FORD ARCHITECTS OF INTELLIGENCE Copyright © 2018 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Acquisition Editors: Ben Renow-Clarke Project Editor: Radhika Atitkar Content Development Editor: Alex Sorrentino Proofreader: Safis Editing Presentation Designer: Sandip Tadge Cover Designer: Clare Bowyer Production Editor: Amit Ramadas Marketing Manager: Rajveer Samra Editorial Director: Dominic Shakeshaft First published: November 2018 Production reference: 2201118 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK ISBN 978-1-78913-151-2 www.packt.com Contents Introduction ........................................................................ 1 A Brief Introduction to the Vocabulary of Artificial Intelligence .......10 How AI Systems Learn ........................................................11 Yoshua Bengio .....................................................................17 Stuart J.
    [Show full text]
  • Keeping AI Legal
    Vanderbilt Journal of Entertainment & Technology Law Volume 19 Issue 1 Issue 1 - Fall 2016 Article 5 2016 Keeping AI Legal Amitai Etzioni Oren Etzioni Follow this and additional works at: https://scholarship.law.vanderbilt.edu/jetlaw Part of the Computer Law Commons, and the Science and Technology Law Commons Recommended Citation Amitai Etzioni and Oren Etzioni, Keeping AI Legal, 19 Vanderbilt Journal of Entertainment and Technology Law 133 (2020) Available at: https://scholarship.law.vanderbilt.edu/jetlaw/vol19/iss1/5 This Article is brought to you for free and open access by Scholarship@Vanderbilt Law. It has been accepted for inclusion in Vanderbilt Journal of Entertainment & Technology Law by an authorized editor of Scholarship@Vanderbilt Law. For more information, please contact [email protected]. Keeping Al Legal Amitai Etzioni* and Oren Etzioni** ABSTRACT AI programs make numerous decisions on their own, lack transparency, and may change frequently. Hence, unassisted human agents, such as auditors, accountants, inspectors, and police, cannot ensure that Al-guided instruments will abide by the law. This Article suggests that human agents need the assistance of AI oversight programs that analyze and oversee operational AI programs. This Article asks whether operationalAIprograms should be programmed to enable human users to override them; without that, such a move would undermine the legal order. This Article also points out that Al operational programs provide high surveillance capacities and, therefore, are essential for protecting individual rights in the cyber age. This Article closes by discussing the argument that Al-guided instruments, like robots, lead to endangering much more than the legal order-that they may turn on their makers, or even destroy humanity.
    [Show full text]
  • AI Ignition Ignite Your AI Curiosity with Oren Etzioni AI for the Common Good
    AI Ignition Ignite your AI curiosity with Oren Etzioni AI for the common good From Deloitte’s AI Institute, this is AI Ignition—a monthly chat about the human side of artificial intelligence with your host, Beena Ammanath. We will take a deep dive into the past, present, and future of AI, machine learning, neural networks, and other cutting-edge technologies. Here is your host, Beena. Beena Ammanath (Beena): Hello, my name is Beena Ammanath. I am the executive director of the Deloitte AI Institute, and today on AI Ignition we have Oren Etzioni, a professor, an entrepreneur, and the CEO of Allen Institute for AI. Oren has helped pioneer meta search, online comparison shopping, machine reading, and open information extraction. He was also named Seattle’s Geek of the Year in 2013. Welcome to the show, Oren. I am so excited to have you on our AI Ignition show today. How are you doing? Oren Etzioni (Oren): I am doing as well as anyone can be doing in these times of COVID and counting down the days till I get a vaccine. Beena: Yeah, and how have you been keeping yourself busy during the pandemic? Oren: Well, we are fortunate that AI is basically software with a little sideline into robotics, and so despite working from home, we have been able to stay productive and engaged. It’s just a little bit less fun because one of the things I like to say about AI is that it’s still 99% human intelligence, and so obviously the human interactions are stilted.
    [Show full text]
  • Oren Etzioni, Phd: CEO of Allen Institute for AI
    Behind the Tech Kevin Scott Podcast EP-26: Oren Etzioni, PhD: CEO of Allen Institute for AI [MUSIC] OREN ETZIONI: Whose responsibility is it? The responsibility and liability has to ultimately rest with a person. You can’t say, “Hey, you know, look, my car ran you over, it’s an AI car, I don’t know what it did, it’s not my fault, right?” You as the driver or maybe it’s the manufacturer if there’s some malfunction, but people have to be responsible for the behavior of the machines. [MUSIC] KEVIN SCOTT: Hi, everyone. Welcome to Behind the Tech. I'm your host, Kevin Scott, Chief Technology Officer for Microsoft. In this podcast, we're going to get behind the tech. We'll talk with some of the people who have made our modern tech world possible and understand what motivated them to create what they did. So, join me to maybe learn a little bit about the history of computing and get a few behind- the-scenes insights into what's happening today. Stick around. [MUSIC] CHRISTINA WARREN: Hello, and welcome to Behind the Tech. I’m Christina Warren, senior cloud advocate at Microsoft. KEVIN SCOTT: And I’m Kevin Scott. CHRISTINA WARREN: Today on the show, our guest is Oren Etzioni. Oren is a professor, entrepreneur, and is the chief executive officer for the Allen Institute for AI. So, Kevin, I’m guessing that you guys have already crossed paths in your professional pursuits. KEVIN SCOTT: Yeah, I’ve been lucky enough to know Oren for the past several years.
    [Show full text]
  • The Elephant in the Room: Getting Value from Big Data Serge Abiteboul, Luna Dong, Oren Etzioni, Divesh Srivastava, Gerhard Weikum, Julia Stoyanovich, Fabian Suchanek
    The elephant in the room: getting value from Big Data Serge Abiteboul, Luna Dong, Oren Etzioni, Divesh Srivastava, Gerhard Weikum, Julia Stoyanovich, Fabian Suchanek To cite this version: Serge Abiteboul, Luna Dong, Oren Etzioni, Divesh Srivastava, Gerhard Weikum, et al.. The elephant in the room: getting value from Big Data. Workshop on Web and Databases (WebDB), May 2015, Melbourne, France. 10.1145/2767109.2770014. hal-01699868 HAL Id: hal-01699868 https://hal-imt.archives-ouvertes.fr/hal-01699868 Submitted on 2 Feb 2018 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. The elephant in the room: getting value from Big Data Serge Abiteboul (INRIA Saclay & ENS Cachan, France), Luna Dong (Google Inc., USA), Oren Etzioni (Allen Institute for Artificial Intelligence, USA), Divesh Srivastava (AT&T Labs-Research, USA), Gerhard Weikum (Max Planck Institute for Informatics, Germany), Julia Stoyanovich (Drexel University, USA) and Fabian M. Suchanek (Télécom ParisTech, France) 1. INTRODUCTION SIGMOD Innovation Award in 1998, the EADS Award from Big Data, and its 4 Vs { volume, velocity, variety, and the French Academy of sciences in 2007; the Milner Award veracity { have been at the forefront of societal, scientific from the Royal Society in 2013; and a European Research and engineering discourse.
    [Show full text]
  • Toward Automatic Bootstrapping of Online Communities Using
    Toward Automatic Bootstrapping of Online Communities Using Decision-theoretic Optimization Shih-Wen Huang* Jonathan Bragg* Isaac Cowhey University of Washington University of Washington Allen Institute for AI Seattle, WA, USA Seattle, WA, USA Seattle, WA, USA [email protected] [email protected] [email protected] Oren Etzioni Daniel S. Weld Allen Institute for AI University of Washington Seattle, WA, USA Seattle, WA, USA [email protected] [email protected] ABSTRACT INTRODUCTION Successful online communities (e.g., Wikipedia, Yelp, and The Internet has spawned communities that create extraordi- StackOverflow) can produce valuable content. However, nary resources. For example, Wikipedia’s 23 million users many communities fail in their initial stages. Starting an on- have created over 4 million English articles, a resource over line community is challenging because there is not enough 100 times larger than any other encyclopedia. Similarly, content to attract a critical mass of active members. This StackOverflow has become a top resource for programmers paper examines methods for addressing this cold-start prob- with 14 million answers to 8.5 million questions, while Yelp lem in datamining-bootstrappable communities by attract- users generated more than 67 million reviews.1 ing non-members to contribute to the community. We make four contributions: 1) we characterize a set of communi- In reality, however, most online communities fail. For exam- ple, thousands of open source projects have been created on ties that are “datamining-bootstrappable” and define the boot- SourceForge, but only 10% have three or more members [24]. strapping problem in terms of decision-theoretic optimiza- Furthermore, more than 50% of email-based groups received tion, 2) we estimate the model parameters in a case study involving the Open AI Resources website, 3) we demonstrate no messages during a four-month study period [6].
    [Show full text]
  • Autonomous Cars –
    Prof. Roberto V. Zicari Frankfurt Big Data Lab www.bigdata.uni-frankfurt.de Johannes Gutenberg University Mainz January 28, 2019 1 Data as an Economic and Semantic Asset “I think we’re just beginning to grapple with implications of data as an economic asset” (*) –Steve Lohr (The New York Times) Data has become a new economic asset. The companies with big data pools can have great economic power They greatly influence what the philosopher Floridi call our semantic capital (**) (*) Source: Big Data and The Great A.I. Awakening. Interview with Steve Lohr, ODBMS Industry Watch, December 19, 2016 (**) Source: Semantic Capital: Its Nature, Value, and Curation, Luciano Floridi, December 2018, Volume 31, Issue 4, pp 481–497| 2 What is more important, vast data pools, sophisticated algorithms or deep pockets? “No one can replicate your data. It’s the defensible barrier, not algorithms.” (*) -- Andrew Ng, Stanford professor (*) Source: Big Data and The Great A.I. Awakening. Interview with Steve Lohr, ODBMS Industry Watch, December 19, 2016 3 Algorithms and Data “AI is akin to building a rocket ship. You need a huge engine and a lot of fuel. The rocket engine is the learning algorithms but the fuel is the huge amounts of data we can feed to these algorithms.” (*) -- Andrew Ng It is important to note that Big Data is of NO use unless it is analysed. (*) Source: Big Data and The Great A.I. Awakening. Interview with Steve Lohr, ODBMS Industry Watch, December 19, 2016 4 Interplay and implications of Big Data and Artificial Intelligence The Big Data revolution and the new developments in Hardware have made the recent AI advances possible.
    [Show full text]
  • Jeffrey P. Bigham Updated 2/3/2020
    3525 Newell-Simon Hall +1 (412) 945-0708 Carnegie Mellon University Jeffrey P. Bigham [email protected] Pittsburgh, PA 15213 www.jeffreybigham.com updated 2/3/2020 ACADEMIC POSITIONS Research Scientist July 2018 – Accessibility, Sensing, and Machine Learning Research Apple, Pittsburgh, PA Associate Professor September 2013 – Human Computer Interaction Institute and Language Technologies Institute Carnegie Mellon University, School of Computer Science, Pittsburgh, PA Assistant Professor July 2009 – August 2013 Department of Computer Science University of Rochester, Rochester, NY EDUCATION Ph.D., Computer Science and Engineering, University of Washington – 2009 Thesis Title: Intelligent Interfaces Enabling Blind Web Users to Build Accessibility Into the Web Committee: Richard E. Ladner (chair), Tessa Lau, Ed Lazowska, and Jacob O. Wobbrock. M.Sc. Computer Science and Engineering, University of Washington – 2005 Qualifying Exam Project: Boosting Relation Extraction Recall with Soft Rules. Advisor: Oren Etzioni. B.S.E. Computer Science, Princeton University – 2003 Thesis Title: On Using Error-Correcting Codes and Boosting to Learn Multi-Class Classification Problems Advisors: Amit Sahai and Robert Shapire HONORS Alfred P. Sloan Research Fellowship (2014) NSF CAREER Award (2012) MIT Technology Review Top 35 Innovators Under 35 Award (2009) W4A 2016 Best Technical Paper Award [C.69] (2016) ASSETS 2015 Best Demo Award [P.25] (2015) W4A 2014 Best Technical Paper Award [C.50] (2014) W4A Paciello Group Accessibility Challenge Award – Scribe [O.14] (2013) ACM WSDM 2012 Best Paper Award [C.30] (2012) ACM UIST 2010 Best Paper Award [C.24] (2010) W4A Accessibility Challenge Award – VizWiz [O.8] (2010) University of Washington College of Engineering Student Innovator Award for Research (2009) NCTI Technology in the Works Award (2009) NISH National Scholar Award for Workplace Innovation & Design – Slide Rule (Honorable Mention) (2009) NISH National Scholar Award for Workplace Innovation & Design – WebAnywhere (Honorable Mention) (2009) Andrew W.
    [Show full text]
  • Convolutional Neural Networks (CNN) for Data Classification
    Convolutional Neural Networks (CNN) for data classification Gianluca Filippini EBV / FAE -ML Specialist 1 2017: We will create systems and robots, which are smarter than us Raymond Kurzweil, Google’s Director of Engineering, is a well-known futurist with a high-hitting track record for accurate predictions. “2029 is the consistent date I have predicted for when an AI will pass a valid Turing test and therefore achieve human levels of intelligence. I have set the date 2045 for the ‘Singularity’ which is when we will multiply our effective intelligence a billion fold by merging with the intelligence we have created” Ray Kurzweil Using big data, computer programs (artificial intelligence) will be capable of analyzing massive amounts of information, identifying trends and using that knowledge to come up with solutions to the world’s biggest problems.. https://en.wikipedia.org/wiki/Ray_Kurzweil https://futurism.com/kurzweil-claims-that-the-singularity-will-happen-by-2045 https://en.wikipedia.org/wiki/Technological_singularity 2 1950: The Imitation Game. Computing Machinery and Intelligence (Mind 49, 433-460) I propose to consider the question, "Can machines think?" This should begin with definitions of the meaning of the terms "machine" and "think.“ […] It is played with three people, a man (A), a woman (B), and an interrogator (C) who may be of either sex. The interrogator stays in a room apart front the other two. The object of the game for the interrogator is to determine which of the other two is the man and which is the woman. He knows
    [Show full text]
  • Douglas C Downey
    Douglas C Downey Electrical Engineering and Computer Science Dept. [email protected] Northwestern University, Ford 3-345 (847)491-3710 2133 Sheridan Road http://www.cs.northwestern.edu/~ddowney Evanston, IL 60208 Research Natural Language Processing, Machine Learning, Artificial Intelligence Interests Education University of Washington September 2002 – Ph.D. Computer Science and Engineering, 2008 December 2008 Dissertation Title: Redundancy in Web-scale Information Extraction: Probabilistic Model and Experimental Results M.S. Computer Science and Engineering, 2004 Case Western Reserve University August 1996 – B.S./M.S. in Computer Science May 2000 Minors in Mathematics and Economics Professional Northwestern University, Associate Professor September 2014 – Experience Department of Electrical Engineering and Computer Science present Northwestern University, Assistant Professor September 2008 – Department of Electrical Engineering and Computer Science 2014 University of Washington, Research Assistant June 2003 – Advisor: Oren Etzioni September 2008 March 2006 – Microsoft Corporation, Research Intern July 2006 Mentor: Susan Dumais Manager: Eric Horvitz October 2000 – Intel Corporation, Internet Software Engineer September 2002 October 1998 – Case Western Reserve University, Research Assistant September 2000 Advisor: Randall D. Beer Honors and NSF CAREER Award, 2014 Awards Northwestern EECS “Teacher of the Year,” 2012 US SECRET Security Clearance, 2012-2016 DARPA Computer Science Study Panel, 2011 Microsoft New Faculty Fellowship,
    [Show full text]
  • Exploiting Parallel News Streams for Unsupervised Event Extraction Congle Zhang, Stephen Soderland & Daniel S
    Exploiting Parallel News Streams for Unsupervised Event Extraction Congle Zhang, Stephen Soderland & Daniel S. Weld Computer Science & Engineering University of Washington Seattle, WA 98195, USA clzhang, soderlan, weld @cs.washington.edu { } Abstract Unfortunately, while distant supervision can work well in some situations, the method is limited to rela- Most approaches to relation extraction, the tively static facts (e.g., born-in(person, location) or task of extracting ground facts from natural capital-of(location,location)) where there is a cor- language text, are based on machine learning responding knowledge base. But what about dy- and thus starved by scarce training data. Man- ual annotation is too expensive to scale to a namic event relations (also known as fluents), such comprehensive set of relations. Distant super- as travel-to(person, location) or fire(organization, vision, which automatically creates training person)? Since these time-dependent facts are data, only works with relations that already ephemeral, they are rarely stored in a pre-existing populate a knowledge base (KB). Unfortu- KB. At the same time, knowledge of real-time nately, KBs such as FreeBase rarely cover events is crucial for making informed decisions in event relations (e.g. “person travels to loca- fields like finance and politics. Indeed, news stories tion”). Thus, the problem of extracting a wide range of events — e.g., from news streams — report events almost exclusively, so learning to ex- is an important, open challenge. tract events is an important open problem. This paper introduces NEWSSPIKE-RE, a This paper develops a new unsupervised tech- novel, unsupervised algorithm that discovers nique, NEWSSPIKE-RE, to both discover event rela- event relations and then learns to extract them.
    [Show full text]
  • Artificial Intelligence: Background, Selected Issues, and Policy Considerations
    Artificial Intelligence: Background, Selected Issues, and Policy Considerations May 19, 2021 Congressional Research Service https://crsreports.congress.gov R46795 SUMMARY R46795 Artificial Intelligence: Background, Selected May 19, 2021 Issues, and Policy Considerations Laurie A. Harris The field of artificial intelligence (AI)—a term first used in the 1950s—has gone through Analyst in Science and multiple waves of advancement over the subsequent decades. Today, AI can broadly be thought Technology Policy of as computerized systems that work and react in ways commonly thought to require intelligence, such as the ability to learn, solve problems, and achieve goals under uncertain and varying conditions. The field encompasses a range of methodologies and application areas, including machine learning (ML), natural language processing, and robotics. In the past decade or so, increased computing power, the accumulation of big data, and advances in AI techniques have led to rapid growth in AI research and applications. Given these developments and the increasing application of AI technologies across economic sectors, stakeholders from academia, industry, and civil society have called for the federal government to become more knowledgeable about AI technologies and more proactive in considering public policies around their use. Federal activity addressing AI accelerated during the 115th and 116th Congresses. President Donald Trump issued two executive orders, establishing the American AI Initiative (E.O. 13859) and promoting the use of trustworthy AI in the federal government (E.O. 13960). Federal committees, working groups, and other entities have been formed to coordinate agency activities, help set priorities, and produce national strategic plans and reports, including an updated National AI Research and Development Strategic Plan and a Plan for Federal Engagement in Developing Technical Standards and Related Tools in AI.
    [Show full text]