| { |
| "paper_id": "P90-1007", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T09:39:13.258995Z" |
| }, |
| "title": "TRANSFORMING SYNTACTIC GRAPHS INTO SEMANTIC GRAPHS*", |
| "authors": [ |
| { |
| "first": "Hae-Chang", |
| "middle": [], |
| "last": "Rim", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Jungyun", |
| "middle": [], |
| "last": "Seo", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [ |
| "F" |
| ], |
| "last": "Simmons", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Taylor", |
| "middle": [], |
| "last": "Hall", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "124", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "In this paper, we present a computational method for transforming a syntactic graph, which represents all syntactic interpretations of a sentence, into a semantic graph which filters out certain interpretations, but also incorporates any remaining ambiguities. We argue that the resulting ambiguous graph, supported by an exclusion matrix, is a useful data structure for question answering and other semantic processing. Our research is based on the principle that ambiguity is an inherent aspect of natural language communication.", |
| "pdf_parse": { |
| "paper_id": "P90-1007", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "In this paper, we present a computational method for transforming a syntactic graph, which represents all syntactic interpretations of a sentence, into a semantic graph which filters out certain interpretations, but also incorporates any remaining ambiguities. We argue that the resulting ambiguous graph, supported by an exclusion matrix, is a useful data structure for question answering and other semantic processing. Our research is based on the principle that ambiguity is an inherent aspect of natural language communication.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "In computing meaning representations from natural language, ambiguities arise at each level. Some word sense ambiguities are resolved by syntax while others depend on the context of discourse. Sometimes, syntactic ambiguities are resolved during semantic processing, but often remain even through coherence analysis at the discourse level. Finally, after syntactic, semantic, and discourse processing, the resulting meaning structure may still have multiple interpretations. For example, a news item from Associated Press, November 22, 1989, quoted a rescued hostage, \"The foreigners were taken to the Estado Mayor, army headquarters. I left that hotel about quarter to one, and by the *This work is sponsored by the Army Research Office under contract DAAG29-84-K-0060. 47 time I got here in my room at quarter to 4 and turned on CNN, I saw myself on TV getting into the little tank,\" Blood said.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTRODUCTION", |
| "sec_num": null |
| }, |
| { |
| "text": "The article was datelined, Albuquerque N.M. A first reading suggested that Mr. Blood had been flown to Albuquerque, but further thought suggested that \"here in my room\" probably referred to some sleeping section in the army headquarters. But despite the guess, ambiguity remains.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTRODUCTION", |
| "sec_num": null |
| }, |
| { |
| "text": "In a previous paper [Seo and Simmons 1989 ] we argued that a syntactic graph --the union of all parse trees --was a superior representation for further semantic processing. It is a concise list of syntactically labeled triples, supported by an exclusion matrix to show what pairs of triples are incompatible. It is an easily accessible representation that provides succeeding semantic and discourse processes with complete information from the syntactic analysis. Here, we present methods for transforming the syntactic graph to a functional graph (one using syntactic functions, SUB-JECT, OBJECT, IOBJECT etc.) and for transforming the functional graph to a semantic graph of case relations.", |
| "cite_spans": [ |
| { |
| "start": 20, |
| "end": 41, |
| "text": "[Seo and Simmons 1989", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "INTRODUCTION", |
| "sec_num": null |
| }, |
| { |
| "text": "Most existing semantic processors for natural language systems (NLS) have depended on a strategy of selecting a single parse tree from a syntactic analysis component (actual or imagined). If semantic testing failed on that parse, the system would sel~,ct another --backing up if using a topdown parser, or selecting another interpretation from an all-paths chart. Awareness has grown in recent years that this strategy is not the best. Attempts by Marcus [1980] to use a deterministic (look-ahead) tactic to ensure a single parse without back-up, fail to account for common, gardenpath sentences. In general, top-down parsers with backup have unpleasant implications for complexity, while efficient all-paths parsers limited to complexity O(N 3) [Aho and Ullman 1972 , Early 1970 , Tomita 1985 ] can find all parse trees in little more time than a single one. If we adopt the economical parsing strategy of obtaining an all-paths parse, the question remains, how best to use the parsing information for subsequent processing.", |
| "cite_spans": [ |
| { |
| "start": 448, |
| "end": 461, |
| "text": "Marcus [1980]", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 746, |
| "end": 766, |
| "text": "[Aho and Ullman 1972", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 767, |
| "end": 779, |
| "text": ", Early 1970", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 780, |
| "end": 793, |
| "text": ", Tomita 1985", |
| "ref_id": "BIBREF7" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "BACKGROUND", |
| "sec_num": null |
| }, |
| { |
| "text": "Approaches by Barton and Berwick [1985] and Rich et al. [1987] among others have suggested what Rich has called ambiguity procrastination in which a system provides multiple potential syntactic interpretations and postpones a choice until a higher level process provides sufficient information to make a decision. Syntactic representations in these systems are incomplete and may not always represent possible parses. Tomita [1985] suggested using a shared-packed-forest as an economical method to represent all and only the parses resulting from an all-paths analysis. Unfortunately, the resulting tree is difficult for a person to read, and must be accessed by complex programs. It was in this context that we [Seo and Simmons 1989] decided that a graph composed of the union of parse trees from an all-paths parser would form a superior representation for subsequent semantic processing.", |
| "cite_spans": [ |
| { |
| "start": 25, |
| "end": 39, |
| "text": "Berwick [1985]", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 56, |
| "end": 62, |
| "text": "[1987]", |
| "ref_id": null |
| }, |
| { |
| "start": 418, |
| "end": 431, |
| "text": "Tomita [1985]", |
| "ref_id": "BIBREF7" |
| }, |
| { |
| "start": 712, |
| "end": 734, |
| "text": "[Seo and Simmons 1989]", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "BACKGROUND", |
| "sec_num": null |
| }, |
| { |
| "text": "In the previous paper we argued that the syntactic graph supported by an exclusion matrix would provide all and \"only\" the information given by a parse forest. 1 Let us first review an example of a syntactic graph for the following sentence:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Exl) John saw a man on the hill with a telescope.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "There are at least five syntactic interpretations for Exl from a phrase structure grammar. The syntactic graph is represented as a set of dominator-modifier triples 2 as shown in the middle of Figure 1 for Exl. Each triple consists of a label, a head-word, and a modifier-word.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 193, |
| "end": 201, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Each triple represents an arc in a syntactic graph in the left of Figure 1 . An arc is drawn from the head-word to the modifier-word. The label of each triple, SNP, VNP, etc. is uniquely determined according to the grammar rule used to generate the triple. For example, a triple with the label SNP is generated by the grammar rule, SNT --+ NP + VP, VPP is from the rule VP --+ VP \u00f7 PP, and PPN from PP ---+ Prep\u00f7 NP, etc.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 66, |
| "end": 74, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "We can notice that the ambiguities in the graph are signalled by identical third terms (i.e., the same modifier-words with the same sentence position) in triples because a word cannot modify two different words in one syntactic interpretation. In Figure 2 : Syntactic Graph and Exclusion Matrix for \"The monkey lives in tropical jungles near rivers and streams.\" a graph, each node with multiple in-arcs shows an ambiguous point. There is a special arc, called the root are, which points to the head word of the sentence. The arc (0) of the syntactic graph in Figure 1 represents a root arc. A root arc contains information (not shown) about the modalities of the sentence such as voice: passive, active, mood: declarative or wh-question, etc. Notice that a sentence may have multiple root arcs because of syntactic ambiguities involving the head verb.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 247, |
| "end": 255, |
| "text": "Figure 2", |
| "ref_id": null |
| }, |
| { |
| "start": 560, |
| "end": 568, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "One interpretation can be obtained from a syntactic graph by picking up a set of triples with no repeated third terms. In this example, since there are two identical occurrences of on and three of with, there are 2.3 = 6 possible sentence interpretations in the graph represented above. However, there must be only five interpretations for Exl. The reason that we have more interpretations is that there are triples, called exclusive triples, which cannot co-occur in any syntactic interpretation. In this example, the triple (vpp saw on) and (npp man with) cannot co-occur since there is no such interpretation in this sentence. 3 That's why a syntactic graph must maintain an exeluslon matrix.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "An exclusion matrix, (Ematrix), is an N \u2022 N matrix where N is the number of triples.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "If Ematrix(i,j) = 1 then the i-th and j-th triple 3Once the phrase \"on the hill\" is attached to saw, \"with a telescope\" must be attached to either hill or saw, not m0~n.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "cannot co-occur in any reading. The exclusion matrix for Exl is shown in the right of Figure 1 . In Exl, the 'triples 5 and 9 cannot co-occur in any interpretation according to the matrix. Trivially exclusive triples which share the same third term are also marked in the matrix. It is very important to maintain the Ematrix because otherwise a syntactic graph generates more interpretations than actually result from the parsing grammar.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 86, |
| "end": 94, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Syntactic graphs and the exclusion matrix are computed from the chart (or forest) formed by an all-paths chart parser. Grammar rules for the parse are in augmented phrase structure form, but are written to minimize their deviation from a pure context-free form, and thus, limit both the conceptual and computational complexity of the analysis system. Details of the graph form, the grammar, and the parser are given in (Seo and Simmons 1989) .", |
| "cite_spans": [ |
| { |
| "start": 419, |
| "end": 441, |
| "text": "(Seo and Simmons 1989)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "SYNTACTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "An important test of the utility of syntactic graphs is to demonstrate that they can be used directly to compute corresponding semantic graphs that represent the union of acceptable case analyses. Nothing would be gained, however, if we had to extract one reading at a time from the syntactic graph, transform it, and so accumulate the union of case analyses. But if we can apply a set of rules directly to the syntactic graph, mapping it into the semantic graph, then using the graph can result in a significant economy of computation.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS FROM SYNTACTIC GRAPHS 49", |
| "sec_num": null |
| }, |
| { |
| "text": "1 1 1 1 1 1 1 i 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 !1 1 1 1", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS FROM SYNTACTIC GRAPHS 49", |
| "sec_num": null |
| }, |
| { |
| "text": "We compute a semantic graph in a two-step process. First, we transform the labeled dependency triples resulting from the parse into functional notation, using labels such as subject, object, etc. and transforming to the canonical active voice. This results in a functional graph as shown in Figure 3 . Second, the functional graph is transformed into the semantic graph of Figure 5 . During the second transformation, filtering rules are applied to reduce the possible syntactic interpretations to those that are semantically plausible.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 291, |
| "end": 299, |
| "text": "Figure 3", |
| "ref_id": "FIGREF0" |
| }, |
| { |
| "start": 373, |
| "end": 381, |
| "text": "Figure 5", |
| "ref_id": "FIGREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS FROM SYNTACTIC GRAPHS 49", |
| "sec_num": null |
| }, |
| { |
| "text": "To determine SUB, OBJ and IOBJ correctly, the process checks the types of verbs in a sentence and its voice, active or passive. In this process, a syntactic triple is transformed into a functional triple: for example, (snp X Y) is transformed into (subj X Y) in an active sentence.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING FUNCTIONAL GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "However, some transformation rules map several syntactic triples into one functional triple. For example, in a passive sentence, if three triples, (voice X passive), (vpp X by), and (ppn by Y), are in a syntactic graph and they are not exclusive with each other, the process produces one functional triple (subj X Y). Since prepositions are used as functional relation names, two syntactic triples for a prepositional phrase are also reduced into one functional triple. For example,", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING FUNCTIONAL GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "(vpp lives in) and (ppn in jungles) are transformed into (in lives jungles). These transformations are represented in Prolog rules based on general inference forms such as the following:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "50", |
| "sec_num": null |
| }, |
| { |
| "text": "(stype X declarative) & (voice X passive) & (vpp X by) & (ppn by Y) => (subject X Y) (vpp X P) ~ (ppn P Y) &: not(volce X pas- sive) => (P X Y).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "50", |
| "sec_num": null |
| }, |
| { |
| "text": "When the left side of a rule is satisfied by a set of triples from the graph, the exclusion matrix is consulted to ensure that those triples can all cooccur with each other.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "50", |
| "sec_num": null |
| }, |
| { |
| "text": "This step of transformation is fairly straighttoward and does not resolve any syntactic ambiguities. Therefore, the process must carefully transform the exclusion matrix of the syntactic graph into the exclusion matrix of the functional graph so that the transformed functional graph has the same interpretations as the syntactic graph has 4.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "50", |
| "sec_num": null |
| }, |
| { |
| "text": "Intuitively, if a functional triple, say F, is produced from a syntactic triple, say T, then F must be exclusive with any functional triples produced from the syntactic triples which are exclusive with T. When more than one syntactic triple, say T[s are involved in producing one functional triple, say F1, the process marks the exclusion 4At a late stage in our research we noticed that we could have written our grammar to result directly in syntacticfunctional notation; but one consequence would be increasing the complexity of our grammar rules, requiring frequent tests and transformations, thus increasing conceptual and computational complexities. N : the implausible triple which will be removed. The process starts by calling remove-all-Dependent-arcs([N]).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "50", |
| "sec_num": null |
| }, |
| { |
| "text": "remove-all-dependent-arcs(Arcs-to-be-removed) for all Arc in Arcs-to-be-removed do begin i] Arc is not removed yet then find all arcs pointing to the same node as Arc: call them Alt-arcs find arcs which are exclusive with every arc in Alt-arcs, call them Dependent-arcs remove Arc remove entry of Arc from the exclusion matrix remove-all-Dependent-arcs(Dependent-arcs) end Figure 4 : Algorithm for Finding Dependent Relations matrix so that F1 can be exclusive with all functional triples which are produced from the syntactic triples which are exclusive with any of T/~s. The syntactic graph in Figure 2 has five possible syntactic interpretations and all and only the five syntactic-functional interpretations must be contained in the transformed functional graph with the new exclusion matrix in Figure 3 . Notice that, in the functional graph, there is no single, functional triple corresponding to the syntactic triples, ", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 373, |
| "end": 381, |
| "text": "Figure 4", |
| "ref_id": null |
| }, |
| { |
| "start": 596, |
| "end": 604, |
| "text": "Figure 2", |
| "ref_id": null |
| }, |
| { |
| "start": 799, |
| "end": 807, |
| "text": "Figure 3", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "50", |
| "sec_num": null |
| }, |
| { |
| "text": "Once a functional graph is produced, it is transformed into a semantic graph. This transformation consists of the following two subtasks: given a functional triple (i.e., an are in Figure 3 ), the process must be able to (1) check if there is a semantically meaningful relation for the triple (i.e., co-occurrence constraints test), (2) if the triple is semantically implausible, find and remove all functional triples which are dependent on that triple.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 181, |
| "end": 189, |
| "text": "Figure 3", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "The co-occurrence constraints test is a matter of deciding whether a given functional triple is semantically plausible or not. 5 The process uses a type hierarchy for real world concepts and rules that state possible relations among them. These relations are in a case notation such as agt for agent, ae for affected-entity, etc. For example, the 5 Eventually we will incorporate more sophisticated tests as suggested by Hirst(1987) and others, but our current emphasis is on the procedures for transforming graphs. 51 subject(I) arc between lives and monkey numbered (1) in Figure 3 is semantically plausible since animal can be an agent of live if the animal is a subj of the live. However, the subject arc between and and monkey numbered (15) in Figure 3 is semantically implausible, because the relation conjvp connects and and streams, and monkey can not be a subject of the verb streams. In our knowledge base, the legitimate agent of the verb streams is a flow-thing such as a river.", |
| "cite_spans": [ |
| { |
| "start": 421, |
| "end": 432, |
| "text": "Hirst(1987)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 575, |
| "end": 583, |
| "text": "Figure 3", |
| "ref_id": "FIGREF0" |
| }, |
| { |
| "start": 749, |
| "end": 757, |
| "text": "Figure 3", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "When a given arc is determined to be semantically plausible, a proper case relation name is assigned to make an arc in the semantic graph.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "For example, a case relation agt is found in our knowledge base between monkey and lives under the constraint subject.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "If a triple is determined to be semantically implausible, then the process removes the triple. Let us explain the following definition before discussing an interesting consequence.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Definition 1 A triple, say T1, is dependent on another triple, say T2, if every interpretation which uses 7\"1 always uses T2.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Then, when a triple is removed, if there are any triples which are dependent on the removed triple, those triples must also be removed. Notice that the dependent on relation between triples is transitive.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Before presenting the algorithm to find dependent triples of a triple, we need to discuss the following property of a functional graph. Here the position means the position of a word in a sentence. This property ensures that all words in a sentence must be used in a semantic interpretation once and only once.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "1 11 I1 1 1 1 1 1 1 1 1 1 1 1 1 i 1 1]1 1 1 1 1 !1 1 1", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "The next property follows from Property 1. This lemma is true because T cannot co-occur with any other triples which have the node N as a modifier-word except T/in any interpretation. By Property 1, any interpretation which uses T must use one triple which has N as a modifier-word.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Since there is only one triple, 7~ that can co-occur with T, any interpretations which use T use T/. [3 Using the above lemma, we can find triples which are dependent on a semantically implausible triple directly from the functional graph and the corresponding exclusion matrix. An algorithm for finding a set of dependent relations is presented in Figure 4 .", |
| "cite_spans": [ |
| { |
| "start": 101, |
| "end": 103, |
| "text": "[3", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 349, |
| "end": 357, |
| "text": "Figure 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "For example, in the functional graph in Figure 3, since monkey cannot be an agt of streams, the triple (15.) is determined to be semantically implausible. Since there is only one triple, (1) , which shares the same modifier-word, monkey, the process finds triples which are exclusive with (1) . Those are triples numbered (14), (15), (16), and (17). Since these triples are dependent on (16), these triples must also be removed when (16) is removed. Similarly, when the process removes (14), it must find and remove all dependent triples of (14). In this way, the process cascades the remove operation by recursively determining the dependent triples of an implausible triple.", |
| "cite_spans": [ |
| { |
| "start": 187, |
| "end": 190, |
| "text": "(1)", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 289, |
| "end": 292, |
| "text": "(1)", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 40, |
| "end": 46, |
| "text": "Figure", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "Notice that when one triple is removed, it removes possibly multiple ambiguous syntactic interpretations--two interpretations are removed by removing the triple (16) in this example, but for the sentence, It is transmitted by eating shellfish such as oysters living in infected waters, or by drinking infected water, or by dirt from soiled fingers, 189 out of 378 ambiguous syntactic interpretations are removed when the semantic relation (rood water drinking) is rejected, e This saves many operations which must be done in other approaches which check syntactic trees one by one to make a semantic structure. The resulting semantic graph and its exclusion matrix derived from the functional graph in Figure 3 have three semantic interpretations and are illustrated in Figure 5 . This is a reduction from five syntactic interpretations as a result of filtering out the possibility, (agt streams monkey).", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 702, |
| "end": 710, |
| "text": "Figure 3", |
| "ref_id": "FIGREF0" |
| }, |
| { |
| "start": 770, |
| "end": 778, |
| "text": "Figure 5", |
| "ref_id": "FIGREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "There is one arc in Figure 5 , labeled near(51), that proved to be of considerable interest to us.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 20, |
| "end": 28, |
| "text": "Figure 5", |
| "ref_id": "FIGREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "6In \"infec'~ed drinking water\", (rood water drinking) is plausible but not in \"drinking infected water\".", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "If we attempt to generate a complete sentence using that arc, we discover that we can only produce, \"The monkey lives in tropical jungles near rivers.\" There is no way that that a generation with that arc can include \"and streams\" and no sentence with \"and streams\" can use that arc.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "The arc, near(51), shows a failure in our ability to rewrite the exclusion matrix correctly when we removed the interpretation \"the monkey lives ... and streams.\" There was a possibility of the sentence, \"the monkey lives in jungles, (lives) near rivers, and (he) streams.\" The redundant arc was not dependent on subj(16) (in Figure 3) and thus remains in the semantic graph. The immediate consequence is simply a redundant arc that will not do harm; the implication is that the exclusion matrix cannot filter certain arcs that are indirectly dependent on certain forbidden interpretations.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 326, |
| "end": 335, |
| "text": "Figure 3)", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "COMPUTING SEMANTIC GRAPHS", |
| "sec_num": null |
| }, |
| { |
| "text": "The utility of the resultant semantic graph can be appreciated by close study of Figure 5 . The graph directly answers the following questions, (assuming they have been parsed into case notation):", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 81, |
| "end": 89, |
| "text": "Figure 5", |
| "ref_id": "FIGREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 Where does the monkey live?", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "1. in tropical jungles near rivers and streams, 2. near rivers and streams, 3. in tropical jungles near rivers, 4. in tropical jungles.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 Does the monkey live in jungles? Yes, by agt (1) and in(53) which are not exclusive with each other.", |
| "cite_spans": [ |
| { |
| "start": 47, |
| "end": 50, |
| "text": "(1)", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 Does the monkey live in rivers? No, because in(52) is exclusive with conj(lO), and in(SS) is pointing to jungles not rivers.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "\u2022 Does the monkey live near jungles? No, because near(50) and conj(12) are exclusive, so no path from live through near(50) can go through eonj(12) to reach jungle, and the other path from live through near(51) goes to rivers which has no exiting path to jungle.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "Thus, by matching paths from the question through the graph, and ensuring that no arc in the answering path is forbidden to co-occur with any other, questions can be answered directly from the graph.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "In conclusion, we have presented a computational method for directly computing semantic graphs from syntactic graphs. The most crucial and economical aspect of the computation is the 53 capability of applying tests and transformations directly to the graph rather than applying the rules to one interpretation, then another, and another, etc. When a semantic filtering rule rejects one implausible relation, then pruning all dependent relations of that relation directly from the syntactic graph has the effect of excluding substantially many syntactic interpretations from further consideration. An algorithm for finding such dependent relations is presented.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "In thispaper, we did not consider the multiple word senses which may cause more semantic ambiguities than we have illustrated. Incorporating and minimizing word sense ambiguities is part of our continuing research. We are also currently investigating how to integrate semantic graphs of previous sentences with the current one, to maintain a continuous context whose ambiguity is successively reduced by additional incoming sentences.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "AND CONCLUSION", |
| "sec_num": null |
| }, |
| { |
| "text": "We proved the \"all\" but have discovered that in certain cases to be shown later, the transformation to a semantic graph may result in arcs that do not occur in any complete analysis.2Actually each word in the triples also includes notation for position, and syntactic class and features of the word.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "The Theory of Parsing, Translation and Compiling", |
| "authors": [ |
| { |
| "first": "Alfred", |
| "middle": [ |
| "V" |
| ], |
| "last": "Aho", |
| "suffix": "" |
| }, |
| { |
| "first": "Jeffrey", |
| "middle": [ |
| "D" |
| ], |
| "last": "Ullman", |
| "suffix": "" |
| } |
| ], |
| "year": 1972, |
| "venue": "", |
| "volume": "1", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Alfred V. Aho, and Jeffrey D. Ullman, The Theory of Parsing, Translation and Compil- ing, Vol. 1, Prentice-Hall, Englewood Cliffs, NJ, 1972.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Parsing with Assertion Sets and Information Monotonicity", |
| "authors": [ |
| { |
| "first": "G", |
| "middle": [], |
| "last": "", |
| "suffix": "" |
| }, |
| { |
| "first": "Edward", |
| "middle": [], |
| "last": "Barton", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [ |
| "C" |
| ], |
| "last": "Berwick", |
| "suffix": "" |
| } |
| ], |
| "year": 1985, |
| "venue": "Proceedings of IJCAI", |
| "volume": "85", |
| "issue": "", |
| "pages": "769--771", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "G. Edward Barton and Robert C. Berwick, \"Parsing with Assertion Sets and Informa- tion Monotonicity,\" Proceedings of IJCAI-85: 769-771, 1985.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "An Efficient Context-free Parsing algorithm", |
| "authors": [ |
| { |
| "first": "Jay", |
| "middle": [], |
| "last": "Early", |
| "suffix": "" |
| } |
| ], |
| "year": 1970, |
| "venue": "Communications of the A CM", |
| "volume": "13", |
| "issue": "2", |
| "pages": "94--102", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jay Early, \"An Efficient Context-free Pars- ing algorithm,\" Communications of the A CM, Vol. 13, No. 2: 94-102, 1970.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Semantic Interpretation and the Resolution of Ambiguity", |
| "authors": [ |
| { |
| "first": "Graeme", |
| "middle": [], |
| "last": "Hirst", |
| "suffix": "" |
| } |
| ], |
| "year": 1987, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Graeme Hirst, Semantic Interpretation and the Resolution of Ambiguity, Cambridge Uni- versity Press, Cambridge, 1987.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "A Theory of Syntactic Recognition for Natural Language", |
| "authors": [ |
| { |
| "first": "Mitchell", |
| "middle": [ |
| "P" |
| ], |
| "last": "Marcus", |
| "suffix": "" |
| } |
| ], |
| "year": 1980, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Mitchell P. Marcus, A Theory of Syntac- tic Recognition for Natural Language, MIT Press, Cambridge, 1980.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Ambiguity Procrastination", |
| "authors": [ |
| { |
| "first": "Elain", |
| "middle": [], |
| "last": "Rich", |
| "suffix": "" |
| }, |
| { |
| "first": "Jim", |
| "middle": [], |
| "last": "Barnett", |
| "suffix": "" |
| }, |
| { |
| "first": "Kent", |
| "middle": [], |
| "last": "Wittenburg", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Wroblewski", |
| "suffix": "" |
| } |
| ], |
| "year": 1987, |
| "venue": "Proceedings of AAAL87", |
| "volume": "", |
| "issue": "", |
| "pages": "571--576", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Elain Rich, Jim Barnett, Kent Wittenburg and David Wroblewski, \"Ambiguity Procras- tination,\" Proceedings of AAAL87: 571-576, 1987.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Syntactic Graphs: A Representation for the Union of All Ambiguous Parse Trees", |
| "authors": [ |
| { |
| "first": "Jungyun", |
| "middle": [], |
| "last": "Seo", |
| "suffix": "" |
| }, |
| { |
| "first": "Robert", |
| "middle": [ |
| "F" |
| ], |
| "last": "Simmons", |
| "suffix": "" |
| } |
| ], |
| "year": 1989, |
| "venue": "Computational Linguistics", |
| "volume": "15", |
| "issue": "1", |
| "pages": "19--32", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jungyun Seo and Robert F. Simmons, \"Syn- tactic Graphs: A Representation for the Union of All Ambiguous Parse Trees,\" Com- putational Linguistics, Vol. 15, No. 1: 19-32, 1989.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Efficient Parsing for Natural Language", |
| "authors": [ |
| { |
| "first": "Masaru", |
| "middle": [], |
| "last": "Tomita", |
| "suffix": "" |
| } |
| ], |
| "year": 1985, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Masaru Tomita, Efficient Parsing for Natu- ral Language, Kluwer Academic Publishers, Boston, 1985.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "num": null, |
| "uris": null, |
| "type_str": "figure", |
| "text": "Functional Graph and Exclusion Matrix for \"The monkey lives in tropical jungles near rivers and streams.\"" |
| }, |
| "FIGREF1": { |
| "num": null, |
| "uris": null, |
| "type_str": "figure", |
| "text": "~)-(8), (11) and (13). Those syntactic triples are not used in one-to-one transformation of syntactic triples, but are involved in many-to-one transformations to produce the new functional triples, (50)-(55), in the functional graph." |
| }, |
| "FIGREF2": { |
| "num": null, |
| "uris": null, |
| "type_str": "figure", |
| "text": "Semantic Graph and Exclusion Matrix for \"The monkey lives in tropical jungles near rivers and streams.\"" |
| } |
| } |
| } |
| } |