WO1998025217A1 - Method and apparatus for natural language querying and semantic searching of an information database - Google Patents

Method and apparatus for natural language querying and semantic searching of an information database Download PDF

Info

Publication number
WO1998025217A1
WO1998025217A1 PCT/US1997/022943 US9722943W WO9825217A1 WO 1998025217 A1 WO1998025217 A1 WO 1998025217A1 US 9722943 W US9722943 W US 9722943W WO 9825217 A1 WO9825217 A1 WO 9825217A1
Authority
WO
WIPO (PCT)
Prior art keywords
sentence
thematic
question
verb
candidate
Prior art date
Application number
PCT/US1997/022943
Other languages
French (fr)
Inventor
Brian E. Ulicny
John B. Jensen
Bradley P. Allen
Original Assignee
Quarterdeck Corporation
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Quarterdeck Corporation filed Critical Quarterdeck Corporation
Priority to EP97950947A priority Critical patent/EP1016003A1/en
Priority to CA002273902A priority patent/CA2273902A1/en
Priority to AU53816/98A priority patent/AU5381698A/en
Publication of WO1998025217A1 publication Critical patent/WO1998025217A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/30Information retrieval; Database structures therefor; File system structures therefor of unstructured textual data
    • G06F16/33Querying
    • G06F16/3331Query processing
    • G06F16/334Query execution
    • G06F16/3344Query execution using natural language analysis
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/245Query processing
    • G06F16/2452Query translation
    • G06F16/24522Translation of natural language queries to structured queries

Definitions

  • This invention relates generally to the computerized searching of information databases and, more specifically, to searching the World Wide Web for answers to a natural language question.
  • tlBSTITIITE SKST (RULE 26) information is contained in this multitude of electronic documents, how is the user to find the information that is desired?
  • the simplest keyword-based method is keyword indexing.
  • the method begins by representing a document as a collection of words or strings of symbols rather than as an ordered sequence of meaningful propositions. Sophisticated techniques are then employed to match a query for information, represented as a set of strings of letters, to documents, again represented as sets of strings of letters.
  • words in a document collection are indexed to the documents that contain them.
  • users present a system with some collection of keywords and are returned references or pointers to documents that contain those keywords.
  • More sophisticated variants of this technique allow users to specify further constraints on relevant documents beyond containing at least one of the keywords listed. For example, the user may specify keywords that must not appear in returned documents, the proximity of keywords within a document, the presence of multi-keyword phrases, and other Boolean conditions on the words that are contained in a relevant document.
  • Boolean keyword searching techniques allow the user to make sophisticated constraints on documents that are to be considered relevant to the query. These techniques increase the precision of the returned document set by allowing the user to request a more-focused set of documents from the information retrieval system.
  • a different class of keyword-based techniques automatically expands the user's query for documents to include equivalent variants of the user's query in order to increase the number of documents returned. This results in an increase in the information retrieval system's recall .
  • Examples of these techniques include "stemming" query terms to a root form so that all of the morphological variants of a keyword are matched in a document. For example, stemming "computation” and "computer” to the same root will return documents containing either term when queried with one of them.
  • Another technique involves adding synonyms of query terms to the query so that, for example, a query on "3M" automatically returns documents that contain the string
  • Keyword-based techniques represent documents only as collections of words rather than as meaningful expressions arranged into text for some communicative purpose.
  • a sentence is more than a set of words; the structure of the sentence does most of the work in determining the meaning of the sentence.
  • Both of the previous classes of techniques fundamentally represent documents as collections of alphanumeric characters, i.e. combinations of letters, and use a combination of the user's input and the system's design to return relevant documents on the basis of the words they contain. Unless precise information about word order is specified, they will, therefore, fail to distinguish between "the man bit the dog" and "the man was bitten by the dog.”
  • An alternative class of information retrieval techniques addresses this issue by representing the meaning of a document rather than merely the words it contains.
  • These techniques involve marking up stored text (or even non-textual data) with a representation of the meaning or content of the document in some formalism or other.
  • an implementation of such techniques would be to provide a set of photographs with a set of keywords representing what the photographs depict. This would have to be done manually.
  • an implementation of these techniques might involve marking up documents pertaining to financial transactions, say, with some representation of who is buying, who is selling, what is sold, and for how much. Documents could then be retrieved on the basis of their marked up annotations alone (e.g., "What did Company X buy?") or by means of their annotations as well as by keyword indexing .
  • the content markup approach has the advantage of pointing the user towards documents, or sections of documents, on the basis of the semantic or prepositional content of the document or its sections, rather than on the basis of the words that the document contains. This is certainly an improvement over the keyword approach.
  • On-line information retrieval relies on a word- level representation of libraries of text to locate the information users want. There is no equivalent of a card catalog or book abstract available for on-line documents.
  • Content markup approaches can index a collection of information on the basis of the propositions that the text expresses or that characterize the text rather than the words that the text contains.
  • specific sorts of "metadata” data about data
  • semantic querying accepts a question submitted to the information retrieval system in a natural language format .
  • a semantic analysis of the question is then used to translate the question into a specialized language or otherwise reformat it to aid in information retrieval.
  • Some applications of this type may translate queries submitted in English into Boolean logic, or into specialized database query languages such as SQL.
  • Others parse the question into a semantic representation that can be matched against marked up content. Others analyze the question and produce a set of synonymous or near- synonymous queries, hoping to increase the recall of the system.
  • the invention is a software application designed to find answers to user-submitted queries posed in English from on-line documents.
  • the invention consists of three major components (application programs) that will be described in detail below: a user interface, a parser, and a sentence evaluator that determines the extent to which a given sentence answers a submitted question.
  • the user begins the process of retrieving information by submitting a natural language questions (e.g., English) to the user interface. For example, the user might ask, "When was Pluto discovered?" The submitted questions should be a direct request for the information, rather than a request to find the information. That is, users tend to anthropomorphize systems, but they should not make an indirect request for the information, asking, for example, "Can you find me the date of Pluto's discovery?" The question is then parsed into a form that will be useful for comparison with the returned answers. In addition, a minimum score that returned answers must meet or exceed is determined.
  • a natural language questions e.g., English
  • the user interface accesses a database to identify a set of relevant documents to process for answers.
  • This candidate set of documents might consist of the entire collection of a user's email messages, for example.
  • the submitted question can be mapped to a keyword index query in order to narrow the range of candidate documents that may contain an answer to the submitted question.
  • the invention processes each document, sentence by sentence, looking for answers to the submitted question. For each sentence, a judgment is made whether or not to parse the sentence into its thematic representation. This decision is based on the presence or absence of keywords from the query in the sentence. Sentences with no keywords from the query are discarded, and those with keywords are kept for further processing.
  • a parse (a semantic as well as a syntactic representation) of the sentence is created.
  • Each sentence is taken to represent an event or state, with each phrase within the sentence representing some role in that event or state.
  • one phrase may represent the agents of an event, another the theme of the event (that which is acted upon) , another the instrument, and so on.
  • the result is a structure consisting of an event of a specified type, plus a series of relationships specifying exactly how the participants in the event participate in the event. For example, "Brutus stabbed Caesar" would be represented as expressing the existence of a stabbing event, with Brutus as the agent of the event, and Caesar as the "theme” (undergoer) of the event.
  • Answer Me! relies on detailed knowledge of the syntax and semantics of verbs (events) in contrast to other Artificial Intelligence systems that have been based on a detailed representation of the relationships of nouns
  • objects -- indicating, for example, that a foot is a part of a leg, and so on.
  • the class of English verbs is much smaller than the class of nouns, and they have a smaller range of meanings. Therefore, a detailed representation of the nature of objects requires much more storage space and is much more complex than a detailed representation of the nature of events .
  • the similarity of the semantic representation of the candidate sentence to the similarly parsed question is evaluated. To what extent do they represent similar events? If there is a close enough match, the sentence is returned as an answer to the submitted question.
  • the above steps are repeated for all sentences in the document, and all documents in the set of candidate documents.
  • a metric reflecting the scoring of each document is presented to the user and can be used to order the answers .
  • the metric is derived with the aid of a data structure that represents the relationship of various events on the basis of the verbs that express them.
  • the data structure divides thousands of English verbs into various semantic classes and subclasses, representing relationships of synonymy and near synonymy between verbs.
  • a metric of the closeness of meaning between any two verbs can be determined on the basis of their relative relationship within the data structure.
  • a hypertext link to the documents from which the answers came can also be provided.
  • the invention contains a knowledge base of event types, and so, can recognize that a hunting event, for example, is semantically close to a seeking event, while recognizing the distinct syntactic characteristics of the verbs "hunt” and "seek.” Lastly, and most importantly, by rapidly processing all of the sentences of a document semantically -- not just the submitted question -- the invention radically speeds up the process of finding answers to specific questions with a high degree of both precision and recall.
  • Figure 1 is a high level block diagram of a computer adapted to perform the method of the invention.
  • Figures 2A - 2B show a flow diagram of the major functions that combine to enable the method of the invention.
  • Figures 3A - 3C show a flow diagram indicating the functioning of the parser that lies at the heart of the invention .
  • Figures 4A - 4D show a representative response, to a user question, in the form of an automatically generated HTML page.
  • Answer Me! locates text relevant to a user-specified question posed in a natural language format; analyzes that text for sentences that may provide answers to the question; identifies those sentences that are deemed to answer the question; and evaluates the degree to which those sentences actually constitute answers to the question.
  • FIG. 1 shows a block diagram of a computer system adapted to perform the method of the invention.
  • the central processing unit (“CPU") 110 Via a bus 105, the central processing unit (“CPU") 110 is connected to a random access memory 115, a user interface terminal 120, and a local storage 125.
  • application programs (conceptually, a user interface, parser and evalua tor - - described more fully below) are downloaded from local storage 125 to RAM 115 for execution by CPU 110.
  • Local storage 125 may be a magnetic, optical, magneto-optical, electronic, or any other device capable of storing the necessary application programs.
  • the term “electronically accessible” shall be understood to encompass all such storage devices.
  • the local storage 125 also stores the documents which are to be searched for the answer to the user's question.
  • documents could actually originate from a remote site, and the search resources used may be remote search resources as well.
  • local storage 125 need not be a traditional mass storage device, but need only be a memory device of sufficient capacity to receive and buffer the desired information.
  • the local storage 125 or the remote site could serve as a document depository.
  • the documents to be searched reside on the World Wide Web ("WWW") and may be accessed via an Internet browser (e.g., Netscape) ; currently, a stand-alone user interface allows the user to input questions and view the progress of the processing, but user interaction may be accomplished in a variety of ways.
  • WWW World Wide Web
  • Internet browser e.g., Netscape
  • a stand-alone user interface allows the user to input questions and view the progress of the processing, but user interaction may be accomplished in a variety of ways.
  • distributed computing technologies e.g. Sun's Java applets, Next's Web objects or EOlas' Weblets
  • the great operational flexibility afforded by a networked computing enrollment allows the system to be deployed for client, server, or hybrid operation depending on the local or remote provisioning of the application programs and/or documents.
  • Answer Me! is implemented as follows:
  • Hardware 486 or higher-speed Intel processor.
  • Operating system Windows 95 or Windows NT Workstation or Server v.3.5.1.
  • Search resources Digital Equipment Corporation's Alta Vista search engine and InfoSeek' s FAQ search service.
  • Answer Me! was written in Visual C++ and compiled using Microsoft's Visual C++ Developer Studio v. 4.2.
  • the above-mentioned application programs are implemented in a binary executable file (answerer.exe, -1.5 Mb) and five associated data files. These include a part of speech data file (lexicon.dat, -250 KB), a verb classes index (evca93.txt, -75KB) , a thematic grid index (theta.txt, -15 KB) , and two initialization files (ansrme.ini, 1 KB, and wlres.ini, 2 KB).
  • the method of the invention will now be described with respect to the above example of a WWW searcher.
  • the invention is usable for electronic document searching generally.
  • the user inputs the question and, at step 210, the question is parsed into a form useful for comparison with the returned answers.
  • This form which is known to those skilled in the art as neo- Davidsonian logical form, is also used during parsing of the returned answers, and will be described in detail in the following section entitled "Sentence Parsing.”
  • a minimum score requirement is calculated for the question, which any answer returned to the user must exceed.
  • an appropriate search-engine query (e.g., the traditional keyboard-based, content markup or query analysis technique described in the BACKGROUND OF THE INVENTION) is constructed on the basis of the question.
  • the search engine query is submitted to the search engine or engines (e.g., WWW sites such as Alta Vista or InfoSeek) with which the invention has been enabled to communicate. These search engines return a set of pointers, to text documents, consisting of the documents' Uniform Resource Locations ("URLs”), i.e., their addresses on the WWW.
  • URLs Uniform Resource Locations
  • each search result (a document at its returned URL) is downloaded to local storage 125 for linguistic processing.
  • the document is tokenized to yield a collection of sentences.
  • a document in a computer-readable format e.g., a web page in HTML
  • the tokenizer includes a routine for detecting abbreviations so that sentences are not ended prematurely.
  • each sentence is parsed as will be described in more detail with respect to Figures 3A-3D (collectively referred to as " Figure 3") below.
  • the parsing of each sentence of Answer Me! comprises the following three steps:
  • Steps (a) and (b) may be thought of as grammatical (or syntactical) steps, while step (c) may be thought of as a semantic operation. Together, the three steps constitute what shall be referred to herein as semantic analysis, the term "semantic" as a matter of convenience being used throughout this document to include both semantic and syntactic operations .
  • the outcome of the parser is a mapping of each sentence (whatever its mood -- indicative, interrogative, or imperative) into a representation of its logical or semantic form.
  • the semantic formalism used is a member of the family known to those skilled in the art as neo -Davidsonian logical form.
  • Neo-Davidsonian analyses of the logical form of sentences go one step further than Davidsonian analyses in treating arguments and adjuncts equally as conjuncts existentially bound to the same event variable.
  • Arguments are analyzed as bearing a particular thematic (or ⁇ theta") role within an event.
  • the argument is sometimes said to bear a thematic rela tion to an event.
  • the sentence "John buttered the toast" would be assigned the logical form:
  • Predicate (pred) John is a barber; John appointed Mary president
  • Agent (ag) John gave the book to Mary
  • Source John took the book from Mary
  • Goal (goal) John gave the book to Mary
  • Path (path) The planet circles around the sun
  • Manner (manner) : The bread cuts easily; John cooked the spaghetti by boiling it
  • Purpose/Reason John skipped school to see the game .
  • Measure (measure) It snowed a foot, John weighed
  • Possessor (poss) John has the flu
  • Possessed (posd) John has the flu
  • Thematic roles are to be distinguished from grammatical roles such as subject and direct object, which refer to a phrase's position, rather than the way in which its referent participates in an event. Grammatical roles distinguish the syntactic position of a phrase in a sentence in relation to the sentence's verb or some other phrase- heading element. Two phrases may have different grammatical roles, but bear the same thematic relation as in the sentences :
  • sentence (3) logically entails sentence (4) , and vice versa.
  • Davidsonian analyses cannot account for these entail ents directly: in order to explain an inference from (3) to (4) or from (4) to (3) , additional inference rules would be necessary in a Davidsonian theory. This is a clear advantage for neo-Davidsonian accounts since most verbs are like "give" in that they allow their arguments to embody a variety of grammatical and thematic roles.
  • the essential features of a neo-Davidsonian account of logical form are (i) quantification over implicit event variables, (ii) thematic role analysis of the semantics of argument positions, and (iii) the treatment of verbs as one- place predicates of events.
  • the invention thus embodies a neo-Davidsonian analysis of sentences.
  • the analysis differs from discussions of neo-Davidsonian logical form in the literature only in how these analyses are encoded.
  • the invention maps parsed sentences into C++ data structures (called "objects") stored in computer memory.
  • the analysis could equally well map sentences into other computational data structures, such as assertions in Prolog or Java classes.
  • each C++ object mapped to a sentence represents an event; the type of event and the thematic roles identifying the participants in the event are given as member variables within that object.
  • Neo-Davidsonian logical form is described in more detail in the following references: Terence Parsons, Events in the Semantics of English : A Study in Subatomic Semantics, MIT Press (1990) ; Gabriel Segal and Richard Larson, Knowledge of Meaning: An Introduction to Semantic Theory, MIT Press (1995); James Higginbotham, "On Semantics,” Linguistic Inquiry 16:547-593 (1983). Further references on linking theory include: Edwin Williams, Thematic Structure in Syntax, MIT Press (1994) ; David Pesetsky, Zero Syntax: Experiencers and Cascades, MIT Press (1995) .
  • the invention relies on and develops recent theoretical work on the relationship of grammatical roles and thematic roles in the literature of the rubrics of neo- Davidsonian logical form and linking theory, as described in Brian Edward Ulicny, Issues in the Philosophical Foundations of Lexical Semantics , Chapter 3, Doctoral Dissertation, Department of Linguistics and Philosophy, Massachusetts Institute of Technology (accepted May, 1993) and Douglas A. Jones, Robert C. Benwick, Franklin Cho, Zeeshan R. Khan,
  • the Al Lab Memo describes a crude parser that implemented a function from sentences to a grammatical i ty judgment of good or bad. A sentence was deemed good (grammatical) if it had at least one acceptable parse and was bad otherwise. Thus, the Al Lab Memo parser did not attempt to find a unique parse for a sentence, and its resulting logical form analysis would effectively reflect several thematic assignments.
  • parser of the present invention represents a significant improvement over the Al Lab Memo parser's deficiencies in each of the above-mentioned semantical and operational respects.
  • Figure 3 the present invention's process of parsing a sentence summarized as step 250 in Figure 2 is explained in greater detail .
  • the sentence in the buffer is passed, one word at a time, to a part of speech tagger for morphological analysis. Morphological variants of words result, for example, from situations such as prefix/suffix addition, inflection for past tense, etc.
  • the part of speech tagger assigns a part of speech tag to each word of the sentence based upon the word's context and occurrence.
  • the part of speech tag is selected from a total of 48 predetermined choices, such as: noun, verb, preposition, adjective, etc.
  • the actual tag assigned depends at least in part on the last tag assigned, which reflects the selection properties of the preceding word. For example, if a word can be both a noun and a verb (e.g.
  • the tagger will return NOUN if the preceding word was a determiner (as in the book) or VERB if the preceding word was an auxiliary (as in might book the hotel room) .
  • Reference to the context of a word in tagging is especially crucial for English, which has an inordinate number of verbs that are homonymous with nouns and adjectives that are homonymous with verbs; morphology won't distinguish the part-of-speech in these cases.
  • Case Theory which is a subtheory of the school of syntactic analysis known as Government and Binding Theory, asserts that every phrase of a sentence must paired one-to-one with a case assigner.
  • Parts of speech that are case assigners include: TENSE (INFLECTION), VERBS and PREPOSITIONS.
  • a noun phrase is assigned the (default) feature N.
  • a prepositional phrase's head preposition is assigned as its phrase feature; the properties of this preposition will determine the role it plays in the sentence.
  • features are assigned to a phrase on the basis of linguistic rules. For example, in the sentence "John cooked the spaghetti by boiling it", the phrase "by boiling it” would be assigned the feature MANNER because it describes how the event described by the main verb was accomplished. Verbs are inserted into the sentence's phrasal constituents and assigned the feature V.
  • the invention contains a data structure that associates each verb with the set of "thematic grids" it can select as arguments.
  • a thematic grid is a vector of thematic roles. Since verbs may assume several forms, based on their inflection for tense and agreement, the index is based on a stemmed form of the verb.
  • the stemmed form of the verb is derived by means of an algorithm known to those skilled in the art as the Porter stemming algorithm, although other well- known stemming techniques would work equally well.
  • certain specialized conditions on thematic roles may be used by the linking algorithm for greater specificity.
  • One such specialized thematic role involving a slash i.e., A/B
  • This is useful for verbs that select particular prepositions in certain contexts, or for thematic roles which are usually headed by prepositions but sometimes appear as plain noun phrases, as with "N/goal" above.
  • the verb "spray” is associated with thematic grid ⁇ agent, N/location, with/theme>, among others.
  • a phrase headed with the preposition "with” must be the second argument to the right of the verb when it is linked. It will be assigned the thematic role Theme .
  • Another specialized thematic role "V/theta” (for some thematic role theta) is used to indicate the presence of verbs that incorporate nouns playing a thematic role.
  • Identification of candidate thematic grids involves the use of two indices.
  • the first index is a classification of all possible verbs by verb classes.
  • the second index is a listing of all possible thematic roles selected by each verb class of the first index.
  • Every verb in the verb class index is assigned to some class (or classes) based on the verb's meaning and the syntactic behavior of the verb's arguments.
  • class or classes
  • the verbs dig, jab, pierce, poke, prick, and stick . Their behavior contrasts with those of the Touch class, for instance, which does not allow through or into phrases as arguments. That is, the sentence "Carrie touched the stick through/into the cat" is ungrammatical. This would seem to indicate that proper usage of the Poke verbs necessarily involves some sort of directed motion, which can be expressed by a through or into phrase, whereas the Touch verbs do not .
  • the Touch verbs simply express a relationship between two objects, while the Poke verbs specify something about the relationship of the instrument used in the poking to the material substance of the thing poked.
  • the second index maps a verb class to the thematic grids associated with the various alternations in which the verbs in that verb class may participate. For example, four of the thematic grids that clear (and other verbs of its class) project are:
  • each verb in the sentence is looked up in the first index to yield one or more verb classes. Then, for each verb class, all its possible thematic grids are determined from the second index. In this way, all possible candidate thematic grids for a given verb are determined.
  • Passivized verbs do not deploy the thematic role of their subject (except, optionally, in a Jby-phrase) ; thus, a thematic role for the non-passivized verb's subject should be assigned only if there is a by-phrase (e.g., "Brutus was stabbed by Caesar. " ) .
  • the linker steps through the thematic grids one at a time and, at step 360, attempts to assign each verb and its arguments to a best thematic grid based on the verb's semantics. That is, the linker tries assigning thematic roles to phrases, starting with the leftmost verb in the sentence. If the thematic roles in the verb's thematic grid (e.g.
  • ⁇ Agent , Theme> are compatible with the features of the phrases immediately to the left of the verb and following the verb, then the phrases are assigned to those roles. For example, if a verb selects an Agent as its subject, or external argument, the linker will consider a phrase immediately to the left of the verb to be compatible if it is a noun phrase (has feature N) or has some other feature compatible with the Agent role.
  • Agent roles One particular situation involving Agent roles deserves special consideration. Referential dependencies between pronouns and overt noun phrases within a sentence or due to ellipses, both of which might result in a multiplicity of phrases assigned to certain thematic roles, are handled by allowing only one set of thematic roles to be assigned.
  • the second agent is appended to the previously assigned Agent phrase.
  • This allows the system to recognize some anaphoric relations that might otherwise be missed. For example, the sentence "If a man owns a donkey, he beats it," contains two Agents ("a man,” “he") and two Themes ("a donkey,” “it”) .
  • the system will be able to recognize the donkey sentence as an answer to the question "Does a man beat a donkey?"
  • the invention's treatment of multiple verbs can be thought of as an endorsement of the axiom that for every group of basic level events, there is an event (a super-event) that consists of the occurrence of all those events.
  • the agents of those constituent events are the agents of the super event; the themes of the constituent events are the themes of the super event, and so on.
  • step 365 if all of the phrases are assigned a thematic role and all of the thematic grid' s thematic roles have been assigned, we say that the linking has converged; otherwise it has crashed .
  • step 370 the first assignment of thematic roles that converges, if one occurs, is retained. Otherwise, at step 375, the assignment of thematic roles to phrases that comes closest to converging is retained. That is, the assignment that crashes the least badly is retained if none has converged. Phrases that don't get assigned a thematic role are assigned a special "adjunct" role. If convergence has not occurred, the process of steps 360-370 is repeated for the remaining candidate thematic grids, in an attempt to find a candidate grid that actually converges. Finally, at step 380, the best thematic grid is outputted for score evaluation (steps 255-260 of Figure 2) .
  • step 255 once the best parse has been found for a sentence, it is evaluated as to the degree to which it answers the submitted question. Answerhood is measured by a graded relation between a sentence and a question.
  • a sentence may either be a full answer, a partial answer, or a non-answer to a submitted question. Partial answers with scores greater than a predetermined minimum score for the question are returned as well as full answers .
  • step 210 of Figure 2 After a submitted question has been parsed (in an identical manner to that described for sentences) , it is assigned a minimum score that must be met or exceeded by a sentence, if that sentence is to be deemed an answer to the question. This score is given by the number of thematic roles assigned to the question. Thus, the questions “Who discovered Pluto?" and “Did Tombaugh discover Pluto?” would both be assigned a minimum score of 2 , because they both contain an Agent ( “Who” and “Tombaugh", respectively) and a Theme (“Pluto").
  • a sentence is evaluated with respect to the submitted question as follows. First, a comparator determines, for each thematic role in the sentence, whether the phrase assigned to that thematic role in the question (e.g., the question's Agent) literally (exactly) matches a substring of the phrase assigned to that thematic role in the sentence. For each such match, a scorer increases the score by one. A sentence having a score of zero is discarded.
  • the phrase assigned to that thematic role in the question e.g., the question's Agent
  • the comparator and scorer determine whether any of the question's thematic roles and if so, are occupied by wh- phrases (e.g., interrogatives such as "who,” “which,” “why,” “how,” “when,” “where,” and “what") in the sentence and, if so, increases the score by one per occupancy.
  • wh- phrases e.g., interrogatives such as "who,” “which,” “why,” “how,” “when,” “where,” and “what”
  • wh- phrases e.g., interrogatives such as "who,” "which,” “why,” “how,” “when,” “where,” and “what”
  • wh- phrases e.g., interrogatives such as "who,” "which,” “why,” “how,” “when,” “where,” and “what”
  • verb-based comparisons are made between questions and each sentence. Any such match, either between verbs or between verb classes, also increases the score by one per match.
  • the semantic distance between the sentences and the question's verb classes could be quantified as the numerical distance between them in the tree.
  • Such a numerical distance could be used an inverse measure of answerhood, with shorter distances causing larger score increases .
  • sentences that score higher than the minimum score associated with the question are presented to the user, or otherwise stored, as answers to the submitted question.
  • an HTML page with the answers, their scores, and a hypertext link to the page from which they were extracted is constructed and automatically updated for the user, who accesses it through a Web browser. Processing continues until all sentences (step 245) of all the documents returned by the search query (step 270) have been evaluated.
  • Figures 4A-4D show a representative response to a user question of the form "When was Pluto discovered?" in the form of an automatically generated HTML page.
  • processing of the documents is done on an as-needed basis.
  • the parses are not stored for future use. It would present no technical difficulty to store the data structures that result from the parsing in a database so that question-answering could directly access the stored parses, rather than parsing the sentences as needed.

Abstract

The invention relates to methods and apparatuses for receiving a user's query in natural language (e.g., English) form, searching an electronic database for sentences that may provide semantically meaningful answers to the query, identifying those sentences that are deemed to answer the question, and quantifying the degree to which the sentences answer the question.

Description

METHOD AND APPARATUS FOR NATURAL LANGUAGE QUERYING AND SEMANTIC SEARCHING OF AN INFORMATION DATABASE
FIELD OF THE INVENTION
This invention relates generally to the computerized searching of information databases and, more specifically, to searching the World Wide Web for answers to a natural language question.
BACKGROUND OF THE INVENTION
More and more information of the world's information is currently available on-line in the form of raw or loosely- formatted text. The operations and activities of the world's organizations and institutions, large and small, formal and informal, are increasingly stored in on-line repositories of memoranda, letters, text transcriptions, reports, catechisms of "Frequently Asked Questions" (FAQs) , electronic mail, announcements, on-line newsgroup and bulletin board postings, World Wide Web homepages, catalogs, and brochures, and so on. Further, with the advent of Internet protocols for electronic exchanges of information, more and more of these documents are accessible to others throughout the world, at any time, and from any location. The scale of this information collection presents a problem to those who would access it . There is no master catalogue of this material. Further, while attempts have been made to promulgate standards for content identification, these have not been widely adopted. With little indication of where
tlBSTITIITE SKST (RULE 26) information is contained in this multitude of electronic documents, how is the user to find the information that is desired?
The field of information retrieval has been addressing itself to this problem since the middle of this century. A number of standard approaches have been developed and refined in the last quarter-century. The most popular of these are keyword-based methods .
The simplest keyword-based method is keyword indexing. The method begins by representing a document as a collection of words or strings of symbols rather than as an ordered sequence of meaningful propositions. Sophisticated techniques are then employed to match a query for information, represented as a set of strings of letters, to documents, again represented as sets of strings of letters.
In a popular variation of keyword indexing, words in a document collection are indexed to the documents that contain them. In order to access useful documents, users present a system with some collection of keywords and are returned references or pointers to documents that contain those keywords. More sophisticated variants of this technique allow users to specify further constraints on relevant documents beyond containing at least one of the keywords listed. For example, the user may specify keywords that must not appear in returned documents, the proximity of keywords within a document, the presence of multi-keyword phrases, and other Boolean conditions on the words that are contained in a relevant document. Such Boolean keyword searching techniques allow the user to make sophisticated constraints on documents that are to be considered relevant to the query. These techniques increase the precision of the returned document set by allowing the user to request a more-focused set of documents from the information retrieval system.
A different class of keyword-based techniques automatically expands the user's query for documents to include equivalent variants of the user's query in order to increase the number of documents returned. This results in an increase in the information retrieval system's recall . Examples of these techniques include "stemming" query terms to a root form so that all of the morphological variants of a keyword are matched in a document. For example, stemming "computation" and "computer" to the same root will return documents containing either term when queried with one of them. Another technique involves adding synonyms of query terms to the query so that, for example, a query on "3M" automatically returns documents that contain the string
"Minnesota Mining and Manufacturing," pre-determined to be equivalent to "3M," as well.
The drawbacks of keyword-based techniques are well- known. There is a considerable computational and storage overhead associated with setting up the index of keywords for a collection of documents. These indices must change as the collection changes in order to be maximally accurate. Additionally, although precision-enhancing techniques allow the user to put sophisticated Boolean constraints on the documents returned, they burden the user with formulating a request in a special, unintuitive formalism in order to achieve that precision. Field experience has shown that users are intimidated by Boolean logic and reluctant to learn the formalism well enough to be able to make sufficiently precise queries. Recall-enhancing techniques, on the other hand, aim at increasing the number of documents returned per query. While this increases the chance that all of the relevant documents will be returned, it dramatically increases the amount of time the user must spend on an information retrieval task, if the user is to survey every returned document for the required information. For many tasks, the amount of information returned will be too large for the user to survey completely, and the user will be likely to guess at which of the returned documents should receive attention.
More importantly, there is an inherent limitation in keyword-based techniques because they represent documents only as collections of words rather than as meaningful expressions arranged into text for some communicative purpose. A sentence is more than a set of words; the structure of the sentence does most of the work in determining the meaning of the sentence. Both of the previous classes of techniques fundamentally represent documents as collections of alphanumeric characters, i.e. combinations of letters, and use a combination of the user's input and the system's design to return relevant documents on the basis of the words they contain. Unless precise information about word order is specified, they will, therefore, fail to distinguish between "the man bit the dog" and "the man was bitten by the dog."
An alternative class of information retrieval techniques, called content markup, addresses this issue by representing the meaning of a document rather than merely the words it contains. These techniques involve marking up stored text (or even non-textual data) with a representation of the meaning or content of the document in some formalism or other. As a simple example, an implementation of such techniques would be to provide a set of photographs with a set of keywords representing what the photographs depict. This would have to be done manually. With a collection of text documents, an implementation of these techniques might involve marking up documents pertaining to financial transactions, say, with some representation of who is buying, who is selling, what is sold, and for how much. Documents could then be retrieved on the basis of their marked up annotations alone (e.g., "What did Company X buy?") or by means of their annotations as well as by keyword indexing .
The content markup approach has the advantage of pointing the user towards documents, or sections of documents, on the basis of the semantic or prepositional content of the document or its sections, rather than on the basis of the words that the document contains. This is certainly an improvement over the keyword approach. Consider the task of finding needed information in a library. One normally doesn't approach this task primarily by means of an index of all the words in the all the books in the library. One uses a representation of the content of the books (a card catalog entry) to find the relevant books. Only once the relevant books are found does one use a keyword index (the index of a particular book) to find the relevant passages. On-line information retrieval, on the other hand, relies on a word- level representation of libraries of text to locate the information users want. There is no equivalent of a card catalog or book abstract available for on-line documents.
Content markup approaches can index a collection of information on the basis of the propositions that the text expresses or that characterize the text rather than the words that the text contains. In the example above, specific sorts of "metadata" (data about data) were attached to a collection of financial transaction documents, indicating who bought what from whom and for how much. This would provide a useful way to find all and only the documents that talk about acquisitions by Company X but not acquisitions of Company X. This distinction would be very difficult to represent within a keyword approach.
The obvious difficulty with the content markup approach, however, is the markup process itself. It is difficult to automate this process, because marking up the documents requires an understanding of a document or text. While it is easy to program a computer to index the words of a text; it has previously not been possible to program a computer to create a representation of the meaning of a text . Thus, content markup approaches have relied on manually created markup annotations of documents in a collection. This is a time-consuming, labor-intensive process that, again, must be constantly updated to keep in step with changes in the document collection.
Furthermore, content markups that seek to characterize the semantic content of an entire document or document section necessarily represent only some of the semantic content of that text. In our financial transactions example, any semantic content that is not represented in the metadata is not accessible to the information retrieval process. The unrepresented content will usually be most of the data; ultimately, the only complete representation of the semantic content of the document is the document itself.
Yet another class of applications, semantic querying, accepts a question submitted to the information retrieval system in a natural language format . A semantic analysis of the question is then used to translate the question into a specialized language or otherwise reformat it to aid in information retrieval. Some applications of this type may translate queries submitted in English into Boolean logic, or into specialized database query languages such as SQL. Others parse the question into a semantic representation that can be matched against marked up content. Others analyze the question and produce a set of synonymous or near- synonymous queries, hoping to increase the recall of the system.
This class of applications represents a new level of sophistication in that they attempt to automatically understand the request for the information. The goal of these systems is to make it easier for users to ask for information or to retrieve more information. They fall short of understanding the information they scan and return, however. These methods still treat the raw text information they process as sets of words, rather than meaningful texts. Thus, the semantic querying applications should properly be thought of as pre-processors to existing keyword-based or content markup techniques discussed previously. The foregoing shows that there exists a need for an information retrieval technology that can generate semantic representations of both the question and target text on the fly and use these representations to allow the user to retrieve needed information. The Answer Me! system (the "invention") provides this new level of sophistication in information retrieval, constructing a semantic representation of retrieved text rather than just the question, in real time, to facilitate the retrieval of answers to questions posed in a natural language .
SUMMARY OF THE INVENTION The invention is a software application designed to find answers to user-submitted queries posed in English from on-line documents. The invention consists of three major components (application programs) that will be described in detail below: a user interface, a parser, and a sentence evaluator that determines the extent to which a given sentence answers a submitted question.
The user begins the process of retrieving information by submitting a natural language questions (e.g., English) to the user interface. For example, the user might ask, "When was Pluto discovered?" The submitted questions should be a direct request for the information, rather than a request to find the information. That is, users tend to anthropomorphize systems, but they should not make an indirect request for the information, asking, for example, "Can you find me the date of Pluto's discovery?" The question is then parsed into a form that will be useful for comparison with the returned answers. In addition, a minimum score that returned answers must meet or exceed is determined.
Next, the user interface accesses a database to identify a set of relevant documents to process for answers. This candidate set of documents might consist of the entire collection of a user's email messages, for example. In other cases (e.g., for WWW documents), it will be more efficient to process only a subset of a document collection. In such cases, the submitted question can be mapped to a keyword index query in order to narrow the range of candidate documents that may contain an answer to the submitted question. Having identified a set of candidate documents, the invention processes each document, sentence by sentence, looking for answers to the submitted question. For each sentence, a judgment is made whether or not to parse the sentence into its thematic representation. This decision is based on the presence or absence of keywords from the query in the sentence. Sentences with no keywords from the query are discarded, and those with keywords are kept for further processing.
Once a decision has been made to keep a sentence, a parse (a semantic as well as a syntactic representation) of the sentence is created. Each sentence is taken to represent an event or state, with each phrase within the sentence representing some role in that event or state. Thus, one phrase may represent the agents of an event, another the theme of the event (that which is acted upon) , another the instrument, and so on. The result is a structure consisting of an event of a specified type, plus a series of relationships specifying exactly how the participants in the event participate in the event. For example, "Brutus stabbed Caesar" would be represented as expressing the existence of a stabbing event, with Brutus as the agent of the event, and Caesar as the "theme" (undergoer) of the event.
Thus, Answer Me! relies on detailed knowledge of the syntax and semantics of verbs (events) in contrast to other Artificial Intelligence systems that have been based on a detailed representation of the relationships of nouns
(objects) -- indicating, for example, that a foot is a part of a leg, and so on. The class of English verbs is much smaller than the class of nouns, and they have a smaller range of meanings. Therefore, a detailed representation of the nature of objects requires much more storage space and is much more complex than a detailed representation of the nature of events .
Finally, the similarity of the semantic representation of the candidate sentence to the similarly parsed question is evaluated. To what extent do they represent similar events? If there is a close enough match, the sentence is returned as an answer to the submitted question. The above steps are repeated for all sentences in the document, and all documents in the set of candidate documents. A metric reflecting the scoring of each document is presented to the user and can be used to order the answers . The metric is derived with the aid of a data structure that represents the relationship of various events on the basis of the verbs that express them. The data structure divides thousands of English verbs into various semantic classes and subclasses, representing relationships of synonymy and near synonymy between verbs. A metric of the closeness of meaning between any two verbs can be determined on the basis of their relative relationship within the data structure. A hypertext link to the documents from which the answers came can also be provided.
The major advantages of this approach over the keyword- indexing, content markup, and query analysis approaches are obvious. First of all, since the invention is attuned to what a sentence says, rather than merely the keywords it contains, it can retrieve information much more precisely. Secondly, since the semantic analysis of the text occurs in real time and on the fly, no time- , memory- and labor- consuming markup is required. Thirdly, the semantic content of each sentence is represented as opposed to a compressed semantic characterization of an entire document or document section. Fourth, the invention contains knowledge about the similarity of word meanings. The invention contains a knowledge base of event types, and so, can recognize that a hunting event, for example, is semantically close to a seeking event, while recognizing the distinct syntactic characteristics of the verbs "hunt" and "seek." Lastly, and most importantly, by rapidly processing all of the sentences of a document semantically -- not just the submitted question -- the invention radically speeds up the process of finding answers to specific questions with a high degree of both precision and recall.
BRIEF DESCRIPTION OF THE DRAWINGS
Figure 1 is a high level block diagram of a computer adapted to perform the method of the invention.
Figures 2A - 2B show a flow diagram of the major functions that combine to enable the method of the invention. Figures 3A - 3C show a flow diagram indicating the functioning of the parser that lies at the heart of the invention .
Figures 4A - 4D show a representative response, to a user question, in the form of an automatically generated HTML page.
DETAILED DESCRIPTION
Answer Me! locates text relevant to a user-specified question posed in a natural language format; analyzes that text for sentences that may provide answers to the question; identifies those sentences that are deemed to answer the question; and evaluates the degree to which those sentences actually constitute answers to the question.
1. System Implementation
Figure 1 shows a block diagram of a computer system adapted to perform the method of the invention. Via a bus 105, the central processing unit ("CPU") 110 is connected to a random access memory 115, a user interface terminal 120, and a local storage 125. During operation, application programs (conceptually, a user interface, parser and evalua tor - - described more fully below) are downloaded from local storage 125 to RAM 115 for execution by CPU 110. Local storage 125 may be a magnetic, optical, magneto-optical, electronic, or any other device capable of storing the necessary application programs. As a matter of convenience, the term "electronically accessible" shall be understood to encompass all such storage devices. The local storage 125 also stores the documents which are to be searched for the answer to the user's question. Of course, in a networked environment, documents could actually originate from a remote site, and the search resources used may be remote search resources as well. In that case, local storage 125 need not be a traditional mass storage device, but need only be a memory device of sufficient capacity to receive and buffer the desired information.
Hence, either the local storage 125 or the remote site could serve as a document depository. In the preferred embodiment, the documents to be searched reside on the World Wide Web ("WWW") and may be accessed via an Internet browser (e.g., Netscape) ; currently, a stand-alone user interface allows the user to input questions and view the progress of the processing, but user interaction may be accomplished in a variety of ways. Of course, distributed computing technologies (e.g. Sun's Java applets, Next's Web objects or EOlas' Weblets) also allow the remote location and/or execution of the application programs themselves. Thus, the great operational flexibility afforded by a networked computing enrollment allows the system to be deployed for client, server, or hybrid operation depending on the local or remote provisioning of the application programs and/or documents.
In an embodiment suitable for standard PC based environments, Answer Me! is implemented as follows:
• Hardware: 486 or higher-speed Intel processor. • Operating system: Windows 95 or Windows NT Workstation or Server v.3.5.1.
• Memory: A minimum of 8 megabytes of RAM (16 megabytes recommended) and a minimum of 5 megabytes of free disk space . • Network connection: TCP/IP Internet dialup or permanent network connection using a 32-bit TCP/IP Winsock layer.
• Web browser: Netscape Navigator or Microsoft Internet Explorer.
• Search resources: Digital Equipment Corporation's Alta Vista search engine and InfoSeek' s FAQ search service.
In this embodiment, Answer Me! was written in Visual C++ and compiled using Microsoft's Visual C++ Developer Studio v. 4.2. The above-mentioned application programs are implemented in a binary executable file (answerer.exe, -1.5 Mb) and five associated data files. These include a part of speech data file (lexicon.dat, -250 KB), a verb classes index (evca93.txt, -75KB) , a thematic grid index (theta.txt, -15 KB) , and two initialization files (ansrme.ini, 1 KB, and wlres.ini, 2 KB).
2. Querying and Candidate Answer Retrieval
Referring now to Figure 2, the method of the invention will now be described with respect to the above example of a WWW searcher. However, those skilled in the art will appreciate that the invention is usable for electronic document searching generally. At step 205, the user inputs the question and, at step 210, the question is parsed into a form useful for comparison with the returned answers. This form, which is known to those skilled in the art as neo- Davidsonian logical form, is also used during parsing of the returned answers, and will be described in detail in the following section entitled "Sentence Parsing." At step 215, a minimum score requirement is calculated for the question, which any answer returned to the user must exceed. A detailed discussion of the minimum score calculation is deferred until the section entitled "Evaluation" where all of the invention's scoring functions are discussed in a unified manner. At step 220, an appropriate search-engine query (e.g., the traditional keyboard-based, content markup or query analysis technique described in the BACKGROUND OF THE INVENTION) is constructed on the basis of the question. At step 225, the search engine query is submitted to the search engine or engines (e.g., WWW sites such as Alta Vista or InfoSeek) with which the invention has been enabled to communicate. These search engines return a set of pointers, to text documents, consisting of the documents' Uniform Resource Locations ("URLs"), i.e., their addresses on the WWW. In this way, a candidate set of documents that may provide answers to the question is obtained. The invention will then use these addresses to retrieve each document, one by one, and process them to extract answers. In simpler contexts, e.g., where the searched database is highly specialized or relatively small, it may not be necessary to identify a subset of candidate documents and steps 220-225 can be omitted. At step 230, the process begins by looping through the list of returned search results. At step 235, each search result (a document at its returned URL) is downloaded to local storage 125 for linguistic processing. At step 240, the document is tokenized to yield a collection of sentences. During tokenizing, a document in a computer-readable format (e.g., a web page in HTML) is preprocessed for subsequent semantical analysis
(parsing) by stripping out formatting tags (e.g., HTML tags) and other non-textual characters, while stepping through the document one character at a time until a sentence boundary is found. The tokenizer includes a routine for detecting abbreviations so that sentences are not ended prematurely.
3 • Sentence Parsing
At step 245, now within a particular document, the process beings looping through each of the sentences . At step 250, each sentence is parsed as will be described in more detail with respect to Figures 3A-3D (collectively referred to as "Figure 3") below. The parsing of each sentence of Answer Me! comprises the following three steps:
Part of Speech Tagging b) Phrase Identification c) Linking of Phrases to Thematic Roles
Steps (a) and (b) may be thought of as grammatical (or syntactical) steps, while step (c) may be thought of as a semantic operation. Together, the three steps constitute what shall be referred to herein as semantic analysis, the term "semantic" as a matter of convenience being used throughout this document to include both semantic and syntactic operations .
The outcome of the parser is a mapping of each sentence (whatever its mood -- indicative, interrogative, or imperative) into a representation of its logical or semantic form. The semantic formalism used is a member of the family known to those skilled in the art as neo -Davidsonian logical form.
In his 1967 paper, "The Logical Form of Action Sentences" (reprinted in D. Davidson, Essays on Actions and Events, Oxford: Clarendon Press, 1980) , Donald Davidson theorized that the logical form of at least some natural language sentences involves first-order quantification over a covert event position. Davidson offered this hypothesis primarily in order to explain "adverb-dropping inferences" in a natural way and, more importantly, using a finite logical vocabulary. Thus, in order to explain how it is that "John buttered the toast at midnight" entails "John buttered the toast" , Davidson proposed that the logical form of the first sentence is actually that of a conjunction of predicates with an event argument bound by existential quantification over an event (here, "buttering"). In first-order logical notation, the truth conditions of the sentence "John buttered the toast at midnight" would thus be (ignoring tense) :
Ee (buttering (e, John, toast) & at (e, midnight ) ) (1)
where "Ee" represents an existential quantifier binding an event variable e. Informally, this notation states that there is an event e, that the event is an argument of the predicate Jbutter along with "John" and "the toast," and that the event was at midnight. Thus, the fact that (1) entails "John buttered the toast" can be explained straightforwardly as an instance of conjunction elimination: from "A and B" infer "A" (for sentences A and B) . Davidson's theory eliminated the need for an infinitely large vocabulary of n-place predicates, one for each possible set of adjuncts modifying a verb, and a set of inference rules relating them. Thus, in the above example, an indefinitely large set of predicates -- butter (for John buttered the toast) , butter-at (for John buttered the toast at midnight) , Jbutter-in (for John buttered the toast in the bathroom) , butter-at-in (for John buttered the toast at midnight in the bathroom) and so on -- is eliminated in favor of the single predicate Jbutter.
Davidson's theory implicitly distinguished a verb's arguments , or the minimal set of expressions a verb requires in order to form a grammatical sentence, from what linguistic theory terms its adjuncts, or those expressions that may be added to the arguments of a sentence to express the time or place at which an event took place. In the example above, "John" and "the toast" are arguments of the verb "to butter" since the verb requires both a subject and a direct object noun phrase in order to form a grammatical sentence; the phrases "at midnight" and "in the bathroom" are considered adjuncts of the verb "to butter" since prepositional phrases of these types are not necessary to form a grammatical sentence with "to butter" as the main verb.
Neo-Davidsonian analyses of the logical form of sentences go one step further than Davidsonian analyses in treating arguments and adjuncts equally as conjuncts existentially bound to the same event variable. Arguments are analyzed as bearing a particular thematic (or ^theta") role within an event. Alternatively, the argument is sometimes said to bear a thematic rela tion to an event. Thus, the sentence "John buttered the toast" would be assigned the logical form:
Ee (buttering (e) & Agent (e, John) & Theme (e, the toast)) (2)
Informally, (2) states that there is an event e, that the event is a buttering, that the agent of the event is John, and that the theme of the event is the toast. Here agent and theme denote thematic roles . Thematic roles are gross distinctions among the ways in which things participate in events and states. The agent of an event is the participant who intentionally brings about the event. Necessary and sufficient conditions for being the theme of an event are the subject of considerable controversy in the literature, but, generally, the participant that undergoes the event, or that the event happens to, is the theme. A list of the thematic roles used within the analysis of the invention along with illustrative examples are given below: External Argument (extarg) : John is sad; John appointed Mary president
Predicate (pred) : John is a barber; John appointed Mary president
Agent (ag) : John gave the book to Mary
Source (source) : John took the book from Mary
Goal (goal) : John gave the book to Mary
Theme (th) : John gave the book to Mary Benefactive (ben) : John threw a party for Mary; John threw Mary a party
Instrument (ins) : John cut the cake with a knife; the knife cut the cake easily
Location (loc) : John put the book on the table; John ate breakfast before work
Path (path) : The planet circles around the sun
Manner (manner) : The bread cuts easily; John cooked the spaghetti by boiling it
Purpose/Reason (purp) : John skipped school to see the game .
Measure (measure) : It snowed a foot, John weighed
200 pounds
Result (result) : John hammered the metal flat
Possessor (poss) : John has the flu Possessed (posd) : John has the flu
Duration (dur) : John drank beer for an hour
Conative (con) : John poked at the log
Thematic roles are to be distinguished from grammatical roles such as subject and direct object, which refer to a phrase's position, rather than the way in which its referent participates in an event. Grammatical roles distinguish the syntactic position of a phrase in a sentence in relation to the sentence's verb or some other phrase- heading element. Two phrases may have different grammatical roles, but bear the same thematic relation as in the sentences :
John gave Mary a book (3) John gave a book to Mary
(4)
In sentence (3), "Mary" is the direct object, however, and in sentence (4) "a book" is the direct object. In both cases, however, John is the agent of the giving event, Mary is the goal (the thing to which the giving is directed) , and the book is the theme, the thing that undergoes the giving. In logical notation:
Ee (giving (e) &Agent (e, John) &Theme (e, the book) &Goal (e, Mary)) (5)
Thus, on the neo-Davidsonian account, sentence (3) logically entails sentence (4) , and vice versa. Unlike the neo-Davidsonian analysis, Davidsonian analyses cannot account for these entail ents directly: in order to explain an inference from (3) to (4) or from (4) to (3) , additional inference rules would be necessary in a Davidsonian theory. This is a clear advantage for neo-Davidsonian accounts since most verbs are like "give" in that they allow their arguments to embody a variety of grammatical and thematic roles. The essential features of a neo-Davidsonian account of logical form are (i) quantification over implicit event variables, (ii) thematic role analysis of the semantics of argument positions, and (iii) the treatment of verbs as one- place predicates of events. The invention thus embodies a neo-Davidsonian analysis of sentences. The analysis differs from discussions of neo-Davidsonian logical form in the literature only in how these analyses are encoded. Rather than embody the logical forms as formulas of first-order logic, the invention maps parsed sentences into C++ data structures (called "objects") stored in computer memory. The analysis could equally well map sentences into other computational data structures, such as assertions in Prolog or Java classes. In the preferred embodiment, each C++ object mapped to a sentence represents an event; the type of event and the thematic roles identifying the participants in the event are given as member variables within that object.
Neo-Davidsonian logical form is described in more detail in the following references: Terence Parsons, Events in the Semantics of English : A Study in Subatomic Semantics, MIT Press (1990) ; Gabriel Segal and Richard Larson, Knowledge of Meaning: An Introduction to Semantic Theory, MIT Press (1995); James Higginbotham, "On Semantics," Linguistic Inquiry 16:547-593 (1983). Further references on linking theory include: Edwin Williams, Thematic Structure in Syntax, MIT Press (1994) ; David Pesetsky, Zero Syntax: Experiencers and Cascades, MIT Press (1995) . The nature and status of thematic roles in contemporary semantic theory is described more fully in the following references: William Frawley, Linguistic Semantics , Lawrence Erlbaum Associates (1992), Chapter 5; David Dowty, "On the Semantic Content of the Notion of 'Thematic Role'," in G. Chierchia, B. Partee and R. Turner, eds . , Properties , Types and Meaning, vol. 2, Semantic Issues (pp. 69-129) Kluwer (1989) ; "Thematic Proto-Roles and Argument Selection," Language 67:547-619 (1991); Terence Parsons, "Thematic Relations and Arguments," Linguistic Inquiry 26:635- 662 (1995) .
The invention relies on and develops recent theoretical work on the relationship of grammatical roles and thematic roles in the literature of the rubrics of neo- Davidsonian logical form and linking theory, as described in Brian Edward Ulicny, Issues in the Philosophical Foundations of Lexical Semantics , Chapter 3, Doctoral Dissertation, Department of Linguistics and Philosophy, Massachusetts Institute of Technology (accepted May, 1993) and Douglas A. Jones, Robert C. Benwick, Franklin Cho, Zeeshan R. Khan,
Naoyuki Nomura, Anand Radharkrishnan, Ulrich Sauerland and Brian Ulicny, Verb Classes and Al terna tions in Bangla, German, English and Korean, Memo 1517, Artificial Intelligence Laboratory, Massachusetts Institute of Technology (dated August, 1994; available for distribution as an Al Lab Memo in Spring, 1996) . The Al Lab Memo describes a crude parser that implemented a function from sentences to a grammatical i ty judgment of good or bad. A sentence was deemed good (grammatical) if it had at least one acceptable parse and was bad otherwise. Thus, the Al Lab Memo parser did not attempt to find a unique parse for a sentence, and its resulting logical form analysis would effectively reflect several thematic assignments. In addition, it had a very limited vocabulary and did no morphological analysis. Its coverage was extremely limited, being basically designed to analyze the example sentences of Beth Levin's book, English Verb Classes and Al ternations . Thus, only past tense verb forms were handled and no attempt was made to handle intra-sentence punctuation, questions, imperatives, relative clauses, passive verbs, pronoun resolution, or phrase movement of any sort. Finally, the Al Lab Memo parser operated on single sentences rather than entire documents, and did not attempt to evaluate sentences as answers to submitted questions.
In contrast, the parser of the present invention represents a significant improvement over the Al Lab Memo parser's deficiencies in each of the above-mentioned semantical and operational respects. Referring now to Figure 3, the present invention's process of parsing a sentence summarized as step 250 in Figure 2 is explained in greater detail .
a) Part of Speech Tagging
At steps 305 and 310, the sentence in the buffer is passed, one word at a time, to a part of speech tagger for morphological analysis. Morphological variants of words result, for example, from situations such as prefix/suffix addition, inflection for past tense, etc. At step 315, the part of speech tagger assigns a part of speech tag to each word of the sentence based upon the word's context and occurrence. The part of speech tag is selected from a total of 48 predetermined choices, such as: noun, verb, preposition, adjective, etc. The actual tag assigned depends at least in part on the last tag assigned, which reflects the selection properties of the preceding word. For example, if a word can be both a noun and a verb (e.g. book) , the tagger will return NOUN if the preceding word was a determiner (as in the book) or VERB if the preceding word was an auxiliary (as in might book the hotel room) . Reference to the context of a word in tagging is especially crucial for English, which has an inordinate number of verbs that are homonymous with nouns and adjectives that are homonymous with verbs; morphology won't distinguish the part-of-speech in these cases.
b) Phrase Identification
At step 320, the sentence is analyzed in accordance with the syntactic theory known to those skilled in the art as Case Theory. Case Theory, which is a subtheory of the school of syntactic analysis known as Government and Binding Theory, asserts that every phrase of a sentence must paired one-to-one with a case assigner. Parts of speech that are case assigners include: TENSE (INFLECTION), VERBS and PREPOSITIONS. Thus, the sentence
John hit the ball Mary (6)
is ungrammatical , in part, because the phrase "Mary" has nothing to assign it Case. (Case need not be overtly marked in the morphology of a word.) In the context of the invention, case markers are used to identify phrase boundaries and to parse sentences into their constituent phrases. These and other aspects of Case Theory are described more fully in Liliane Haegeman, Introduction to Government and Binding Theory, 2nd Edi tion, Basil Blackwell (1994) , which is incorporated herein by reference. Thus, at step 325, the sentence is divided into its constituent phrases by successively adding its words to a phrase buffer until, at step 330, the presence of a new case assigner is encountered (if overt) or can be inferred (if covert) . For example, the sentence "Brutus stabbed Caesar in the forum" will be divided into the phrases: <BrutusxstabbedxCaesarxin the forum> on the basis of encountering the case assigners Past (TENSE) , "stab" (VERB) , and "in" (PREPOSITION) .
At step 330, when an entire phrase has been detected, that phrase is assigned a feature that characterizes the phrase as a whole or that the phrase may be said to project. A noun phrase is assigned the (default) feature N. A prepositional phrase's head preposition is assigned as its phrase feature; the properties of this preposition will determine the role it plays in the sentence. In other cases, features are assigned to a phrase on the basis of linguistic rules. For example, in the sentence "John cooked the spaghetti by boiling it", the phrase "by boiling it" would be assigned the feature MANNER because it describes how the event described by the main verb was accomplished. Verbs are inserted into the sentence's phrasal constituents and assigned the feature V. Only the head verb is included; auxiliaries, negations and other elements that modify the head verb are not included. Furthermore, a verb's TENSE and ASPECT are not considered for the purposes of information retrieval here. By way of example, the sentence "Brutus killed Caesar in the forum by stabbing him" would be mapped to the phrasal representation <N, BrutusxV, killxN, CaesarxIN, in the forumxMANNER, by stabbing him> .
There are cases in which certain adjustments are made by the invention - for example, in the case of interrogative or passive sentences -- to counter the effects of what those skilled in the art of Government and Binding Theory consider the movement of phrases from their default position. This is done in preparation for the thematic linking step, so that all arguments of a verb will appear in a canonical position with respect to the verb of which they are an argument. The surface word order of questions is understood in Government-Binding syntax to result from the movement of underlying phrases from their position in what is called D-structure through the movement of various phrases and elements to the front of the sentence. ' Thus,
Who did Brutus stab? (7)
is understood to result from the movement of "who" and the past tense morpheme from their (default) position as the tense node and direct object in the sentence, as in "Brutus stab+PAST (stabbed) who". The invention thus analyzes the question (7) as the sequence of phrases: <N, BrutusxV, stabxN, who> rather than
<N, whoχN,BrutusχV, stab> by reversing the process of question- formation in English. The auxiliary "did" shows up in the question (7) as the realization of the past tense marker formerly visible in the morphology of the verb form "stabbed" . Because "did" does not function as a verb in (7) (unlike in "Brutus did a dance"), it is ignored. Similar movement and reanalaysis by the invention also occurs in relative clause constructions and raising verb constructions (transforming, e.g., "It is easy to please John" to "John is easy to please") . Other forms of adjustments may also be performed at this stage, if necessary. For example, Answer Me! replaces pronouns with their antecedents when such replacements are unambiguous. Thus, the sentence "John shaved himself" is mapped to the set of phrases: <N, John> <V, shave> <N, John> . Similarly, "John met the man who rescued his dog" is mapped to: <N, John> <V, met> <N, the man> <N, the man> <V, rescue> <N, his dog> . While "his dog" cannot mean the rescuer's dog, it can mean someone other than John's dog; thus, no attempt is made to link the potentially ambiguous "his" with its antecedent .
c) Linking of Phrases to Thematic Roles
At this point, the sentence has been grammatically segmented into a collection of phrases. These phrases fall into one of the following categories: verbs, arguments of those verbs, or adjunct phrases -- optional phrases indicating, for example, the location or time of an event. The last step in parsing is to link each verb with its associated arguments using the technique of thematic analysis . Thematic roles are also assigned to adjunct phrases when this is possible .
The invention contains a data structure that associates each verb with the set of "thematic grids" it can select as arguments. A thematic grid is a vector of thematic roles. Since verbs may assume several forms, based on their inflection for tense and agreement, the index is based on a stemmed form of the verb. The stemmed form of the verb is derived by means of an algorithm known to those skilled in the art as the Porter stemming algorithm, although other well- known stemming techniques would work equally well. The Porter stemming algorithm is described more fully in Edward Frakes and Ricardo Baeza-Yates, Information Retrieval : Data Structures and Algori thms, Chapter 8, "Stemming Algorithms," Englewood Cliffs: Prentice-Hall (1992), which is incorporated herein by reference. Thus, the verb forms "give", "gives", "given" and so on, are mapped to the stem "giv" by the Porter stemming algorithm. This stemmed form is mapped to a set of thematic grids, containing <agent, theme, goal> corresponding to "John gave a book to Mary", <agent, N/goal, theme> corresponding to "John gave Mary a book" and so on.
In addition to those mentioned above, certain specialized conditions on thematic roles may be used by the linking algorithm for greater specificity. One such specialized thematic role involving a slash (i.e., A/B) requires two conditions on a phrase: the phrase must be headed by the feature compatible with the element to left of the slash (A) , and the phrase must play the role to the right of the slash (B) . This is useful for verbs that select particular prepositions in certain contexts, or for thematic roles which are usually headed by prepositions but sometimes appear as plain noun phrases, as with "N/goal" above. For example, in the sentence "John sprayed the wall with paint." the verb "spray" is associated with thematic grid <agent, N/location, with/theme>, among others. To discharge the thematic role "with/theme" , a phrase headed with the preposition "with" must be the second argument to the right of the verb when it is linked. It will be assigned the thematic role Theme . Another specialized thematic role "V/theta" (for some thematic role theta) is used to indicate the presence of verbs that incorporate nouns playing a thematic role. This analysis derives from theoretical work by Mark Baker; see his monograph Incorporation : A Theory of Grammatical Function Changing, University of Chicago Press, 1988, for further details on the conditions under which verbs are thought to incorporate arguments. As a simple example, in the sentence "It snowed," the analysis of the invention takes the verb "snow" to have incorporated the noun "snow" , which is assigned the Theme role of the event . Referring specifically to Figure 3, the actual linking of a verb to its corresponding thematic roles is summarized as a single step 335. However, this is really a two-part step: (i) identification of all possible (candidate) thematic grids for the verb, and (ii) selection of a particular (best) thematic grid for the verb from the list of possible candidates.
(i) Determination of Candidate Thematic Grids
Identification of candidate thematic grids involves the use of two indices. The first index is a classification of all possible verbs by verb classes. The second index is a listing of all possible thematic roles selected by each verb class of the first index. These two indices are described in greater detail in the paragraphs below.
Every verb in the verb class index is assigned to some class (or classes) based on the verb's meaning and the syntactic behavior of the verb's arguments. For details of the classification scheme, see Beth Levin, English Verb Classes and Al ternations : A Preliminary Investigation,
University of Chicago Press (1993) , which is incorporated herein by reference. The set of syntactic frames within which a verb can express its arguments is known to those skilled in the art as its set of al ternations . For example, verbs of the Poke class participate in the following alternations (* denotes ungrammatical sentences, put here for illustration) :
"Allison poked the needle through/into the cloth." "Allison poked the needle against the cloth." "Allison poked the cloth with a needle." "The needle poked the cloth."
"Allison poked the cloth."
* "The cloth poked."
"Allison poked Daisy in the ribs."
* "The cloth pokes easily." "Allison poked Daisy's ribs."
* "Allison poked the ribs (meaning Daisy's ribs) ."
Members of this class include the verbs dig, jab, pierce, poke, prick, and stick . Their behavior contrasts with those of the Touch class, for instance, which does not allow through or into phrases as arguments. That is, the sentence "Carrie touched the stick through/into the cat" is ungrammatical. This would seem to indicate that proper usage of the Poke verbs necessarily involves some sort of directed motion, which can be expressed by a through or into phrase, whereas the Touch verbs do not . The Touch verbs simply express a relationship between two objects, while the Poke verbs specify something about the relationship of the instrument used in the poking to the material substance of the thing poked. The second index maps a verb class to the thematic grids associated with the various alternations in which the verbs in that verb class may participate. For example, four of the thematic grids that clear (and other verbs of its class) project are:
<Agent , Theme, Location> as in "John cleared the dishes from the table."
<Agent, Location, of/Theme> as in "John cleared the table of dishes."
<Theme> as in "The screen cleared."
<Agent , Theme> as in "John cleared the screen."
In the method of the invention, each verb in the sentence is looked up in the first index to yield one or more verb classes. Then, for each verb class, all its possible thematic grids are determined from the second index. In this way, all possible candidate thematic grids for a given verb are determined. At step 340, any necessary adjustments to the thematic structure of passivized verbs will be made. Passivized verbs do not deploy the thematic role of their subject (except, optionally, in a Jby-phrase) ; thus, a thematic role for the non-passivized verb's subject should be assigned only if there is a by-phrase (e.g., "Brutus was stabbed by Caesar. " ) .
(ii) Selecting the Best Thematic Grid for a Verb
Having segmented a sentence into phrases and determined the verbs' candidate thematic grids, the best candidate thematic grid must be determined for each verb and its associated arguments. At step 345, the candidate thematic grids are rearranged in order of decreasing length. This allows the longest grids to be evaluated first, because a successful match to a longer (and thus more precise) grid is preferable to a shorter grid. At step 350, the linker steps through the thematic grids one at a time and, at step 360, attempts to assign each verb and its arguments to a best thematic grid based on the verb's semantics. That is, the linker tries assigning thematic roles to phrases, starting with the leftmost verb in the sentence. If the thematic roles in the verb's thematic grid (e.g. <Agent , Theme>) are compatible with the features of the phrases immediately to the left of the verb and following the verb, then the phrases are assigned to those roles. For example, if a verb selects an Agent as its subject, or external argument, the linker will consider a phrase immediately to the left of the verb to be compatible if it is a noun phrase (has feature N) or has some other feature compatible with the Agent role. One particular situation involving Agent roles deserves special consideration. Referential dependencies between pronouns and overt noun phrases within a sentence or due to ellipses, both of which might result in a multiplicity of phrases assigned to certain thematic roles, are handled by allowing only one set of thematic roles to be assigned. For example, if more than one Agent is found in a sentence, the second agent is appended to the previously assigned Agent phrase. This allows the system to recognize some anaphoric relations that might otherwise be missed. For example, the sentence "If a man owns a donkey, he beats it," contains two Agents ("a man," "he") and two Themes ("a donkey," "it") . By appending phrases to already assigned thematic roles, the system will be able to recognize the donkey sentence as an answer to the question "Does a man beat a donkey?"
Within the neo-Davidsonian paradigm, the invention's treatment of multiple verbs can be thought of as an endorsement of the axiom that for every group of basic level events, there is an event (a super-event) that consists of the occurrence of all those events. The agents of those constituent events are the agents of the super event; the themes of the constituent events are the themes of the super event, and so on.
At step 365, if all of the phrases are assigned a thematic role and all of the thematic grid' s thematic roles have been assigned, we say that the linking has converged; otherwise it has crashed . At step 370, the first assignment of thematic roles that converges, if one occurs, is retained. Otherwise, at step 375, the assignment of thematic roles to phrases that comes closest to converging is retained. That is, the assignment that crashes the least badly is retained if none has converged. Phrases that don't get assigned a thematic role are assigned a special "adjunct" role. If convergence has not occurred, the process of steps 360-370 is repeated for the remaining candidate thematic grids, in an attempt to find a candidate grid that actually converges. Finally, at step 380, the best thematic grid is outputted for score evaluation (steps 255-260 of Figure 2) .
Although the foregoing has been described in the context of indicative sentences (statements) , other types of sentences such as interrogatives (questions) and imperatives (commands) are parsed by means of the same algorithm. For questions, the parser takes into account the movement of wh- phrases and produces logical forms thematically equivalent to the corresponding statement by reordering the question's interrogative (wh- ) phrases and by deleting the auxiliary as described previously in the section entitled "Phrase Identification." For imperatives, which have no subjects, the missing subject is not assigned a thematic role, but the relevant adjustment is made in judging whether the assignment has converged .
4. Evaluation
Referring now to Figure 2, at step 255, once the best parse has been found for a sentence, it is evaluated as to the degree to which it answers the submitted question. Answerhood is measured by a graded relation between a sentence and a question. A sentence may either be a full answer, a partial answer, or a non-answer to a submitted question. Partial answers with scores greater than a predetermined minimum score for the question are returned as well as full answers .
As mentioned previously (step 210 of Figure 2), after a submitted question has been parsed (in an identical manner to that described for sentences) , it is assigned a minimum score that must be met or exceeded by a sentence, if that sentence is to be deemed an answer to the question. This score is given by the number of thematic roles assigned to the question. Thus, the questions "Who discovered Pluto?" and "Did Tombaugh discover Pluto?" would both be assigned a minimum score of 2 , because they both contain an Agent ( "Who" and "Tombaugh", respectively) and a Theme ("Pluto").
However, the question "How did Tombaugh discover Pluto?" would be assigned a minimum score of 3, since it also contains the additional thematic role of Manner ("How").
At step 255, a sentence is evaluated with respect to the submitted question as follows. First, a comparator determines, for each thematic role in the sentence, whether the phrase assigned to that thematic role in the question (e.g., the question's Agent) literally (exactly) matches a substring of the phrase assigned to that thematic role in the sentence. For each such match, a scorer increases the score by one. A sentence having a score of zero is discarded.
Next, the comparator and scorer determine whether any of the question's thematic roles and if so, are occupied by wh- phrases (e.g., interrogatives such as "who," "which," "why," "how," "when," "where," and "what") in the sentence and, if so, increases the score by one per occupancy. In all the above, when dealing with the special case of an imperative sentence, its lack of a subject is taken into account so as not to exclude it from consideration on that basis. Finally, verb-based comparisons are made between questions and each sentence. Any such match, either between verbs or between verb classes, also increases the score by one per match. More generally, by arranging the verb classes in the first index into a tree structure, the semantic distance between the sentences and the question's verb classes could be quantified as the numerical distance between them in the tree. Such a numerical distance could be used an inverse measure of answerhood, with shorter distances causing larger score increases .
At step 260, sentences that score higher than the minimum score associated with the question are presented to the user, or otherwise stored, as answers to the submitted question. In the present invention, an HTML page with the answers, their scores, and a hypertext link to the page from which they were extracted, is constructed and automatically updated for the user, who accesses it through a Web browser. Processing continues until all sentences (step 245) of all the documents returned by the search query (step 270) have been evaluated. Figures 4A-4D show a representative response to a user question of the form "When was Pluto discovered?" in the form of an automatically generated HTML page.
In the present invention, processing of the documents is done on an as-needed basis. The parses are not stored for future use. It would present no technical difficulty to store the data structures that result from the parsing in a database so that question-answering could directly access the stored parses, rather than parsing the sentences as needed.
Although the present invention has been described in terms of a particular embodiment, it will be appreciated that various modifications and alterations may be made without departing from the spirit and scope of the invention. Therefore, it is intended that the scope of the invention be limited only by the following claims.

Claims

CLAIMSWhat is claimed is:
1. A method for searching an electronically accessible document depository to provide at least one answer to a question posed by a user in a natural language, comprising the steps of : (a) identifying at least one candidate document, from said depository, that may contain at least one answer to said question; (b) individually processing each said candidate document to locate said answers using thematic linguistic analysis; and (c) presenting said answers to said user.
2. The method of claim 1 where the step of identifying said candidate document includes : (a) receiving a natural language question; (b) submitting an appropriate query, based on the question, to a search engine that references said depository; and (c) receiving, from said search engine, an address for each said candidate document that may contain an answer to said question.
3. The method of claim 2 where the step of submitting said query includes formulating a keyword-based representation of the question to be submitted to the search engine.
4. The method of claim 2 where said document depository is the World Wide Web and where said candidate documents are web pages .
5. The method of claim 1 where the step of processing each said candidate document includes: (a) identifying at least one sentence within said candidate document ; (b) determining whether each identified sentence should be parsed; (c) for each sentence to be parsed, parsing it into its neo-Davidsonian logical form; and (d) for each parsed sentence, evaluating the degree to which it constitutes an answer to said question.
6. The method of claim 5 where the step of parsing each said sentence includes : (a) decomposing said sentence into at least one verb and a plurality of arguments associated with said verb, said verb and said arguments collectively defining a first plurality of phrases; and (b) determining a thematic role corresponding to each said phrase.
7. The method of claim 6 further comprising the step of morphologically analyzing said sentence prior to said step of decomposing said sentence.
8. The method of claim 6 where said step of decomposing said sentence includes moving at least one phrase within said sentence .
9. The method of claim 8 where said step of moving said phrase is performed with respect to an interrogative sentence.
10. The method of claim 8 where said step of moving said phrase is performed with respect to a passive sentence.
11. The method of claim 8 where said step of moving said phrase is associated with a relative clause construction.
12. The method of claim 6 where said step of decomposing said sentence includes replacing at least one pronoun with an antecedent thereof .
13. The method of claim 6 where said step of determining said thematic roles includes: (a) for each verb, determining at least one candidate thematic grid, each said candidate thematic grid including a plurality of thematic roles; and (b) for each verb, selecting one of said candidate thematic grids whose thematic roles best match the arguments associated with that verb.
14. The method of claim 13 where said step of determining said thematic grid includes stemming a verb of said sentence .
15. The method of claim 5 where said sentence is of imperative form.
16. The method of claim 5 where said sentence is of interrogative form.
17. The method of claim 5 further comprising the step of parsing said question into a neo-Davidsonian logical form including a second plurality of phrases.
18. The method of claim 17 where said step of evaluating the degree to which said sentence constitutes an answer to said question includes: (a) searching for matches between said sentence's first plurality of phrases and said question's second plurality of phrases; and (b) incrementing a numerical score for said sentence upon the occurrence of each said match.
19. The method of claim 18 where said step of searching for matches includes literal matching.
20. The method of claim 18 where said step of searching for matches includes interrogative matching.
21. The method of claim 18 where said step of searching for matches includes verb-based matching.
22. The method of claim 18 where said step of presenting said answer to said user includes providing those sentences whose scores satisfy a minimum score requirement.
23. The method of claim 17 where said step of parsing said question includes: (a) decomposing said question into at least one verb and a plurality of arguments associated with said verb, said verb and said arguments collectively defining said second plurality of phrases; and (b) determining a thematic role corresponding to each said phrase .
24. The method of claim 23 where said step of determining said thematic roles includes: (a) for each verb, determining at least one candidate thematic grid, each said candidate thematic grid including a plurality of thematic roles; and (b) for each verb, selecting one of said candidate thematic grids whose thematic roles best match the arguments associated with that verb.
25. A system for searching an electronically accessible document depository to provide at least one answer to a question posed by a user in a natural language, comprising: (a) a parser coupled to receive: (i) said question, and (ii) from said depository, at least a portion of said candidate document that may contain an answer to said question; and (b) an evaluator coupled to receive from said parser: (i) a first output derived from said question and (ii) a second output derived from said portion of said candidate document; and said evaluator configured to derive from said first and second outputs each said answer to be presented to said user.
26. The system of claim 25, further comprising a keyword- based searcher for identifying said candidate document from said depository.
27. The system of claim 25, where said depository is the World Wide Web and said candidate document is a web page.
28. The system of claim 25 further comprising a tokenizer coupled to said parser, said tokenizer configured to receive said candidate document from said depository and to identify said portion of said candidate document, said portion including at least one sentence of said candidate document .
29. The system of claim 28, where said evaluator includes: (a) a comparator coupled to said parser to receive said first and second outputs and to determine any matches therebetween; and (b) a scorer coupled to said comparator to receive said matches and to assign a rank to each said match.
30. The system of claim 29 where said matches and scores are literally-based.
31. The system of claim 29 where said matches and scores are interrogative-based.
32. The system of claim 29 where said matches and scores are verb-based.
33. The system of claim 25, where said parser includes (a) a phrase boundary identifier configured to decompose : (i) said portion of said candidate document into a first plurality of phrases, and (ii) said question into a second plurality of phrases; and (b) a linker coupled to said phrase boundary identifier, said linker configured to determine a thematic role corresponding to each of said phrases; such that said first output includes said first plurality of phrases and their corresponding thematic roles and said second output includes said second plurality of phrases and their corresponding thematic roles.
PCT/US1997/022943 1996-12-04 1997-12-04 Method and apparatus for natural language querying and semantic searching of an information database WO1998025217A1 (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
EP97950947A EP1016003A1 (en) 1996-12-04 1997-12-04 Method and apparatus for natural language querying and semantic searching of an information database
CA002273902A CA2273902A1 (en) 1996-12-04 1997-12-04 Method and apparatus for natural language querying and semantic searching of an information database
AU53816/98A AU5381698A (en) 1996-12-04 1997-12-04 Method and apparatus for natural language querying and semantic searching of an information database

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US76069196A 1996-12-04 1996-12-04
US08/760,691 1996-12-04

Publications (1)

Publication Number Publication Date
WO1998025217A1 true WO1998025217A1 (en) 1998-06-11

Family

ID=25059885

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1997/022943 WO1998025217A1 (en) 1996-12-04 1997-12-04 Method and apparatus for natural language querying and semantic searching of an information database

Country Status (4)

Country Link
EP (1) EP1016003A1 (en)
AU (1) AU5381698A (en)
CA (1) CA2273902A1 (en)
WO (1) WO1998025217A1 (en)

Cited By (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2000075807A1 (en) * 1999-06-08 2000-12-14 Albert-Inc. S.A. System and method for enhancing e-commerce using natural language interface for searching database
WO2000075806A1 (en) * 1999-06-08 2000-12-14 Albert-Inc. S.A. System and method for enhancing online support services using natural language interface for searching database
WO2000079437A2 (en) * 1999-06-18 2000-12-28 Microsoft Corporation System for identifying the relations of constituents in information retrieval-type tasks
WO2001069455A2 (en) * 2000-03-16 2001-09-20 Poly Vista, Inc. A system and method for analyzing a query and generating results and related questions
WO2001082114A2 (en) * 2000-04-26 2001-11-01 Global Information Research And Technologies Llc System for fulfilling an information need
WO2001084376A2 (en) * 2000-04-28 2001-11-08 Global Information Research And Technologies Llc System for answering natural language questions
WO2002041171A1 (en) * 2000-11-17 2002-05-23 Supportus Aps Method for finding answers in a database to natural language questions
WO2002046970A2 (en) * 2000-12-05 2002-06-13 Global Information Research And Technologies Llc System for fulfilling an information need using extended matching techniques
WO2002080036A1 (en) * 2001-03-30 2002-10-10 Hapax Ltd Method of finding answers to questions
WO2002091237A1 (en) * 2001-05-07 2002-11-14 Global Information Research And Technologies Llc System for answering natural language questions
US6598039B1 (en) 1999-06-08 2003-07-22 Albert-Inc. S.A. Natural language interface for searching database
WO2011051970A2 (en) * 2009-10-28 2011-05-05 Tata Consultancy Services Ltd. Method and system for obtaining semantically valid chunks for natural language applications
US9396235B1 (en) 2013-12-13 2016-07-19 Google Inc. Search ranking based on natural language query patterns
US9471559B2 (en) 2012-12-10 2016-10-18 International Business Machines Corporation Deep analysis of natural language questions for question answering system

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0610760A2 (en) * 1993-01-28 1994-08-17 Kabushiki Kaisha Toshiba Document detection system with improved document detection efficiency
EP0631244A2 (en) * 1993-06-24 1994-12-28 Xerox Corporation A method and system of information retrieval

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0610760A2 (en) * 1993-01-28 1994-08-17 Kabushiki Kaisha Toshiba Document detection system with improved document detection efficiency
EP0631244A2 (en) * 1993-06-24 1994-12-28 Xerox Corporation A method and system of information retrieval

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
BALDAZO R: "NAVIGATING WITH A WEB COMPASS", BYTE, vol. 21, no. 3, 1 March 1996 (1996-03-01), pages 97/98, XP000600179 *
QUINTANA Y ET AL: "Graph-based retrieval of information in hypertext systems", SIGDOC '92. THE 10TH ANNUAL INTERNATIONAL CONFERENCE. CONFERENCE PROCEEDINGS. GOING ONLINE. THE NEW WORLD OF MULTIMEDIA DOCUMENTATION, PROCEEDINGS OF SIGDOC '92: 10TH ANNUAL ACM CONFERENCE ON SYSTEMS DOCUMENTATION, OTTAWA, ONT., CANADA, 13-16 OCT. 19, ISBN 0-89791-532-1, 1992, NEW YORK, NY, USA, ACM, USA, pages 157 - 168, XP002062197 *
RAYNER M ET AL: "Temporal relations and logic grammars", ECAI '86. 7TH EUROPEAN CONFERENCE ON ARTIFICIAL INTELLIGENCE. PROCEEDINGS, BRIGHTON, UK, 21-25 JULY 1986, 1986, LONDON, UK, CONFERENCE SERVICES, UK, pages 9 - 14 vol.2, XP002062196 *

Cited By (32)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6446064B1 (en) 1999-06-08 2002-09-03 Albert Holding Sa System and method for enhancing e-commerce using natural language interface for searching database
WO2000075806A1 (en) * 1999-06-08 2000-12-14 Albert-Inc. S.A. System and method for enhancing online support services using natural language interface for searching database
WO2000075807A1 (en) * 1999-06-08 2000-12-14 Albert-Inc. S.A. System and method for enhancing e-commerce using natural language interface for searching database
US6598039B1 (en) 1999-06-08 2003-07-22 Albert-Inc. S.A. Natural language interface for searching database
US6594657B1 (en) 1999-06-08 2003-07-15 Albert-Inc. Sa System and method for enhancing online support services using natural language interface for searching database
US7290004B2 (en) 1999-06-18 2007-10-30 Microsoft Corporation System for improving the performance of information retrieval-type tasks by identifying the relations of constituents
WO2000079437A3 (en) * 1999-06-18 2003-12-18 Microsoft Corp System for identifying the relations of constituents in information retrieval-type tasks
US7536397B2 (en) 1999-06-18 2009-05-19 Microsoft Corporation System for improving the performance of information retrieval-type tasks by identifying the relations of constituents
US7299238B2 (en) 1999-06-18 2007-11-20 Microsoft Corporation System for improving the performance of information retrieval-type tasks by identifying the relations of constituents
WO2000079437A2 (en) * 1999-06-18 2000-12-28 Microsoft Corporation System for identifying the relations of constituents in information retrieval-type tasks
US7290005B2 (en) 1999-06-18 2007-10-30 Microsoft Corporation System for improving the performance of information retrieval-type tasks by identifying the relations of constituents
US7269594B2 (en) 1999-06-18 2007-09-11 Microsoft Corporation System for improving the performance of information retrieval-type tasks by identifying the relations of constituents
US7206787B2 (en) 1999-06-18 2007-04-17 Microsoft Corporation System for improving the performance of information retrieval-type tasks by identifying the relations of constituents
US6901402B1 (en) 1999-06-18 2005-05-31 Microsoft Corporation System for improving the performance of information retrieval-type tasks by identifying the relations of constituents
WO2001069455A2 (en) * 2000-03-16 2001-09-20 Poly Vista, Inc. A system and method for analyzing a query and generating results and related questions
WO2001069455A3 (en) * 2000-03-16 2003-11-20 Poly Vista Inc A system and method for analyzing a query and generating results and related questions
WO2001082114A2 (en) * 2000-04-26 2001-11-01 Global Information Research And Technologies Llc System for fulfilling an information need
US6859800B1 (en) 2000-04-26 2005-02-22 Global Information Research And Technologies Llc System for fulfilling an information need
WO2001082114A3 (en) * 2000-04-26 2003-09-12 Global Information Res And Tec System for fulfilling an information need
WO2001084376A2 (en) * 2000-04-28 2001-11-08 Global Information Research And Technologies Llc System for answering natural language questions
WO2001084376A3 (en) * 2000-04-28 2002-07-25 Global Information Res And Tec System for answering natural language questions
WO2002041171A1 (en) * 2000-11-17 2002-05-23 Supportus Aps Method for finding answers in a database to natural language questions
WO2002046970A3 (en) * 2000-12-05 2004-02-26 Global Information Res And Tec System for fulfilling an information need using extended matching techniques
WO2002046970A2 (en) * 2000-12-05 2002-06-13 Global Information Research And Technologies Llc System for fulfilling an information need using extended matching techniques
US7058564B2 (en) 2001-03-30 2006-06-06 Hapax Limited Method of finding answers to questions
WO2002080036A1 (en) * 2001-03-30 2002-10-10 Hapax Ltd Method of finding answers to questions
US7707023B2 (en) 2001-03-30 2010-04-27 Hapax Limited Method of finding answers to questions
WO2002091237A1 (en) * 2001-05-07 2002-11-14 Global Information Research And Technologies Llc System for answering natural language questions
WO2011051970A2 (en) * 2009-10-28 2011-05-05 Tata Consultancy Services Ltd. Method and system for obtaining semantically valid chunks for natural language applications
WO2011051970A3 (en) * 2009-10-28 2011-07-07 Tata Consultancy Services Ltd. Method and system for obtaining semantically valid chunks for natural language applications
US9471559B2 (en) 2012-12-10 2016-10-18 International Business Machines Corporation Deep analysis of natural language questions for question answering system
US9396235B1 (en) 2013-12-13 2016-07-19 Google Inc. Search ranking based on natural language query patterns

Also Published As

Publication number Publication date
EP1016003A1 (en) 2000-07-05
CA2273902A1 (en) 1998-06-11
AU5381698A (en) 1998-06-29

Similar Documents

Publication Publication Date Title
JP4892130B2 (en) Text input processing system using natural language processing technique
US6859800B1 (en) System for fulfilling an information need
US6678677B2 (en) Apparatus and method for information retrieval using self-appending semantic lattice
US6665666B1 (en) System, method and program product for answering questions using a search engine
US6678694B1 (en) Indexed, extensible, interactive document retrieval system
US20040117352A1 (en) System for answering natural language questions
Bernardini et al. A WaCky introduction
CA2754006A1 (en) Systems, methods, and software for hyperlinking names
EP1016003A1 (en) Method and apparatus for natural language querying and semantic searching of an information database
Bradshaw et al. Guiding people to information: providing an interface to a digital library using reference as a basis for indexing
Hung et al. Applying word sense disambiguation to question answering system for e-learning
Radev et al. Evaluation of text summarization in a cross-lingual information retrieval framework
Smeaton et al. User-chosen phrases in interactive query formulation for information retrieval
Katz et al. Answering Multiple Questions on a Topic From Heterogeneous Resources.
Billerbeck Efficient query expansion
KR20030006201A (en) Integrated Natural Language Question-Answering System for Automatic Retrieving of Homepage
Litkowski Question Answering Using XML-Tagged Documents.
Anick The automatic construction of faceted terminological feedback for interactive document retrieval
Milić-Frayling Text processing and information retrieval
Salton Abstracts of Articles in the Information Retrieval Area Selected by Gerard Salton
Lancaster Mechanized document control: A review of some recent research
Beaulieu et al. Concept-based Interactive Query Expansion Support Tool (CIQUEST)
WO2002046970A2 (en) System for fulfilling an information need using extended matching techniques
Kelledy Query space reduction in information retrieval
Ramanand et al. Data Engineering

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AT AU BG BR CA CH CN CZ DE DK ES FI GB HU IL IS JP KR LC LU MK MX NO NZ PL PT RO RU SE SG SI SK VN YU

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FI FR GB GR IE IT LU MC NL PT SE

121 Ep: the epo has been informed by wipo that ep was designated in this application
ENP Entry into the national phase

Ref document number: 2273902

Country of ref document: CA

WWE Wipo information: entry into national phase

Ref document number: 1997950947

Country of ref document: EP

REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

WWP Wipo information: published in national office

Ref document number: 1997950947

Country of ref document: EP

WWW Wipo information: withdrawn in national office

Ref document number: 1997950947

Country of ref document: EP