| { |
| "paper_id": "A94-1022", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T01:13:48.554412Z" |
| }, |
| "title": "The Delphi Natural Language Understanding System", |
| "authors": [ |
| { |
| "first": "Madeleine", |
| "middle": [], |
| "last": "Bates", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "BBN Systems and Technologies, Inc", |
| "location": { |
| "addrLine": "70 Fawcett St", |
| "postCode": "02138", |
| "settlement": "Cambridge", |
| "region": "MA" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Bobrow", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "BBN Systems and Technologies, Inc", |
| "location": { |
| "addrLine": "70 Fawcett St", |
| "postCode": "02138", |
| "settlement": "Cambridge", |
| "region": "MA" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Ingria", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "BBN Systems and Technologies, Inc", |
| "location": { |
| "addrLine": "70 Fawcett St", |
| "postCode": "02138", |
| "settlement": "Cambridge", |
| "region": "MA" |
| } |
| }, |
| "email": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Stallard", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "BBN Systems and Technologies, Inc", |
| "location": { |
| "addrLine": "70 Fawcett St", |
| "postCode": "02138", |
| "settlement": "Cambridge", |
| "region": "MA" |
| } |
| }, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "This paper presents Delphi, the natural language component of the BBN Spoken Language System. Delphi is a domainindependent natural language question answering system that is solidly based on linguistic principles, yet which is also robust to ungrammatical input. It includes a domain-independent, broad-coverage grammar of English. Analysis components include an agenda-based best-first parser and a fallback component for partial understanding that works by fragment combination. Delphi has been formally evaluated in the ARPA Spoken Language program's ATIS (Airline Travel Information System) domain, and has performed well. Delphi has also been ported to a spoken language demonstration system in an Air Force Resource Management domain. We discuss results of the evaluation as well as the porting process.", |
| "pdf_parse": { |
| "paper_id": "A94-1022", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "This paper presents Delphi, the natural language component of the BBN Spoken Language System. Delphi is a domainindependent natural language question answering system that is solidly based on linguistic principles, yet which is also robust to ungrammatical input. It includes a domain-independent, broad-coverage grammar of English. Analysis components include an agenda-based best-first parser and a fallback component for partial understanding that works by fragment combination. Delphi has been formally evaluated in the ARPA Spoken Language program's ATIS (Airline Travel Information System) domain, and has performed well. Delphi has also been ported to a spoken language demonstration system in an Air Force Resource Management domain. We discuss results of the evaluation as well as the porting process.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Delphi is a natural language understanding system based on general linguistic principles which is adaptable to any question-answering domain. It incorporates a number of domain-independent knowledge bases, including a general, broad-coverage grammar of English with a powerful and flexible handling of complementation. Unlike most other linguistically motivated systems, however, Delphi is also highly robust, allowing for partial understanding when an input is ungrammatical, disfluent, or not properly transcribed by a speech recognizer. Thus, Delphi can be used for a spoken language application as readily as for a written one. Furthermore, Delphi's partial understanding component, called the Semantic Linker, is driven off the same system of semantic rules as Delphi's regular best-first parser. Building a robust application therefore requires no additional effort.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "There are several components of the system, which is diagrammed in Figure 1 . First are the parser and Semantic Linker, which output an intermediate representation we call a \"semantic graph\". The semantic graph is passed to a quantification stage which produces a fully scoped logical form from it. The logical form is then passed to the discourse stage, which resolves pronominal references and performs other types of task-dependent constraint resolution to produce the final logical form. The final logical form is then passed to the backend translator, and then to the application system which produces the response. Several knowledge bases are employed by these analysis components, including grammar, \"realization rules\" and the domain model, which represents the set of classes and binary relations of the given application domain. Delphi differs from most other linguistically motivated systems in the role that is played by syntax. The primary function of Delphi's parser and syntactic knowledge bases is not to produce a parse tree, but rather to constrain the search for an appropriate semantic graph interpretation of the utterance. Semantic graphs are produced not by rule-to-rule compositionality, but by what might be called \"relation-to-relation\" compositionality -the association of grammatical relations in the syntactic structure with semantic relations in the se-mantic graph.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 67, |
| "end": 75, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "This more incremental view of the syntax/semantics interface has three crucial advantages. First, there is much more flexibility with respect to ordering and optionality of constituents. Second, because relation-torelation translations are simple, the task of porting the system is greatly simplified. Third and finally, partial or fragmentary analyses can be represented, and a complete semantic graph interpretation for the utterance produced even when a complete syntactic analyses is not available.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In the remainder of the paper, we describe Delphi's main processing components, representational formalisms, and knowledge bases.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "And The Syntax/Semantics", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Grammar", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The Delphi grammar is a broad coverage, domain independent grammar of English written in a version of the Definite Clause Grammar formalism (Pereira and Warren, 1980 ) that has been extended to include labeling of right-hand side elements with the grammatical relations they bear to the head of the construction. An example is:", |
| "cite_spans": [ |
| { |
| "start": 140, |
| "end": 165, |
| "text": "(Pereira and Warren, 1980", |
| "ref_id": "BIBREF7" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "(S ?arg ?mood)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "-> subject: (NP ?arg ?mood etc.) head: (VP ?agr ?mood etc.)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "In this rule, there is a head VP and an NP which bears the SUBJECT relation to it. Other grammatical relations include the familar DIRECT-OBJECT and INDIRECT-OBJECT as well as the prepositions, such as TO, FROM, WITH and so on. Annotating sub-constituents with grammatical relations regularizes the syntactic structure with respect to particular grammatical rules, and allows a \"relation-torelation\" form of compositionality, as opposed to the more traditional \"rule-to-rule\" version that is exemplified by such systems as Gemini (Dowding et al, 1993) and the Core Language Engine (Alshawi, 1992) . In relation-to-relation compositionality, each grammatical relation in the syntactic structure corresponds to a semantic relation in a parallel semantic structure we call a \"semantic graph\". The terminal nodes of the semantic graph are the word meanings, corresponding to the lexical heads of syntactic structure.", |
| "cite_spans": [ |
| { |
| "start": 530, |
| "end": 551, |
| "text": "(Dowding et al, 1993)", |
| "ref_id": null |
| }, |
| { |
| "start": 581, |
| "end": 596, |
| "text": "(Alshawi, 1992)", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "An example of a semantic graph, representing the meaning of \"What flights fly from Boston to Denver\", may be seen in Figure 2 . The semantic graph is not a fully quantified formula; rather it may be thought of as a form of predicate-argument representation, with quantifiers in place, from which a fully quantified formula can be generated. The allowed class and relation labels come from the domain model. This view of the syntax/semantics interface has marked advantages. For one thing, because the syntactic/semantic structure is built up one argument at a fl i ght -of FLY ~g ~ FLI GHT de. st -of time, it becomes much easier to accomodate such phenomena as order-variation and optionality of arguments that are difficult for other approaches The importance of this feature may be seen in the examples of argument order-variation and optionality that abound in real data. Consider the following from the ATIS domain, in which complements can vary freely in order: What restrictions apply?", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 117, |
| "end": 125, |
| "text": "Figure 2", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "which cannot be felicitously uttered except in a context where there is something in the discourse that a restriction could \"apply\" to.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "Conventional approaches to subcategorization, such as Definite Clause Grammar (Pereira and Warren, 1980) , Categorial Grammar (Ades and Steedman, 1982) , PATR-II (Shieber, 1986) , and lexicalized TAG (Schabes et al, 1988) all deal with complementation by including in one form or another a notion of \"subcategorization frame\" that specifies a sequence of complement phrases and constraints on them. Handling all the possible variations in complement distribution in such formalisms inevitably leads to an explosion in the number of such frames, and a correspondingly more difficult task in porting to a new domain.", |
| "cite_spans": [ |
| { |
| "start": 78, |
| "end": 104, |
| "text": "(Pereira and Warren, 1980)", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 126, |
| "end": 151, |
| "text": "(Ades and Steedman, 1982)", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 162, |
| "end": 177, |
| "text": "(Shieber, 1986)", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 200, |
| "end": 221, |
| "text": "(Schabes et al, 1988)", |
| "ref_id": "BIBREF8" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "In our approach, on the other hand, it becomes possible to view subcategorization of a lexical item as a set of constraints on the outgoing arcs of its semantic graph node. Different types of constraints -order of arguments, optionality of arguments, semantic-class constraints and semantic effects of arguments -can all be represented separately, instead of enumerating all possible argument sequences in a set of alternative subcategorization frames.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "Subcategorization constraints in Delphi are encoded in lexical entries using a structure called a \"map\" (Stallard and Bobrow, 1991) . Below is part of the lexical entry for \"fly\" in the ATIS domain: Map entries have \"translation\", \"realization\" and \"completion\" components. The translation part of this entry specifies that the lexical head \"fly\" is to correspond to a semantic-graph node labeled with event-class FLY. The realization part of the entry specifies what grammatical relations the lexical item takes, and what semantic relations these correspond to, or \"realize\", in the semantic graph. Here, the entry specifies that \"fly\" takes SUBJECT, TO, and FROM complements, and that these grammatical relations correspond to the semantic relations FLIGHT-OF, DEST-OF, and ORIG-OF respectively. Semantic selectional restrictions in these argument positions -that the filler of DEST-OF be a city, for example -are implicit from the declarations of the relations in the domain model. The \"completion\" part of the entry specifies what outgoing arcs are required for the node. Here, the entry requires that the FLIGHT-OF role be filled, and that either the DEST-OF or ORIG-OF roles be filled (forbidding the intransitive \"the flight flies\"). More complex optionality cases are encoded with other completion predicates. For example, the case where an anaphor must be present (\"What restrictions apply\") is encoded by the predicate FILLED-OR-ANAPHOR. Some realization rules are tied to semantic classes rather than lexical translations, and require for their application only that semantic class restrictions implicit from the domain and range of the realized relation be satisfied. Typical examples are the rules governing noun modifier meanings, such as \"Delta flights\", \"Delta's flights\", \"the flights on/aboard Delta\". These would all be handled by the global realization rule:", |
| "cite_spans": [ |
| { |
| "start": 118, |
| "end": 131, |
| "text": "Bobrow, 1991)", |
| "ref_id": "BIBREF4" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "{NOM-COMP POSS ABOARD ON ...} -....}", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface", |
| "sec_num": null |
| }, |
| { |
| "text": "Determining what semantic relation a given grammatical relation instance corresponds to is most generally viewed as a form of goal-solving in Delphi, in which a chain of rules can be invoked. For example, syntactic constructions such as \"X with Y\", \"X has Y\" and \"X's Y\" are interpreted by first appealing to a rule mapping them to a pseudo-relation called GENERALIZED-POSSESSION, and then seeking a realization for it that is compatible with the classes of X and Y. This avoids having to write three different versions of the same realization rule. An important advantage of the realization rule formulation, apart from its its power and flexibility, is its simplicity. Realization rules are very simple to write, and make maximal use both of knowledge about the domain and general knowledge of language.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AIRLINE-OF", |
| "sec_num": null |
| }, |
| { |
| "text": "When an utterance cannot be parsed with Delphi's bestfirst parser (Bobrow, 1991) -either because it is illformed, mis-recognized by the speech system, or simply because it is outside the coverage of the grammarit can still be partially understood by the system, often well enough to give the correct response. The component responsible for partial understanding in the Delphi system is called the Semantic Linker (Stallard and Bobrow, 1993) . After a parse fails there is a set of fragmentary constituents left over in the chart, corresponding to a set of semantic graphs. The Semantic Linker seeks to connect these sub-graphs into a single connected one by adding links between nodes in the different sub-graphs.", |
| "cite_spans": [ |
| { |
| "start": 66, |
| "end": 80, |
| "text": "(Bobrow, 1991)", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 413, |
| "end": 440, |
| "text": "(Stallard and Bobrow, 1993)", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ill-Formedness Handling: The Semantic Linker", |
| "sec_num": "3" |
| }, |
| { |
| "text": "At top-level, this is the same thing that the parser and grammar do. The difference is that the parser and grammar have an idea of what the grammatical relationship between constituents is, based on requirements of their proximity in the string and other syntactic evidence. The Semantic Linker does not have these requirements, being a looser form of combination that can ignore fragment order and skip over intervening, unanalyzable material with ease.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ill-Formedness Handling: The Semantic Linker", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Although it is a very different algorithm, the Semantic Linker uses the same set of realization rules that drives the regular parser. Using the realization rules, the Linker determines for each pair of nodes in different semantic graphs the set of all links which can connect them. It then uses an A* search to find the most plausible set of links which produce a complete graph.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ill-Formedness Handling: The Semantic Linker", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Suppose for example, we have the three fragments \"to Boston\", \"Denver\" and \"Delta flights on Monday\". Then the three corresponding sub-graphs are those shown in Figure 3 where a PP is treated as its NP object with the preposition as a tag. For this set of fragmentary sub-graphs, the possible links are: where the links are grouped together in a ordered list according to the fragment-pairs they connect. The plausibility of a given link is a function of a number of different features, including penalities from assumptions made in its computation (e.g. that a given preposition can be ignored or assumed) and empirically determined probabilities for the given link (e.g. that given an AIRLINE and a FLIGHT they are most probably linked by the relation AIRLINE-OF).", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 161, |
| "end": 169, |
| "text": "Figure 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Ill-Formedness Handling: The Semantic Linker", |
| "sec_num": "3" |
| }, |
| { |
| "text": "The semantic linker may also \"hallucinate\" a new node to bridge two fragments between whom no links can otherwise be computed. For example, for the utterance \"from Boston to Denver\", which has no explicit FLIGHT-object, a FLIGHT node can be inserted between the fragments to make sense of the utterance.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ill-Formedness Handling: The Semantic Linker", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Because the Semantic Linker uses the same set of realization rules as the rest of the system, when the system is ported to a new domain the Semantic Linker can be used immediately -a distinct advantage over some other approaches to fallback understanding, such as (Stallard and Bobrow, 1992) or (Jackson et al, 1991) .", |
| "cite_spans": [ |
| { |
| "start": 264, |
| "end": 291, |
| "text": "(Stallard and Bobrow, 1992)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 295, |
| "end": 316, |
| "text": "(Jackson et al, 1991)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ill-Formedness Handling: The Semantic Linker", |
| "sec_num": "3" |
| }, |
| { |
| "text": "In formal experiments (as we discuss subsequently) the Semantic Linker has been show to dramatically improve Delphi's performance.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ill-Formedness Handling: The Semantic Linker", |
| "sec_num": "3" |
| }, |
| { |
| "text": "The quantifier scoping module in Delphi takes a semantic graph and produces a fully-scoped expression in the logical language FMRL. The basic strategy for quantifier scoping is a descendant of that used in the LUNAR system (Woods et al, 1978) . This is made possible by the use of the semantic graph as a common underlying representation for both the grammatical and ill-formod parts of fragmentary utterances. Delphi's scoping module traps quantifiers from relative clauses, makes the quantifiers from PPs etc. outscope the NP quantifier, and resolves the scope of quantifiers from parallel constituents in terms of left-to-right order in the input. These general rules are modified to take into account differing strengths of quantifiers such as EACH.", |
| "cite_spans": [ |
| { |
| "start": 223, |
| "end": 242, |
| "text": "(Woods et al, 1978)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Quantification", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Left-to-right ordering and syntactic structure for grammatical portions of the utterance are recovered from the semantic graph by backpointers to the lexical items and grammatical relations from which the graph was produced. Links established by the semantic linker are treated by the quantification mechanism as if the constituency is indeterminate, so that only left-to-right scoping rules and individual quantifier preferences take effect.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Quantification", |
| "sec_num": "4" |
| }, |
| { |
| "text": "The resulting mechanism is robust, and quantificational scoping has been an insignificant source of error in the official ARPA blind-test evaluations of the ATIS system. More complex strategies have been proposed and implemented in the last two decades, and could in principle be modifed to work with ill-formed input, but the simple and robust LUNAR approach handles essentially all the phenomena seen in the tens of thousands of sentences of ATIS training collected during experiments with non-linguist users.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Quantification", |
| "sec_num": "4" |
| }, |
| { |
| "text": "The discourse mechanism of Delphi consists of several components: resolution of local ambiguities, pronominal and deictic antecedent resolution, ellipsis handling and discourse constraint propagation.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Discourse", |
| "sec_num": "5" |
| }, |
| { |
| "text": "The most common case of local ambiguity in the ATIS domain involves temporal phrases as in \"the nine o'clock flight\". The resolution mechanism searches both for linguistic information in the current and previous sentences, as well as properties of entities in previous answers, to resolve whether \"nine o'clock\" is AM or PM.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Discourse", |
| "sec_num": "5" |
| }, |
| { |
| "text": "The pronourddeictic resolution mechanism used in Delphi makes use of locally expressed or implied semantic constraints to search through a set of candidate antecedents. The current mechanism ignores syntactic number as a cue, because empirically in the ATIS corpus (and we suspect in other spontaneous speech applications) it is often in error. A simple-minded focus component is used, primarily based on recency, and secondarily based on grammatical relations within an utterance. Because of the strength of semantic cues and the prevalence of ill-formed input, the use of syntactic cues for focus is limited.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Discourse", |
| "sec_num": "5" |
| }, |
| { |
| "text": "The interpretation of later sentences often must include information from previous sentences, without explicit linguistic cues. This is especially true in \"design dialogues\", where the goal is to find a description of a set of objects that will meet some set of implicit or explicit constraints. Consider for example the following discourse from the ATIS domain.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Discourse", |
| "sec_num": "5" |
| }, |
| { |
| "text": "Note that the constraints of prior sentences (such as on airline, origin, destination etc.) are implicit for subsequent sentences unless contradicted by information in the current sentence (e.g. \"American\" overrides the \"Delta\" from the first sentence) or until there is evidence that a new problem is being solved (the new origin and destination in the last sentence indicates that all previous constraints can be dropped). Delphi has a \"context tracker\" that maintains a stack of the constraints from previous utterances, and has a set of rules for when constraints are to be modified or deleted before being merged with the current sentence.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Show Delta fights from Boston to Dallas tomorrow. Can I leave in the morning? Is there a nonstop flight? Show me the American flights. I want to go from Dallas to Chicago on Wednesday", |
| "sec_num": null |
| }, |
| { |
| "text": "Finally, we handle ellipsis as a special case of semantic linking. If we have the two utterances:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Show Delta fights from Boston to Dallas tomorrow. Can I leave in the morning? Is there a nonstop flight? Show me the American flights. I want to go from Dallas to Chicago on Wednesday", |
| "sec_num": null |
| }, |
| { |
| "text": "Show me the meals on the morning flight. on American at 12:30 We can treat these as if they were one run-on illformed input and link \"American\" to \"flight\", and replace \"morning\" with \"12:30\", using a minor variant of the Semantic Linker linker which allows for later constraints to overwrite earlier ones of the same type. This strategy has been very effective, and covers a large class of elliptical constructions.", |
| "cite_spans": [ |
| { |
| "start": 44, |
| "end": 61, |
| "text": "American at 12:30", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Show Delta fights from Boston to Dallas tomorrow. Can I leave in the morning? Is there a nonstop flight? Show me the American flights. I want to go from Dallas to Chicago on Wednesday", |
| "sec_num": null |
| }, |
| { |
| "text": "In order to get a response to a user query, the complete FMRL interpretation of an utterance must be translated to an expression of a target query language which can be evaluated directly against the tabular database to retrieve the answer.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Backend Mapping", |
| "sec_num": "6" |
| }, |
| { |
| "text": "A key step is bridging the gap in conceptual vocabulary between the two representations. For example, the FMRL interpretation of the query \"How many flights on Delta serve meals\" has one-place predicates like FLIGHT and AIRLINE, and two-place predicates like AIRLINE-OF and MEAL-OF. The database for the ATIS domain, on the other hand, only has a single table FLIGHT with fields containing airline and meal information. Delphi bridges this gap between representations with a system of local mapping rules which translate the one-and two-place predicates of the FMRL into expressions of a relational algebra target language which retrieve the extensions of these predicates.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Backend Mapping", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Sometimes, however, some combination of FMRL predicates has a correspondence in the database but the individual predicates themselves do not. For example, in the database for the SPLINT domain a table relating aircraft-types to their physical characteristics has a field for the number of engines the aircraft has, but no representation for the engines themselves. If we now ask \"How many engines does an F-16 have?\", there is no local translation of the FMRL predicate ENGINE.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Backend Mapping", |
| "sec_num": "6" |
| }, |
| { |
| "text": "To deal with this, Delphi has a system of global transformations that are applied first, rewriting subsets of the FMRL clauses to a form that can be handled with local translation. The rule that handles this example is:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Backend Mapping", |
| "sec_num": "6" |
| }, |
| { |
| "text": "(is-a :e engine number) (aircraft-engine-of :a :e) (is-a *count* number) (eq (number-engines-of :a) *count*)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Backend Mapping", |
| "sec_num": "6" |
| }, |
| { |
| "text": "In spoken language applications, Delphi is interfaced to the output of the Byblos speech recognition system (Bates et al, 1993) . The N-best paradigm is used, in which the recognizer outputs in order its top N guesses at the transcription of the sentence, for some value of N (usually 5). Delphi then runs over these transcriptions in the order they have been ranked, first with the Semantic Linker disabled so that only grammatical utterances are allowed, and if none is found, runs over them again with the Semantic Linker enabled.", |
| "cite_spans": [ |
| { |
| "start": 108, |
| "end": 127, |
| "text": "(Bates et al, 1993)", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Interface To A Speech Recognizer", |
| "sec_num": "7" |
| }, |
| { |
| "text": "Our complete system including the Semantic Linker was evaluated in the December 1993 ARPA ATIS evaluation. Prior to evaluation, ATIS versions of the system's domain model, lexicon and realization rules had been developed using several thousand utterances of training data collected from users of ATIS. An approximately 1000-utterance set was held aside as a blind test set on which all participating sites were evaluated.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results Of Formal Evaluation On ATIS", |
| "sec_num": "8" |
| }, |
| { |
| "text": "Error rate in this evaluation was defined as F+NA, where F was the percentage of queries answered incorrectly, and NA the percentage of queries not answered at all. There were two evaluations on the same corpus using this metric: one of NL text understanding alone, and the other of a complete spoken language system (SLS) comprised of Delphi and the Byblos recognizer. Our system achieved an official result of 14.7% on the NL test, which was the third-lowest error rate achieved. The SLS error rate was 17.5%.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results Of Formal Evaluation On ATIS", |
| "sec_num": "8" |
| }, |
| { |
| "text": "Our own experiments show that using the Semantic Linker reduced our system's error rate on the NL test by 43%. This was largely achieved by dramatically lowering the no-answer rate NA from 18.7% to 2.3%. Just over 80% of this increment of sentences answered were answered correctly, so the Linker showed considerable accuracy.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results Of Formal Evaluation On ATIS", |
| "sec_num": "8" |
| }, |
| { |
| "text": "The SPLINT (Speech and Language Integration) domain is concerned with Air Force units and their component aircraft, weaponry and other physical attributes of aircraft, ordnance, and facilities (such as air bases, runways, bunkers, etc.). The SPLINT database has 106 fields in 23 tables.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "Some example utterances in the SPLINT domain are:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "What aircraft types are assigned to the 32nd? Which base has a unit carrying mavericks? Can a Stealth use Langley's runway 1 ?", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "In order to port Delphi to the SPLINT domain, SPLINT-specific versions of the domain model, lexicon, realization rules and db-mapping rules were needed. For the speech-understanding part of the application, word pronunciations were also neccesary, as well as wordclass membership for a statistical n-gram class grammar. Delphi includes \"core\" versions of some of these knowledge bases: a core domain model with common classes like NUMBER and TIME-OF-DAY and relations like GREATER, a core lexicon with closed-class items such as prepositions as well as words appropriate to question-answering in general such as \"show\", to which domain-specific items have to be added.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "In porting to SPLINT, 60 classes and 65 relations were added to the domain model. 400 words were added to the lexicon. Of these, approximately half were derived from database field values. 118 realization rules were added.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "The grammar did not need to be modified, with the exception of adding one rule (for constructions such as \"Mach 1\").", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "The entire process took about a person month to get 90% coverage on a 1400 sentence corpus, developed independently by a non-NL person. An additional person week was required to develop the speech-related knowledge bases. A complete spoken language system with Delphi as the understanding component, plus a Motifbased user interface, was succesfully demonstrated at the 1994 ARPA Human Language Technology meeting, and at Rome Labs in New York. The porting process is described in more detail in (Bates, 1994) .", |
| "cite_spans": [ |
| { |
| "start": 496, |
| "end": 509, |
| "text": "(Bates, 1994)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "This effort demonstrates that, given an appropriate system design, it is possible to build a complete spoken language system that is robust to speech and production errors, and to do so rapidly and straightforwardly.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Porting Delphi to the SPLINT Domain", |
| "sec_num": "9" |
| }, |
| { |
| "text": "In conclusion, we have developed a technology that makes maximal use of general linguistic knowledge to improve portability, while at the same time maintaining robustness in the face of the type of input one can expect from a real-life spoken language application. The system has been shown to reach high levels of performance in objective blind-test evaluation on the ATIS domain. The system has also been shown to be rapidly portable to a new domain, SPLINT. This did not require any changes in the underlying system code, and was done with a relatively small effort.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion And Summary", |
| "sec_num": "10" |
| }, |
| { |
| "text": "This work shows that computational linguistic methods, based on general knowledge of language, can be used in large, robust spoken language systems, and that special-purpose NL understanding systems do not have to be built for each new task.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion And Summary", |
| "sec_num": "10" |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "The work reported here was supported by the Advanced Research Projects Agency and was monitored by the Office of Naval Research under Contract No. N00014-92-C-0035. The views and conclusions contained in this document are those of the authors and should not be interpreted as necessarily representing the official policies, either expressed or implied, of the Defense Advanced Research Projects Agency or the United States Government.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgments", |
| "sec_num": "11" |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "On the Order of Words", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [ |
| "E" |
| ], |
| "last": "Ades", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [ |
| "J" |
| ], |
| "last": "Steedman", |
| "suffix": "" |
| } |
| ], |
| "year": 1982, |
| "venue": "Linguistics and Philosophy", |
| "volume": "44", |
| "issue": "", |
| "pages": "517--558", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Ades, A. E. and Steedman, M. J. 1982. On the Order of Words. In Linguistics and Philosophy 44.3, 1982, pp. 517-558.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "The Core Language Engine", |
| "authors": [ |
| { |
| "first": "Hiyan", |
| "middle": [], |
| "last": "Alshawi", |
| "suffix": "" |
| } |
| ], |
| "year": 1992, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Alshawi, Hiyan (ed). 1992. The Core Language Engine, MIT Press, Cambridge.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "The BBN/HARC Spoken Language Understanding System", |
| "authors": [ |
| { |
| "first": "Madeleine", |
| "middle": [], |
| "last": "Bates", |
| "suffix": "" |
| } |
| ], |
| "year": 1993, |
| "venue": "Proceedings of IEEE ICASSP-93", |
| "volume": "", |
| "issue": "", |
| "pages": "111--114", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Bates, Madeleine et al. 1993. The BBN/HARC Spoken Language Understanding System. In Proceedings of IEEE ICASSP-93 Minneapolis, MN, April 1993, pp. 111-114, vol. II.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Beginning to Port a Spoken Language Database Interface In 4th Annual Dual Use Technologies and Applications Conference", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Bates", |
| "suffix": "" |
| } |
| ], |
| "year": 1994, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Bates, M. Beginning to Port a Spoken Language Database Interface In 4th Annual Dual Use Tech- nologies and Applications Conference, Utica NY May 1994", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Statistical Agenda Parsing In Proceedings 4th DARPA Workshop on Speech and Natural Language", |
| "authors": [ |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Bobrow", |
| "suffix": "" |
| } |
| ], |
| "year": 1991, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Bobrow, Robert. 1991. Statistical Agenda Parsing In Proceedings 4th DARPA Workshop on Speech and Natural Language", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "A Natural Language Understanding System for Spoken Language Understanding", |
| "authors": [ |
| { |
| "first": "John", |
| "middle": [], |
| "last": "Dowding", |
| "suffix": "" |
| } |
| ], |
| "year": null, |
| "venue": "Proceedings of the 31st Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Dowding, John et al. Gemini: A Natural Language Understanding System for Spoken Language Under- standing. In Proceedings of the 31st Annual Meet- ing of the Association for Computational Linguistics, Columbus, OH", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "A Template Matcher for Robust NL Interpretation", |
| "authors": [ |
| { |
| "first": "Eric", |
| "middle": [], |
| "last": "Jackson", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Appelt", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Douglas", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Bear", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "John", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Moore", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Podlozny", |
| "suffix": "" |
| } |
| ], |
| "year": 1991, |
| "venue": "Proceedings Speech and Natural Language Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jackson, Eric, Appelt, Douglas, Bear, John, Moore, Robert, and A. Podlozny. A Template Matcher for Robust NL Interpretation. In Proceedings Speech and Natural Language Workshop February 1991", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Definite Clause Grammars for Language Analysis--A Survey of the Formalism and a Comparison with Augmented Transition Networks", |
| "authors": [ |
| { |
| "first": "F", |
| "middle": [ |
| "C N" |
| ], |
| "last": "Pereira", |
| "suffix": "" |
| }, |
| { |
| "first": "D", |
| "middle": [ |
| "H D" |
| ], |
| "last": "Warren", |
| "suffix": "" |
| } |
| ], |
| "year": 1980, |
| "venue": "Artificial Intelligence 13", |
| "volume": "", |
| "issue": "", |
| "pages": "231--278", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Pereira, F. C. N. and Warren, D. H. D. 1980. Definite Clause Grammars for Language Analysis--A Survey of the Formalism and a Comparison with Augmented Transition Networks. In Artificial Intelligence 13, 1980, pp. 231-278.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Parsing Strategies with 'Lexicalized' Grammars': Application to Tree Adjoining Grammars", |
| "authors": [ |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Schabes", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Abeille", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [ |
| "K" |
| ], |
| "last": "Joshi", |
| "suffix": "" |
| } |
| ], |
| "year": 1988, |
| "venue": "COLING Budapest: PROCEEDINGS of the 12th International Conference on Computational Linguistics, Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "578--583", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Schabes, Y., Abeille, A., and Joshi, A. K. Parsing Strategies with 'Lexicalized' Grammars': Applica- tion to Tree Adjoining Grammars. 1988 In COLING Budapest: PROCEEDINGS of the 12th International Conference on Computational Linguistics, Associa- tion for Computational Linguistics, Morristown, NJ, 1988, pp. 578-583.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "An Introduction to Unification-Based Approaches to Grammar", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [ |
| "M" |
| ], |
| "last": "Shieber", |
| "suffix": "" |
| } |
| ], |
| "year": 1986, |
| "venue": "Center for the Study of Language and Information", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Shieber, S. M. 1986. An Introduction to Unification- Based Approaches to Grammar. Center for the Study of Language and Information, Stanford, CA, 1986.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "The Mapping Unit Approach to Subcategorization", |
| "authors": [ |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Stallard", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Bobrow", |
| "suffix": "" |
| } |
| ], |
| "year": 1991, |
| "venue": "Proceedings Speech and Natural Language Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Stallard, David and Bobrow, Robert. 1991. The Mapping Unit Approach to Subcategorization. In Proceedings Speech and Natural Language Workshop March 1991", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Fragment Processing in the DELPHI System", |
| "authors": [ |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Stallard", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Bobrow", |
| "suffix": "" |
| } |
| ], |
| "year": 1992, |
| "venue": "Proceedings Speech and Natural Language Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Stallard, David and Bobrow, Robert. 1992. Fragment Processing in the DELPHI System. In Proceedings Speech and Natural Language Workshop February 1992", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "The Semantic Linker -a New Fragment Combining Method", |
| "authors": [ |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Stallard", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Bobrow", |
| "suffix": "" |
| } |
| ], |
| "year": 1993, |
| "venue": "Proceedings Human Language Technology Workshop", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Stallard, David and Bobrow, Robert. 1993. The Seman- tic Linker -a New Fragment Combining Method. In Proceedings Human Language Technology Workshop March 1993", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "The Lunar Sciences Natural Language Information System: Final Report", |
| "authors": [ |
| { |
| "first": "William", |
| "middle": [ |
| "A" |
| ], |
| "last": "Woods", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [ |
| "A" |
| ], |
| "last": "Kaplan", |
| "suffix": "" |
| }, |
| { |
| "first": "B", |
| "middle": [], |
| "last": "Nash-Webber", |
| "suffix": "" |
| } |
| ], |
| "year": 1978, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Woods, William A., Kaplan, Robert A., and Nash- Webber, B. 1978. The Lunar Sciences Natural Lan- guage Information System: Final Report. Report 2378, Bolt, Beranek and Newman, Cambridge, MA.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "uris": null, |
| "text": "Figure 1: System Diagram", |
| "type_str": "figure", |
| "num": null |
| }, |
| "FIGREF1": { |
| "uris": null, |
| "text": "Figure 2: Semantic Graph", |
| "type_str": "figure", |
| "num": null |
| }, |
| "FIGREF2": { |
| "uris": null, |
| "text": "What flights fly from Boston to Denver? What flights fly to Denver from Boston? or be separated from the head by a modifier typically regarded as an adjunct: What flights fly at 3 pm from Boston to Denver? In some cases, modifiers can be omitted, as in: What flights fly from Boston ? What flights fly to Denver? and sometimes the omission of an argument can have anaphoric consequences, as in:", |
| "type_str": "figure", |
| "num": null |
| }, |
| "FIGREF4": { |
| "uris": null, |
| "text": "Figure 3: Fragment Graphs", |
| "type_str": "figure", |
| "num": null |
| } |
| } |
| } |
| } |