CA2457693C - Method and system for enhanced data searching - Google Patents

Method and system for enhanced data searching Download PDF

Info

Publication number
CA2457693C
CA2457693C CA2457693A CA2457693A CA2457693C CA 2457693 C CA2457693 C CA 2457693C CA 2457693 A CA2457693 A CA 2457693A CA 2457693 A CA2457693 A CA 2457693A CA 2457693 C CA2457693 C CA 2457693C
Authority
CA
Canada
Prior art keywords
query
meaningful
grammatical
verb
terms
Prior art date
Legal status (The legal status 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 status listed.)
Expired - Fee Related
Application number
CA2457693A
Other languages
French (fr)
Other versions
CA2457693A1 (en
Inventor
Giovanni B. Marchisio
Krzysztof Koperski
Jisheng Liang
Alejandro Murua
Thien Nguyen
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
VCVC III LLC
Original Assignee
Evri Inc
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 Evri Inc filed Critical Evri Inc
Publication of CA2457693A1 publication Critical patent/CA2457693A1/en
Application granted granted Critical
Publication of CA2457693C publication Critical patent/CA2457693C/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

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/31Indexing; Data structures therefor; Storage structures
    • G06F16/313Selection or weighting of terms for indexing
    • 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
    • G06F40/00Handling natural language data
    • G06F40/20Natural language analysis
    • G06F40/205Parsing
    • G06F40/211Syntactic parsing, e.g. based on context-free grammar [CFG] or unification grammars
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/30Semantic analysis
    • G06F40/35Discourse or dialogue representation
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • Y10S707/99933Query processing, i.e. searching

Abstract

Methods and systems for syntactically indexing and searching data sets to achieve more accurate search results are provided. Example embodiments provide a Syntactic Query Engine ("SQE") that parses, indexes, and stores a data set, as well as processes natural language queries subsequently submitted against the data set. The SQE comprises a Query Preprocessor, a Data Set Preprocessor, a Query Builder, a Data Set Indexer, an Enhanced Natural Language Parser ("ENLP"), a data set repository, and, in some embodiments, a user interface. After preprocessing the data set, the SQE parses the data set and determines the syntactic and grammatical roles of each term to generate enhanced data representations for each object in the data set. The SQE indexes and stores these enhanced data representations in the data set repository. Upon subsequently receiving a query, the SQE parses the query similarly and searches the indexed stored data set to locate data that contains similar terms used in similar grammatical roles. In this manner, the SQE is able to achieve more contextually accurate search results more frequently than using traditional search engines.

Description

METHOD AND SYSTEM FOR ENHANCED DATA SEARCHING
BACKGROUND OF THE INVENTION

Field of the Invention The present invention relates to a method and system for searching for information in a data set, and, in particular, to methods and systems for syntactically indexing and searching data sets to achieve greater search result accuracy.

Description of the Related Art Often times it is desirable to search large sets of data, such as collections of millions of documents, only some of which may pertain to the information being sought. In such instances it is difficult to either identify a subset of data to search or to search all data yet return only meaningful results.
Several search techniques have been used to support searching large sets of data, none of which have been able to attain a high degree of accuracy of search results due to their inherent limitations.
One common technique is that implemented by traditional keyword search engines. Data is searched and results are generated based on matching one or more words or terms designated as a query. The results are returned because they contain a word or term that matches all or a portion of one or more keywords that were submitted to the search engine as the query.
Some keyword search engines additionally support the use of modifiers, operators, or a control language that specifies how the keywords should be combined in a search. For example, a query might specify a date filter to be used to filter the returned results. In many traditional keyword search engines, the results are returned ordered, based on the number of matches found within the data. For example, a keyword search against Internet websites typically returns a list of sites that contain one or more of the submitted keywords, with the sites with the most matches appearing at the top of the list. Accuracy of search results in these systems is thus presumed to be associated with frequency of occurrence.
One drawback to traditional search engines is that they don't return data that doesn't match the submitted keywords, even though it may be relevant. For example, if a user is searching for information on what products a particular country imports, data that refers to the country as a ""customer"
instead of using the term "import" would be missed if the submitted query specifies "import" as one of the keywords, but doesn't specify the term "customer." (E.g., The sentence "Argentina is a customer of the Acme Company" would be missed.) Ideally, a user would be able to submit a query in the form of a question and receive back a set of results that were accurate based on the meaning of the query - not just on the specific terms used to phrase the question.
Natural language parsing provides technology that attempts to understand and identify the syntactical structure of a language. Natural language parsers have been used to identify the parts of speech of each term in a submitted sentence to support the use of sentences as natural language queries. They have been used also to identify text sentences in a document that follow a particular part of speech pattern; however, these techniques fall short of being able to produce meaningful results when the documents do not follow such patterns. The probability of a sentence falling into a class of predefined sentence templates or the probability of a phrase occurring literally is too low to provide meaningful results. Failure to account for semantic and syntactic variations across a data set, especially heterogeneous data sets, has led to disappointing results.

BRIEF SUMMARY OF THE INVENTION
Embodiments of the present invention provide methods and systems for syntactically indexing and searching data sets to achieve more accurate search results. Example embodiments provide a Syntactic Query Engine ("SQE") that parses, indexes, and stores a data set, as well as processes queries subsequently submitted against the data set. The SQE
parses each object in the data set and transforms it into a canonical form that can be searched efficiently using techniques of the present invention. To perform this transformation, the SQE determines the syntactic structure of the data by parsing (or decomposing) each data object into syntactic units, determines the grammatical roles and relationships of the syntactic units, and represents these relationships in a normalized data structure. A set of heuristics is used to determine which relationships among the syntactic units are important for yielding greater accuracy in the results subsequently returned in response to queries. The normalized data structures are then stored and indexed. The SQE processes queries in a similar fashion by parsing them and transforming them into the same canonical form, which is then used to generate and execute queries against the data set.
In one embodiment, the parsing of each data object into syntactic units is performed by a natural language parser, which generates a hierarchical data structure (e.g., a tree) of syntactic units. In other embodiments, the parser is a module that generates a syntactic structure (or lexical structure) that relates specifically to the objects of the data set. In yet another embodiment, the parser is an existing, off-the-shelf parser, that is modified to perform the SQE
transformations of the data set or of queries.
In some embodiments, the canonical form is an enhanced data representation, such as an enhanced sentence representation. In one embodiment, the canonical form comprises a set of tables, which represent grammatical roles of and / or relationships between various syntactic units.
In some embodiments, tables are created for the subject, object, preposition, subject/object, noun/noun modifier roles and / or relationships of the syntactic units.
In one embodiment, use of the normalized data structure allows data that appears in multiple and different languages and in different forms to be processed in a similar manner and at the same time. For example, a single query can be submitted against a corpus of documents written in different languages without first translating all of the documents to one language. In another embodiment, the data set may include parts that themselves contain multiple language elements. For example, a single document, like a tutorial on a foreign language, may be written in several languages. In another embodiment, the data set may include objects containing computer language.
In yet another embodiment, the data set may include graphical images, with or without surrounding text, bitmaps, film, or other visual data. In yet another embodiment, the data set may include audio data such as music. In summary, the data set may include any data that can be represented in syntactical units and follows a grammar that associates roles to the syntactical units when they appear in a specified manner, even if the data may not traditionally be thought of in that fashion.
In one embodiment, the processed queries are natural language queries. In other embodiments, the queries are specific representations with form and / or meaning that is specifically related to the objects of the data set.

In one embodiment, the SQE comprises a Query Preprocessor, a Data Set Preprocessor, a Query Builder, a Data Set Indexer, an Enhanced Natural Language Parser ("ENLP"), a data set repository, and, in some embodiments, a user interface. After preprocessing the data set, the SQE
parses the data set and determines the syntactic and grammatical roles of each term to generate enhanced data representations for each object (e.g., sentence) in the data set. The SQE indexes and stores these enhanced data representations in the data set repository. Upon subsequently receiving a query, such as a natural language query, the SQE parses the query similarly and searches the stored indexed data set to locate data that contains similar terms used in similar grammatical roles.
In some embodiments, the SQE provides search operators based upon the grammatical roles and relationships of syntactic units of objects of data. For example, some embodiments provide a search that allows designation of the grammatical role of a unit of the query. For example, a term may be designated as a subject or an object of a sentence before it is used to search the data set for similar terms used in similar grammatical roles. In one embodiment, the SQE returns a list of related units (terms) based upon a grammatical role. For example, in response to a query that designates a term as a "subject" of a textual phrase, the SQE returns a list of verbs that appear in phrases that contain the term used as the subject of those phrases. Other embodiments return different parts of speech or terms that appear in particular grammatical roles.
In yet other embodiments, the SQE provides an ability to search for similar sentences in a data set of documents or similar objects, where similar means that the matching sentence contains similar words used in similar grammatical roles or syntactic relationships. In some embodiments, this ability is invoked by selection of a sentence in data that is returned as a result of another query. In yet other embodiments, the SQE provides an ability to search for similar paragraphs and similar documents. In other embodiments, the SQE
provides an ability to search for similar objects.
In some embodiments, the SQE returns results to a query in an order that indicates responsiveness to the query. In some embodiments, the order is based upon the polysemy of terms in the query. In other embodiments, the order is based upon the inverse document frequency of terms in the query.
In yet other embodiments, the ordering of results is based upon weightings of the matched results from the data set. In some of these embodiments, the weightings are based upon the degree of matching of a particular part of speech. For example, the weighting may be based upon whether matching sentences contain identical verbs, entailed verbs, or verbs that are defined as close by some other metric, such as frequency or distribution in the data set.
BRIEF DESCRIPTION OF THE SEVERAL VIEWS OF THE DRAWINGS
Figure 1 shows a natural language query and the results returned by an example embodiment of a Syntactic Query Engine.
Figure 2 is an example block diagram of a Syntactic Query Engine.
Figure 3 is an example flow diagram of the steps performed by a Syntactic Query Engine to process data sets and natural language queries.
Figure 4 is an example screen display illustrating general search functionality of an example Syntactic Query Engine user interface.
Figure 5A is an example screen display illustrating a portion of a data set from which a natural language query result was extracted.
Figure 5B is an example screen display illustrating a search similar sentence operation.
Figure 5C is an example screen display illustrating results that correspond to the search similar sentence operation initiated in Figure 5B.
Figure 6 is an example screen display illustrating Syntactic Query Engine results from a natural language query that requests a map.
Figure 7 is an example screen display illustrating a map that corresponds to the query result selected in Figure 6.
Figure 8 is an example screen display illustrating Syntactic Query Engine results from a natural language query that requests a chart.
Figure 9 is an example screen display illustrating a chart that corresponds to the query result selected in Figure 8.
Figure 10 is an example screen display of an advanced search using a natural language query that contains a subject.
Figure 11 is an example screen display illustrating advanced search results from a query that contains a subject.
Figure 12 is an example screen display illustrating a portion of resulting sentences returned by a Syntactic Query Engine when a particular verb is selected from the verb list.
Figure 13 is an example screen display of advanced search functionality using a natural language query that contains a subject and an object.
Figure 14 is an example screen display illustrating advanced search results from a query that contains a subject and an object.
Figure 15 is an example screen display illustrating the designation of programmable attributes in a Syntactic Query Engine.
Figure 16 is a block diagram of the components of an example embodiment of a Syntactic Query Engine.
Figure 17 is a block diagram of the components of an Enhanced Natural Language Parser of an example embodiment of a Syntactic Query Engine.
Figure 18 is a block diagram of the processing performed by an example Enhanced Natural Language Parser.
Figure 19 is a block diagram illustrating a graphical representation of an example syntactic structure generated by the natural language parser component of an Enhanced Natural Language Parser.
Figure 20 is a table illustrating an example enhanced data representation generated by the postprocessor component of an Enhanced Natural Language Parser.
Figure 21 is an example block diagram of data set processing performed by a Syntactic Query Engine.
Figure 22 is an example block diagram of natural language query processing performed by a Syntactic Query Engine.
Figure 23 is an example block diagram of a general purpose computer system for practicing embodiments of a Syntactic Query Engine.
Figure 24 is an example flow diagram of the steps performed by a build file routine within the Data Set Preprocessor component of a Syntactic Query Engine.
Figure 25 illustrates an example format of a tagged file built by the build file routine of the Data Set Preprocessor component of a Syntactic Query Engine.
Figure 26 is an example flow diagram of the steps performed by the dissect file routine of the Data Set Preprocessor component of a Syntactic Query Engine.
Figure 27 is an example flow diagram of the steps performed by a Syntactic Query Engine to process a natural language query.
Figure 28 is an example flow diagram of the steps performed by a preprocess_natural_language_query routine of the Query Preprocessor component of a Syntactic Query Engine.
Figure 29 is an example block diagram showing the structure of an example Data Set Repository of a Syntactic Query Engine.
Figure 30 is an example flow diagram of the steps performed by a parse_sentence routine of the Enhanced Natural Language Parser component of a Syntactic Query Engine.
Figure 31 is an example flow diagram of the steps performed by a determine grammatical_roles subroutine within the parse-sentence routine of the Enhanced Natural Language Parser.
Figure 32 is an example flow diagram of the steps performed by a generate_subject_structure subroutine of the determine_grammatical_roles routine.
Figure 33 is an example flow diagram of the steps performed by a generate_object_structure subroutine of the determine_grammatical_roles routine.
Figure 34 is an example flow diagram of the steps performed by a generate_subject_modifier subroutine of the determine_grammatical_roles routine.
Figure 35 is an example flow diagram of the steps performed by a gene rate_generalized subject object subroutine of the determine grammatical_roles routine.
Figure 36A is a graphical representation of an example parse tree generated by a natural language parser component of an Enhanced Natural Language Parser.
Figure 36B is an illustration of an enhanced data representation of an example natural language query generated by an Enhanced Natural Language Parser.
Figure 37 is an example flow diagram of the steps performed by a construct-output-string routine of the Enhanced Natural Language Parser.
Figure 38 is an example flow diagram of the steps performed by an index data routine of the Data Indexer component of a Syntactic Query Engine.
Figures 39A and 39B are example flow diagrams of the steps performed by a build_query routine within the Query Builder component of a Syntactic Query Engine.

DETAILED DESCRIPTION OF THE INVENTION
Embodiments of the present invention provide methods and systems for syntactically indexing and searching data sets to achieve more accurate search results. Example embodiments provide a Syntactic Query Engine ("SQE") that parses, indexes, and stores a data set, as well as processes queries subsequently submitted against the data set. The SQE
parses each object in the data set and transforms it into a canonical form that can be searched efficiently using techniques of the present invention. To perform this transformation, the SQE determines the syntactic structure of the data by parsing (or decomposing) each data object into syntactic units, determines the grammatical roles and relationships of the syntactic units, and represents these relationships in a normalized data structure. A set of heuristics is used to determine which relationships among the syntactic units are important for yielding greater accuracy in the results subsequently returned in response to queries. The normalized data structures are then stored and indexed. The SQE processes queries in a similar fashion by parsing them and transforming them into the same canonical form, which is then used to generate and execute queries against the data set..
In one embodiment, the SQE includes, among other components, a data set repository and an Enhanced Natural Language Parser ("ENLP").
The ENLP parses the initial data set and the natural language queries and determines the syntactic and grammatical roles of terms in the data set /
query.
Then, instead of matching terms found in the query with identical terms found in the data set (as done in typical keyword search engines), the SQE locates terms in the data set. that have similar grammatical roles to the grammatical roles of similar terms in the original query. In this manner, the SQE is able to achieve more contextually accurate search results more frequently than using traditional search engines.
One skilled in the art will recognize that, although the techniques are described primarily with reference to text-based languages and collections of documents, the same techniques may be applied to any collection of terms, phrases, units, images, or other objects that can be represented in syntactical units and that follow a grammar that defines and assigns roles to the syntactical units, even if the data object may not traditionally be thought of in that fashion.
Examples include written or spoken languages, for example, English or French, computer programming languages, graphical images, bitmaps, music, video data, and audio data. Sentences that comprise multiple words are only one example of a phrase or collection of terms that can be analyzed, indexed, and searched using the techniques described herein.
In addition, the term "natural language query" is used to differentiate the initial query from subsequent data queries created by an SQE
in the process of transforming the initial query into a set of data-set-specific queries (e.g., database queries) that are executed against the indexed data set.
One skilled in the art will recognize, however, that the form and content of the initial query will relate to and depend upon the form of objects in the data set-i.e., the language of the data set.
The Syntactic Query Engine is useful in a multitude of scenarios that require indexing, storage, and/or searching of, especially large, data sets, because it yields results to data set queries that are more contextually accurate than other search engines. In a text-based, document environment, the SQE
identifies the syntax of a submitted natural language query or sentence within a data set (e.g., which terms are nouns, adjectives, verbs, and other parts of speech, and the relationships between the terms), determines which terms are less likely to produce meaningful results (e.g., words like "the", "a", and "who"), and ignores these terms. For example, given the natural language query, What types of scientific research does the Department of Defense fund?
the SQE identifies "scientific" as an adjective, "research" as a noun, "Department of Defense" as a noun phrase, and "fund" as a verb. The other terms in the sentence are ignored as being less meaningful. Based on the identified syntax, the SQE determines the grammatical role of each meaningful term (e.g., whether the term is a subject, object, or governing verb). Based upon a set of heuristics, the SQE uses the determined roles to generate one or more data queries from the natural language query to execute against the data set, which has been indexed and stored previously using a similar set of heuristics. For example, in the query above, "Department of Defense" is determined to be a subject of the sentence, "fund" is determined to be the governing verb of the sentence, and "scientific" and "research" are both determined to be objects of the sentence. Based on the determined grammatical roles, the SQE is able to generate an enhanced data representation and, hence, data queries that tend to return more contextually accurate results because the data set has been transformed to a similar enhanced data representation. Specifically, rather than identifying data in the data set that matches terms or parts of terms in the query (like traditional keyword search engines), the SQE executes the data queries to return data that contains similar terms used in similar grammatical roles to those terms and grammatical roles in the submitted natural language query. In summary, the SQE uses its determination of the grammatical roles of terms to transform a syntactic representation of data in the data set and in queries submitted against the data to a canonical representation that can be efficiently compared.
Figure 1 shows a natural language query and the results returned by an example embodiment of a Syntactic Query Engine. The example natural language query, Does Argentina import or export gas?
shown in query box 102, when executed against a previously indexed data set, returns results in results area 103 that relate to Argentina's importation and exportation of gas, even though the terms "import" and "export" do not appear in all of the records of the results. Thus, the SQE is able to make what one would consider greater contextual associations between the designated natural language query and the data set than a traditional keyword search would provide. This capability is due to the SQE's ability to index data sets and perform syntactical searches based on determined grammatical roles of and relationships between terms in the query and terms within sentences in the data set, as opposed to keyword searches, yielding a more effective search tool.
The SQE is thus able to "recognize" that certain terms in a data set may be relevant in relation to a submitted query simply because of their grammatical roles in the sentence. For example, the first sentence returned 104 refers to Argentina as a "customer" as opposed to an "importer." This sentence may not have been returned as a result of the shown natural language query had a traditional keyword search been performed instead, because "customer" is not identical or a part of the term "importer."
Figure 2 is an example block diagram of a Syntactic Query Engine. A document administrator 202 adds and removes data sets (for example, sets of documents), which are indexed and stored within a data set repository 204 of the SQE 201. A subscriber 203 to a document service submits natural language queries to the SQE 201, typically using a visual interface. The queries are then processed by the SQE 201 against the data sets stored in the data set repository 204. The query results are then returned to the subscriber 203. In this example, the SQE 201 is shown implemented as part of a subscription document service, although one skilled in the art will recognize that the SQE may be made available in many other forms, including as a separate application/tool, integrated into other software or hardware, for example, cell phones, personal digital assistants ("PDA"), or handheld computers, or associated with other types of services. Additionally, although the example embodiment is shown and described as processing data sets and natural language queries that are in the English language, as discussed earlier, one skilled in the art will recognize that the SQE can be implemented to process data sets and queries of any language, or any combination of languages.
Figure 3 is an example flow diagram of the steps performed by a Syntactic Query Engine to process data sets and natural language queries. In step 301, the SQE receives a data set, for example, a set of documents. In step 302, the SQE preprocesses the data set to ensure a consistent data format. In step 303, the SQE parses the data set, identifying the syntax and grammatical roles of terms within the data set and transforming the data to a normalized data structure. In step 304, the SQE stores the parsed and transformed data set in a data set repository. After a data set is stored, the SQE can process natural language queries against the data set. In step 305, the SQE receives a natural language query, for example, through a user interface. In step 306, the SQE preprocesses the received natural language query, formatting the query as appropriate to be parsed. In step 307, the SQE
parses the formatted query, identifying the syntactic and grammatical roles of terms in the query and transforming the query into a normalized data structure.
Using the parsed query, in step 308, the SQE generates and submits data queries (e.g., SQL statements) against the data set stored in the data set repository. Finally, in step 309, the SQE returns the results of the natural language query, for example, by displaying them through a user interface.
Figures 4 through 15 are example screen displays of an example Syntactic Query Engine user interface for submitting natural language queries and viewing query results. Figure 4 is an example screen display illustrating general search functionality of an example Syntactic Query Engine user interface. The general search functionality allows a user, for example, to submit a natural language query in the form of a sentence, which may be a statement or a question. The user enters a query in query box 401 and, using the search button 403, submits the query to the SQE, for example, the SQE of Figure 2.
The SQE displays the query results in results area 405. Each result that is returned by the SQE after performing a general search is a sentence extracted from the data set. Depending on the data set, other information may also be displayed with each result. For example, additional information displayed with the results shown in Figure 4 include the document title (e.g., "Foreign reserves & the exchange rate"), the name of the country the document relates to (e.g., "Somalia"), the date associated with the document (e.g., "[28-DEC-1997]"), and the location (e.g., directory) where the original source document is stored.
One skilled in the art will recognize that depending on the type of data that comprises the data set, different types of related information may be displayed as part of a result in a result set. Each displayed result is also a link that, when selected, causes the SQE user interface to display a larger portion of the data set from which the selected result was extracted. For example, if the sentence 406 shown as, The now defunct Central Bank of Somalia suffered a setback after the fall of Mr. Siad Barre in 1991 when a reported $70m in foreign exchange disappeared, is selected, the SQE will display a portion of the source document 407, labeled, Foreign reserves & the exchange rate, from which that sentence was retrieved. Although this example refers to a "user" submitting natural language queries, one skilled in the art will recognize that natural language queries may be submitted to an SQE through means other than user input. For example, an SQE may receive input from another program executing on the same computer or, for example, across a network or, from a wireless PDA device.
Figure 5A is an example screen display illustrating a portion of a data set from which a natural language query result was extracted. The portion displayed in text area 5A05 typically reflects the selected sentence that resulted from the query as well as a number of surrounding sentences in the document.
Additional options are also available while viewing portions of the data set.
For example, the user may select a sentence in text area 5A05 and select option "Sentences" 5A01 from the Search Similar Menu 5A04, causing the SQE to perform a syntactic search (using the search and indexing techniques described herein) against the data set using the selected sentence as a new natural language query. The search similar sentence functionality is described in detail with reference to Figures 5B and 5C. Alternatively, a user may select an entire paragraph and select option "Paragraphs" 5A02 from the Search Similar Menu 5A04. Selecting the Search Similar Paragraphs option causes the SQE to perform a search against the data set to return other paragraphs within the data set that contain content similar to the selected paragraph. The user may also select option "Documents" 5A03 from the Search Similar Menu 5A04, causing the SQE to perform a search against the data set to return other documents within the data set that contain content similar to the selected document. In an exemplary embodiment of an SQE, the paragraph and document similarity searches are preferably performed using latent semantic regression techniques as described in U. S. Patent Publication No. 20020156763, for which an application was filed on September 25,2001 and entitled "Extended functionality for an inverse inference engine based web search". One skilled in the art will recognize that other types of searches, including syntactic searches as described herein, may be implemented for the "Sentences," "Documents," and "Paragraphs" options. For example, a keyword search or one or more syntactic searches may be used.
Figure 5B is an example screen display illustrating a search similar sentence operation. In Figure 5B, a sentence is selected within a portion of a data set from which a natural language query result was extracted. Selecting the sentence 5B06 and then selecting option "Sentences" 5B01 from the Search Similar Menu 5B04 causes the SQE to perform a syntactic search against the data set, returning results that are similar to the selected sentence 5B06.
Figure 5C is an example screen display illustrating results that correspond to the search similar sentence operation initiated in Figure 5B. From the results displayed, one can see that the resulting sentences relate in a manner that goes beyond word or pattern matching.
Although discussed herein primarily with respect to documents, the SQE
supports data sets comprising a variety of objects and data formats and is not limited to textual documents. For example, a data set may comprise text documents of various formats, with or without embedded non-textual entities (e.g., images, charts, graphs, maps, etc.), as well as documents that are in and of themselves non-textual entities. Figures 6 through 9 illustrate support of natural language queries that request specific non-textual data.
One skilled in the art will recognize that support for other format combinations of stored and requested data are contemplated.
Figure 6 is an example screen display illustrating Syntactic Query Engine results from a natural language query that requests a map. When the user selects one of the returned results, for example, the "Angola [icon]"
608, the requested map is displayed. Figure 7 is an example screen display illustrating a map that corresponds to the query result selected in Figure 6.
Figure 8 is an example screen display illustrating Syntactic Query Engine results from a natural language query that requests a chart. When the user selects one of the returned results, for example, the "China [icon] "
808, the requested chart is displayed. Figure 9 is an example screen display illustrating a chart that corresponds to the query result selected in Figure 8.
In addition to queries that are formulated as one or more sentences, the SQE supports searching based upon designated syntactic and/or grammatical roles. The SQE advanced search functionality supports natural language queries that specify one or more terms, each associated with a grammatical role or part of speech.
Figure 10 is an example screen display of an advanced search using a natural language query that contains a subject. From this screen display, a user may enter a word or phrase as a subject 1001 and/or as an object 1002, the "subject" and "object" each being a grammatical role.
Selecting the Search button 1003 submits the query to the SQE. In the example shown, a user enters "Bill Clinton" as the subject. When the user selects the Search button 1003, the SQE performs a syntactic search, returning a list of verbs from sentences within .the data set which contain "Bill Clinton" as a subject.
Figure 11 is an example screen display illustrating advanced search results from a query that contains a subject. The results are displayed as a list of the verbs found in sentences within the stored data set in which the designated subject occurs as an identified subject of the sentence. The number in brackets after each listed verb indicates the number of times the designated subject and listed verb are found together in a sentence within the stored data set. For example, the top entry of the middle column 1101 of the verb list indicates that the SQE identified 16 sentences within the data set which contain "Bill Clinton" as a subject and "visit" (or some form of the verb "visit") as the verb. The SQE determines the order in which the verb list is displayed. As illustrated in Figure 11, the verb list may be displayed according to decreasing frequency of occurrence of the designated subject and/or object in the data set.
In an alternate embodiment, the verbs may be displayed in alphabetical order.
In another embodiment, the verbs may be grouped and/or ordered based on the similarity of meanings among the displayed verbs. The similarity of meanings among multiple verbs can be determined using an electronic dictionary, for example, WordNet. The WordNet dictionary is described in detail in Christiane Felibaum (Editor) and George Miller (Preface), WordNet (Language, Speech, and Communication), MIT Press, May 15, 1998.
When the user selects a verb from the returned list, the SQE
returns a set of resulting sentences with the designated subject and selected verb. Figure 12 is an example screen display illustrating a portion of resulting sentences returned by a Syntactic Query Engine when a particular verb is selected from the verb list. In the example shown, the verb "visit" has been selected from the verb list shown in Figure 11, causing the SQE to display the 16 sentences within the data set where "Bill Clinton" is found as a subject and "visit" is found as the verb. The SQE identifies verbs without regard to specific tense, which enhances the contextual accuracy of the search. For example, if the user selects "visit" as the verb, the SQE returns sentences that contain the verb "visited" (e.g., results 1-4 and 6), and sentences that contain the verb "may visit" (e.g., result 5). The results displayed in the results area 1205 are displayed in the same format as the results displayed in the results area 405 of Figure 4. Accordingly, selecting one of the displayed results causes the SQE
to display a larger portion of the data set from which the selected result was extracted, as described with reference to Figure 5A.
As described, with reference to Figure 10, a user may designate a subject and/or an object when using the advanced search functionality. Figure 13 is an example screen display of advanced search functionality using a natural language query that contains a subject and an object. In Figure 13, the user designates "US" as a subject in subject field 1301 and "Mexico" as an object in object field 1302. When the user selects the Search button 1303, the SQE performs a syntactic search against the data set for sentences in which "US" appears as an identified subject and "Mexico" appears as an identified object.
Figure 14 is an example screen display illustrating advanced search results from a query that contains a subject and an object. The top half 1406 of results area 1405 lists verbs returned where the designated subject appears as a subject of the sentence and the designated object appears as an object of the sentence. The lower half 1407 of results area 1405 lists verbs returned where the designated object appears as a subject of the sentence and the designated subject appears as an object of the sentence. Thus, the lower half 1407 displays results of a query using the inverse relationship between the subject and object. In this specific example, the top half 1406 of results area 1405 lists verbs found in sentences which contain "US" as a subject and "Mexico" as an object. The bottom half 1406 of results area 1408 lists verbs found in sentences which contain "Mexico" as a subject and "US" as an object.
Returning results related to the inverse relationship can be useful because sentences within the data set that are contextually accurate results to the natural language query may be overlooked if the inverse relationship is not examined. As similarly described with reference to Figures 11 and 12, when the user selects a verb from the returned list, the SQE returns a set of resulting sentences with the designated subject, designated object, and selected verb.
The resulting sentences are displayed in the same format as the results displayed in the results area 405 of Figure 4 and the results displayed in the results area 1205 of Figure 12. Accordingly, selecting one of the displayed sentences causes the SQE to display a larger portion of the data set from which the selected sentence was extracted, as described with reference to Figure 5A.
Although Figures 10-14 illustrate advanced search functionality with reference to natural language queries that specify a subject and/or an object, one skilled in the art will recognize that a multitude of syntactic and grammatical roles, and combinations of syntactic and grammatical roles may be supported. For example, some of the combinations contemplated for support by the advanced search functionality of the SQE are:
subject/object;
subject/verb/object;
subject/verb;
verb/object;
preposition/verb modifier/object;
verb/verb modifier/object;
verb/preposition/object;

verb/preposition/verb modifier/object;
subject/preposition/verb modifier;
subject/preposition/verb modifier/object;
subject/verb/verb modifier/object;
subject/verb/preposition;
subject/verb/preposition/object;
subject/verb/preposition/verb modifier;
subject/ verb/preposition/verb modifier/object; and noun/noun modifier.
Such support includes locating sentences in which the designated terms appear in the associated designated syntactic or grammatical role, as well as locating, when contextually appropriate, sentences in which the designated terms appear but where the designated roles are interchanged. For example, as described above, it is contextually appropriate to interchange the grammatical roles of a designated subject and a designated object.
In addition to indexing and searching based on grammatical roles, the Syntactic Query Engine may be implemented to recognize any number of programmable attributes in natural language queries and data sets (described in detail as "preferences" with reference to Figure 15). In one embodiment, these attributes are used to filter the results of a syntactic search. Example attributes include the names of countries, states, or regions, dates, and document sections. One skilled in the art will recognize that an unlimited number of attributes may be defined and may vary across multiple data sets.
For example, one data set may consist of text from a set of encyclopedias. For such a data set, a "volume" attribute may be defined, where there is one volume for each letter of the alphabet. A second data set may be a single book with multiple chapters. A "chapter" attribute may be defined, for the data set, allowing a user to search specific chapters.
Figure 15 is an example screen display illustrating the designation of programmable attributes in a Syntactic Query Engine. A user designates various attributes on the preferences window 1501. The SQE stores these attributes (preferences) when the user selects the Set Preferences button 1502.
The attribute values are used by the SQE as filters when performing subsequent queries. For example, the user may select a specific country as country attribute 1503. When the SQE performs a subsequent natural language query, the results returned are only those sentences found in documents within the data set that relate to the country value specified as country attribute 1503.

A more detailed description of an example SQE illustrating additional user interface screens and example natural language queries and results is included in Appendix A.
An SQE as described may perform multiple functions (e.g., data set parsing, data set storage, natural language query parsing, and data query processing) and typically comprises a plurality of components. Figure 16 is a block diagram of the components of an example embodiment of a Syntactic Query Engine. A Syntactic Query Engine comprises a Query Preprocessor, a Data Set Preprocessor, a Query Builder, a Data Set Indexer, an Enhanced Natural Language Parser ("ENLP"), a data set repository, and, in some embodiments, a user interface. The Data Set Preprocessor 1603 converts received data sets to a format that the Enhanced Natural Language Parser 1604 recognizes. The Query Preprocessor 1610 converts received natural language queries to a format that the Enhanced Natural Language Parser 1604 recognizes. The Enhanced Natural Language Parser ("ENLP") 1604, parses sentences, identifying the syntax and grammatical role of each meaningful term in the sentence and the ways in which the terms are related to one another and transforming the sentences into a canonical form-an enhanced data representation. The Data Set Indexer 1607 indexes the parsed data set and stores it in the data set repository 1608. The Query Builder 1611 generates and executes formatted queries (e.g., SQL statements) against the data set indexed and stored in the data set repository 1608.
In operation, the SQE 1601 receives as input a data set 1602 to be indexed and stored. The Data Set Preprocessor 1603 prepares the data set for parsing by assigning a Document ID to each document that is part of the received data set, performing OCR processing on any non-textual entities that are part of the received data set, and formatting each sentence according to the ENLP format requirements. The Enhanced Natural Language Parser ("ENLP") 1604 parses the data set, identifying for each sentence, a set of terms, each term's part of speech and associated grammatical role and transforming this data into an enhanced data representation. The Data Set Indexer 1607 formats the output from the ENLP and sends it to the data set repository 1608 to be indexed and stored. After a data set is indexed, a natural language query 1609 may be submitted to the SQE 1601 for processing. The Query Preprocessor 1610 prepares the natural language query for parsing. The preprocessing may include, for example, spell checking, verifying that there is only one space between each word in the query, and identifying the individual sentences if the query is made up of more than one sentence. One skilled in the art will recognize that the steps performed by the Data Set Preprocessor or the Query Preprocessor may be modified based on the requirements of the natural language parser. Any preprocessing steps necessary to prepare a data set or a natural language query to be parsed are contemplated for use with techniques of the present invention. The ENLP 1604 then parses the preprocessed natural language query transforming the query into the canonical form and sends its output to the Query Builder. The Query Builder 1611 uses the ENLP 1604 output to generate one or more data queries. Data queries differ from natural language queries in that they are in a format specified by the data set repository, for example, SQL. The Query Builder 1611 may generate one or more data queries associated with a single natural language query. The Query Builder 1611 executes the generated data queries against the data set repository 1608 using well-known database query techniques and returns the data query results as Natural Language Query Results 1612. Note that when the SQE is used within a system that interfaces with a user, the SQE also typically contains a user interface component 1613. The user interface component 1613 interfaces to a user in a manner similar to that shown in the display screens of Figures 4-15.
Figure 17 is a block diagram of the components of an Enhanced Natural Language Parser of an example embodiment of a Syntactic Query Engine. The Enhanced Natural Language Parser ("ENLP") 1701 comprises a natural language parser 1702 and a postprocessor 1703. The natural language parser 1702 identifies, for each sentence it receives as input, the part of speech for each term in the sentence and syntactic relationships between the terms within the sentence. An SQE may be implemented by integrating a proprietary natural language parser into the ENLP, or by integrating an existing off-the-shelf natural language parser, for example, Minipar, available from Nalante, Inc., Falconer End, Edmonton, Alberta, T6R 2V6. The postprocessor 1703 examines the natural language parser 1702 output and, from the identified parts of speech and syntactic relationships, determines the grammatical role played by each term in the sentence and the grammatical relationships between those terms. The postprocessor 1703 then generates an enhanced data representation from the determined grammatical roles and syntactic and grammatical relationships.

Figure 18 is a block diagram of the processing performed by an example Enhanced Natural Language Parser. The natural language parser 1801 receives a sentence 1803 as input, and generates a syntactic structure, such as parse tree 1804. The generated parse tree identifies the part of speech for each term in the sentence and describes the relative positions of the terms within the sentence. The postprocessor 1802 receives the generated parse tree 1804 as input and determines the grammatical role of each term in the sentence and relationships between terms in the sentence, generating an enhanced data representation, such as enhanced sentence representation 1805.
Figure 19 is a block diagram illustrating a graphical representation of an example syntactic structure generated by the natural language parser component of an Enhanced Natural Language Parser. The parse tree shown is one example of a representation that may be generated by a natural language parser. The techniques of the methods and systems of the present invention, implemented in this example in the postprocessor component of the ENLP, enhance the representation generated by the natural language processor by determining the grammatical role of each meaningful term, associating these terms with their determined roles and determining relationships between terms.
In Figure 19, the top node 1901 represents the entire sentence, "YPF of Argentina exports natural gas" Nodes 1902 and 1903 identify the noun phrase of the sentence, "YPF of Argentina," and the verb phrase of the sentence, "exports natural gas," respectively. The branches of nodes or leaves in the parse tree represent the parts of the sentence further divided until, at the leaf level, each term is singled out and associated with a part of speech. A
configurable list of words are ignored by the parser as "stopwords." The stopword list comprises words that are deemed not indicative of the information being sought. Example stopwords are "a," "the," "and," "or," and "but." In one embodiment, question words (e.g., "who," "what," "where," "when," "why,"
"how,"
and "does") are also ignored by the parser. In this example, nodes 1904 and 1905 identify the noun phrase 1902 as a noun, "YPF" and a prepositional phrase, "of Argentina." Nodes 1908 and 1909 divide the prepositional phrase 1905 into a preposition, "of," and a noun, "Argentina." Nodes 1906 and 1907 divide the verb phrase 1903 into a verb, "exports;" and a noun phrase, "natural gas." Nodes 1910 and 1911 divide the noun phrase 1907 into an adjective, "natural," and a noun, "gas."

Figure 20 is a table illustrating an example enhanced data representation generated by the postprocessor component of an Enhanced Natural Language Parser. This example enhanced data representation comprises nine different ways of relating terms within the sentence that was illustrated in the parse tree of Figure 19. The ways chosen and the number of ways used is based upon a set of heuristics, which may change as more knowledge is acquired regarding syntactic searching. In addition, one skilled in the art will recognize that the selected roles and relationships to be stored may be programmatically determined. In the example shown, row 2001 represents the relationship between "Argentina" as the subject of the sentence and "YPF"
as a modifier of that subject. The SQE determines this relationship based on the location of the preposition, "of' between the two related terms in the sentence. Rows 2002 and 2003 represent the relationship between "YPF" as the subject of the sentence and "natural gas" and "gas," respectively, as objects = of the sentence. Similarly, rows 2004 and 2005 represent the relationship between "Argentina" as the subject of the sentence and "natural gas" and "gas,"
respectively, as objects of the sentence. Rows 2006 and 2007, respectively, represent the relationship between the two nouns, "YPF" and "Argentina," each used as a subject and the verb "export." Rows 2008 and 2009 represent the relationship between the verb, "export" and the noun phrase, "natural gas" and the noun, "gas," each used as an object, respectively.
The enhanced data representation is indexed and stored to support the syntactic search functionality of the SQE. The original sentence "YPF of Argentina exports natural gas," will be returned by the SQE as a query result in response to any submitted query that can be similarly represented.
For example, "What countries export gas?," "Does Argentina import gas?," and "Is Argentina an importer or exporter of gas?" will all cause the SQE to return to the represented sentence as a result.
The Syntactic Query Engine performs two functions to accomplish effective syntactic query processing. The first is the parsing, indexing, and storage of a data set. The second is the parsing and subsequent execution of natural language queries. These two functions are outlined below with reference to Figures 21 and 22.
Figure 21 is an example block diagram of data set processing performed by a Syntactic Query Engine. As an example, documents that make up a data set 2101 are submitted to the Data Set Preprocessor 2102 (e.g., component 1603 in Figure 16). If the data set comprises multiple files, as shown in Figure 21, the Data Set Preprocessor 2102 creates one tagged file containing the document set. The Data Set Preprocessor 2102 then dissects that file into individual sentences and sends each sentence to the ENLP 2104 (e.g., component 1604 in Figure 16). After the ENLP 2104 parses each received sentence, it sends the generated enhanced data representation of each sentence to the Data Set Indexer 2105 (e.g., component 1607 in Figure 16). The Data Set Indexer 2105 processes and formats the ENLP output, distributing the data to formatted text files. The text files are typically bulk loaded into the data set repository 2107 (e.g., component 1608 in Figure 16).
One skilled in the art will recognize that other methods of data set preprocessing, indexing, and storing may be implemented in place of the methods described herein, and that such modifications are contemplated by the methods and systems of the present invention. For example, the Data Set Indexer may insert data directly into the data set repository instead of generating text files to be bulk loaded.
After indexing and storing a data set, the SQE may perform its second function, processing natural language queries against the stored data set. Figure 22 is an example block diagram of natural language query processing performed by a Syntactic Query Engine. As an example, a natural language query 2201 is submitted to the Query Preprocessor 2202 of the SQE.
The Query Preprocessor 2202 (e.g., component 1610 in Figure 16) prepares the natural language query for parsing. The preprocessing step may comprise several functions, examples of which may be spell checking, text case verification and/or alteration, and excessive white-space reduction. The specific preprocessing steps performed by the Query Preprocessor 2202 are typically based on the format requirements of the natural language parser component of the ENLP. The SQE sends the preprocessed query to the ENLP 2204 (e.g., component 1604 in Figure 16). The ENLP parses the query, generating an enhanced data representation of the query 2205, which is sent to the Query Builder 2206 (e.g., component 1611 in Figure 16). This enhanced data representation identifies grammatical roles of and relationships between terms in the query. Using the enhanced data representation 2205, the Query Builder 2206 generates one or more data queries 2207 and executes them against the data set repository 2208. The data query results 2209 are returned to the Query Builder to be returned to the user as natural language query results 2210.
Figure 23 is an example block diagram of a general purpose computer system for practicing embodiments of a Syntactic Query Engine. The computer system 2301 contains a central processing unit (CPU) 2302, Input/Output devices 2303, a display device 2304, and a computer memory (memory) 2305. The Syntactic Query Engine 2320 including the Query Preprocessor 2306, Query Builder 2307, Data Set Preprocessor 2308, Data Set Indexer 2311, Enhanced Natural Language Parser 2312, and data set repository 2315, preferably resides in memory 2305, with the operating system 2309 and other programs 2310 and executes on CPU 2302. One skilled in the art will recognize that the SQE may be implemented using various configurations. For example, the data set repository may be implemented as one or more data repositories stored on one or more local or remote data storage devices. Furthermore, the various components comprising the SQE
may be distributed across one or more computer systems including handheld devices, for example, cell phones or PDAs. Additionally, the components of the SQE may be combined differently in one or more different modules. The SQE
may also be implemented across a network, for example, the Internet or may be embedded in another device.
As described with reference to Figure 21, the Data Set Preprocessor 2102 performs two overall functions - building one or more tagged files from the received data set files and dissecting the data set into individual objects, for example, sentences. These functions are described in detail below with respect to Figures 24-26. Although Figures 24-26 present a particular ordering of steps and are oriented to a data set of objects comprising documents and queries comprising sentences, one skilled in the art will recognize that these flow diagrams, as well as all others described herein, are examples of one embodiment. Other sequences, orderings and groupings of steps, and other steps that achieve similar functions, are equivalent to and contemplated by the methods and systems of the present invention. These include steps and ordering modifications oriented toward non-textual objects in a data set, such as audio or video objects.
Figure 24 is an example flow diagram of the steps performed by a build file routine within the Data Set Preprocessor component of a Syntactic Query Engine. The build file routine generates text for any non-textual entities within the dataset, identifies document structures (e.g., chapters or sections in a book), and generates one or more tagged files for the data set. In one embodiment, the build file routine generates one tagged file containing the entire data set. In alternate embodiments, multiple files may be generated, for example, one file for each object (e.g., document) in the data set. In step 2401, the build file routine creates a text file. In step 2402, the build file routine determines the structure of the individual elements that make up the data set.
This structure can be previously determined, for example by a system administrator and indicated within the data set using, for example, HTML tags.
For example, if the data set is a book, the defined structure may identify each section or chapter of the book. In step 2403, the build file routine tags the beginning and end of each document (or section, as defined by the structure of the data set). In step 2404, the routine performs OCR processing on any images so that it can create searchable text (lexical units) associated with each image. In step 2405, the build file routine creates one or more sentences for each chart, map, figure, table, or other non-textual entity. For example, for a map of China, the routine may insert a sentence of the form, This is a map of China.
In step 2406, the build file routine generates an object identifier (e.g., (a Document ID) and inserts a tag with the generated identifier. In step 2407, the build file routine writes the processed document to the created text file.
Steps 2402 through 2407 are repeated for each file that is submitted as part of the data set. When there are no more files to process, the build, file routine returns.
Figure 25 illustrates an example format of a tagged file built by the build file routine of the Data Set Preprocessor component of a Syntactic Query Engine. The beginning and end of each document in the file is marked, respectively, with a <DOC> tag 2501 and a </DOC> tag 2502. The build file routine generates a Document ID for each document in the file. The Document ID is marked by and between a <DOCNO> tag 2503 and a </DOCNO> tag 2504. Table section 2505 shows example sentences created by the build file routine to represent lexical units for a table embedded within the document.
The first sentence for Table 2505, This table shows the Defense forces, 1996, is generated from the title of the actual table in the document. The remaining sentences shown in Table 2505, are generated from the rows in the actual table in the document. Appendix B is a portion of a sample file created by the build-file routine. One skilled in the art will recognize that various processes and techniques may be used to identify documents within the data set and to identify entities (e.g., tables) within each document. The use of equivalent and/or alternative processes and markup techniques and formats, including HTML, XML, and SGML and non-tagged techniques are contemplated and may be incorporated in methods and systems of the present invention.
The second function performed by the Data Set Preprocessor component of the SQE is dissecting the data set into individual objects (e.g., sentences) to be processed. Figure 26 is an example flow diagram of the steps performed by the dissect file routine of the Data Set Preprocessor component of a Syntactic Query Engine. In step 2601, the routine extracts a sentence from the tagged text file containing the data set. In step 2602, the dissect file routine preprocesses the extracted sentence, preparing the sentence for parsing. The preprocessing step may comprise any functions necessary to prepare a sentence according to the requirements of the natural language parser component of the ENLP. These functions may include, for example, spell checking, removing excessive white space, removing extraneous punctuation, and/or converting terms to lowercase, uppercase, or proper case. One skilled in the art will recognize that any preprocessing performed to put a sentence into a form that is acceptable to the natural language parser can be used with techniques of the present invention. In step 2603, the routine sends the preprocessed sentence to the ENLP. In step 2604, the routine receives as output from the ENLP an enhanced data representation of the sentence. In step 2605, the dissect file routine forwards the original sentence and the enhanced data representation to the Data Set Indexer for further processing.
Steps 2601-2605 are repeated for each sentence in the file. When no more sentences remain, the dissect file routine returns.
The Data Set Indexer (e.g., component 2105 in Figure 21) prepares the enhanced data representations generated from the data set (e.g., the enhanced sentence representation illustrated in Figure 20) to be stored in the data set repository. In one example embodiment, the Data Set Indexer initially stores the enhanced data representation data in generated text files before loading the enhanced data representations into the data set repository, for example, using a bulk loading function of the data set repository. One skilled in the art will recognize that any of a wide variety of well-known techniques may be implemented to load a data set (including the generated enhanced data representations) into the data set repository. For example, another technique for loading writes each record to the data set repository as it is generated instead of writing the records to text files to be bulk loaded.
As described, the SQE uses the ENLP to parse data that is being stored and indexed, as well as to parse queries (e.g., natural language queries) that are submitted against a stored indexed data set. Similar to the preprocessing performed before parsing a data set, the SQE performs preprocessing on submitted queries.
Figure 27 is an example flow diagram of the steps performed by a Syntactic Query Engine to process a natural language query. In step 2701, the Query Preprocessor prepares the natural language query for the ENLP. In step 2702, the ENLP parses the preprocessed natural language query and generates an enhanced data representation of the query. In step 2703, the Query Builder, generates and executes data queries (e.g., SQL statements) based on the ENLP output (the enhanced data representation).
Figure 28 is an example flow diagram of the steps performed by a preprocess_natural_language_query routine of the Query Preprocessor component of a Syntactic Query Engine. This routine preprocesses the query according to the requirements of the ENLP. Although described with respect to certain modifications to the query, one skilled in the art will recognize that many other preprocessing steps are possible, yield equivalent results, and are contemplated by the methods and systems of the present invention. In step 2801, the routine separates the query into multiple sentences if necessary, based on punctuation (e.g., ";", ":", "?", "!", and ".", where the "." is not part of an abbreviation). In step 2802, the routine removes spaces between any terms that are separated by hyphens. For example, "seventeen - year - old" is converted to "seventeen-year-old". In step 2803, the routine removes extraneous spaces from the query, leaving the words separated by one. space.
In step 2804, the routine spell-checks the routine. In one embodiment, the routine automatically corrects any detected spelling errors. In another embodiment, the routine requests an indication of whether and how each spelling error is to be corrected.
The enhanced data representations describe one or more ways in which the meaningful terms of an object (e.g., a sentence) may be related.
(See description with reference to Figure 20.) As described earlier, enhanced data representations of the data in the data set are stored in the data set repository, and enhanced data representations are used to generate data queries when the SQE processes a natural language query. The enhanced data representations describe the relationships between meaningful terms within each sentence, as determined by the ENLP. Each meaningful term may be associated with one or more syntactic or grammatical roles. Redundancy is not discouraged, because it may yield additional results. For example, a term may be part of two described relationships that are associated with different grammatical roles, e.g., a term may appear as both an "object" and a "noun modifier." The relationships that are selected and represented are heuristically determined as those relationships that will tend to generate additional relevant results. A current embodiment uses the specific relationships described in Figure 20 and shown as stored in the data repository in Figure 29 and described by Figures 31-36. However, one skilled in the art will recognize that other relationships and grammatical roles may be described in the enhanced data representation, and the determination of these roles and relationships relates to the types of objects in the data set.
Figure 29 is an example block diagram showing the structure of an example Data Set Repository of a Syntactic Query Engine. The set of stored tables represent the roles and relationships between the determined meaningful terms for each parsed sentence of each document in the data set, as determined by the ENLP, and correspond to the enhanced data representations generated. The Subject Table 2901 stores one record for each determined subject/verb combination in each parsed sentence in each document. The Object Table 2902 stores each determined object/verb combination for each parsed sentence in each document. The Subject Object table stores each identified subject/verb/object combination for each parsed sentence. In an alternate embodiment, the Subject_Object table is implemented as a view that is a dynamically maintained join between the subject and object tables, joined on the verb, Document ID, and Sentence ID
fields. The Preposition table 2903 stores each verb/preposition/verb modifier combination for each parsed sentence in each document. The Noun - Modifier table 2904 stores each noun/noun modifier combination in each parsed sentence in each document. A noun modifier may be a noun, a noun phrase, or an adjective. The Sentence table 2905 stores the actual text for each sentence in each document. In addition, the Sentence table 2905 stores the Governing Verb, Related Subject, and Related Object of each sentence, as identified by the postprocessor component of the ENLP. The governing verb is the main verb in a sentence. The related subject and related object are the subject and object, respectively, related to the governing verb. For example, in the sentence The girl walks the dog.
"walks" is the governing verb, "girl" is the related subject, and "dog" is the related object. These fields may be left blank if the postprocessor is unable to determine the governing verb, related subject, or related object. The Date, Money Amount, Number, Location, Person, Corporate Name, and Organization fields of the Sentence table 2905 store binary indicators of whether or not the sentence contains a term that the SQE recognizes as an attribute of the attribute type indicated by the field name. The Attributes table 2906 is an optional table that stores the values of specific data types found within each document. As described above, attributes are settable parameters and may include, for example, names of countries, states, or regions, document sections, and dates. As described with respect to Figure 15, these attributes may be used by the SQE to filter data query results. The optional Parent table 2907 is used to indicate a hierarchical structure of objects in the data set. This allows a section, subsection, chapter, or other document portion to be identified by the Data Set Indexer component of a Syntactic Query Engine as a "document", while storing the relationships between multiple documents or document portions in a hierarchical fashion.
Figure 30 is an example flow diagram of the steps performed by a parse-sentence routine of the Enhanced Natural Language Parser component of a Syntactic Query Engine. In summary, the routine parses the designated sentence or phrase, identifies the grammatical roles of terms within the sentence, generates an enhanced data representation of the sentence, and constructs an output string. In step 3001, the natural language parser component of the ENLP parses the preprocessed sentence. In step 3002, the parse-sentence routine calls the determine_grammatical_roles subroutine (discussed in detail with reference to Figure 31) to determine the grammatical roles of and relationships between terms within the sentence. In step 3004, the routine calls the construct-output-string routine (discussed in detail with reference to Figure 37) to format the generated enhanced data representation for further processing.

Figure 31 is an example flow diagram of the steps performed by a determine grammatical_roles subroutine within the parse-sentence routine of the Enhanced Natural Language Parser. In summary, the routine converts terms, as appropriate, to a standard form (e.g., converting all verbs to active voice), identifies attributes (e.g., names of countries) within the sentence, determines the grammatical roles of meaningful terms in the sentence, and initiates the generation of an enhanced data representation. In step 3101, the routine converts each word that is identified as a subordinate term to an associated governing term. Subordinate terms and governing terms are terms that are related in some way, similar to multiple tenses of a verb. For example, the governing term "Ireland" is associated with subordinate terms "Irish,"
"irish,"
"Irishman," "irishman," "Irishwoman," "irishwoman," and "ireland." Converting subordinate terms to an associated governing term ensures that a standard set of terms is used to represent data, for example relating multiple terms to a country, as shown in the example above, thus increasing potential contextual matches. Subordinate terms that are identified as occurring within a noun phrase, for example, "Korean," occurring with the noun phrase "Korean War,"
are not converted to the associated governing term to preserve the specific meaning of the noun phrase. For example, "Korean War" has a specific meaning that is not conveyed by the terms "Korea" and "war" independently.
Appendix C is an example list of subordinate terms and their associated governing terms for an example SQE. Typically, this information is stored by the SQE as a configurable list that is related to the data set, preferably initialized when the SQE is installed, for example by a system administrator.
In step 3102, the determine_grammatical_roles routine converts the verbs within the sentence to active voice. This ensures that the SQE will identify data within the data set in response to queries regardless of verb tense.
(See the example described with reference to Figure 1.) In step 3103, the routine identifies attribute values, which can later be. used to filter search results.
Steps 3104-3111 are described with reference to an example query, Does Argentina import or export natural gas from the south of Patagonia? (Q) .29 Figure 36A is a graphical representation of an example parse tree generated by a natural language parser component of an Enhanced Natural Language Parser. The example parse corresponds to this query. An enhanced data representation of the example query is shown in Figure 36B.
In steps 3104-3111, the determine_grammatical_roles routine builds the data structures that correspond to the enhanced data representation.
Specifically, in step 3104, the routine generates Subject data structures identifying terms that may be the subject of the sentence (similar to the Subject table described with reference to Figure 29). For example, given query Q
above, Table I shows the generated Subject structures.

Table 1 Subject Verb Argentina import Argentina export The steps performed in generating the Subject structures are described in detail with reference to Figure 32. In step 3105, the routine generates Object data structures identifying terms that may be the object of the sentence (similar to the Object table described with reference to Figure 29). For example, given query Q above, Table 2 shows the generated Object structures.

Table 2 Verb Object import gas import natural gas export gas export natural gas The steps performed in generating the Object structures are described in detail with reference to Figure 33. In step 3106, the routine generates Preposition structures that are similar to the structure of the Preposition table described with reference to Figure 29. For example, given query Q above, Table 3 shows the generated Preposition structures.

Table 3 Verb Preposition Modifier import from south import from Patagonia export from south export from Patagonia In step 3107, the routine generates Subject/Object structures to represent the ways in which terms that are identified as potential subjects and objects of a sentence may be related. Each subject is paired with each object that is associated with the same verb. In addition, each subject is paired with each modifier in the Preposition structure that is associated with the same verb.
For example, given query Q above, Table 4 shows the generated Subject/Object structures.

Table 4 Subject Object Argentina gas Argentina natural gas Argentina south Argentina Patagonia In step 3108, the routine generates Subject/Modifier structures to describe the relationships between related nouns, noun phrases, and adjectives. The generate-subject-modifier routine is described in detail with reference to Figure 34.
In step 3109, the routine determines whether or not the sentence being parsed is a query (as opposed to an object of a data set being parsed for storing and indexing). If the designated sentence or phrase is a query, the routine continues in step 3110, else it returns. In steps 3110 and 3111, the routine generates Generalized Subject/Object structures and Generalzied Subject/Modifier structures. These structures may be used by the Query Builder to generate additional data queries to return results that may be contextually relevant to the submitted natural language query. The generate_generalizedsubject object routine is described in detail with reference to Figure 35. The Generalized Subject/Modifier structures are generated from previously generated Subject/Object structures. The object is designated as the subject in the new Generalized Subject/Modifier structure, and the subject is designated as the modifier in the new Generalized Subject/Modifier structure.
Figure 32 is an example flow diagram of the steps performed by a generate _subject structure subroutine of the determine grammatical_roles routine. This routine identifies, for each verb in the sentence, each noun, noun phrase, or adjective that may be a subject associated with the designated verb and stores it in a Subject structure. In step 3201, the routine searches for all verbs in the syntactic data representation (e.g., a parse tree) generated by the natural language parser. In step 3202, the routine sets the current node to an identified verb. In steps 3203-3206, the routine loops searching for all terms that are potentially subjects related to the identified verb. Specifically, in step 3203, the routine moves toward the beginning of the sentence (e.g., to the next leaf to the left in the parse tree from the current node). In step 3204, the routine examines the node and determines whether or not it is a noun, a noun phrase, or an adjective. If the routine determines that the current node is a noun, a noun phrase, or an adjective, then it is identified as a subject and the routine continues in step 3205, else it continues in step 3206. In step 3205, the routine creates a Subject structure identifying the current node as the subject and the previously identified verb (the current verb) as the verb. Additionally, if the current node is a noun phrase, the routine creates a Subject structure identifying the tail of the noun phrase (e.g., "gas" of the noun phrase "natural gas") as a subject associated with the current verb. The routine then continues searching for additional subjects related to the current verb by looping back to step 3203. In step 3206, the routine examines the current node and determines whether or not it is the left-most leaf or a verb from a different verb phrase. If the current node is not the left-most leaf or a verb from a different verb phrase, the routine continues searching for additional subjects related to the current verb by returning to the beginning.of the loop, in step 3203, else it continues in step 3207. In step 3207, the routine determines whether or not all of the identified verbs have been processed. If there are more verbs to process, the routine continues in step 3202 and begins another loop with the new verb as the current node, otherwise it returns.
Figure 33 is an example flow diagram of the steps performed by a generate-object-structure subroutine of the determine_grammatical_roles routine. This routine identifies, for each verb in the sentence, each noun, noun phrase, or adjective that may be an object associated with the designated verb and stores it in an Object structure. In step 3301, the routine searches for all verbs in the syntactic data representation generated by the natural language parser. In step 3302, the routine sets the current node to an identified verb.
In steps 3303-3306, the routine loops searching for all terms that are potentially objects related to the identified verb. Specifically, in step 3303, the routine moves toward the end of the sentenct (e.g., to the next leaf to the right in the parse tree from the current node). In step 3304, the routine examines the node and determines whether or not it is a noun, a noun phrase, or an adjective. If the routine determines that the current node is a noun, a noun phrase, or an adjective, then it is identified as an object and the routine continues in step 3305, else it continues in step 3306. In step 3305, the routine creates an Object structure identifying the current node as the object and the previously identified verb (the current verb) as the verb. Additionally, if the current node is a noun phrase, the routine creates an Object structure identifying the tail of the noun phrase (e.g., "gas" of the noun phrase "natural gas") as the object associated with the current verb. The routine then continues searching for additional objects related to the current verb by looping back to step 3303.
In step 3306, the routine examines the current node and determines whether or not it is the right-most leaf, a verb from a different verb phrase, or a preposition other than "of." If the current node is not the right-most leaf, a verb from a different verb phrase, or a preposition other than "of," the routine continues searching for additional objects related to the current verb by returning to the beginning of the loop in step 3303, else it continues in step 3307. In step 3307, the routine determines whether or not all of the identified verbs have been processed. If there are more verbs to process, then the routine continues in step 3302, and begins another loop with the new verb as the current node, otherwise it returns.
Figure 34 is an example flow diagram of the steps performed by a generate-subject-modifier subroutine of the determine_grammatical_roles routine. This routine identifies, for each noun in the sentence, each other noun or adjective that may be related to the designated noun and stores it in a Subject/Modifier structure. In step 3401, the routine searches for all nouns and noun phrases in the syntactic data representation (e.g., a parse tree) generated by the natural language parser. In step 3402, the routine sets the current node to an identified noun or noun phrase. In steps 3403-3406, the routine loops searching for all terms that may be related to the identified noun.
Specifically, in step 3403, the routine moves toward the beginning of the sentenct (e.g., to the next leaf to the left in the parse tree from the current node). In step 3404, the routine examines the node and determines whether or not it is a noun, a noun phrase, or an adjective. If the routine determines that the current node is a noun, a noun phrase, or an adjective, then it is identified as a modifier and the routine continues in step 3405, else it continues in step 3406. In step 3405, the routine creates a Subject/Modifier structure identifying the current node as the modifier and the previously identified noun as the subject. Additionally, if the current node is a noun phrase, the routine creates a Subject/Modifier structure identifying the tail of the noun phrase (e.g., "gas" of the noun phrase "natural gas") as the modifier associated with the current noun. The routine then continues searching for additional modifiers related to the current noun by looping back to step 3403. In step 3406, the routine examines the current node and determines whether or not it is the preposition, "of." If the current node is the preposition "of," the routine continues searching, by returning to the beginning of the loop, in step 3403, else it continues in step 3407. In step 3407, the routine determines whether or not all of the identified nouns have been processed. If there are more nouns to process, the routine continues in step 3402 and begins another loop with the new noun as the current node, otherwise it returns.
As described with reference to Figure 31, the determine_grammatical_roles routine calls the generate-generalized _subject object and generate_generalized subject_modifier subroutines (steps 3110 and 3111 of Figure 31) when the sentence being parsed is a query instead of an object in a data set being indexed for storage.
Figure 35 is an example flow diagram of the steps performed by a generate-generalized-subject object subroutine of the determine_grammatical_roles routine. This routine identifies, for each noun in the sentence, each other noun or adjective that may be an object related to the designated noun and stores it in a Subject/Object structure. In step 3501, the routine searches for all nouns and noun phrases in the syntactic data representation (e.g., a parse tree) generated by the natural language parser.
In step 3502, the routine sets the current node to an identified noun (or noun phrase). In steps 3503-3509, the routine loops searching for all terms that may be an object related to the identified noun. Specifically, in step 3503, the routine moves toward the end of the sentence (e.g., to the next leaf to the right in the parse tree from the current node). In step 3504, the routine examines the node and determines whether or not it is a preposition other than "of." If the routine determines that the current node is a preposition other than "of,"
then it continues in step 3505, else it continues in step 3508. In step 3508, the routine examines the node and determines whether or not it is a verb or the last node.
If the routine determines that the current node is a verb or the last node, then it continues in step 3510, else it continues searching, by returning to the beginning of the loop, in step 3503. In step 3505, the routine moves toward the end of the sentence (e.g., to the next leaf to the right in the parse tree from the current node). In step 3506, the routine examines the current node and determines whether or not it is a noun, a noun phrase, or an adjective. If the routine determines that the current node is a noun, a noun phrase, or an adjective, then it is identified as an object and the routine continues in step 3507, else it continues in step 3509. In step 3507, the routine creates a Generalized Subject/Object structure identifying the current node as the object and the previously identified noun as the subject. Additionally, if the current node is a noun phrase, the routine creates a Subject/Object structure identifying the tail of the noun phrase (e.g., "gas" of the noun phrase "natural gas") as the object associated with the current "subject" node. After creating one or more Generalized Subject/Object structures, the routine continues looping in step 3505, looking for any other nouns, noun phrases, or adjectives to relate to the identified "subject" noun. In step 3509, the routine determines whether or not the current node is the preposition "of." If the current node is the preposition "of," then the routine continues looping in step 3505, else it continues in step 3510. In step 3510, the routine determines whether or not all of the identified nouns and noun phrases have been processed. If there are more nouns or noun phrases to process, the routine continues in step 3502 and begins another loop with the new noun as the current node, otherwise it returns.
Figure 36B is an illustration of an enhanced data representation of an example natural language query generated by an Enhanced Natural Language Parser. The natural language query, Does Argentina import or export natural gas from the south of Patagonia?

(query Q) is described by the roles and relationships shown in rows 1-28. Rows 1 and 2 are generated by the generate-subject-structure subroutine described with reference to Figure 32. Rows 3-6 are generated by the generate_object_structure subroutine described with reference to Figure 33.
Rows 7-10 are generated by the generate Preposition structures routine described with reference to step 3106 of Figure 31. Rows 11-14 are generated by the generate Subject/Object structures routine described with reference to step 3107 of Figure 31. Row 15 is generated by the generate Subject/Modifier structures routine described with reference to step 3108 of Figure 31. Rows 16-20 are generated by the gene rate_generalized subject object routine described with reference to Figure 35. Specifically, rows 16-19 are generated in step 3507 of Figure 35. Row 20 is generated in step 3511 of Figure 35. Rows 21-28 are generated by the generate Generalized Subject/Modifier structures routine described with reference to step 3111 of Figure 31.
At this point, the ENLP has determined the syntax, grammatical roles, and relationships between terms of the sentence. The ENLP has also generated an enhanced data representation for the sentence with all of the structures described with reference to Figure 31. The ENLP next constructs an output string (step 3003 of Figure 30) that will be used by the Data Indexer to index and store the enhanced data representation when the SQE is processing an object of the data set, or by the Query Builder to generate data queries that will be executed against the data set repository.
An output string generated by an example ENLP is of the form:
{Parameter String};{Parameter String}; ... ;{Parameter String}l{Attribute List};{Verb List};{Word List};{ Sentence}
Each {Parameter String} is a set of six single quoted parameters, separated by semi-colons, of the form:

'subject';'verb';'preposition';'verb modifier';'object';'noun modifier' where a wildcard character, for example "#" or "*" may be substituted for one or more of the parameters.
The {Attribute List} is a list of <Attribute Name;Attribute Value> pairs, separated by semi-colons, for example:

country; France; country; Japan The {Verb List} is a list of all of the identified verbs in the sentence separated by semi-colons. It includes even the verbs that appear in the {Parameter String}
parameters.
The {Word List} is a distinct list of all the words found in the Parameter Strings that are not also Attribute Values in the Attribute List separated by semi-colons.
The {Sentence} is the sentence that the ENLP processes after any preprocessing that may include modifying the text case and correcting spelling.
Figure 37 is an example flow diagram of the steps performed by a construct output string routine of the Enhanced Natural Language Parser.
This routine sorts the generated parameter sets that comprise the enhanced data representation of the natural language query based on which sets are most likely to generate data queries with contextually accurate results. The routine then constructs an output string of the format described. In step 3701, the routine generates parameter strings from the structures generated as described with reference to steps 3104-3111 of Figure 31. In step 3702, the routine sorts the generated parameter strings, preferably in order of increasing ambiguity of terms, such that the parameter strings comprising terms with less ambiguity (more apt to return contextually accurate results) rank higher than those comprising terms with more ambiguity (less apt to return contextually accurate results). Although any method or combination of methods may be used to order/sort the generated parameter strings, two example sorting methods assign a weight to each generated parameter string based on a determination of term ambiguity.
Using the first method, the SQE assigns a weight to each parameter string based on a, preferably previously stored, Inverse Document Frequency ("IDF") of each parameter. The IDF of a particular parameter is equal to the inverse of the number of times that particular term appears in the data set. For example, a word that appears only one time in a data set has an IDF value of 1.(1 divided by 1), while a word that appears 100 times in a data set has an IDF value of 0.01 (1 divided by 100). In one embodiment, the weight assigned to a parameter string is equal to the sum of the IDF values of each parameter in the string. Terms that are not found in the data set are assigned an IDF of -1. In this embodiment, the parameter strings comprising the terms that appear least frequently in the data set are given a higher weight because they are most apt to return results pertinent to the natural language query.

A second method may be employed by an example SQE to weight the parameter strings according to the polysemy of each parameter.
The polysemy of a term is the number of meanings that the term has. The weight assigned to each parameter string is equal to the inverse of the sum of the polysemy values for each parameter in the string. Polysemy values may be obtained for example from a dictionary service, an example of which is WordNet. One skilled in the art will recognize that any such mechanism for determining polysemy values may be used. According to convention, the minimum polysemy value is 1 (indicating that a word has only one meaning). In one embodiment of the SQE, if a polysemy value cannot be determined for a word, the SQE assigns it a polysemy value of 0.5 (indicating that the word likely has a context-specific meaning). In this embodiment, the parameter strings comprising the terms with the least ambiguity of meaning (the lower polysemy values) are given a higher weight because they are most apt to return pertinent results to the natural language query.
In step 3703, the routine adds the ordered parameter strings to the output string. When used to parse a query (not to index an object of the data set) these parameter strings are subsequently used by the Query Builder to generate data queries (e.g., SQL queries). In an alternate embodiment, in order to limit the number of data queries that will be generated, a subset of the ordered parameter strings are added to the output string. In one embodiment, the first n parameter strings are added where n is a configurable number. In another embodiment, when a weight is assigned to each parameter string, a percent value of the maximum assigned weight may be used to limit the parameter strings that are included in the output string. For example, if the highest weight assigned is 10, the SQE may use 70% as a limit, including in the output string only those parameter strings that are assigned a weight of at least 7 (i.e., 70% of the maximum assigned weight). One skilled in the art will recognize that any limiting technique may be used to restrict the number of parameter strings included in the output string if it is desirable to limit the number of data queries. In step 3704, the routine adds any identified attribute values to the output string, according to the described output string format.
The identified attribute values may be used by the Query Builder to filter the data query results. In step 3705, the routine adds a list of identified verbs to the output string, according to the described output string format. In step 3706, the routine adds to the output string a list of. the words that are present in the parameter strings and are not in the list of attribute values. In step 3707, the routine adds the sentence to the output string. Steps 3705-3707 are performed when processing a query to add additional data to the output string that may be used by the Query Builder to generate additional data queries in the event that the data queries generated based on the standard parameter sets do not yield a sufficient number of results.
When the SQE is indexing a data set, the described ENLP output is forwarded to the Data Indexer Component of the SQE to be stored in the data set repository. Figure 38 is an example flow diagram of the steps performed by an index_data routine of the Data Indexer component of a Syntactic Query Engine. In step 3801, the routine creates one text file for each table in the data set repository. In step 3802, the routine assigns a Sentence identifier (e.g.
Sentence ID) to the parsed sentence. In step 3803, the routine writes data, as appropriate, to each text file based on the received ENLP output. The described output parameter strings are used to populate the text files that are bulk loaded into the data repository. Steps 3802 and 3803 are repeated for each enhanced data representation received from the ENLP. The specific format of the text files is typically dictated by the bulk loading requirements of the software used to implement the data set repository.
When the SQE is processing a query (as opposed to indexing a data set), after parsing the query and forwarding the ENLP out to the Query Builder, the Query Builder generates and executes data queries against the data repository. Figures 39A and 39B are example flow diagrams of the steps performed by a build_query routine within the Query Builder component of a Syntactic Query Engine. The routine executes once for each designated parameter string (output by the ENLP) and generates and executes one or more data queries against the data set repository based on the values of the parameters that make up the designated parameter string.
Specifically, in step 3901, the build_query routine examines the designated parameters to make a preliminary determination regarding the source of the natural language query. As described with reference to Figures 4 and 10, respectively, the SQE supports both general searches and advanced searches. In the example embodiment, general searches return sentences;
advanced searches return a list of verbs or other designated parts of speech or grammatical roles that can be further used to search for sentences. The steps performed by the build_query routine differ depending on the source of the natural language query. The advanced search functionality of the example embodiment described allows natural language queries to be submitted that designate a subject and/or an object and retrieve one or more verbs. The steps performed by the build_query routine in alternate embodiments may vary depending on the syntactic and grammatical roles that can be designated within the advanced search functionality. One skilled in the art will understand how to modify the routine for a specific SQE implementation. If the designated parameter string has parameters that are only a subject and/or an object (with all of the other parameters wildcards), the routine continues in step 3904, else it continues in step 3902 to build and execute a data query, having determined that the natural language query originated from the general search functionality.
In step 3902, the build query routine builds and executes a single data query based on the parameters in the designated parameter string and returns resultant sentences from the data set repository. In step 3904, if the parameters of the designated string are only a subject and/or an object, then the routine builds and executes a data query, based on the subject and/or object parameters, that returns a related verb list. The related verb list comprises distinct verbs and includes a frequency count of the number of times each verb appears in sentences within the data set. The routine temporarily stores the related verb list for later use. In step 3905, the routine determines whether or not the natural language query was submitted as an advanced search, and, if so, continues in step 3906, else continues in step 3909. In step 3906, the routine determines whether or not both a subject and an object are designated.
If both are designated, the routine continues in step 3907, else it returns the related verb list (the results of the query executed in step 3904). In step 3907, the routine builds and executes a data query, based on the designated subject and object in reverse roles (i.e., the designated subject as the object and the designated object as the subject), that returns a related verb list (as described in step 3904), and returns the related.verb lists resulting from steps 3904 and 3907.
If, in step 3905 the routine determines that the natural language query was not submitted through an advanced search, then in steps 3909-3917 the routine generates and executes a series of data queries that attempt to locate objects in the data set in a heuristic manner based upon the subject and/or object of the designated parameter string and verbs that are similar to the verbs specified in the natural language query. In particular, the routine generates and executes data queries based upon the designated subject and/or object in combination with (1) the requested verbs; (2) verbs that are entailed from the requested verbs; and (3) verbs that are related to the requested verbs, such as those produced in the related verb list resulting from step 3904. If these queries do not generate sufficient results (which is preferably modifiable), then the routine executes the same set of data queries with the subject and/or object appearing in inverse grammatical roles. In addition, weights are associated with the resultant objects (e.g., sentences) to indicate from which data query they came, so that the overall result output can be ordered in terms of what results are most likely to address the initial query.
These weights are preferably configurable, for example, by a system administrator of the SQE.
Specifically, in step 3909, the routine builds and executes a data query using the designated subject and/or object and any verb that appears in the initial (natural language) query (a requested verb). Because a search was already performed for verbs that correspond to the designated subject and/or object in step 3904, the results of the step 3904 data query can be used to streamline the data query of step 3909. In particular, a query is preferably generated and executed using the verbs that appear in both the {Verb List) of the output string generated by the ENLP and the related verb list returned by the query in step 3904 (the intersection of these two lists). These comprise the verbs that are in the initial query that have also been found to be present in the data set in objects that contain a similar subject and/or object. (Since the verbs in the {Verb List) include all of the verbs present in the natural language query, any designated parameter string that also includes a verb as one of the parameters will be accounted for also in the {Verb List). ) The routine associates a default weight with the resulting sentences indicating that these sentences came from a match of verbs present in the initial query.
In step 3910, the routine builds and executes a data query using the designated subject and/or object and verbs that are entailed from the requested verbs (verbs that appear in the initial query). As in step 3909, the results of the data query of step 3904 can be used to streamline this data query.
In particular, a query is preferably generated and executed using the verbs that entail each of the verbs that appear in both the {Verb List) of the output string generated by the ENLP and the related verb list returned by the query in step 3904 (the intersection of these two lists). Entailed verbs are available through existing applications, for example, WordNet, and are verbs that, based on meaning, are necessarily required prior to an action described by another verb.
For example, given the verb, "snore," "sleep" is an entailed verb because (typically) sleeping occurs prior to snoring. The routine associates a weight referred to as an "entailed weight" with the resulting sentences indicating that these sentences came from a match of verbs that entail from verbs present in the initial query.
In step 3911, the routine builds and executes a data query using the designated subject and/or object and verbs that are related to the requested verbs (verbs that appears in the initial query). In one embodiment, the related verbs are verbs that appear in the related verb list returned by the query in step 3904 that are not in the {Verb List} of the output string generated by the ENLP.
These are the verbs that are present in the data set in objects that contain a similar subject and/or object and that are not also requested verbs. The routine associates a weight referred to as a "verb similarity weight" with each of the resulting sentences indicating that these sentences came from a match of verb that is related to a verb present in the initial query. In one embodiment, the verb similarity weight differs with each related verb and is a configurable weighting of relative weights assigned by some external application. For example, a dictionary such as WordNet can be used to associated a "similarity measure" with all of the verbs present in a data set. These similarity measures can be further weighted by a multiplier to generate weights that indicate that the resulting sentences are less useful than those returned from data queries involving requested verbs or entailed verbs. In an alternate embodiment, the different weights for resulting sentences are determined by another application, for example, Word Net.
In step 3912, the routine determines whether or not the number of results returned by the data queries generated in steps 3909-3911 is greater than k, where k is preferably a configurable number. If the number of results is greater than k, the routine returns the results determined thus far, else it continues in step 3914. In steps 3914-3917, the routine generates and executes data queries that are the same as those of corresponding steps 3909-3911, with the exception that the roles of the designated subject and designated object are reversed. That is, the designated subject becomes the object and the designated object becomes the subject in the generated data query.
Weights are also assigned accordingly to the resulting sentences. As discussed with reference to Figure 14, querying the data set using the inverse subject/object relationship may return additional, contextually accurate, results that may not be returned when using the original subject/object relationship.
After executing these queries, the resulting weighted sentences are returned.
In some embodiments, the results of the natural language query are sorted when they are returned. One skilled in the art will recognize that any sorting method may be used to sort the query results. In one embodiment, the results are first sorted based on the weights (default, entailed, and verb similarity weights) returned with the results as described with reference to Figures 39A and 39B. Next, the results are sorted based on attribute values designated, for example, by a user. For example, if a user specifies the name of a country in a natural language query, resulting sentences that also contain the specified country name are ranked higher than resulting sentences that do not. Finally, the resulting sentences that are returned by data queries generated from more than one parameter string are ranked higher than those from a single data query. Other arrangements and combinations are contemplated.

Although specific embodiments of, and examples for, methods and systems of the present invention are described herein for illustrative purposes, it is not intended that the invention be limited to these embodiments.
Equivalent methods, structures, processes, steps, and other modifications within the spirit of the invention fall within the scope of the invention. The various embodiments described above can be combined to provide further embodiments. Aspects of the invention can be modified, if necessary, to employ methods, systems and concepts of these various patents, applications and publications to provide yet further embodiments of the invention. In addition, those skilled in the art will understand how to make changes and modifications to the methods and, systems described to meet their specific requirements or conditions. For example, the methods and systems described herein can be applied to any type of search tool or indexing of a data set, and not just the SQE described. In addition, the techniques described may be applied to other types of methods and systems where large data sets must be efficiently reviewed. For example, these techniques may be applied to Internet search tools implemented on a PDA, web-enabled cellular phones, or embedded in other devices. Furthermore, the data sets may comprise data in any language or in any combination of languages. In addition, the user interface components described may be implemented to effectively support wireless and handheld devices, for example, PDAs, and other similar devices, with limited screen real estate. These and other changes may be made to the invention in light of the above-detailed description. Accordingly, the invention is not limited by the disclosure.

APPENDIX A

I nsi ht. fu I
InteltUgence from data Description A Syntactic Query Engine June 13, 2000 Insightful Corporation 1700 Westlake Ave. N, Suite 500 Seattle, WA 98109.9891, USA
Tel: (206) 283-8802 FAX: (206)283-6310 INSIGHTFUL CONFIDENTIAL

TABLE OF CONTENTS

1 Abstract ...............................................................................
....................................................................3 2 Technical Background ...............................................................................
.............................................. 4 2.1 Syntactic Indexing Framework ...............................................................................
.........................4 2.1.1 Parser Technology 4 2.1.2 Smart Syntactic Structures ...............................................................................
.......................5 2.1.3 Elementary Coreferencing Rules ...............................................................................
..............6 2.1.4 Storage and Access ...............................................................................
.................................10 2.2 Operations on Data Structures ...............................................................................
........................10 2.2.1 Syntax Operators, Similarity Metrics and Robust Coreferencing .........................................10 3 Implementation ...............................................................................
......................................................14 3.1 Syntactic Queries on Medline Abstracts ...............................................................................
........14 INSIGHTFUL CONFIDENTIAL

1 Abstract The techniques described herein are used to create a Syntactic Query Engine that provides enhanced document indexing as well as syntactic-based searches. The approach comprises the following four steps:

INDEXING
1. Existing parsing technology is adapted to output an abstract representation for sentences that is suitable for cross-document indexing. A central idea is to collapse selected nodes in a full linguistic parse tree into a simpler dependency structure that also captures more valuable information through field redundancy 2. Smart indexing structures are created for storing, searching and manipulating sentence structures. The dependency structures output by the modified parser are stored in sets of disjoint clustered tables, each storing the same "pair" of syntactic relationships detected across a large corpus.

SEARCH
3. New search operators are developed based on the indexing structures described above. These include structured searches where keywords can be constrained to obey a precise syntactic role, such as subject, object, governing verb of a sentence, preposition or verb modifier. A methodology for sentence similarity searching is also implemented.
4. A new Graphical User Interface (GUI) concept for browsing the results of the syntactic search has been developed. This GUI introduces a new paradigm for search engines. First, it allows the user to specify the syntactic role that keywords in the input query must obey. For instance, the user may enter the keywords "Bill Clinton"
with the constraint that these keywords must be the governing subjects of an action or sentence. Second, it allows three levels of progressive information discovery, corresponding to three successive screen views. At the first level, the GUI
displays a list of all actions (verbs or verb phrases) found in a large corpus of documents that obey the query constraints. Using the above example, these actions could be a list of the following keywords: win, speak, travel to, rule, lie, deny, address, etc.
This list gives the user a birdseye view of all possible actions and involvements of the entity or object about which he or she is seeking information. Each of the verbs or actions in the list is automatically linked (e.g., using a hyperlink or other linking technique) to a sentence that describes the complete relationship. At the second level, the user can select any of these actions and view a complete list of sentences for each action. Each of the sentences is in turn linked with the full text of the document. At the third level, the user can select any of these sentences and view the sentence in the context of the full document.

INSIGHTFUL CONFIDENTIAL

2 Technical Background The notion of "document as a bag of sentences" indexing rests on the principles of linguistic normalization. Linguistic normalization maps semantically equivalent sentences into one canonical sentence representation. It operates at three levels:
morphological, semantic and syntactic. Morphological normalization is usually referred to as stemming or conflation. Semantic normalization involves recognition of keyword relationships such as synonyms, antonyms and meronyms. Syntactic normalization may involve transformational rules that recognize the semantic equivalence of different phrase structures.

The enhanced indexing and search technology described herein encompasses proprietary algorithms for morphological, semantic and syntactic modeling of languages. A
strength of this approach is that the models are statistical in nature, and can be adapted to cross-lingual and even multimedia data dimensions. For instance, for morphological normalization, a conflation technique has been developed based on the statistics of n-grams. A weighted similarity measure is used to produce a similarity matrix that is clustered via hierarchical agglomerative clustering methods. This morphological model is language independent and robust to OCR and speech recognition errors. As such it can be applied to the output of an ASR system operating, for example, on a video audio track.
2.1 Syntactic Indexing Framework 2.1.1 Parser Technology The enhanced indexing and search technology is being used to develop commercial Q&A
solutions (e.g., a Syntactic Query Engine) based on a variety of parsing technologies.
These include: 1) principle based parsing and 2) stochastic parsing. Minipar (D. Lin, 1993) is an example of the first. It is a principle-based parser. Unlike rule-based grammars, which tend to produce a large number of rules to describe specific language patterns, Minipar is based on more fundamental and universal principles based on the government-binding theory (Chomsky, 1981). It achieves a relatively small number of candidate syntactic structures by applying principles to descriptions of the structures rather than to the structures themselves. Minipar carries out the parsing through an efficient message-passing algorithm. A stochastic parser is also being developed based on the Structured Language Model (SLM) conceived by C. Chelba and F. Jelinek (2000).
The key features of this parser are its capacity to model and handle context dependence, its flexibility, and its computational tractability. For example, the parser has the capability of deciding part of speech and governor phrases for each term in a sentence, based on a search over the whole sentence. Hence the decisions are context-dependent as opposed to decisions made by parsers that just look at a limited history (terms preceding the particular term in the sentence) of each term, such as parsers based on hidden Markov models (HMM) (i.e. stochastic linear grammars). The parsing structure output by the parser can be represented by a binary tree. This offers a computational advantage, making the parsing algorithm tractable in a similar way to stochastic parsers based on context-free grammars. EM-type (Estimation-Maximization) re-estimation formulas (such as those used in HMM), can be derived to ease training of the parser parameters.
Also, INSIGHTFUL CONFIDENTIAL

solutions based on suU-optimal parsing strategies, such as Monte Carlo techniques, are being developed, that speed up the search for the most likely parsing of a given sentence.
Functionality from multiple parsers may be incorporated into a more robust product, and the rule-based grammar approach may be extended to a number of other languages.

A parser labels every word of every sentence in every document as follows:

<term, part-of-speech, dependency-relation-with-head, head-term, document#, sentence#>

where:
term= word (stemmed or root word) part-of-speech (pos) = noun, verb, adjective, etc.
head= term dependency-relation-with-head= syntactic relationship between head and term.
e.g. modifier, noun-noun, subject, object.
Document # = document identifier Sentence # = sentence number within the document #

Each record defines a node of a hierarchical tree structure of the kind shown in Figure 1.
S

NP\ VP
-Det N V NP
the DoD funds Adj N
I I
our proposal Figure 1: A phrase structure tree The Syntactic Query Engine reconstructs augmented parse trees by joining all records from a single sentence. However, this structure does not provide efficient information access. This complex output is reduced to a "fact database" by collapsing information in the subject, verb and object categories into two relational tables. In deriving the subject-verb-object triplets the Syntactic Query Engine discards noun modifiers that have little or no semantic value.

2.1.2 Smart Syntactic Structures As previously stated, a full linguistic parse tree does not lead to a tractable syntactic indexing scheme for cross-document analysis. The enhanced indexing and search techniques provide a set of rules for converting an augmented tree representation into a more robust and scalable data structure. The basic idea involves collapsing selected nodes INSIGHTFUL CONFIDENTIAL

to reduce the complexity of the dependency structures. Through government-binding principles, a sentence can be described by a set of triplets of the form [head-term, term, relation], where term is a word in the sentence, head-term is the word's governor word, and relation specifies the particular syntactic relation binding the term to is head-term.
Certain triplets are more informative than others in the sense that they by themselves convey most of a sentence message content. Among these triplets, triplets of the form [head is verb, term is noun/adjective, term is bound to the main subject of the verb], [head is verb, term is noun/adjective, term is bound to the object of the verb], or [head is verb+preposition, term is noun/adjective, term is bound to the preposition following the verb] are singled out. The last triplets are useful in answering queries regarding location (via the prepositions in, on, by, over, etc.), description (e.g. as), association (e.g. with, of), direction (e.g. to, from), time (e.g. after, before), purpose (e.g. for), etc. Other triplets are also relevant, such as those linking subject and objects directly: [noun A, noun B, term A and term B are connected through a verb as subject-object]. Even though these last triplets may not seem relevant within a sentence, they could potentially solve for ambiguities within a document. Also, when no verbs are present in the text (e.g. a title) triplets of the form [head is noun term, term is noun/adjective, noun term governs noun/adjective term] convey most of the relevant information.

The enhanced indexing and search techniques extract these triplets from a parser's output for a sentence, by introducing rules that act on the full parse tree for that sentence. First, the governing verb(s) in the sentence is (are) identified. For each verb (or verbal form) in the sentence , direct links representing the subject or the object associated to the verb are identified. Then, all terms that are indirectly and eventually bound either to the subject or to the object are identified. This search is not straightforward. Sentences phrased in passive-voice style, or with several clauses in them, are particularly difficult. Also, prepositions do not always immediately follow the verb; sometimes they even appear earlier than their associated verbs. These cases, as well as many others, are detected by traversing the parsing tree structure, and keeping records of the relative node position of the terms in the tree (e.g. node at the same height of the tree might be related to the same verb). Several terms may be eventually bound to both the subject and the object through the same verb. Additional rules are applied to filter intervening or contradictory triplets and non-diagnostic parts of speech. Finally, the transformed output from a single sentence is stored into a set of disjoint tables. These tables may be queried at a later time, by means of join and merge operators 2.1.3 Elementary Coreferencing Rules The enhanced indexing and search techniques are usually able to bind pronouns (e.g., "it", "that", "them") to their "antecedent", since parsers frequently capture antecedents.
The following example serves as an illustration. Consider the sentence "African bees attack humans that provoke them", and an example parsing tree associated to it (as output by Minipar):

El (() fin C * ) 1 (African -A 2 mod (gov bee)) 2 (bees bee N 3 s (gov attack)) INSIGHTFUL CONFIDENTIAL

3 (attack - V_N_N E l i (gov fin)) E3 (0 bee N 3 subj (gov attack) (antecedent 2)) 4 (humans human N 3 obj (gov attack)) EO (0 fm C 4 rel (gov human)) (that -THAT EO whn (gov fin) (antecedent 4)) 6 (provoke - V_N_N EO i (gov fin)) E4 (0 that THAT 6 subj (gov provoke) (antecedent 4)) 7 (them - N 6 obj (gov provoke)) There are two terms whose antecedents need to be found. They are "that" and "them".
The first term, "that", is the subject of "provoke". Here its antecedent is given by the parser. However, if this were not the case (as might occur with more complex sentences), the antecedent could easily be obtained by noticing that the clause associated with "that", hangs directly under the parent node, "humans". Hence, "humans" is the corresponding antecedent. The antecedent of the second term "them" is more difficult to elucidate. First it is the subject of "provoke", hence it cannot co-refer "humans" since this term is the subject of "provoke". Hence, nouns that are not bound to the term "humans" are determined among those found in the immediate precedent clause. In this case the only such noun is "bees", so this is the corresponding antecedent. Co-referencing in a document is similarly done. The ordered sequence of paragraphs is seen as a linear tree, where each node represents a paragraph, and each paragraph is headed by the preceding one. The first paragraph is headed by a symbolic root node (the document).
Each paragraph node is similarly decomposed as a linear tree formed by the nested parsing trees of all sentences within the paragraph. The main idea is to see sentences within a single paragraph as consecutive "clauses" which are nested one after the other. These nested parsing trees form an unbalanced paragraph parsing tree that is heavier to its right.
Co-reference is solved for as it would be solved for in a single parse tree.

Table 1 is an example set of data structures employed in an example implementation of sentence decomposition for a prototype collection of documents. The table entries correspond to the first four sentences of the same abstract. All four tables are incremented with parsed information from additional abstracts. The prototype collection involved 50,000 abstracts and the implementation supported the scalability of the approach to large collections.

Sl INSIGHTFUL CONFIDENTIAL

Table I
Subjects Table Subject Verb DocID SentenceID
cervical be 20450337 1 S and lotic be 20450337 1 Myelopathy be 20450337 1 aging result 20450337 2 Process result 20450337 2 Degenerative cause 20450337 2 Change cause 20450337 2 Cervical cause 20450337 2 Spine cause 20450337 2 Symptom develop 20450337 3 differential include 20450337 4 Diagnosis include 20450337 4 Objects Table Verb Object DocID SentenceID
be cause 20450337 1 be the most 20450337 1 be common 20450337 1 be spin I cord 20450337 1 be dysfunction 20450337 1 be older 20450337 1 be person 20450337 1 cause compression 20450337 2 cause spinal cord 20450337 2 develop insidiously 20450337 3 characterize symptom 20450337 3 include condition 20450337 4 include myelopathy 20450337 4 include multiple sclerosis 20450337 4 include amyotro hic 20450337 4 include lateral 20450337 4 include sclerosis 20450337 4 include masses 20450337 4 include metastatic tumor 20450337 4 include spinal cord 20450337 4 press metastatic tumor 20450337 4 INSIGHTFUL CONFIDENTIAL

VerbModifier Table Verb Preposition VerbModifier DocID SentencelD
result in degenerative 20450337 2 result in change 20450337 2 result in spine 20450337 2 result in advanced 20450337 2 result in stage 20450337 2 result in compression 20450337 2 result in sp inal cord 20450337 2 cause in advanced 20450337 2 cause in stage 20450337 2 characterize by neck 20450337 3 characterize by stiffness 20450337 3 characterize by arm 20450337 3 characterize by pain 20450337 3 characterize by numbness 20450337 3 characterize by hand 20450337 3 characterize by weakness 20450337 3 characterize by leg 20450337 3 result in myelopathy 20450337 4 result such as multiple sclerosis 20450337 4 press on spinal cord 20450337 4 Sentence Table Sentence DocID SentencelD
Cervical spondylotic myelopathy is the most common 20450337 1 cause of spinal cord dysfunction in older persons The aging process results in degenerative changes in the 20450337 2 cervical spine that, in advanced stages, can cause compression of the spinal cord Symptoms often develop insidiously and are characterized 20450337 3 by neck stiffness, arm pain, numbness in the hands, and weakness of the hands and legs The differential diagnosis includes any condition that can 20450337 4 result in myelopathy, such as multiple sclerosis, amyotrophic lateral sclerosis and masses (such as metastatic tumors) that press on the spinal cord INSIGHTFUL CONFIDENTIAL

2.1.4 Storage and Access Using the enhanced search and indexing techniques, the Syntactic Query Engine stores the modified parser output as sets of disjoint tables of similar syntactic primitives. For the sake of simplicity, an example is presented with a set of relational database tables that store only three types of coarse syntactic relationships: 1) subject-verb; 2) verb-object;
and 3) verb-preposition-verbModifier. (Any number of other syntactic relationships could be stored.) Correspondingly, the output includes a: 1) subjects table configured as (Subject, Verb, SentencelD, DocID); 2) objects table configured as (Verb, Object, SentencelD, DocID); 3) verb modifiers table configured as (Verb, Preposition, VerbMod fer, SentencelD, DocID); 4) sentence table, configured as (SentencelD, DocID). Indices are built for each table. For instance, (1) has two indices:
the first based on Subject, the second on DocID and SentencelD; (3) has three indices: the first based on Verb, the second on VerbModifzer, and the third on DocID and SentencelD.

The output from each sentence is used to populate all three tables, each table storing the same type of syntactic relationship across a corpus. Table 1 shows an example of a possible sentence decomposition for a single Medline abstract. Note that redundancy is introduced by collapsing terms and prepositional phrases that are bound to the object and subject category into a single category. This means that more than one object or subject entity may be associated with the same governing verb of a sentence. However, the ambiguity can be resolved with a join or merge operation of a subjects table with an objects table. For instance, a union of these two tables based on the verb "cause" and the object "compression" AND/OR "spinal cord" would produce the following answer for subject: "degenerative change cervical spine". The prototype implementation of the Syntactic Query Engine applied to a subset of 50,000 Medline abstracts indicates that this redundancy does not appear to compromise performance substantially (< 0.1 sec for 5 nested joins across the full set of tables for the entire database), but increases the robustness of the data bank. These storage structures also address the difficult problem of co-referencing or tracking entities in a single document or phrase. In this implementation, data is stored based on the key of the most frequently used index. This enables fast data retrieval from disk as all data is stored in the neighboring disk blocks. In order to solve performance problems related to incremental indexing and improve scalability even more, modified database schemas and key sorting methods based on clustered tables, hash clusters, binary or R-trees may be used.

2.2 Operations on Data Structures 2.2.1 Syntax Operators, Similarity Metrics and Robust Co-referencing The modified parser output or triplet representation relies on the identification of the governing verb of a sentence, and is verb centric. Verbs or actions govern subjects and objects. The smart structures introduced above support global search operators that can be used to profile the syntactic role of named entities across a document collection.
Returning to the 50,000 Medline abstracts, the database could be queried for all subject or object roles of an entity, say "CB 1" (Figure 2). The columns show the governing verbs or INSIGHTFUL CONFIDENTIAL

actions that are bound to "CB 1" according to that precise syntactic relationship across the entire corpus, arranged in order of decreasing statistical significance.

_ x n! Verb Sentence Query = ] Ga' l Verb Sentence Query Verb Command Verb Command Subject Object Subject Object c1311 19 _ ......... __.... 1 I .
Re8ultt:4 Result.:82 produce 5] =i examine [8] =~
suggest [5] expre [6}
reduce [3] (lave [6]
block [2] invalidate [6]
contain [2) disrupt [5]
exhibit [2] bind [d]
have [2] block [4]
include [2) demonstrate [4 , ..j mediate [2] show [41 show [2] acti'v'ate [3]
accountfor [1] investigate [3]
lack [3]
activate [1]
administer [1} locate [3}
are [1] use [3]
assay [1j administer [2]
associatewith [1] attenuate [2]
bind [1} characterize [2]
channel [1] couple [2]
detect [21 control [11 1 discuss [2]
couple [1]
differ [11 [ exhibit [2]
effect [1] form [21 equal [1} identif}r [2]
express [1] I increase [2]
help [1] indicate [2]
impair [1] produce [2}
implicate [1) report [2]
indicate [1] reverse [2]
induce [1] study [2]
support [2]
influence [1]

Figure 2 INSIGHTFUL CONFIDENTIAL

Figure 2 shows example syntactic profiling for keyword "CB 1 ". Shown are possible subject or object roles that "CB1" fills in a corpus of 50,000 Medline abstracts used in the example implementation. These "action" roles are arranged in decreasing order of statistical significance.

The linguistic principle of "headness" implies that any phrase has a single head. This head is usually a noun in NPs and the main verb in the case of VPs. Although the head-modifier relation implies semantic dependence, the parser output defines a purely syntactic relationship at the single sentence level. However, the head may serve as an index for a -list of phrases with occurrence frequencies across a collection.
Syntactic profiling operators (like subject and object roles, and others involving prepositions and verb modifiers) are used to semantically cluster keywords based on their syntactic relationships. For instance, entities in a corpus can be associated with a "bag" of subject actions and a "bag" of object actions, as well as modifiers involving those actions. Each action in each one of these bags has a weight (the relative frequency of the noun-action pair within a document collection). Two keywords or entities are then said to be similar if their corresponding subject and object bags of actions are similar. This similarity can be quantitatively measured by the Euclidean distance between the relative frequency distributions associated with their bags of actions. Two nouns are very likely to be semantic or at least functional synonyms if their syntactic similarity is large. Hence, the enhanced search and indexing techniques solve the co-reference problem by studying the observed bag of actions statistics associated with the keywords in a corpus.

The following example illustrates this point. Consider the sentences "Several rats developed brain tumors. They spread to other organs." The possible antecedents of "They" are "brain tumors" and "rats".

action BrainTumor Rat Organ action BrainTumor Rat Organ affect 0.00 0.00 0.05 induce 0.04 0.05 0.00 appear 0.04 0.00 0.00 investigate 0.00 0.00 0.04 cause 0.00 0.00 0.04 involve 0.00 0.00 0.06 cause 0.00 0.02 0.00 model 0.00 0.08 0.00 characterize 0.00 0.00 0.04 observe 0.00 0.00 0.08 compare 0.04 0.03 0.00 occur 0.04 0.00 0.00 contain 0.04 0.06 0.00 originate 0.04 0.00 0.00 damage 0.04 0.00 0.00 overlook 0.04 0.00 0.00 decide 0.04 0.00 0.00 pose 0.04 0.00 0.00 decrease 0.00 0.03 0.05 prevent 0.00 0.00 0.04 define 0.04 0.00 0.00 produce 0.00 0.03 0.00 demonstrate 0.00 0.00 0.05 prolong 0.04 0.00 0.00 detect 0.00 0.00 0.05 provide 0.00 0.00 0.05 develop 0.04 0.03 0.00 receive 0.00 0.08 0.00 examine 0.00 0.00 0.05 release 0.04 0.00 0.00 exhibit 0.00 0.04 0.00 represent 0.00 0.00 0.04 express 0.00 0.06 0.04 result 0.00 0.05 0.00 factor 0.00 0.00 0.04 reveal 0.00 0.02 0.00 feed 0.00 0.05 0.00 show 0.12 0.14 0.06 form 0.00 0.00 0.04 suggest 0.00 0.03 0.00 give 0.00 0.03 0.00 target 0.00 0.00 0.06 implant 0.04 0.00 0.00 undergo 0.00 0.03 0.00 include 0.12 0.00 0.11 understand 0.04 0.00 0.00 increase 0.08 0.06 0.05 use 0.08 0.08 0.00 Table 2 INSIGHTFUL CONFIDENTIAL

In Table 2, relative frequencies for the top 20 actions associated to each of the terms "brain Tumor", "rat", and "organ" are shown. The first column corresponds to the union of all three terms' top 20 actions. Note: columns one and three do not add up to one due to numerical round off. Table 2 shows the union of the subject action bags (with the 20 most frequent actions) for "brain tumor" and "rat", as well as the object action bag (with the 20 most frequent actions) for "organ". The relative frequencies were computed for the top 20 actions for each of these terms in the 50,000 Medline abstracts. A zero entry in the table indicates that the action is not among the top 20 actions associated with the term heading the column. The corresponding similarities (Euclidean distances) between "brain tumor" and . "organ", and "rat" and "organ" are 0.072 and 0.093, respectively.
Hence "brain tumors" is the most likely antecedent of "They". Note that the relative weights 1 -(0.072/(0.072+0.093)= 0.56, and 1 - (0.093/(0.072+0.093)=0.44, could be interpreted as corresponding probabilities of "brain tumor" and "rat"
being the antecedent of "They" within the second sentence's context.

When a co-reference is not exact, a measure of uncertainty about the possible antecedents helps in any further processing of the sentences. Hence a weight or probability can be associated to triplets formed by "guessing" or "imputing" the antecedent of a co-reference. All triplets are placed in this framework by assigning a weight of 1.0 to all well-defined triplets. For the example, the associated weighted bag-of-sentences would be ([develop, several, verb-subject, 1], [develop, rat, verb-subject, 1], [develop, tumor, verb-object, 1], [develop, brain, verb-object, 1], [spread to, organ, verb-object, 1], [spread to, other, verb-object, 1], [spread to, tumor, verb-subject, 0.56], [spread to, rat, verb-subject, 0.44]). The process can be further refined by allowing a second pass over the text in order to update the weights (for example by replacing the weights with the average weights over all sentences co-referring the same object). The premise here is that a measure of uncertainty about possible antecedents is far better than a wrong antecedent.
Using the enhanced search and indexing techniques, the Syntactic Query Engine implements a scheme for phrase weighting and document similarity, which is similar to statistical weighting schemes employed for term-document matrices in information retrieval. The frequency of occurrence of the governing verb of a sentence or subject of a sentence across a document collection is normalized, in a fashion similar to IDF (inverse document frequency) weighting. With regard to within sentence and within documents normalization schemes, phrase frames may contain nested phrase frames at different depths. The main head carries the most semantic information, while head modifiers increase the amount of semantic information carried by the frame. However, the amount of information added to the head by a modifier is inversely proportional to its depth. This data is used to measure sentence statistics within and across documents, and to define document similarity based on sentence structure and content.

INSIGHTFUL CONFIDENTIAL

3 Implementation 3.1 Syntactic Queries on Medline Abstracts In an example implementation, a set of 50,000 Medline abstracts is indexed and searched.
Admissible queries on the Medline abstracts database are of the same form as sentences in the abstracts. Syntactic queries can target useful subject-verb-object relationships in the database of parsed sentences that results from all indexing steps. Wild-cards are allowed to be substituted for certain parts of speech in the queries., The wild-card in the query must be a valid term in the lexicon preceded by a "#" symbol. Thus the wild-card represents any term in a sentence that shares the same part-of-speech, head-term and dependency relation with the term preceded by a #. Queries are parsed and represented in a similar fashion as sentences, except for the last two keys, namely document # and sentence #, which are dropped in the representation of queries.

Example implementations based on many different embodiments of the technology have been developed:

= Client/server architecture with Java GUI client and CORBA as the communication protocol = Web server architecture with.HTML GUI layout compatible with Netscape and Internet Explorer Web browser = Dedicate ASP control interface (illustrated in Figure 3) Other implementations are also contemplated. For example, embodiments of this technology are not restricted to a workstation or desktop implementation, and may be independent of a particular operating system. Also, for example, the interface concept is highly compatible, and ideal for deployment on portable devices, including cellular phones.

An example GUI interface provides five levels of control (Figure 4): two levels for querying and three levels for browsing information returned in response to a query. The levels of control for querying comprise: 1) query type selection; 2) query entry. The levels of control for browsing the results of a query comprise displays of: 1) word dependency maps ranked in decreasing order of statistical relevance; 2) summary list of complete sentences about a target entity, linked to the word dependency maps;
3) full text of the abstract, linked to each sentence in the list above.

The following example (prepared by a non-biologist) illustrates the query process:
QUERY

1. Choose from one of the following in a display menu: (a) find functional dependency relationships; (b) find object-subject relationships; (c) search syntactic collocations by example 5~

INSIGHTFUL CONFIDENTIAL

2. The user chooses (a), and enters the name of an enzyme or gene, whose functions he/she wishes to have summarized. The query could be for instance: "Find all verb dependencies of PLCBetal"

BROWSING THE RESULTS OF A QUERY

1. The interface presents two statistically ranked lists of actions profiling:
PLCBetal as an object:
1) activate -> PLCBetal (157 occurrences) 2) inhibit 3 PLCBetal (52 occurrences) 3) block-> PLCBetal (7 occurrences) PLCBetal as a subject:

1) PLCBetal 3 hybridize (89 occurrences) 2) PLCBetal 3 interrupts (12 occurrences) 3) PLCBetal 3 mediates (11 occurrences) 4) PLCBetal 3 regulates (10 occurrences) 2. Each entry in the ranked list above is linked to parent phrases in the corpus of 333,000 Medline abstracts. For instance, when the user selects the keyword "activate", he/she is presented with the list of 157 sentences that summarize what activates PLCBetal :

1) "Low concentration of tubulin activated PLCBetal, whereas higher concentrations inhibited the enzyme."
2) "Tubulin, Gq and phosphatidylinositol 4,5-bisphosphate interact to activate PLCBetal"
3) "A unique ability of tubulin to regulate PLCBetal was observed"

3. Each of the sentences in the list above is linked to the original Medline abstract. The user can select a sentence of particular interest and read the full abstract.

Figures 5 through 7 illustrate an example Java embodiment of the GUI. Figures 8 through illustrate an example HTML/Web browser implementation of the GUI. Finally, Figure 11 illustrates an example sentence similarity operator.

~J~

INSIGHTFUL CONFIDENTIAL

Select Query:
a) Functional Dep.
b) Sub/Obj Relation c) Syntx Collocation Select a) Select c) Select b) Functional Sub/Obj Syntx Co.
Dep. Keyword Subject KeyWord Keyword Verb Query Ce bj SQL
SQL -1n SQL
ASP SQL 11 Oracle RecordSet HTML HTML

VerbList1 HTAL Word List VerbList2 SQL SQL

SQL
ASPNBScript Oracle RecordSet HTML

Phrase Display HTML

I Abstract Display Figure 3: prototype GUI process flowchart INSIGHTFUL CONFIDENTIAL

.EVEL 1 cvnemubWme.owbaoho.nnuMPS77s105zwa ., -- ^-= ..~, -"s"cat '.'a~.~~a`arr.~s~'c.,ft= 7 Please select from the following Query Option, a) Functional Dependency b) Subject Object Relationship c) Syntactic Collocation by Example ~ _-FIRM
iLJE VEL 2 un rppa.,._.,_ :)?`~`:,t 1-= `sd - lerr'; .,,"'.dF``,~SSt ==wi Subject object Brereing Enter Query Pleaso oNerysurQuery.. n usat,_ Subject ='J Verb Object EEO
PLCBetal Results: II ,i53 LEVEL 3 Verb List I
roeulola .+; WordLisll verbaom2l; WordList2 verbitem3.; ~i WordLisl3 verbitam4;._, S
Verb List 2 verbiramt Wprdt.isl7õ
verbita 2 T
verbitem3 e ' =~~
Figure 4: the five levels of `sue GUI control f IC CWdpbl nwwoo peura m\TMP97931130612m 157 Items: PLCBeta1-uregulate Phrase 1 Dlepby Phase 2 Display Phase 3 Display Phrase 157 Display f ev~ra~~ppns petln+PStaaxm ---- --- ----- -157 Items: PLCBeta1->regulate->Phrase N
Abstract No: The following tend will display the abstract The follower text will display the abstract The folic tc# will display the abstract. The following text will display the abstract The following text will display the ab abstract The following text will display the abstract. The following text will display the abstract The followini will display the abstract The following tend will display the abstract The following text will display the absrrat The following text will disolav the abstract The followine text will display the abstract INSIGHTFUL CONFIDENTIAL
Go! Verb Sentence I Query ._,.~ ,. _ Verb Commend Subject Object 'rtirna express [583]
be [481]
increase [481]
detect [448] C'~W
induce [217]
decrease [171]
observe [171]
show [1521 examine [143] f find [142]
reduce [126]
demonstrate [120] inhibit [1171 have [105]
regulate [85]
measure [82] t level [81]
contain [771 G t study [72]
affect [68]
alter [681 investigate [68]
stimulate [671 f identify [661 cause [62]
elevate [61]
suppress [61]
analyze [59]
enhance [57]

Figure 5 Figure 5 shows an example search tool based on syntactic parser output. A list of verbs or "actions" is shown for which mRNA (messenger RNA) is the object. The verbs are arranged in decreasing order of their statistical significance in a database of 50,000 Medline abstracts.

INSIGHTFUL CONFIDENTIAL

tit- U13 X1 Verb Sentence i Query~j Senter~ce Como-mand Subject Verb Object Prep Modifier suppress imrna i =~ ) __ .__ Resu,rts 58 ~'[
[201 76690 11.0]
7. Thapsigargin (30 nNf) and TPA (30 nM) increased the_ lew,~eis of HDC mRNA
at 4 h, but PD98059 suppressed both the TPA-induced [ increases in the HDC mRNA level.
[20187609.11.0]
Additionally in 293 cells, which are constitutively overexpressing HSP-70 gene, the levels of HSP-70 mRNA were suppressed by C(2)-ceramide in parallel with the increase of apoptotic cells-[20001958 11.01 Adenovirus mediated overe,.pression oflkappaBalpha, the inhibitor ofNF-kappaB, completely suppresses t4MP-11 and -3 protein and mRNA expression.
[2023246'1 1.01 After treatment with 20 nM E2 for 24 hours, PTP gamma mRNA was significantly suppressed in primary cultured cancerous and non-cancerous cells from breast cancer patients, as well as in the ER-positive MCF-7 cell line by 50%, 85%, and 66%, respectively.
[ [2004661211 01 [ Antisensephosphorothioate oiigodeoxynucleotides (S-ODN)to TBM suppressed baseline expression ofTBM mRNA
in bath systems, but had no effect on glyceraldehryde phosphate dehydrogenase mRNA (GAPDH) expression.
1 [2007938411.0) At 36 h post HCG progesterone suppressed the LDL-R rnRNA levels (F { 0.05).
;[2032993511.0) Basal LOX--1 mRNA and protein were suppressed by antisense LOX-1 [20409126 11.01 Both 13-cis retinoic acid and all-trans retinoic acid suppressed mRNA expression of cydochrome P450 1A2.
[2041 4687 /1.01 Both constitutive and inducible ectopic Myc protein can suppress pdgf-betar rnRNA and protein [20184256 11.01 Cytokine analysis by competitive PCR revealed that IL-10 mRNA in the lymphoid organ ,,vas significantly suppressed in the PT(+) group, whereas le gels of lFN-garnma,TNF-alpha and TOF-beta mRNA
were insignificantly different after PT administration.
[20374 l81 ! 1.0]
fliricntirlyil.narstirl. c;P I'.;I lP 1 /IC R2ri1 wRN4 Pxn pas,iitnin_PWM-stimaria1 s1 T-.ce11_~is_ ~utinrpccad .tvz si[f+ fla nr .

Figure 6 Figure 6 is a continuation of the example of Figure 4. Selecting the verb "suppress"
retrieves all sentences that show what suppresses (=verb) mRNA (=object). Note that the search tool can resolve active, as well as passive verb forms.

INSIGHTFUL CONFIDENTIAL

Gp= Verb Sentence rQuery Document Content For 20001 Ia5u Res Alts: ?

Nuclear factor kappaB activity is essential for matrix rnetalloproteinase-1 and -3 upregulation in rabbit dermal fibroblasts.
Expression of rriatriii meta lloproteinases (MMPs)-1 and -3 in fibroblasts is upregulated by pro-inflammatory cytokines and growth factors during proliferative inflammatory processes, including wound healing and rheumatoid arthritis.
The Activator Protein-1 (AP-1) transcription factor is essential but, we show here, riot sufficientfor upregulation because platelet derived gro-mkth factor (PDGF) and basic fibroblast grovtth factor (bFGF)., which strongly activate AP-1, poorly induce MMP-1 and -3.
Interleukin-1 alpha, which activates nuclear factor-kappaB (NF-kappaB), =ynergisticaII upregulates MMP-1 and -3 expression in the presence of hFGF or PDGF.
A,detlovirus mediated c raypre:- inn of IkappaBalpha, the inhibitor of NF-kappaB, a nipletely suppresses MMP-1 and -3-protein : nd mRNA e i {r e -Mori. -Hence, we shon',+for the first time that (NF-kappaB) activity is also essential for MMP-1 and -3 upregulation.
Copyright 199.9 Academic Press.

Figure 7 Figure 7 is a continuation of the example of Figure 5. Selecting a sentence returns the full text abstract.

INSIGHTFUL CONFIDENTIAL

WIRES- .-N
0..}F.L: a-.. _ `---+Esi = '-.;5,.:La- t .Fl,.i xY 3" ..~"cF,?'x'`',..z = _ t~
'L -H-l' `~ r~~`ySK.s-""z t: F3- N....;ai4.~,~fc..~.',?.~"n;`". "~tY~';,a,,,,'Fr="' u"j iy~ s:-..__--^r~~ z?_=7.~?~.+t~c {..:i_x -,.,.~. httP:~B OSt.BO80ZRfsetYkt15Q25erYkt7Qb'Ver6BavblBmb1"&x 1700" t5 ziv:~tRi/`r -~ tr~roy --5' =..2;22` " Ctbh7ke F 3.:.. ng,'eera?7t _"= , -.s. 1~ .-...~ w ,-~.,U r^:~a.a ti^~-'.r~= Z,.~ t \zr~" rs r IN
~~.-,...=.-.,Ree kbtinal _} 'E:JURc]1`'TR.l~. 's3sFi.i.-3.nt,-pit [nsightfu[ .LightFinder Verb Sentence Query subject object BMD

Query Results [42]
1. be 46 2. increase 8 3. ch e 4. co are4 5. aeef3l -6. bone 3 7. decrease 3 8. have 3 9. indicate 3 10. remainf 31 11. continue 2 12. dfferf2l 13. scorn 2 14. show 2 15. value 2 16. become l 17. content[11 18, comlate 1 19. correspond[l]
20. die 1 ?i x rn Figure 8 Figure 8 is an example web server embodiment. The web server search tool displays a list of verbs or "actions" for which BMD (Bone Mineral Density) is the subject. The verbs are arranged in decreasing order of their statistical significance in a database of 50,000 Medline abstracts.

~P~

INSIGHTFUL CONFIDENTIAL

Wa, fy i~rt~^
M-v`- Mme-"~~ rc `"
r..3'<S ..-15. Y,a~.w~~r .,.~.r-e- zr ev r -~ ....~ yr '"?frt' z ~t c}~.rsi ~^- .S^w.S?: "y`'_ ""_c'=Ly~`~s".
~~,~~-+~8....
http (AotaAwst eoeo!`~tWsavletlsmservlettq,t&vetb-mveausw,hJ~t,adsmbf= .. _ _ `~'_'~i0 IMW õ. sT .~ '- .,L~ .,...+1 A+~a fil"[ .+S Y c 't='..,'f- t.
IlkseUst&n~zenenoalie7 ~o~~URI 9 ~4r rhra~ rd EL ¾ ~~ _ d a wa Insightful .LitghtFinder verb sentence ae Subject Verb Object Modifier Preposition jbmd increase ~- ~- ~-Query Results [S]

1. BMD at the femoral neck, trochanter. and distal radius increased or was maintained with risedronate 5 nog treatment. but decreased in the placebo group doc Similar 2. Bone mineral density (BMD) in prozimal tibiaincreased similarly in a time-dependent manner in sham-operated NA and SD rats doc Similar 3. In 4 years femoral neck BMD increased by 3.0% in the calcitriol group, but decreased by 1.6% in the control group (P = 0.009) f docltSimilarl 4. In the overall population, the mean (SE) lumbar spine BMD increased 1.9 from baseline in the risedronate 5 mg group (P < 0.001) and decreased 1.0 in the placebo group (P = 0. 005) doc Similar 5. Lumbar spine bone mineral density (BMD) by dual-energy X-ray absorptiometry (DXA) increased by 0.6%. 3.6% and 8.1% after 48 weeks in groups L, M and H respectively, responses in groups M andH being significantly higher than in L (p<0.05, Mann-Whitney U-test) doc f Similarl 6. Postpartum, BUD increased in the arms (2.8%, P < 0.01) and legs (1.90% P <
0.01) but decreased in the pelvis (-3.2%, P < 0.05) and spine (-4.6%, P <
0.01) compared with prepregnancy values doc Sf imilarl 7. The lumbar spine BMD increased significantly faster in the BB and Bb groups (7.3% and 7.0%, respectively) compared with the bb group (2.5%) during I
year of cyclic etidronate therapy (400 mg/day) and calcium supplementation (1000 mg/day) doc Similar 8. Total body and lumbar spine BMD increased from baseline in both groups, with a greater increase in the CEE group (P < 0.05) doc Similar .. . ., .. =- o, Local inhatie;p.. ..
Figure 9 Figure 9 is a continuation of the example of Figure 7. Selecting the verb "increase" retrieves all sentences that show all circumstances where BMD (=subject) increases (=verb) mRNA.

INSIGHTFUL CONFIDENTIAL

pa~ !S"._==-T'r"='-._" v-+~- :'v~~'saõe s-s` ,,,xc~ i .R".~"'.~n ~i,fd$' --sue s-s35k~.,^t=
r'4-eG.w=rli.net,'ePates'Cools=ze`x.~'c'-'~~2``=s.~.a.~a~. r"'.a.' ,-s. '}~-,x a _ o Pa r #p i'~ qty P Ci's'y' - w=2.a ~`'-.C a ~,xi: .'r' t y>-'-Fc 2+>.i.,a-.:S'A CJ.x>.34 9ti,.zz*_^_ _ ~1. er =D +t+ -FFattthe+fereora4i' tl,,+lmdwker +artd+dstal+radns+iweased+or+was+ma5ataFxd+veils 4fmdronate+5+mg+tleatrnenr +M
t+deaeased+crtthe+dacebO+p'ouP t x 's =xN
ME- i 1i" -' 1 ~~ r~ sr' ,i= sr ,~ ~.~õt'Ti."x'"s"` >L -"rte' }.~{[~ ~C
s. -s'. ml .= t, 7 x3.33 ,;, < us' j1 -?vv.
trQSFam'91"hk~`--rõr`~"``.-1+,"- `=~'P'cta~n.

Insightful LightFinder Verh Sentence Query Document Text vr."
Effects of risedronate treatment on bone density and vertebral fracture inpatients on corticosteroid therapy q. Men and women (n = 518) receiving moderate-to-high doses of corficosteroids were enrolled in two studies with similar protocols and randomly assigned to receive either placebo or risedronate (2.5 or 5 mg) for 1 year j. All patients received daily calcium supplementation (500-1000 mg), and most also received supplemental vitaminD (400 III) 1. The primary endpoint was the difference between the placebo and active groups in lumbar spine bone mineral density (EMI)) at 1 year 1. changes in BMD at other sites, biochemical markers of bone turnover, and the incidence of vertebral fractures were also assessed 1. In the overall population, the mean (SE) lumbar spine EM) increased 1.9 from baseline in the risedronate 5 mg group (P < 0.001) and decreased 1.0 in the placebo group (P = 0. 005) q. EMD at the femoral neck trochanter, and distal radius increased or was maintained with risedronate 5 erg treatment, but decreased in the placebo group 1. Idrdshaft radius BMD did not change significantly in either treatment group . The difference in BMl) between the sisedronate 5 mg and placebo groups was significant at all skeletal sites (P < 0.05) except the midslsaft radius at 1 year 9. The 2.5 mg dose also had a positive effect on BNID, although of a lesser magnitude than that seen with risedronate 5 mg 1. A
significant reduction of 7O% in vertebral fracture risk was observed in the risedronate 5 mg group compared with the placebo group (P = 0.01) g. Risedronate was efficacious in both men and women, irrespective ofunderlying disease and duration of corticosteroid therapy, and had a favorable safety profile, with a similar incidence of upper gastrointestinal adverse events in the placebo and active treatment groups N. Daily treatment with risedronate 5 mg significantly increases BMD
and decreases vertebral fracture risk in patients receiving moderate-to-high doses of corticosteroid therapy q.

t~ Dome: _ . " '- o Figure 10 Figure 10 is a continuation of the example of Figure 8. Selecting any sentence returns the full text abstract showing the sentence in context.

INSIGHTFUL CONFIDENTIAL

.. t-x-.t .s,...;kr~~i.r- j c:-~-c~:. y='",.T ,v h~ppev MEN Wr.'As ~,xõ~~ " `~~bxt s.: 3,~re... _ ~~u2. ]..... ~..-. ,.,x."-.r:s:.3t <~.. ", vra~`~=' ~ii cG vet. , a ... ,n =~ b 't s.: Cf Yy t~
] d ~+yL~3 s S` s k r Y 'yc -l _. C=-n_ '~ ~' amtites`h4t,4?Ãs>i}
~] httpl~bCau ost:aoeo(suyservletlstRSe vtettaa!av&a manwrkoos+were+aertorn ea r say the+stuaent+t+test t~w.~:~c` ~"= e,.. c .. ?',+7~, ,i - '-'F .. '~ i. r emT''r f"'. ''~---...4C'z mss' "F: ,~ r' - z ' '~.y-= . S.
~~~'`~~-~(!~T,~a.=~Ae ~rrr6~. we~ }'+AX-~~:..._~~'i~ .~` KS-~.Si.'c` ;,~?'. %-s"~?....z ~.~-=`~:., ~+.;y,~ ,,_e~,` ~ r.d~.C~~ ... 7. 4 ~4r~~~, ~^'.
f T
Insightful LtghtFinder Verb Sentence Query Query Comparisons were pedarmed using the Studentttest Query Results [100]
1- [1.0] Comparisons were performed using the Student t test doc Similar 2. [0.79] Statistical analysis was performed using Student's t test doc Similar 3. [0.79] Statistical analysis was performed using unpaired Student's t test [docl(Similarl 4. [0.79] Statistical analysis was performed using the Student t test with p <0.05 considered significant doc][Similarl 5. [0 79] Statistical analysis was performed using Student's t test with p <0.05 considered statistically significant [docfSazl 6. [0.59] Survival was analyzed by the Kaplan-Meier method and comparison was performed using the Breslow exact test doc [Similar]
7. [0.59] Statistical analysis was performed using repeated measures ANOVA
with post hoc Scheffe's test for comparison between groups doc Sf imilarl 8. [0.59] Statistical comparisons were performed using the Mann-Whitney U test (nonparametric), since the populations were not normally distributed doc [shawl 9. [0.39] Statistical analysis using the Mann-Whitney U test was performed [docl[Similarl 10. [0.39] Students t test was used to compare 0(2) tensions, cellular proliferation, and intimal hyperplasia between days [doc Similar 11. [0.39] Student's t-test and chi-squared test were used for statistical analysis, with significance level set at P < 0.051docl[Similar) 12. [0.39] Values were compared using the Student's paired or unpaired t test with p approximately 0.05 indicating significance doc [Sim]ian 13. [0.39] First, competition between MAbs and the related epitopes on the same antigen was performed using double-determinant tests with previously characterizedMAbs [doc][Similarl 14. [0.39] ROC curves were plotted for DIAGNOdent readings and radiographic registration of caries by 6 observers, and the areas under the curves were compared using Student's t test doc Sinulaz 15. [0.39] The Following variables were compared using a Student t test:
initial angle (angle of onset of plantar flexor torque), maximal dorsiflexion angle, plantar flexor muscle excursion (difference between initial angle and maximal dorsiflexion angle), slope of the first half of the plantarflexor torque curve (stifliiess 1 measurement), and slope of the second half of the planter flexor torque curve (stiffness2measurement) [doc Sf glad is rn 101 A c A 4.. ..ter...-.....r F. 1rc r _i.

Figure 11 Figure 11 is an example illustration of the sentence similarity operator. The search tool receives the sentence "Comparisons were performed using the Student t test", and determines a list of similar sentences in the corpus.

APPENDIX B
(Del DC> Indeed, Abu Dhabi is reckoned to have over 500,000 barrels/day (bid) of spare capacity in 0CNO> place.
However, a 25% drop in Dubai's oil production over the period 1993-97 has provided some CCNO> relief for Abu Dhabi allowing it to raise output over the period by about 150,000 b/d to an L> estimated 1.9m bid.
itical background New OPEC quotas, which came into force on January 1st 1998, have also proved a blessing IL> for the oil-rich emirate, as the 205,000 bid increase in the UAE quota (taking it to 2.366m b/d) EXT> has been covered solely by Abu Dhabi.
lied Arab Emirates. Total the Dhabi production now stands at over 2.1 m b/d.
untry Profile Uae 1997 / 1998. Defence pacts, itical background. Since the and of the Gulf war, the UAE and the rest of the GCC have been reluctant to rely for 3mational relations & defence. their security on the so-called Damascus Declaration group of countries: the GCC, Egypt and a UAE is a small country surrounded by powerful neighbours in an unstable part of the world Syria.
The latter two sent troops to the Out to help to oust Iraq from Kuwait, after which they agreed intemational relations over the past 20 years have reflected this and it has followed a course to station troops permanently in the region.
elicate diplomacy. However, GCC states, even though they suffer from a lack of manpower, have been reluctant hough it has been part of the six-member pro-Western Gulf Co- operation Council (GCC) to put the arrangement into practice.
co the latter was founded In 1981, the UAE has tended to take a more accommodating Even internally, the GCC has been unable to agree on a joint farce.
nce than its co-members, especially Saudi Arabia and Kuwait, towards perceived external Oman, for instance, has persistently advocated the expansion of the current joint force from a eats such as Iran. few thousand to 100,000 troops, but the UAE has opposed this because it fears domination by is reflects the fact that both Dubai and Sharjah have substantial Iranian populations, and that Saudi Arabia.
n is an important economic partner for the UAE. Instead, the UAE has looked to the West, in particular to the US, to guarantee its defence.
lations with Iran. In 1991 a loose defence pact was signed, giving the US
rights to base troops and equipment in th the outbreak of the Iran-Iraq war in 1980, the UAE found itself walking a diplomatic the UAE
htrope. Since then the UAE (in fact mainly Abu Dhabi) has spent billions of dollars on buying as one of the first Arab countries to receive Iranian officials after the 1979 Islamic revolution sophisticated military equipment, but it lacks the personnel and skills to make full use of them.
d continued to welcome them even after the war with Iraq had started. The purchases were essentially designed to draw the US and other Western powers such as waver, it also contributed to Iraq's war effort when it became clear that Iraq might lose the France into dose arrangements with the UAE.
uggle If it did not receive backing. This table shows the Defence forces, 1996.
er the Gulf war of 1991 the UAE made great efforts to forge closer ties with Iran but in 1992 Armed forces is _NUM.
n took control of the whole of the Gulf island of Abu Musa which it had shared with Sharjah Army is NUM.
ice 1971. Navy is-NUM.
e action made the UAE nervous and since then this unease has translated into overt Air Force is NUM.
position to perceived Iranian expansionism. Source: International Institute for Strategic Studies, The Military.
we 1995 alarm has grown as Iran has strengthened its grip on the islands of Abu Musa, Compared with other Arab countries, the UAE's armed forces as a percentage of the national eaterTunb and Lesser Tunb. population are large.
ie UAE has frequently called for the dispute to be resolved either through bilateral This is because federal arrangements coexist with individual emirate defence provisions.
gofiations or by the Intemational Court of Justice in The Hague. Although the different emirates nominally unified their forces in 1976, there is still little federal position has been supported by the GCC and the Arab League, both of which have argLed identity.
it a normalisation in ties with Iran is dependent on the affair being resolved. Since the end of the Gulf war, the number of foreign nationals in the military has fallen to nations with Iran have caused internal friction within the federation. around 30% of the total.
van its strong trade links and large indigenous Iranian population, Dubai has maintained a Defence is a major item of government expenditure.
nciliatory stance towards Tehran, arguing that dose contacts will ultimately lead to a solution In 1996 the federal ministries of defence, justice and the interior together spent just over 40%
the dispute. of the total budget.
contrast, Sharjah and Ras al-Khaimah, whose territorial waters adjoin the three islands, have Abu Dhabi and, to a lesser extent, Dubai make separate defence purchases, with the costs lied for greater steps to be taken in forcing the Iranian regime either to hand back the islands considered a contribution to the federal budget (see Reference table 1).
, at the very least, to allow a joint administration to be set up, A
significant increase in UAE defence spending has been expected since 1995, when the UAE
3lalions with Iraq. announced its intention to spend $10bn-12bn on new weaponry.
)spite supporting Iraq in the Iran-Iraq war, the UAE has also had much to fear from the The procurement programme was held up as a sign of the federation's desire to bolster its nbitions of the Iraqi leader, Saddam Hussein. defensive capabilities in the face of the perceived Iranian threat and to play a more active role 1968 Baghdad accused the UAE, along with Kuwait, of breaking OPEC oil quotas, driving in safeguarding shipping through the strategic straits of Hormuz.
ices down and depriving Iraq of revenue to rebuild its economy after the war with Iran. This table shows the Military indicators.
to fact that this was one reason given by Iraq for its invasion of Kuwait in 1990 was not lost (1996 unless otherwise indicated).
i the UAE. Total active armed forces is _NUM.
avertheless, Sheikh Zayed has taken a lead In calling on the UN to relax sanctions against Military expenditure ($ m) is _NUM.
)q in order to ease the suffering of its people. Military expenditure (% of GDP) is _NUM.
are important to Sheikh Zayed, however, is the desire to build up Iraq to balance Iranian Military expenditure per head ($) is _NUM.
)War. Arms imports ($ m; 1994) Is _NUM.
ubai, too, is interested in having sanctions on Iraq lifted to take advantage of the trade that Arms imports (% total imports; 1994) is NUM.
outd then ensue. Cumulative arms transfers deliveries ($ m; 1992-94) is _NUM.
II wealth. . Armed forces per'000 people (soldiers) is _NUM.
ver the past few years the country's oil wealth has been a mixed blessing.
Sources: International Institute for Strategic Studies, The Military.
he UAE was criticised for allegedly not bearing enough of the burden in the Gulf war effort Balance 1996197; US Arms Control and Disarmament Agency, World Military.
taint Iraq, particularly as economically, it emerged as one of the few regional beneficiaries. Despite years of discussions with prospective suppliers, only one major deal has been signed, Ithough it mobilised its troops and paid around $10bn towards the cost of the war, it gained a $3.4bn contract with the French fighter aircraft firm, Dassault, for 30 new Mirage 2000-09 tore from the crisis than it lost. generation fighters, some in replacement of 22 existing Mirages.
benefited, for instance, from higher oil revenue as prices rose and it increased production to This should leave UAE officials more time to evaluate offers for a further order for 50 aircraft take up for lost Iraqi and Kuwaiti output worth some $4.6bn.
ubal gained from the relocation of business from Kuwait Lockheed Martin, a US
manufacturer of F-16 aircraft, is the likeliest winner, with the UK's British uring the 1990s the UAE has taken a back seat in OPEC, generally supporting the line Aerospace (BAe) and the Eurofighter 2000 next in line.
dopted by Saudi Arabia. No award has yet been made for a $1bn order to supply the navy with up to eight ocean-iubai's refusal to make pro- rate cuts in line with the federation's oil production quota has capable patrol boats (OCPBs) and a $ibn-2bn order for six small frigates.
laced the burden of compliance solely on Abu Dhabi. Pressure to award the second contract has eased after the purchase in 1996 of two second-his has caused some difficulties for Abu Dhabi, given that its foreign oil partners have hand frigates from the Netherlands.
laughed significant sums into raising the emirate's sustainable oil capacity, much of which has These are duo to be delivered in the first half of 1998.
3mained idle. The delays in awarding the contracts have been attributed to Abu Dhabi re-evaluating the ramme and assessing means of alternative financing, including the possibility of payment Other non-oil exports is _NUM.
Total non-oil exports is NUM.
XT> The UAE economy is rather larger than Kuwaitis, but less than one-third the size of Saudi IC> Arabia's.
C> Its GDP per head Is broadly similar to Kuwait's, but it is well behind that of leading industrial CNO> countries.
This table shows the Comparative economic indicators, 1996.
)CNO> UAE is TABLE Saudi Arabia Kuwait Japan.
GDP ($ bn) is NUM.
romy GDP per head ($) is _NUM.
> Oil production ('000bId) is_NUM.
>cr> Exports of goods ($ bn) is _NUM.
3d Arab Emirates. Imports of goods ($ bn) is _NUM.
atry Profile Uae 199711998. eEXT>
romy. , DOC>
comic structure.
table shows the Main economic indicators, 1996.
I GDP growth(a) (%) is NUM.
Sumer price inflation (%) is NUM.
ant account ($ m) Is _NUM.
mal debt(a) ($ bn) is NUM.
range rate (Dh:$) Is _NUM.
ulation(b) (m) Is NUM.
.IU estimate.
)fBciat preliminary estimate.
mainstay of the UAE economy is oil and gas (see Reference tables 10 and 11).
er the largest oil producer is Abu Dhabi, but some contribution comes from Dubai and, to a h lesser extent, Sharjah and Ras al-Khaimah (see Reference table 13).
piite oil's importance, its contribution to GDP has been declining in recent years from about in 1980 to just 35% in 1995.
artheless, the significance of this decline should not be overstated.
In of the non-oil economy depends on the public sector and public-sector contracts, and the unt of public spending is directly related to oil revenue.
emment consumption is a major element in demand in the economy, equivalent to over 16 f GDP (see Reference tables 8 and 9).
ik oil prices during the period 1993-95 were reflected in a low average level of GDP growth Reference table 7).
table shows the Gross domestic product by emirate.
rent prices).
is NUM.
m is TABLE % share Ohm % share.
Dhabi is _NUM.
ai is NUM.
rajah is NUM.
al-Khaimah is_NUM.
an is _NUM.
eirah is NUM.
in al-Qaiwain is _NUM, el is _NUM.
irces: Federal Ministry of Planning, Annual Economic Report 1996; UAE.
)ai is the centre for regional trade.
mportance to the region in this respect has been growing, especially since the Gulf war, and u extends as far as the southern republics of the former Soviet Union.
exports are the mainstay of the trading system, with Dubai's foreign trade more than twice value of its own national GDP.
s table shows the Re-exports by emirate.
n).
is NUM.
3ai is _NUM.
erjah is NUM.
Dhabi is _NUM.
rer (mainly non-recorded) is NUM.
at is _NUM.
3 value of UAE re-exports in 1996 was around $10.1bn (30% of total exports).
significant proportion-about 40%4s unrecorded.
is comprises goods leaving Dubai by dhow (a vessel characteristic of the Gull) and rchandise passing through the Jabal All Free Zone, also in Dubai.
total, Dubai accounts for around 85% of re-exports.
s table shows the UAE merchandise exports.
m).
35 is _NUM.
tall is NUM.
ude oil is _NUM, is is NUM.
tal oil &amp; gas is _NUM.
-exports is NUM.

APPENDIX C

7.~

ghan Afghanistan ghani Afghanistan banian Albania gerian Algeria erican us dorran Andorra golan Angola .guillan Anguille .tiguan Antigua tilles Netherland-Antilles gentine Argentina =gentinian Argentina =uban Aruba Lstralian Australia Lstrian Austria :erbaijani Azerbaijan Lhamian Bahamas Lhraini Bahrain Lngladeshi Bangladesh Lrbadian Barbados isothian Basotho itswanian Batswana larusian Belarus lgian Belgium lizean Belize :ninese Benin rmudan Bermuda iutanese Bhutan )livian Bolivia )snia Bosnia-and-Hercegovina )snian Bosnia-arid-Hercegovina )tswanian Botswana cazilian Brazil razzaville-Congolese Congo-(Brazzaville) ritish United-Kingdom runeian. Brunei ilgarian Bulgaria irkina Burkina-Faso srkinabe Burkina-Faso arma Myanmar- (Burma) urmese Myanmar-(Burma) arundian Burundi ambodian Cambodia ameroonian Cameroon anadian Canada ape-Verdian Cape-Verde ayman Cayman-Islands entral-African Central-African-Republic hadian Chad hilean Chile hinese China olombian Colombia omoran Comoros ongo Congo-(Democratic-Republic) ongolese Congo- (Democratic -Republic) 'osta-Rican Costa-Rica rote-D'Ivoire Cote-d-Ivoire roatian Croatia 'uban Cuba rpriot Cyprus ech Czech-Republic echoslovak Czech-Republic ,echoslovakian Czech-Republic mne Denmark mnish Denmark smocratic-Republic-of-the-Congo Congo-(Democratic-Republic) iboutian Djibouti )minican Dominican-Republic -itch Netherlands uadorian Ecuador gyptian Egypt aglish United-Kingdom riglishman United-Kingdom aglishmen United-Kingdom aglishwoman United-Kingdom nglishwomen United-Kingdom quatoguinean Equatorial-Guinea ritrean Eritrea stonian Estonia thiopian Ethiopia ijian Fiji innish Finland rench France abonese Gabon ambian The-Gambia erman Germany hanaian Ghana reek Greece reenlandic Greenland renadian Grenada uaman Guam uatemalan Guatemala uianese Guiana uinea-Bissauan Guinea-Bissau Iuinean Guinea Guyanese Guyana :aitian Haiti [elenian Greece [ercegovina Bosnia-and-Hercegovina [onduran Honduras [ong-Kongnese Hong-Kong [ungarian Hungary Icelander Iceland Icelandic Iceland Indian India Indonesian Indonesia Iranian Iran Iraqi Iraq Irish Ireland rishman Ireland rishwoman Ireland sraeli Israel Italian Italy Evorian Ivory-Coast Jamaican Jamaica Japanese Japan Jordanian Jordan Cazak Kazakhstan Kazakh Kazakhstan ikstan Kazakhstan an Kenya ian South-Korea Dvo Bosnia-and-Hercegovina aiti Kuwait ;yz Kyrgyzstan tian Laos vian Latvia anese Lebanon othian Lesotho erian Liberia yan Libya chtensteiner Liechtenstein huanian Lithuania embourger Luxembourg is Libya ian Libya auan Macau edonian Macedonia agascan Madagascar Oran Mahora awian Malawi aysian Malaysia divian Maldives ian Mali tese Malta -shallese Marshall-Islands -tiniquais Martinique .ritanian Mauritania Lritian Mauritius :ican Mexico .davia Moldova .davian Moldova .dovan Moldova iacan Monaco igolian Mongolia itenegro Yugoslavia itserratian Montserrat occan Morocco :swanian Motswana sambican Mozambique aibian Namibia )alese Nepal u-Caledonian New-Caledonia v-Zealander New-Zealand :araguan Nicaragua ;erian Nigeria 4erien Niger rth-Korean North-Korea cwegian Norway mni Oman ::ific-Islander Pacific-Islands ,istani Pakistan Lestine The-Occupied-Territories Lestinian The-Occupied-Territories aamanian Panama pua-New-Guinean Papua-New-Guinea puan Papua-New-Guinea raguayan Paraguay ruvian Peru Llippine Philippines ilippino Philippines fish Poland rtuguese Portugal arto-Rican Puerto-Rico tari Qatar manian Romania ssian Russia ssian-Federation Russia andan Rwanda int-Lucian Saint-Lucia lvadoran El-Salvador moan Samoa nmarinese San-Marino o-Tomean Sao-Tome-and-Principe udi Saudi-Arabia udi-Arabian Saudi-Arabia otland United-Kingdom ottish United-Kingdom negalese Senegal rbia Yugoslavia rbia-Montenegro Yugoslavia rbian Yugoslavia ychellois Seychelles erra-Leonean Sierra-Leone ngaporean Singapore ovak Slovakia .ovakian Slovakia .ovenian Slovenia )lomon-Islander Solomon-Islands >mali Somalia ,uth-African South-Africa >uth-Korean South-Korea )viet Russia )viet-Union Russia )aniard Spain )apish Spain -i-Lankan Sri-Lanka idanese Sudan irinam Suriname irinamese Suriname vazi Swaziland vede Sweden vedish Sweden viss Switzerland (rian Syria Awanese Taiwan ij ik Tajikistan 3.j iki Tajikistan 3.nzanian Tanzania hai Thailand imorese East-Timor ogolese Togo ongan Tonga rinidad Trinidad-and-Tobago rinidadian Trinidad-and-Tobago unisian Tunisia urk Turkey urk-Islander Turks-and-Caicos-Islands urkish Turkey 7Co Lrkmen Turkmenistan K. United-Kingdom S. US
S.A. US
S.S.R. Russia United-Kingdom US
iA US
)SR Russia 3SR Russia 3andan Uganda -rainian Ukraine Iranian Ukraine cited-States US
iited-States-of-America US
^uguayan Uruguay ,bek Uzbekistan m.nuatuan Vanuatu snezuelan Venezuela ietnamese Vietnam Lrgin-Islander British-Virgin-Islands Est-Samoan Western-Samoa 3meni Yemen .igoslav Yugoslavia igoslavian Yugoslavia airean Zaire ambian Zambia imbabwean Zimbabwe fghan Afghanistan fghani Afghanistan fghanistan Afghanistan lbania Albania lbanian Albania lgeria Algeria lgerian Algeria merican US
ndorra Andorra ndorran Andorra ngola Angola ngolan Angola nguillan Anguille nguille Anguille ntigua Antigua ntiguan Antigua .ntilles Netherland-Antilles .rgentina Argentina .rgentine Argentina .rgentinian Argentina Aruba Aruba Lruban Aruba iustralia Australia iustralian Australia Lustria Austria iustrian Austria izerbaij an Azerbaijan .zerbaij ani Azerbaijan )ahamas Bahamas )ahamian Bahamas )ahrain Bahrain )ahraini Bahrain .ngladesh Bangladesh ngladeshi Bangladesh .rbadian Barbados .rbados Barbados' .sothian Basotho Lsotho Basotho Ltswana Batswana itswanian Batswana larus Belarus larusian Belarus lgian Belgium !lgium Belgium lize Belize ?lizean Belize nin Benin ninese Benin -rmuda Bermuda ?rmudan Bermuda iutan Bhutan iutanese Bhutan )livia Bolivia )livian Bolivia )snia Bosnia-and-Hercegovina Dsnia-and- hercegovina Bosnia-and-Hercegovina Dsnia-and-hercegovina Bosnia-and-Hercegovina )snia-and-hercegovina Bosnia-and-Hercegovina Dsnian Bosnia-and-Hercegovina Dtswana Botswana Dtswanian Botswana razil Brazil razilian Brazil razzaville-congolese Congo-(Brazzaville) ritish United-Kingdom ritish-virgin-islands British-Virgin-Islands runei Brunei runeian Brunei ulgaria Bulgaria ulgarian Bulgaria urkina Burkina-Faso urkina-faso Burkina-Faso urkinabe Burkina-Faso urma Myanmar - (Burma ) urmese Myanmar- (Burma) urundi Burundi urundian Burundi ambodia Cambodia ambodian Cambodia !ameroon Cameroon !ameroonian Cameroon !anada Canada :anadian Canada :ape-verde Cape-Verde ape-verdian Cape-Verde ayman Cayman-Islands ayman-islands Cayman-Islands ventral-african Central-African-Republic ventral-african-republic Central-African-Republic had Chad hadian Chad hile Chile -7g.

hiW003/017143 PCT/US02/25756 hina China hinese China olombia Colombia olombian Colombia omoran Comoros omoros Comoros ongo Congo-(Democratic-Republic) ongo-(brazzaville) Congo-(Brazzaville) ongo-(democratic-republic) Congo-(Democratic-Republic) ongo-(democratic-republic) Congo-(Democratic-Republic) ongolese Congo-(Democratic-Republic) osta-rica Costa-Rica osta-rican Costa-Rica ote-d'ivoire Cote-d'Ivoire ote-d'ivoire Cote-d'Ivoire roatia Croatia roatian Croatia ,uba Cuba ,uban Cuba !ypriot Cyprus yprus Cyprus !tech Czech-Republic !zech-republic Czech-Republic !zechoslovak Czech-Republic :zechoslovakian Czech-Republic lane Denmark lanish Denmark lemocratic-republic-of-the-congo Congo-(Democratic-Republic) lenmark Denmark ljibouti Djibouti ljiboutian Djibouti lominican Dominican-Republic iominican-republic Dominican-Republic lutch Netherlands past-timor East-Timor :cuador Ecuador 3cuadorian Ecuador 3gypt Egypt ;gyptian Egypt 31-salvador El-Salvador 3nglish United-Kingdom 3nglishman United-Kingdom 3nglishmen United-Kingdom 3nglishwoman United-Kingdom 3nglishwomen United-Kingdom equatoguinean Equatorial-Guinea equatorial-guinea Equatorial-Guinea eritrea Eritrea eritrean Eritrea estonia Estonia estonian Estonia ethiopia Ethiopia ethiopian Ethiopia fiji Fiji fijian Fiji finland Finland finnish Finland france France french France ibon Gabon ibonese Gabon imbian The-Gambia Erman Germany :rmany Germany Tana Ghana ianaian Ghana :eece Greece :eece Greece reek Greece =eenland Greenland =eenlandic Greenland --enada Grenada =enadian Grenada iam Guam zaman Guam zatemala Guatemala iatemalan Guatemala a.iana Guiana iianese Guiana j.inea Guinea iinea-bissau Guinea-Bissau ainea-bissauan Guinea-Bissau ainean Guinea ayana Guyana uyanese Guyana aiti Haiti aitian Haiti elenian Greece ercegovina Bosnia-and-Hercegovina onduran Honduras onduras Honduras ong-kong Hong-Kong ong-kongnese Hong-Kong ungarian Hungary ungary Hungary celand Iceland celander Iceland celandic Iceland ndia India ndian India ndonesia Indonesia ndonesian Indonesia .ran Iran .ranian Iran .raq Iraq .raqi Iraq .reland Ireland .rish Ireland _rishman Ireland _rishwoman Ireland _srael Israel _sraeli Israel Ltalian Italy Ltaly Italy Lvorian Ivory-Coast Lvory-coast Ivory-Coast Jamaica Jamaica jamaican Jamaica japan Japan SO

aanese Japan -dan Jordan -danian Jordan ,ak Kazakhstan ,akh Kazakhstan ,akhstan Kazakhstan ,akstan Kazakhstan iya Kenya iyan Kenya _,ean South-Korea 3ovo Bosnia-and-Hercegovina gait Kuwait aaiti Kuwait cgyz Kyrgyzstan rgyzstan Kyrgyzstan Ds Laos Dtian Laos tvia Latvia tvian Latvia oanese Lebanon banon Lebanon sothian Lesotho sotho Lesotho beria Liberia berian Liberia bya Libya byan Libya echtenstein Liechtenstein echtensteiner Liechtenstein thuania Lithuania thuanian Lithuania xembourg Luxembourg xembourger Luxembourg bia Libya bian Libya cau Macau cauan Macau .cedonia Macedonia .cedonian Macedonia .dagascan Madagascar .dagascar Madagascar hora Mahora Lhoran Mahora Llawi Malawi Llawian Malawi ilaysia Malaysia ilaysian Malaysia Lldives Maldives .ldivian Maldives Ili Mali dlian Mali ilta Malta iltese Malta irshall-islands Marshall-Islands irshallese Marshall-Islands irtiniquais Martinique irtinique Martinique iuritania Mauritania iuritanian Mauritania .uritian Mauritius uritius Mauritius xican Mexico xico Mexico ldavia Moldova ldavian Moldova ldova Moldova ldovan Moldova nacan Monaco naco Monaco ngolia Mongolia ngolian Mongolia ntenegro Yugoslavia ntserrat Montserrat ntserratian Montserrat roccan Morocco rocco Morocco ,tswana Motswana ,tswanian Motswana ,zambican Mozambique ,zambique Mozambique *anmar - (burma) Myanmar - (Burma ) .mibia Namibia .mibian Namibia pal Nepal palese Nepal therland-antilles Netherland-Antilles !therlands Netherlands w-caledonia New-Caledonia !w-caledonian New-Caledonia w-zealand New-Zealand w-zealander New-Zealand _caragua Nicaragua _caraguan Nicaragua _ger Niger _geria Nigeria _gerian Nigeria Lgerien Niger )rth-korea North-Korea )rth-korean North-Korea )rway Norway )rwegian Norway nan Oman nani Oman icific-islander Pacific-Islands icific-islands Pacific-Islands akistan Pakistan akistani Pakistan alestine The-Occupied-Territories alestinian The-Occupied-Territories anama Panama anamanian Panama apua-new-guinea Papua-New-Guinea apua-new-guinean Papua-New-Guinea apuan Papua-New- Guinea araguay Paraguay araguayan Paraguay eru Peru eruvian Peru hilippine Philippines hilippines Philippines hilippino Philippines oland Poland olish Poland ortugal Portugal ortuguese Portugal uerto-rican Puerto-Rico uerto-rico Puerto-Rico atar Qatar atari Qatar omania Romania omanian Romania ussia Russia ussia Russia ussian Russia ussian-federation Russia wanda Rwanda wandan Rwanda aint-lucia Saint-Lucia aint-lucian Saint-Lucia alvadoran El-Salvador amoa Samoa amoan Samoa an-marino San-Marino anmarinese San-Marino ao-tome-and-principe Sao-Tome-and-Principe ao-tomean Sao-Tome-and-Principe audi Saudi-Arabia audi-arabia Saudi-Arabia audi-arabian Saudi-Arabia cotland United-Kingdom cottish United-Kingdom enegal Senegal enegalese . Senegal ,erbia Yugoslavia ,erbia-montenegro Yugoslavia erbian Yugoslavia ,eychelles Seychelles eychellois Seychelles ierra-leone Sierra-Leone sierra-leonean Sierra-Leone ingapore Singapore ingaporean Singapore lovak Slovakia lovakia Slovakia lovakian Slovakia lovenia Slovenia lovenian Slovenia olomon-islander Solomon-Islands ;olomon-islands Solomon-Islands omal-i Somalia ;omalia Somalia south-africa South-Africa south-african South-Africa south-korea South-Korea ;outh-korea South-Korea south-korean South-Korea ;oviet Russia ;oviet-union Russia ;pain Spain ;paniard Spain Oarii~Oi03/0 7143 PCT/US02/25756 D.PaIll ri-lanka Sri-Lanka ri-lankan Sri-Lanka idan Sudan .idanese Sudan arinam Suriname inflame Suriname irinamese Suriname nazi Swaziland Naziland Swaziland Nede Sweden nreden Sweden Nedish Sweden miss Switzerland nritzerland Switzerland aria Syria Arian Syria iiwan Taiwan aiwanese Taiwan aj ik Tajikistan 3.j iki Tajikistan ajikistan Taj ikistan 3nzania Tanzania anzanian Tanzania .iai Thailand zailand Thailand ze-US US
:ie-USA US
:ie-gambia The-Gambia :ie-occupied-territories The-Occupied-Territorie ze-us the-US
ae-usa the-US
imorese East-Timor Dgo Togo Dgolese Togo Dnga Tonga Dngan Tonga rinidad Trinidad-and-Tobago rinidad-and-tobago Trinidad-and-Tobago rinidadian Trinidad-and-Tobago inisia Tunisia .znisian Tunisia .irk Turkey ark-islander Turks-and-Caicos-Islands irkey Turkey irkish Turkey irkmen Turkmenistan urkmenistan Turkmenistan arks-and-caicos-islands Turks-and-Caicos-Island .k. U.K.
.s. US
.s.a. US
.s.s.r. U.S.S.R.
Banda Uganda gandan Uganda UK
kraine Ukraine krainian Ukraine kranian Ukraine nited-kingdom United-Kingdom nited-kingdom United-Kingdom .nited-kingdom United-Kingdom nited-states US
.nited-states-of-america- US
.nited-states-of-america US
.ruguay Uruguay .ruguayan Uruguay .sa US
.ssr USSR
.zbek Uzbekistan Lzbekistan Uzbekistan -anuatu Vanuatu -anuatuan Vanuatu -enezuela Venezuela -enezuelan Venezuela 'ietnam Vietnam Vietnamese Vietnam -irgin-islander British-Virgin-Islands 'est-Samoan Western-Samoa 'estern-samoa Western-Samoa 'emen Yemen -emeni Yemen ugoslav Yugoslavia ugoslavia Yugoslavia ugoslavia Yugoslavia ugoslavia Yugoslavia ugoslavian Yugoslavia ;afire Zaire ;airean Zaire ;ambia Zambia ;ambian Zambia ;imbabwe Zimbabwe ;imbabwean Zimbabwe

Claims (133)

1. A method in a computer system for transforming at least one sentence of a document or a query into a canonical representation, each sentence having a plurality of terms, comprising:
for each sentence, parsing the sentence to generate a parse structure having a plurality of syntactic elements;
determining a set of meaningful terms of the sentence from the syntactic elements;
determining from the structure of the parse structure and the syntactic elements a grammatical role for each meaningful term in the set of meaningful terms, wherein the grammatical role is at least one of a subject, object, verb, part of a prepositional phrase, noun modifier, or verb modifier;
determining an additional grammatical role for at least one of the meaningful terms, such that the at least one meaningful term is associated with at least two different grammatical roles, wherein the additional grammatical role is not determined from the parse structure and the additional grammatical role indicates that the at least one of the meaningful terms is a subject or an object in addition to the grammatical role determined from the parse structure; and storing in an enhanced data representation data structure a representation of each association between a meaningful term and its determined grammatical roles, in a manner that indicates a grammatical relationship between a plurality of the meaningful terms and such that the at least one meaningful term is associated with a plurality of grammatical relationships.
2. The method of claim 1 wherein heuristics are used to determine the additional grammatical role for the at least one of the meaningful terms.
3. The method of claim 2 wherein a meaningful term is associated with a verb modifier as the determined grammatical role and is associated with an object as the additional grammatical role.
4. The method of claim 2 wherein a meaningful term is associated with a verb modifier as the determined grammatical role and is associated with a subject as the additional grammatical role.
5. The method of claim 2 wherein a meaningful term is associated with a verb modifier as the determined grammatical role and is associated with a verb as the additional grammatical role.
6. The method of claim 2 wherein a meaningful term is associated with a subject as the determined grammatical role and is associated with an object as the additional grammatical role.
7. The method of claim 2 wherein a meaningful term is associated with a object as the determined grammatical role and is associated with a subject as the additional grammatical role.
8. The method of claim 2 wherein a meaningful term is associated with a noun modifier as the determined grammatical role and is associated with a subject as the additional grammatical role.
9. The method of claim 2 wherein a meaningful term is associated with a noun modifier as the determined grammatical role and is associated with an object as the additional grammatical role.
10. The method of claim 1 wherein the determined additional grammatical role is a part of grammar that is not implied by the position of the at least one meaningful term relative to the structure of the sentence.
11. The method of claim 1 wherein heuristics are used to determine which grammatical relationships are to be stored in the enhanced data representation data structure.
12. The method of claim 1 wherein the determining the grammatical role for each meaningful term and the determining of the additional grammatical role for at least one of the meaningful terms yields a plurality of grammatical relationships between meaningful terms that are identical.
13. The method of claim 1 wherein the document is part of a corpus of heterogeneous documents.
14. The method of claim 1 wherein the document comprises text and graphics and a sentence is created to correspond to and to describe each portion of graphics.
15. The method of claim 1 wherein the enhanced data representation data structure is used to index a corpus of documents.
16. The method of claim 1 wherein the enhanced data representation data structure corresponds to a query executed against objects in a corpus of documents and results are returned that satisfy the query when an object in the corpus contains similar terms associated with similar grammatical roles to the terms and their associated roles as stored in the enhanced data representation that corresponds to the query.
17. The method of claim 16 wherein results are returned that satisfy the query when an object in the corpus contains similar terms associated with similar grammatical roles to the terms and their associated roles as stored in the enhanced data representation.
18. The method of claim 17 wherein the objects in the corpus are sentences and indications of sentences that satisfy the query are returned.
19. The method of claim 17, further comprising returning indications of documents that contain similar terms to those found in at least one sentence that was indicated in the results returned that satisfied the query.
20. The method of claim 17, further comprising returning indications of documents that contain similar terms to those found in at least one document that was indicated in the results returned that satisfied the query.
21. The method of claim 16 wherein the enhanced data representation data structure corresponds to the query and terms that are associated with designated grammatical roles are returned for each object in the corpus that contains similar terms associated with similar grammatical roles to the terms and associated roles of designated relationships from the enhanced data representation data structure that corresponds to the query.
22. The method of claim 21 wherein heuristics are used to determine the designated relationships from the enhanced data representation data structure.
23. The method of claim 16 further comprising adding additional grammatical relationships to the enhanced data representation data structure to be used to execute the query against objects in a corpus of documents.
24. The method of claim 23 wherein heuristics are used to determine the additional grammatical relationships.
25. The method of claim 23 wherein at least one of entailed verbs or related verbs are used to add additional grammatical relationships.
26. The method of claim 16 wherein weighted results that satisfy the query are returned.
27. A computer-readable memory medium containing instructions for controlling a computer processor to transform at least one sentence of a document or a query into a canonical representation, each sentence having a plurality of terms, by performing a method comprising:

for each sentence, parsing the sentence to generate a parse structure having a plurality of syntactic elements;
determining a set of meaningful terms of the sentence from the syntactic elements;
determining from the structure of the parse structure and the syntactic elements a grammatical role for each meaningful term in the set of meaningful terms, wherein the grammatical role is at least one of a subject, object, verb, part of a prepositional phrase, noun modifier, or verb modifier;

determining an additional grammatical role for at least one of the meaningful terms, such that the at least one meaningful term is associated with at least two different grammatical roles, wherein the additional grammatical role is not determined from the parse structure and the additional grammatical role indicates that the at least one of the meaningful terms is a subject or an object in addition to the grammatical role determined from the parse structure; and storing in an enhanced data representation data structure a representation of each association between a meaningful term and its determined grammatical roles, in a manner that indicates a grammatical relationship between a plurality of the meaningful terms and such that the at least one meaningful term is associated with a plurality of grammatical relationships.
28. The computer-readable memory medium of claim 27 wherein heuristics are used to determine the additional grammatical role for the at least one of the meaningful terms.
29. The computer-readable memory medium of claim 28 wherein a meaningful term is associated with a verb modifier as the determined grammatical role and is associated with an object as the additional grammatical role.
30. The computer-readable memory medium of claim 28 wherein a meaningful term is associated with a verb modifier as the determined grammatical role and is associated with a subject as the additional grammatical role.
31. The computer-readable memory medium of claim 28 wherein a meaningful term is associated with a verb modifier as the determined grammatical role and is associated with a verb as the additional grammatical role.
32. The computer-readable memory medium of claim 28 wherein a meaningful term is associated with a subject as the determined grammatical role and is associated with an object as the additional grammatical role.
33. The computer-readable memory medium of claim 28 wherein a meaningful term is associated with a object as the determined grammatical role and is associated with a subject as the additional grammatical role.
34. The computer-readable memory medium of claim 28 wherein a meaningful term is associated with a noun modifier as the determined grammatical role and is associated with a subject as the additional grammatical role.
35. The computer-readable memory medium of claim 28 wherein a meaningful term is associated with a noun modifier as the determined grammatical role and is associated with an object as the additional grammatical role.
36. The computer-readable memory medium of claim 27 wherein the determined additional grammatical role is a part of grammar that is not implied by the position of the at least one meaningful term relative to the structure of the sentence.
37. The computer-readable memory medium of claim 27 wherein heuristics are used to determine which grammatical relationships are to be stored in the enhanced data representation data structure.
38. The computer-readable memory medium of claim 27 wherein the determining the grammatical role for each meaningful term and the determining of the additional grammatical role for at least one of the meaningful terms yields a plurality of grammatical relationships between meaningful terms that are identical.
39. The computer-readable memory medium of claim 27 wherein the determining of a grammatical role for each meaningful term includes determining whether the term is at least one of a subject, object, verb, part of a prepositional phrase, noun modifier, and verb modifier.
40. The computer-readable memory medium of claim 27 wherein the document is part of a corpus of heterogeneous documents.
41. The computer-readable memory medium of claim 27 wherein the document comprises text and graphics and a sentence is created to correspond to and to describe each portion of graphics.
42. The computer-readable memory medium of claim 27 wherein the enhanced data representation data structure is used to index a corpus of documents.
43. The computer-readable memory medium of claim 27 wherein the enhanced data representation data structure is used to execute a query against objects in a corpus of documents.
44. The computer-readable memory medium of claim 43 wherein results are returned that satisfy the query when an object in the corpus contains similar terms associated with similar grammatical roles to the terms and their associated roles as stored in the enhanced data representation.
45. The computer-readable memory medium of claim 44 wherein the objects in the corpus are sentences and sentences are returned that satisfy the query.
46. The computer-readable memory medium of claim 44, the instructions further controlling the computer processor by returning paragraphs that contain similar terms to those found in an indicated sentence.
47. The computer-readable memory medium of claim 44, the instructions further controlling the computer processor by returning documents that contain similar terms to those found in an indicated sentence.
48. The computer-readable memory medium of claim 43 wherein terms that are associated with designated grammatical roles are returned for each object in the corpus that contains similar terms associated with similar grammatical roles to the terms and associated roles of designated relationships from the enhanced data representation data structure.
49. The computer-readable memory medium of claim 48 wherein heuristics are used to determine the designated relationships from the enhanced data representation data structure.
50. The computer-readable memory medium of claim 43, the instructions further controlling the computer processor by adding additional grammatical relationships to the enhanced data representation data structure to be used to execute a query against objects in a corpus of documents.
51. The computer-readable memory medium of claim 50 wherein heuristics are used to determine the additional grammatical relationships.
52. The computer-readable memory medium of claim 50 wherein at least one of entailed verbs and related verbs are used to add additional grammatical relationships.
53. The computer-readable memory medium of claim 43 wherein weighted results are returned that satisfy the query.
54. A syntactic query engine for transforming at least one sentence of a document or a query into a canonical representation, each sentence having a plurality of terms, comprising:
parser residing in a memory medium that is configured to, when executed, decompose each sentence to generate a parse structure for the sentence having a plurality of syntactic elements; and postprocessor residing in a memory medium that is configured to, when executed receive from the parser the parse structure of the sentence;

determine a set of meaningful terms of the sentence from the syntactic elements;
determine from the structure of the parse structure and the syntactic elements a grammatical role for each meaningful term in the set of meaningful terms, wherein the grammatical role is at least one of a subject, object, verb, part of a prepositional phrase, noun modifier, or verb modifier;
determine an additional grammatical role for at least one of the meaningful terms, such that the at least one meaningful term is associated with at least two different grammatical roles, wherein the additional grammatical role is not determined from the parse structure and the additional grammatical role indicates that the at least one of the meaningful terms is a subject or an object in addition to the grammatical role determined from the parse structure; and store, in an enhanced data representation data structure, a representation of each association between a meaningful term and its determined grammatical roles, in a manner that indicates a grammatical relationship between a plurality of the meaningful terms and such that the at least one meaningful term is associated with a plurality of grammatical relationships.
55. The query engine of claim 54 wherein the postprocessor uses heuristics to determine the additional grammatical role for the at least one of the meaningful terms.
56. The query engine of claim 55 wherein the postprocessor associates a meaningful term with a verb modifier as the determined grammatical role and with an object as the additional grammatical role.
57. The query engine of claim 55 wherein the postprocessor associates a meaningful term with a verb modifier as the determined grammatical role and with a subject as the additional grammatical role.
58. The query engine of claim 55 wherein the postprocessor associates a meaningful term with a verb modifier as the determined grammatical role and with a verb as the additional grammatical role.
59. The query engine of claim 55 wherein the postprocessor associates a meaningful term with a subject as the determined grammatical role and with an object as the additional grammatical role.
60. The query engine of claim 55 wherein the postprocessor associates a meaningful term with a object as the determined grammatical role and with a subject as the additional grammatical role.
61. The query engine of claim 55 wherein the postprocessor associates a meaningful term with a noun modifier as the determined grammatical role and with a subject as the additional grammatical role.
62. The query engine of claim 55 wherein the postprocessor associates a meaningful term with a noun modifier as the determined grammatical role and with an object as the additional grammatical role.
63. The query engine of claim 54 wherein the determined additional grammatical role is a part of grammar that is not implied by the position of the at least one meaningful term relative to the structure of the sentence.
64. The query engine of claim 54 wherein the postprocessor uses heuristics to determine which grammatical relationships are to be stored in the enhanced data representation data structure.
65. The query engine of claim 54 wherein the determining the grammatical role for each meaningful term and the determining of the additional grammatical role for at least one of the meaningful terms yields a plurality of grammatical relationships between meaningful terms that are identical.
66. The query engine of claim 54 wherein the document is part of a corpus of heterogeneous documents.
67. The query engine of claim 54 wherein the document comprises text and graphics and a sentence is created to correspond to and to describe each portion of graphics.
68. The query engine of claim 54 wherein the enhanced data representation data structure is used to index a corpus of documents.
69. The query engine of claim 54, further comprising a query processor that uses the enhanced data representation data structure to execute a query against objects in a corpus of documents.
70. The query engine of claim 69 wherein the enhanced data representation data structure corresponds to the query and the query processor returns results that satisfy the query when an object in the corpus contains similar terms associated with similar grammatical roles to the terms and their associated roles as stored in the enhanced data representation.
71. The query engine of claim 70 wherein the objects in the corpus are sentences and the query processor returns indications of sentences that satisfy the query.
72. The query engine of claim 70 wherein the enhanced data representation data structure corresponds to the query and the query processor returns indications of documents that contain similar terms to those found in at least one sentence that was indicated in the results that satisfied the query.
73. The query engine of claim 70 enhanced data representation data structure corresponds to the query and the query processor returns indications of documents that contain similar terms to those found in at least one document that was indicated in the results that satisfied the query.
74. The query engine of claim 69 wherein the enhanced data representation data structure corresponds to the query and the query processor returns terms that are associated with designated grammatical roles for each object in the corpus that contains similar terms associated with similar grammatical roles to the terms and associated roles of designated relationships from the enhanced data representation data structure.
75. The query engine of claim 74 wherein heuristics are used to determine the designated relationships from the enhanced data representation data structure.
76. The query engine of claim 69 wherein the query processor adds additional grammatical relationships to the enhanced data representation data structure to be used to execute the query against objects in a corpus of documents.
77. The query engine of claim 76 wherein heuristics are used to determine the additional grammatical relationships.
78. The query engine of claim 76 wherein the query processor uses at least one of entailed verbs and related verbs to add additional grammatical relationships.
79. The query engine of claim 69 wherein the query processor returns weighted results that satisfy the query.
80. A method in a computer system for storing a normalized data structure representing at least one sentence of a document or a query, each sentence having a plurality of terms, comprising:
determining a set of meaningful terms of each sentence and at least one grammatical role for each meaningful term wherein the grammatical role is at least one of a subject, object, verb, part of a prepositional phrase, noun modifier, or verb modifier; and storing sets of grammatical relationships between a plurality of meaningful terms based upon the determined grammatical role of each meaningful term relative to a meaningful term that is being used as a governing verb, wherein, for each meaningful term that is being used as a governing verb, the normalized data structure contains a subject table having a set of meaningful term pairs that are subjects relative to the governing verb, an object table having a set of meaningful term pairs that are objects relative to the governing verb, a subject-object table representing an association between the subject table and the object table, a preposition table having a set of meaningful terms that are verb modifiers of prepositional phrases that relate to the governing verb, and a noun modifier table having a set of meaningful term pairs that are noun modifiers of noun phrases that relate to the governing verb.
81. The method of claim 80, further comprising storing meaningful terms that correspond to a designated attribute.
82. The method of claim 81 wherein the designated attribute is at least one of country name, date, money, amount, number, location, person, corporate name, and organization.
83. The method of claim 80 wherein the tables further comprise a sentence table that stores the text of the sentence.
84. The method of claim 80 wherein the tables further comprise an attributes table that stores meaningful terms that are associated with designated attributes.
85. The method of claim 80 wherein the tables are tables in a data base.
86. The method of claim 80 wherein the tables are stored as part of a file system.
87. The method of claim 80 wherein a plurality of grammatical relationships between meaningful terms that are identical are stored in the normalized data structure.
88. The method of claim 80 wherein the document is part of a corpus of heterogeneous documents.
89. The method of claim 80 wherein the normalized data structure is used to index a corpus of documents.
90. The method of claim 80 wherein the enhanced data representation data structure is used to execute a query against objects in a corpus of documents.
91. A data processing system comprising a computer processor and a memory, the memory containing structured data that stores a normalized representation of sentence data, the structured data being manipulated by the computer processor under the control of program code and stored in the memory as:

a subject table having a set of meaningful term pairs, each pair having a meaningful term that is associated with a grammatical role of a verb and a meaningful term that is associated with a grammatical role of a subject relative to the verb;

an object table having a set of meaningful term pairs, each pair having a meaningful term that is associate with a grammatical role of a verb and a meaningful term that is associated with a grammatical role of an object relative to the verb;

a representation of associations between the subject table and the object table, the representation indicating, for each meaningful term associated with the grammatical role of the verb, the meaningful terms that are associated with the grammatical role of subject relative to the verb and the meaningful terms that are associated with the grammatical role of object relative to the verb;
a preposition table having a set of meaningful term groups, each group having a meaningful term that is associated with a grammatical role of a verb, a meaningful term that is associated with a grammatical role of a preposition relative to the verb, and a meaningful term that is associated with a grammatical role of a verb modifier relative to the verb; and a noun modifier table having a set of meaningful term pairs, each pair having a meaningful term that is associated with a grammatical role of a noun and a meaningful term that is associated with a grammatical role of an noun modifier relative to the noun.
92. The data processing machine of claim 91 wherein the representation of associations between the between the subject table and the object table is produced by a database join operation.
93. The data processing machine of claim 91 wherein the representation of associations between the between the subject table and the object table is a subject-object table that contains a set of meaningful term groups, each group having a meaningful term that is associated with a grammatical of a verb, a meaningful term that is associated with the grammatical role of a subject relative to the verb; and a meaningful term that is associated with the grammatical role of an object relative to the verb.
94. The data processing machine of claim 91 wherein the structured data is manipulated by the computer processor under the control of program code to query objects of a data set that are indexed as the structured data.
95. The data processing machine of claim 91 wherein the program code decomposes objects of a data set and indexes the decomposed objects in the memory as the structured data.
96. A computer-readable memory medium containing instructions for controlling a computer processor to store in a data repository a normalized data structure representing at least one sentence of a document or a query, each sentence having a plurality of terms, by:
determining a set of meaningful terms of each sentence and at least one grammatical role for each meaningful term; and storing sets of grammatical relationships between a plurality of meaningful terms based upon the determined grammatical role of each meaningful term relative to a meaningful term that is being used as a governing verb, wherein, for each meaningful term that is being used as a governing verb, the normalized data structure contains a subject table having a set of meaningful term pairs that are subjects relative to the governing verb, an object table having a set of meaningful term pairs that are objects relative to the governing verb, a subject-object table representing an association between the subject table and the object table, a preposition table having a set of meaningful terms that are verb modifiers of prepositional phrases that contain the governing verb, and a noun modifier table having a set of meaningful terms that are noun modifiers of noun phrases that relate to the governing verb.
97. The computer-readable memory medium of claim 96, the instructions further controlling the computer processor to store meaningful terms that correspond to a designated attribute.
98. The computer-readable memory medium of claim 97 wherein the designated attribute is at least one of country name, date, money, amount, number, location, person, corporate name, and organization.
99. The computer-readable memory medium of claim 96 wherein the tables further comprise a sentence table that stores the text of the sentence.
100. The computer-readable memory medium of claim 96 wherein the tables further comprise an attributes table that stores meaningful terms that are associated with designated attributes.
101. The computer-readable memory medium of claim 96 wherein the tables are tables in a data base.
102. The computer-readable memory medium of claim 96 wherein the tables are stored as part of a file system.
103. The computer-readable memory medium of claim 96 wherein a plurality of grammatical relationships between meaningful terms that are identical are stored in the normalized data structure.
104. The computer-readable memory medium of claim 96 wherein the document is part of a corpus of heterogeneous documents.
105. The computer-readable memory medium of claim 96 wherein the normalized data structure is used to index a corpus of documents.
106. The computer-readable memory medium of claim 96 wherein the enhanced data representation data structure is used to execute a query against objects in a corpus of documents.
107. A computer system for storing a normalized data structure representing at least one sentence of a document or a query, each sentence having a plurality of terms, comprising:
an enhanced parsing mechanism that determines a set of meaningful terms for each sentence and at least one grammatical role for each meaningful term;

a data repository; and a storage mechanism structured to store sets of grammatical relationships between a plurality of the determined meaningful terms based upon the determined grammatical role of each meaningful term relative to a meaningful term that is being used as a governing verb, wherein, for each meaningful term that is being used as a governing verb, the normalized data structure contains a subject table having a set of meaningful term pairs that are subjects relative to the governing verb, an object table having a set of meaningful term pairs that are objects relative to the governing verb, a subject-object table representing an association between the subject table and the object table, a preposition table having a set of meaningful terms that are verb modifiers of prepositional phrases that relate to the governing verb, and a noun modifier table having a set of meaningful term pairs that are noun modifiers of noun phrases that relate to the governing verb.
108. The system of claim 107, the storage mechanism further structured to store meaningful terms that correspond to a designated attribute.
109. The system of claim 108 wherein the designated attribute is at least one of country name, date, money, amount, number, location, person, corporate name, and organization.
110. The system of claim 107 wherein the tables further comprise a sentence table that stores the text of the sentence.
111. The system of claim 107 wherein the tables further comprise an attributes table that stores meaningful terms that are associated with designated attributes.
112. The system of claim 107, further comprising a database in which the tables are stored.
113. The system of claim 107, further comprising a file system, wherein the tables are stored as part of the file system.
114. The system of claim 107 wherein a plurality of grammatical relationships between meaningful terms that are identical are stored in the normalized data structure.
115. The system of claim 107 wherein the document is part of a corpus of heterogeneous documents.
116. The system of claim 107 wherein the normalized data structure is used to index a corpus of documents.
117. The system of claim 107 wherein the enhanced data representation data structure is used to execute a query against objects in a corpus of documents.
118. The method of claim 18 wherein the returned indications of sentences are indications of documents.
119. The method of claim 19 wherein the at least one sentence that was indicated in the results is a paragraph.
120. The method of claim 119 wherein the indications of documents that contain similar terms are determined using latent semantic regression techniques.
121. The method of claim 19 wherein the indications of documents that contain similar terms are determined using latent semantic regression techniques.
122. The method of claim 20 wherein the indications of documents that contain similar terms are determined using latent semantic regression techniques.
123. The query engine of claim 71 wherein the returned indications of sentences are indications of paragraphs.
124. The query engine of claim 71 wherein the returned indications of sentences are indications of documents.
125. The query engine of claim 72 wherein the at least one sentence that was indicated in the results is a paragraph.
126. The query engine of claim 125 wherein the indications of documents that contain similar terms are determined using latent semantic regression techniques.
127. The query engine of claim 72 wherein the indications of documents that contain similar terms are determined using latent semantic regression techniques.
128. The query engine of claim 73 wherein the indications of documents that contain similar terms are determined using latent semantic regression techniques.
129. The method of claim 1 wherein an enhanced data representation data structure is generated for a plurality of sentences of each document in a corpus of documents as part of indexing the corpus, and further comprising:

receiving a query that specifies only a portion of a grammatical relationship between two terms, the portion being a specification of the relationship or a specification of one of the two terms but not both terms;

transforming the query into an enhanced data representation data structure;
and comparing the enhanced data representation data structure of the query against the enhanced data representation data structures of each indexed sentence such that indications of sentences are returned as matches when the enhanced data representation data structure of the query matches at least one of enhanced data representation data structures of the indexed sentence by using a wildcard to match unspecified information in the grammatical relationship indicated by the enhanced data representation data structure of the query.
130. The method of claim 129 wherein the query specifies only an action.
131. The method of claim 129 wherein the query specifies a single term as either a subject or an object, and further comprising:
when the query specifies the subject, the method returns a matching result when the term appears in an enhanced data representation data structure of an indexed sentence as an object; and when the query specifies the object, the method returns a matching result when the term appears in an enhanced data representation data structure of an indexed sentence as a subject.
132. The computer-readable memory medium of claim 44 wherein a wildcard is used to generate results that satisfy the query.
133. The query engine of claim 69 wherein the query processor associates a wildcard with the query to generate results that satisfy the query.
CA2457693A 2001-08-14 2002-08-14 Method and system for enhanced data searching Expired - Fee Related CA2457693C (en)

Applications Claiming Priority (5)

Application Number Priority Date Filing Date Title
US31238501P 2001-08-14 2001-08-14
US60/312,385 2001-08-14
US10/007,299 2001-11-08
US10/007,299 US7283951B2 (en) 2001-08-14 2001-11-08 Method and system for enhanced data searching
PCT/US2002/025756 WO2003017143A2 (en) 2001-08-14 2002-08-14 Method and system for enhanced data searching

Publications (2)

Publication Number Publication Date
CA2457693A1 CA2457693A1 (en) 2003-02-27
CA2457693C true CA2457693C (en) 2012-09-11

Family

ID=26676799

Family Applications (1)

Application Number Title Priority Date Filing Date
CA2457693A Expired - Fee Related CA2457693C (en) 2001-08-14 2002-08-14 Method and system for enhanced data searching

Country Status (6)

Country Link
US (1) US7283951B2 (en)
EP (1) EP1419461A2 (en)
CA (1) CA2457693C (en)
MX (1) MXPA04001488A (en)
NZ (1) NZ542960A (en)
WO (1) WO2003017143A2 (en)

Families Citing this family (165)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8645137B2 (en) 2000-03-16 2014-02-04 Apple Inc. Fast, language-independent method for user authentication by voice
US7526425B2 (en) * 2001-08-14 2009-04-28 Evri Inc. Method and system for extending keyword searching to syntactically and semantically annotated data
US7398201B2 (en) * 2001-08-14 2008-07-08 Evri Inc. Method and system for enhanced data searching
US7398209B2 (en) 2002-06-03 2008-07-08 Voicebox Technologies, Inc. Systems and methods for responding to natural language speech utterance
US7693720B2 (en) * 2002-07-15 2010-04-06 Voicebox Technologies, Inc. Mobile systems and methods for responding to natural language speech utterance
EP1391830A1 (en) * 2002-07-19 2004-02-25 Albert Inc. S.A. System for extracting informations from a natural language text
US7721192B2 (en) * 2002-11-27 2010-05-18 Microsoft Corporation User interface for a resource search tool
US8195631B2 (en) * 2002-12-23 2012-06-05 Sap Ag Resource finder tool
US7849175B2 (en) * 2002-12-23 2010-12-07 Sap Ag Control center pages
US20040122693A1 (en) * 2002-12-23 2004-06-24 Michael Hatscher Community builder
US10475116B2 (en) 2003-06-03 2019-11-12 Ebay Inc. Method to identify a suggested location for storing a data entry in a database
EP1661008A4 (en) * 2003-08-05 2007-01-24 Cnet Networks Inc Product placement engine and method
US7467131B1 (en) * 2003-09-30 2008-12-16 Google Inc. Method and system for query data caching and optimization in a search engine system
US7814127B2 (en) * 2003-11-20 2010-10-12 International Business Machines Corporation Natural language support for database applications
US20050149858A1 (en) * 2003-12-29 2005-07-07 Stern Mia K. System and method for managing documents with expression of dates and/or times
US20050187920A1 (en) * 2004-01-23 2005-08-25 Porto Ranelli, Sa Contextual searching
US7613719B2 (en) * 2004-03-18 2009-11-03 Microsoft Corporation Rendering tables with natural language commands
US20060080292A1 (en) * 2004-10-08 2006-04-13 Alanzi Faisal Saud M Enhanced interface utility for web-based searching
TWI269268B (en) * 2005-01-24 2006-12-21 Delta Electronics Inc Speech recognizing method and system
US20060225055A1 (en) * 2005-03-03 2006-10-05 Contentguard Holdings, Inc. Method, system, and device for indexing and processing of expressions
US20060253423A1 (en) * 2005-05-07 2006-11-09 Mclane Mark Information retrieval system and method
US8214310B2 (en) * 2005-05-18 2012-07-03 International Business Machines Corporation Cross descriptor learning system, method and program product therefor
US7640160B2 (en) 2005-08-05 2009-12-29 Voicebox Technologies, Inc. Systems and methods for responding to natural language speech utterance
US7620549B2 (en) 2005-08-10 2009-11-17 Voicebox Technologies, Inc. System and method of supporting adaptive misrecognition in conversational speech
US7949529B2 (en) 2005-08-29 2011-05-24 Voicebox Technologies, Inc. Mobile systems and methods of supporting natural language human-machine interactions
US8677377B2 (en) 2005-09-08 2014-03-18 Apple Inc. Method and apparatus for building an intelligent automated assistant
US20070078814A1 (en) * 2005-10-04 2007-04-05 Kozoru, Inc. Novel information retrieval systems and methods
US20070094250A1 (en) * 2005-10-20 2007-04-26 Yahoo! Inc. Using matrix representations of search engine operations to make inferences about documents in a search engine corpus
EP1949273A1 (en) * 2005-11-16 2008-07-30 Evri Inc. Extending keyword searching to syntactically and semantically annotated data
US7870031B2 (en) * 2005-12-22 2011-01-11 Ebay Inc. Suggested item category systems and methods
US7786979B2 (en) * 2006-01-13 2010-08-31 Research In Motion Limited Handheld electronic device and method for disambiguation of text input and providing spelling substitution
US9318108B2 (en) 2010-01-18 2016-04-19 Apple Inc. Intelligent automated assistant
US20080065370A1 (en) * 2006-09-11 2008-03-13 Takashi Kimoto Support apparatus for object-oriented analysis and design
US9495358B2 (en) 2006-10-10 2016-11-15 Abbyy Infopoisk Llc Cross-language text clustering
US9235573B2 (en) 2006-10-10 2016-01-12 Abbyy Infopoisk Llc Universal difference measure
US8073681B2 (en) 2006-10-16 2011-12-06 Voicebox Technologies, Inc. System and method for a cooperative conversational voice user interface
US7818176B2 (en) 2007-02-06 2010-10-19 Voicebox Technologies, Inc. System and method for selecting and presenting advertisements based on natural language processing of voice-based input
WO2008113045A1 (en) 2007-03-14 2008-09-18 Evri Inc. Query templates and labeled search tip system, methods, and techniques
US7680780B2 (en) * 2007-04-06 2010-03-16 International Business Machines Corporation Techniques for processing data from a multilingual database
WO2008144732A1 (en) * 2007-05-21 2008-11-27 Google Inc. Query statistics provider
AU2008312423B2 (en) 2007-10-17 2013-12-19 Vcvc Iii Llc NLP-based content recommender
US8594996B2 (en) 2007-10-17 2013-11-26 Evri Inc. NLP-based entity recognition and disambiguation
US8140335B2 (en) 2007-12-11 2012-03-20 Voicebox Technologies, Inc. System and method for providing a natural language voice user interface in an integrated voice navigation services environment
US8126881B1 (en) 2007-12-12 2012-02-28 Vast.com, Inc. Predictive conversion systems and methods
US20090198488A1 (en) * 2008-02-05 2009-08-06 Eric Arno Vigen System and method for analyzing communications using multi-placement hierarchical structures
US8996376B2 (en) 2008-04-05 2015-03-31 Apple Inc. Intelligent text-to-speech conversion
US9305548B2 (en) 2008-05-27 2016-04-05 Voicebox Technologies Corporation System and method for an integrated, multi-modal, multi-device natural language voice services environment
US8589161B2 (en) 2008-05-27 2013-11-19 Voicebox Technologies, Inc. System and method for an integrated, multi-modal, multi-device natural language voice services environment
US9424339B2 (en) 2008-08-15 2016-08-23 Athena A. Smyros Systems and methods utilizing a search engine
US8326637B2 (en) 2009-02-20 2012-12-04 Voicebox Technologies, Inc. System and method for processing multi-modal device interactions in a natural language voice services environment
US20100268600A1 (en) * 2009-04-16 2010-10-21 Evri Inc. Enhanced advertisement targeting
US10241752B2 (en) 2011-09-30 2019-03-26 Apple Inc. Interface for a virtual digital assistant
US10241644B2 (en) 2011-06-03 2019-03-26 Apple Inc. Actionable reminder entries
WO2010150910A1 (en) * 2009-06-26 2010-12-29 楽天株式会社 Information search device, information search method, information search program, and storage medium on which information search program has been stored
US20100332217A1 (en) * 2009-06-29 2010-12-30 Shalom Wintner Method for text improvement via linguistic abstractions
US9431006B2 (en) 2009-07-02 2016-08-30 Apple Inc. Methods and apparatuses for automatic speech recognition
US8645372B2 (en) * 2009-10-30 2014-02-04 Evri, Inc. Keyword-based search engine results using enhanced query strategies
US9171541B2 (en) 2009-11-10 2015-10-27 Voicebox Technologies Corporation System and method for hybrid processing in a natural language voice services environment
US9502025B2 (en) 2009-11-10 2016-11-22 Voicebox Technologies Corporation System and method for providing a natural language content dedication service
US9047283B1 (en) * 2010-01-29 2015-06-02 Guangsheng Zhang Automated topic discovery in documents and content categorization
US8682667B2 (en) 2010-02-25 2014-03-25 Apple Inc. User profiling for selecting user specific voice input processing information
US9710556B2 (en) 2010-03-01 2017-07-18 Vcvc Iii Llc Content recommendation based on collections of entities
US9773056B1 (en) * 2010-03-23 2017-09-26 Intelligent Language, LLC Object location and processing
US8645125B2 (en) 2010-03-30 2014-02-04 Evri, Inc. NLP-based systems and methods for providing quotations
US8527494B2 (en) * 2010-05-14 2013-09-03 Business Objects Software Limited Tools discovery in cloud computing
US8924198B2 (en) * 2010-07-26 2014-12-30 Radiant Logic, Inc. Searching and browsing of contextual information
US8838633B2 (en) 2010-08-11 2014-09-16 Vcvc Iii Llc NLP-based sentiment analysis
US9405848B2 (en) 2010-09-15 2016-08-02 Vcvc Iii Llc Recommending mobile device activities
US9852732B2 (en) * 2010-10-07 2017-12-26 Avaya Inc. System and method for near real-time identification and definition query
US8725739B2 (en) 2010-11-01 2014-05-13 Evri, Inc. Category-based content recommendation
WO2012067586A1 (en) * 2010-11-15 2012-05-24 Agency For Science, Technology And Research Database searching
US20120166415A1 (en) * 2010-12-23 2012-06-28 Microsoft Corporation Supplementing search results with keywords derived therefrom
US9262612B2 (en) 2011-03-21 2016-02-16 Apple Inc. Device access using voice authentication
US9116995B2 (en) 2011-03-30 2015-08-25 Vcvc Iii Llc Cluster-based identification of news stories
US20130013616A1 (en) * 2011-07-08 2013-01-10 Jochen Lothar Leidner Systems and Methods for Natural Language Searching of Structured Data
US8994660B2 (en) 2011-08-29 2015-03-31 Apple Inc. Text correction processing
US20130110853A1 (en) * 2011-10-31 2013-05-02 Microsoft Corporation Sql constructs ported to non-sql domains
US9280610B2 (en) 2012-05-14 2016-03-08 Apple Inc. Crowd sourcing information to fulfill user requests
US9721563B2 (en) 2012-06-08 2017-08-01 Apple Inc. Name recognition system
CN103514181B (en) * 2012-06-19 2018-07-31 阿里巴巴集团控股有限公司 A kind of searching method and device
US9390174B2 (en) * 2012-08-08 2016-07-12 Google Inc. Search result ranking and presentation
US9547647B2 (en) 2012-09-19 2017-01-17 Apple Inc. Voice-based media searching
US9411803B2 (en) * 2012-09-28 2016-08-09 Hewlett Packard Enterprise Development Lp Responding to natural language queries
US9152623B2 (en) * 2012-11-02 2015-10-06 Fido Labs, Inc. Natural language processing system and method
US20140236986A1 (en) * 2013-02-21 2014-08-21 Apple Inc. Natural language document search
US9104718B1 (en) 2013-03-07 2015-08-11 Vast.com, Inc. Systems, methods, and devices for measuring similarity of and generating recommendations for unique items
US9465873B1 (en) 2013-03-07 2016-10-11 Vast.com, Inc. Systems, methods, and devices for identifying and presenting identifications of significant attributes of unique items
US10007946B1 (en) 2013-03-07 2018-06-26 Vast.com, Inc. Systems, methods, and devices for measuring similarity of and generating recommendations for unique items
US9830635B1 (en) 2013-03-13 2017-11-28 Vast.com, Inc. Systems, methods, and devices for determining and displaying market relative position of unique items
US10438254B2 (en) 2013-03-15 2019-10-08 Ebay Inc. Using plain text to list an item on a publication system
US9674132B1 (en) * 2013-03-25 2017-06-06 Guangsheng Zhang System, methods, and user interface for effectively managing message communications
US9582608B2 (en) 2013-06-07 2017-02-28 Apple Inc. Unified ranking with entropy-weighted information for phrase-based semantic auto-completion
WO2014197334A2 (en) 2013-06-07 2014-12-11 Apple Inc. System and method for user-specified pronunciation of words for speech synthesis and recognition
WO2014197336A1 (en) 2013-06-07 2014-12-11 Apple Inc. System and method for detecting errors in interactions with a voice-based digital assistant
WO2014197335A1 (en) 2013-06-08 2014-12-11 Apple Inc. Interpreting and acting upon commands that involve sharing information with remote devices
EP3937002A1 (en) 2013-06-09 2022-01-12 Apple Inc. Device, method, and graphical user interface for enabling conversation persistence across two or more instances of a digital assistant
US10176167B2 (en) 2013-06-09 2019-01-08 Apple Inc. System and method for inferring user intent from speech inputs
US10127596B1 (en) 2013-12-10 2018-11-13 Vast.com, Inc. Systems, methods, and devices for generating recommendations of unique items
US9430463B2 (en) 2014-05-30 2016-08-30 Apple Inc. Exemplar-based natural language processing
US9338493B2 (en) 2014-06-30 2016-05-10 Apple Inc. Intelligent automated assistant for TV user interactions
US10585924B2 (en) * 2014-08-08 2020-03-10 Cuong Duc Nguyen Processing natural-language documents and queries
EP3195145A4 (en) 2014-09-16 2018-01-24 VoiceBox Technologies Corporation Voice commerce
WO2016044321A1 (en) 2014-09-16 2016-03-24 Min Tang Integration of domain information into state transitions of a finite state transducer for natural language processing
US9668121B2 (en) 2014-09-30 2017-05-30 Apple Inc. Social reminders
US9747896B2 (en) 2014-10-15 2017-08-29 Voicebox Technologies Corporation System and method for providing follow-up responses to prior natural language inputs of a user
US20160124937A1 (en) * 2014-11-03 2016-05-05 Service Paradigm Pty Ltd Natural language execution system, method and computer readable medium
US9904667B2 (en) * 2014-11-20 2018-02-27 International Business Machines Corporation Entity-relation based passage scoring in a question answering computer system
US10614799B2 (en) 2014-11-26 2020-04-07 Voicebox Technologies Corporation System and method of providing intent predictions for an utterance prior to a system detection of an end of the utterance
US10431214B2 (en) 2014-11-26 2019-10-01 Voicebox Technologies Corporation System and method of determining a domain and/or an action related to a natural language input
US10318527B2 (en) * 2015-01-27 2019-06-11 International Business Machines Corporation Search-based detection, link, and acquisition of data
WO2016141187A1 (en) * 2015-03-04 2016-09-09 The Allen Institute For Artificial Intelligence System and methods for generating treebanks for natural language processing by modifying parser operation through introduction of constraints on parse tree structure
US10567477B2 (en) 2015-03-08 2020-02-18 Apple Inc. Virtual assistant continuity
US9727552B2 (en) * 2015-05-27 2017-08-08 International Business Machines Corporation Utilizing a dialectical model in a question answering system
US10102275B2 (en) * 2015-05-27 2018-10-16 International Business Machines Corporation User interface for a query answering system
US11423023B2 (en) 2015-06-05 2022-08-23 Apple Inc. Systems and methods for providing improved search functionality on a client device
US9578173B2 (en) 2015-06-05 2017-02-21 Apple Inc. Virtual assistant aided communication with 3rd party service in a communication session
US10769184B2 (en) * 2015-06-05 2020-09-08 Apple Inc. Systems and methods for providing improved search functionality on a client device
US10747498B2 (en) 2015-09-08 2020-08-18 Apple Inc. Zero latency digital assistant
US10671428B2 (en) 2015-09-08 2020-06-02 Apple Inc. Distributed personal assistant
US9697820B2 (en) 2015-09-24 2017-07-04 Apple Inc. Unit-selection text-to-speech synthesis using concatenation-sensitive neural networks
US10366158B2 (en) 2015-09-29 2019-07-30 Apple Inc. Efficient word encoding for recurrent neural network language models
US11010550B2 (en) 2015-09-29 2021-05-18 Apple Inc. Unified language modeling framework for word prediction, auto-completion and auto-correction
US11587559B2 (en) 2015-09-30 2023-02-21 Apple Inc. Intelligent device identification
US10558718B2 (en) * 2015-11-03 2020-02-11 Dell Products, Lp Systems and methods for website improvement
US10691473B2 (en) 2015-11-06 2020-06-23 Apple Inc. Intelligent automated assistant in a messaging environment
US10049668B2 (en) 2015-12-02 2018-08-14 Apple Inc. Applying neural network language models to weighted finite state transducers for automatic speech recognition
US10146858B2 (en) 2015-12-11 2018-12-04 International Business Machines Corporation Discrepancy handler for document ingestion into a corpus for a cognitive computing system
US10223066B2 (en) 2015-12-23 2019-03-05 Apple Inc. Proactive assistance based on dialog communication between devices
US10176250B2 (en) 2016-01-12 2019-01-08 International Business Machines Corporation Automated curation of documents in a corpus for a cognitive computing system
US9842161B2 (en) 2016-01-12 2017-12-12 International Business Machines Corporation Discrepancy curator for documents in a corpus of a cognitive computing system
US10446143B2 (en) 2016-03-14 2019-10-15 Apple Inc. Identification of voice inputs providing credentials
US9934775B2 (en) 2016-05-26 2018-04-03 Apple Inc. Unit-selection text-to-speech synthesis based on predicted concatenation parameters
US9972304B2 (en) 2016-06-03 2018-05-15 Apple Inc. Privacy preserving distributed evaluation framework for embedded personalized systems
US10249300B2 (en) 2016-06-06 2019-04-02 Apple Inc. Intelligent list reading
US10049663B2 (en) 2016-06-08 2018-08-14 Apple, Inc. Intelligent automated assistant for media exploration
DK179588B1 (en) 2016-06-09 2019-02-22 Apple Inc. Intelligent automated assistant in a home environment
US10509862B2 (en) 2016-06-10 2019-12-17 Apple Inc. Dynamic phrase expansion of language input
US10192552B2 (en) 2016-06-10 2019-01-29 Apple Inc. Digital assistant providing whispered speech
US10490187B2 (en) 2016-06-10 2019-11-26 Apple Inc. Digital assistant providing automated status report
US10067938B2 (en) 2016-06-10 2018-09-04 Apple Inc. Multilingual word prediction
US10586535B2 (en) 2016-06-10 2020-03-10 Apple Inc. Intelligent digital assistant in a multi-tasking environment
DK201670540A1 (en) 2016-06-11 2018-01-08 Apple Inc Application integration with a digital assistant
DK179415B1 (en) 2016-06-11 2018-06-14 Apple Inc Intelligent device arbitration and control
DK179343B1 (en) 2016-06-11 2018-05-14 Apple Inc Intelligent task discovery
DK179049B1 (en) 2016-06-11 2017-09-18 Apple Inc Data driven natural language event detection and classification
US10331784B2 (en) 2016-07-29 2019-06-25 Voicebox Technologies Corporation System and method of disambiguating natural language processing requests
US10043516B2 (en) 2016-09-23 2018-08-07 Apple Inc. Intelligent automated assistant
US10593346B2 (en) 2016-12-22 2020-03-17 Apple Inc. Rank-reduced token representation for automatic speech recognition
US10997227B2 (en) 2017-01-18 2021-05-04 Google Llc Systems and methods for processing a natural language query in data tables
DK201770439A1 (en) 2017-05-11 2018-12-13 Apple Inc. Offline personal assistant
DK179496B1 (en) 2017-05-12 2019-01-15 Apple Inc. USER-SPECIFIC Acoustic Models
DK179745B1 (en) 2017-05-12 2019-05-01 Apple Inc. SYNCHRONIZATION AND TASK DELEGATION OF A DIGITAL ASSISTANT
DK201770431A1 (en) 2017-05-15 2018-12-20 Apple Inc. Optimizing dialogue policy decisions for digital assistants using implicit feedback
DK201770432A1 (en) 2017-05-15 2018-12-21 Apple Inc. Hierarchical belief states for digital assistants
DK179560B1 (en) 2017-05-16 2019-02-18 Apple Inc. Far-field extension for digital assistant services
US10901811B2 (en) 2017-07-31 2021-01-26 Splunk Inc. Creating alerts associated with a data storage system based on natural language requests
US11494395B2 (en) 2017-07-31 2022-11-08 Splunk Inc. Creating dashboards for viewing data in a data storage system based on natural language requests
CN107679186B (en) * 2017-09-30 2021-12-21 北京奇虎科技有限公司 Method and device for searching entity based on entity library
US10268704B1 (en) 2017-10-12 2019-04-23 Vast.com, Inc. Partitioned distributed database systems, devices, and methods
US10810266B2 (en) * 2017-11-17 2020-10-20 Adobe Inc. Document search using grammatical units
US10956670B2 (en) 2018-03-03 2021-03-23 Samurai Labs Sp. Z O.O. System and method for detecting undesirable and potentially harmful online behavior
US11461555B2 (en) 2018-11-30 2022-10-04 Thomson Reuters Enterprise Centre Gmbh Systems and methods for identifying an event in data
US11182539B2 (en) * 2018-11-30 2021-11-23 Thomson Reuters Enterprise Centre Gmbh Systems and methods for event summarization from data
WO2020234673A1 (en) * 2019-05-17 2020-11-26 Thomson Reuters Enterprise Centre Gmbh Systems and methods for event summarization from data
US11816102B2 (en) * 2020-08-12 2023-11-14 Oracle International Corporation Natural language query translation based on query graphs

Family Cites Families (49)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0280866A3 (en) 1987-03-03 1992-07-08 International Business Machines Corporation Computer method for automatic extraction of commonly specified information from business correspondence
US4839853A (en) * 1988-09-15 1989-06-13 Bell Communications Research, Inc. Computer information retrieval using latent semantic structure
US5301109A (en) * 1990-06-11 1994-04-05 Bell Communications Research, Inc. Computerized cross-language document retrieval using latent semantic indexing
US5317507A (en) * 1990-11-07 1994-05-31 Gallant Stephen I Method for document retrieval and for word sense disambiguation using neural networks
US5325298A (en) * 1990-11-07 1994-06-28 Hnc, Inc. Methods for generating or revising context vectors for a plurality of word stems
US5377103A (en) * 1992-05-15 1994-12-27 International Business Machines Corporation Constrained natural language interface for a computer that employs a browse function
CA2102325A1 (en) 1992-11-04 1994-05-05 Edwin R. Addison Method for resolution of natural-language queries against full-text databases
US5331556A (en) * 1993-06-28 1994-07-19 General Electric Company Method for natural language data processing using morphological and part-of-speech information
US5619709A (en) * 1993-09-20 1997-04-08 Hnc, Inc. System and method of context vector generation and retrieval
US5799268A (en) * 1994-09-28 1998-08-25 Apple Computer, Inc. Method for extracting knowledge from online documentation and creating a glossary, index, help database or the like
US5794050A (en) * 1995-01-04 1998-08-11 Intelligent Text Processing, Inc. Natural language understanding system
US6006221A (en) * 1995-08-16 1999-12-21 Syracuse University Multilingual document retrieval system and method using semantic vector matching
US6026388A (en) * 1995-08-16 2000-02-15 Textwise, Llc User interface and other enhancements for natural language information retrieval system and method
US5778362A (en) * 1996-06-21 1998-07-07 Kdl Technologies Limted Method and system for revealing information structures in collections of data items
US5857179A (en) * 1996-09-09 1999-01-05 Digital Equipment Corporation Computer method and apparatus for clustering documents and automatic generation of cluster keywords
US5836771A (en) * 1996-12-02 1998-11-17 Ho; Chi Fai Learning method and system based on questioning
US5950189A (en) * 1997-01-02 1999-09-07 At&T Corp Retrieval system and method
GB9713019D0 (en) * 1997-06-20 1997-08-27 Xerox Corp Linguistic search system
US5933822A (en) * 1997-07-22 1999-08-03 Microsoft Corporation Apparatus and methods for an information retrieval system that employs natural language processing of search results to improve overall precision
KR980004126A (en) * 1997-12-16 1998-03-30 양승택 Query Language Conversion Apparatus and Method for Searching Multilingual Web Documents
US6122647A (en) * 1998-05-19 2000-09-19 Perspecta, Inc. Dynamic generation of contextual links in hypertext documents
US6006225A (en) * 1998-06-15 1999-12-21 Amazon.Com Refining search queries by the suggestion of correlated terms from prior searches
US6192360B1 (en) * 1998-06-23 2001-02-20 Microsoft Corporation Methods and apparatus for classifying text and for building a text classifier
US6167370A (en) 1998-09-09 2000-12-26 Invention Machine Corporation Document semantic analysis/selection with knowledge creativity capability utilizing subject-action-object (SAO) structures
US6480843B2 (en) * 1998-11-03 2002-11-12 Nec Usa, Inc. Supporting web-query expansion efficiently using multi-granularity indexing and query processing
US6460029B1 (en) * 1998-12-23 2002-10-01 Microsoft Corporation System for improving search text
US6584464B1 (en) * 1999-03-19 2003-06-24 Ask Jeeves, Inc. Grammar template query system
US6510406B1 (en) * 1999-03-23 2003-01-21 Mathsoft, Inc. Inverse inference engine for high performance web search
US6601026B2 (en) * 1999-09-17 2003-07-29 Discern Communications, Inc. Information retrieval by natural language querying
US6532469B1 (en) 1999-09-20 2003-03-11 Clearforest Corp. Determining trends using text mining
US20020010574A1 (en) * 2000-04-20 2002-01-24 Valery Tsourikov Natural language processing and query driven information retrieval
US20020007267A1 (en) 2000-04-21 2002-01-17 Leonid Batchilo Expanded search and display of SAO knowledge base information
US20040125877A1 (en) * 2000-07-17 2004-07-01 Shin-Fu Chang Method and system for indexing and content-based adaptive streaming of digital video content
US6728707B1 (en) * 2000-08-11 2004-04-27 Attensity Corporation Relational text index creation and searching
US6738765B1 (en) * 2000-08-11 2004-05-18 Attensity Corporation Relational text index creation and searching
US6732098B1 (en) * 2000-08-11 2004-05-04 Attensity Corporation Relational text index creation and searching
US6732097B1 (en) * 2000-08-11 2004-05-04 Attensity Corporation Relational text index creation and searching
US6741988B1 (en) * 2000-08-11 2004-05-25 Attensity Corporation Relational text index creation and searching
AUPR082400A0 (en) 2000-10-17 2000-11-09 Telstra R & D Management Pty Ltd An information retrieval system
US20020091671A1 (en) * 2000-11-23 2002-07-11 Andreas Prokoph Method and system for data retrieval in large collections of data
US7295965B2 (en) * 2001-06-29 2007-11-13 Honeywell International Inc. Method and apparatus for determining a measure of similarity between natural language sentences
US20030101182A1 (en) * 2001-07-18 2003-05-29 Omri Govrin Method and system for smart search engine and other applications
US7398201B2 (en) * 2001-08-14 2008-07-08 Evri Inc. Method and system for enhanced data searching
US7526425B2 (en) * 2001-08-14 2009-04-28 Evri Inc. Method and system for extending keyword searching to syntactically and semantically annotated data
US20030115191A1 (en) * 2001-12-17 2003-06-19 Max Copperman Efficient and cost-effective content provider for customer relationship management (CRM) or other applications
AU2003239962A1 (en) * 2002-06-03 2003-12-19 Arizona Board Of Regents Acting For And On Behalf Of Arizona State University System and method of analyzing the temporal evolution of text using dynamic centering resonance analysis
EP1588277A4 (en) * 2002-12-06 2007-04-25 Attensity Corp Systems and methods for providing a mixed data integration service
GB2411014A (en) * 2004-02-11 2005-08-17 Autonomy Corp Ltd Automatic searching for relevant information
WO2009027536A1 (en) 2007-08-31 2009-03-05 Profine Gmbh Plastic profile with a photocatalytically active surface

Also Published As

Publication number Publication date
MXPA04001488A (en) 2004-10-27
NZ542960A (en) 2007-06-29
EP1419461A2 (en) 2004-05-19
WO2003017143A3 (en) 2003-10-30
CA2457693A1 (en) 2003-02-27
US20040221235A1 (en) 2004-11-04
US7283951B2 (en) 2007-10-16
WO2003017143A2 (en) 2003-02-27

Similar Documents

Publication Publication Date Title
CA2457693C (en) Method and system for enhanced data searching
US7526425B2 (en) Method and system for extending keyword searching to syntactically and semantically annotated data
Zou et al. IndexFinder: a method of extracting key concepts from clinical texts for indexing
US5933822A (en) Apparatus and methods for an information retrieval system that employs natural language processing of search results to improve overall precision
US6366908B1 (en) Keyfact-based text retrieval system, keyfact-based text index method, and retrieval method
Arts et al. arTenTen: Arabic corpus and word sketches
US7593940B2 (en) System and method for creation, representation, and delivery of document corpus entity co-occurrence information
NZ542223A (en) Method and system for enhanced data searching by parsing data into syntactic units
JP2001515245A (en) Methods and systems for selecting data sets
US20080065621A1 (en) Ambiguous entity disambiguation method
EP2092419A2 (en) Method and system for high performance data metatagging and data indexing using coprocessors
US20080215585A1 (en) System and method for creation, representation, and delivery of document corpus entity co-occurrence information
CN102117285B (en) Search method based on semantic indexing
Lehmann et al. BNCweb
Markó et al. Interlingual Indexing across Different Languages.
Kokkinakis Collection, Encoding and Linguistic Processing of a Swedish Medical Corpus-The MEDLEX Experience.
Krishnan et al. Search for patents using treatment and causal relationships
Wu et al. Aligned-layer text search in clinical notes
Zhou et al. Testing and Evaluating SNOMED CT Web Browsers' Textual Search Feature
Buriachok et al. Implantation of indexing optimization technology for highly specialized terms based on Metaphone phonetical algorithm
AU2002323136A1 (en) Method and system for enhanced data searching
Bahrami et al. SEUPD@ CLEF: Team INTSEG on Argument Retrieval for Controversial Questions.
Gopichand et al. Vocabulary Mismatch Avoidance Techniques
Nogueras-Iso et al. Exploiting disambiguated thesauri for information retrieval in metadata catalogs
RU2348072C1 (en) Context-based method of assessing manifestation degree of notion in text for search systems

Legal Events

Date Code Title Description
EEER Examination request
MKLA Lapsed

Effective date: 20200831