ACL-OCL / Base_JSON /prefixC /json /C90 /C90-1019.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "C90-1019",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T12:37:09.878091Z"
},
"title": "Deep Sentence Understanding in a Restricted Domain*",
"authors": [
{
"first": "Pierre",
"middle": [],
"last": "Zweigenbaum",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marc",
"middle": [],
"last": "Cavazza",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "We present here the current prototype of the text understanding system HELENE. The objective of this system is to achieve a deep understanding of small reports dealing with a restricted domain. Sentence understanding builds a model of the state of the world described, through the application of several knowledge modules: (i) LFG parsing, (ii) syntactic disambiguation based on lexical entry semantic components, (iii) assembly of semantic components and instantiation of domain entities, and (iv) construction of a world model through activation of common sense and domain knowledge.",
"pdf_parse": {
"paper_id": "C90-1019",
"_pdf_hash": "",
"abstract": [
{
"text": "We present here the current prototype of the text understanding system HELENE. The objective of this system is to achieve a deep understanding of small reports dealing with a restricted domain. Sentence understanding builds a model of the state of the world described, through the application of several knowledge modules: (i) LFG parsing, (ii) syntactic disambiguation based on lexical entry semantic components, (iii) assembly of semantic components and instantiation of domain entities, and (iv) construction of a world model through activation of common sense and domain knowledge.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "We present here the current prototype of the text understanding system HI~LI~NE. The objective of this system is to achieve a deep understanding of small reports dealing with a restricted domain (here, patient discharge summaries in a medical specialty). This means that H~LJ~NE should rely on an extensive description of all types of required knowledge. This implies of course a deep domain knowledge base, including the needed common sense knowledge.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Precise understanding must not only rely on complete domain knowledge, but also on enough syntactic information. This is the reason why H~LI~NE includes a full syntactic module, whose task is to provide the semantic construction module with the (deep) structures of sentences. One problem with syntactic processing is that it gives rise to numerous ambiguities. These ambiguities are filtered on semantic grounds by a disambiguation module that does not build any semantic representation. *supported by AIM project 1003 and PRC Communication Homme-Machine, PSle Langage Naturel.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Semantic construction is concerned with the recognition of domain entities that can be expressed by word groups. We thus had to adopt a lexical semantics approach compatible with descriptions. Domain entities, once instantiated, provide the basis on which a model of the current state of the world (here, the patient state) is built. The same lexical semantic in{brmation is used both to help syntactic processing, and in a more extensive way to access domain models in order to build semantic representations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The prototype includes the following main modules:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The syntactic module implements the Lexical Functional Grammar formalism [7] . The parser builds c-structure and f-structure bottom-up in parallel on a chart, so that fstructure validity can constrain c--structure construction.",
"cite_spans": [
{
"start": 73,
"end": 76,
"text": "[7]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Ambiguous attachments are submitted to evaluation and ranking by the disambiguation module. This module applies a set of general heuristic rules that operate on the semantic definition of the LFG predicates.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Semantic construction relies on dynamic domain models that integrate common sense. LFG predicates are characterized by semantic components that point to parts of the knowledge base.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The prototype runs in Common Lisp (VAX Lisp) and K, a proprietary language embedded in Common Lisp. The remaining sections describe these modules in more detail.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We chose to implement the LFG fl:amework for several reasons. Being a linguistic theory, it should provide better foundations for principled syntactic coverage. A formalism with a context-free backbone was easier to implement. Furthermore, LFG extracts from a sentence a predicate-argument structure which consitutes a good starting point for semantic processing. Our implementation of LFG does not include yet a schema for long-distance dependencies (or functional uncertainty) and coordination. It allows cyclic f-structures.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing with a Lexical-Functional Grammar",
"sec_num": "2"
},
{
"text": "Our parser uses a chart to build both cstructure and f-structure. Incomplete and complete constituents are represented by active and inactive cs-edges, while incomplete and complete fstructures are placed on active and inactive fs-edges. The parsing strategy is bottomup, left to right (left corner). Top-down parsing is also available, as well as right to left parsing. LFG schemas are evaluated as soon as possible. Equational (construction) schemas are evaluated when encountered, and constraint schemas (existential, equational and negation of those) are kept on fs-edges until they can be evaluated. When fs-edges are combined, remaining constraints are propagated to the resulting fs-edge. Each new active f-structure is tested for consistency and coherence. Furthermore, the value of a closed function is tested for completeness (this should be revised if a scheme for longdistance dependencies is implemented). When a constraint is violated, its fs-edge is flagged as invalid.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing with a Lexical-Functional Grammar",
"sec_num": "2"
},
{
"text": "Grammar rules are described as regular expressions which are compiled into (reversible) transition networks. Each arc of those networks is labelled with a category and a disjunction of conjunctions of schemas. A model of hierarchical lexical entry representation has been developed, with data-driven lexical rules. It is not currently coupled to the parser, and will not be presented here. The prototype uses a simple word list with what would be the result of this model as lexical entries.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing with a Lexical-Functional Grammar",
"sec_num": "2"
},
{
"text": "The prototype uses a small French grammar that contains 14 networks, equivalent to 90 rules. It was assembled by borrowing from the literature [3, 10] and by completing with grammar manuals and real text confrontation. It has the particularity of building cyclic f-structures for constructions where a head plays a role inside an adjunct. This is how we process attributive adjectives, participial phrases, and (in a very limited way) relative phrases.",
"cite_spans": [
{
"start": 143,
"end": 146,
"text": "[3,",
"ref_id": null
},
{
"start": 147,
"end": 150,
"text": "10]",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Parsing with a Lexical-Functional Grammar",
"sec_num": "2"
},
{
"text": "Structural ambiguity is ubiquitous in our target texts, since they contain descriptions that often make use of series of prepositional phrases to qualify a noun. We have then decided to submit ambiguous attachments to semantic approval and ranking before building complete parses.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic rules for Syntactic Disambiguation",
"sec_num": "3"
},
{
"text": "An ultimate test of semantic validity would consist in comparing complete semantic representations built for each attachment proposal [1] . However, such a method is too expensive to allow systematic application. Our system implements a more tractable approach that generalizes selectional restrictions (or preferences). Evaluation is performed by executing a set of heuristic positive and negative rules that vote for or against each proposal. Rule conditions embody criteria that refer to the semantic components (see below) of the predicates to be attached, and include the notion of isotopy [8] . They apply not only to predicate-argument selection, but also to predicate-adjunct combination.",
"cite_spans": [
{
"start": 134,
"end": 137,
"text": "[1]",
"ref_id": null
},
{
"start": 595,
"end": 598,
"text": "[8]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic rules for Syntactic Disambiguation",
"sec_num": "3"
},
{
"text": "Semantic processing of a sentence results in the activation of a relevant body of domain knowledge with related inferences within the knowledge base.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "Domain knowledge (here concerning a single disease: thyroid cancer) is embedded in a model [6, 4] describing domain objects, actions operating on them and specific processes involving these objects. Such a model is thus a dynamic causal model rather than a memory structure devoted to object and event integration [9] . It is analogous to deep-knowledge models used in modern expert systems [2] .",
"cite_spans": [
{
"start": 91,
"end": 94,
"text": "[6,",
"ref_id": null
},
{
"start": 95,
"end": 97,
"text": "4]",
"ref_id": null
},
{
"start": 314,
"end": 317,
"text": "[9]",
"ref_id": null
},
{
"start": 391,
"end": 394,
"text": "[2]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "Domain objects are represented in a framelike formalism. Actions and operative aspects of processes are described as production rules simulating a distributed parallel activation [4] . The whole model corresponds to a dynamic, datadriven environment.",
"cite_spans": [
{
"start": 179,
"end": 182,
"text": "[4]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "Some domain concepts specifically represent states, relationships between objects, or state transitions. They can be triggered by their occurrence as word meanings in the sentence. Implicit occurrence of these concepts may also be recognized by observing the evolution of the model. In this case default procedures create the corresponding concepts inside the model just as if these elements were explicitely stated in the proposition. These concepts subsume important situations in the model and translate them into a higher description level, thus allowing output to the user for a trace of correct understanding.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "No deep understanding would be possible without a treatment, even partial, of common sense, which in this application is concerned mainly with part-whole relationships [5] , reasoning about transitions and change, and elementary physical actions (e.g., removing, touching). Default knowledge on actions, roles and reference (e.g., used in the resolution of pragmatic anaphora) are associated to the common sense module.",
"cite_spans": [
{
"start": 168,
"end": 171,
"text": "[5]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "ColImlon sense mechanisms are incorporated as production systems similar to those describing other active elements of the model, and can thus recombine freely with them in order to complete or modify existing representations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "Domain representations are built from the assembly of lexical contents along the syntactic structure of the proposition. Words contain semantic, components [8] , which are markers referring to elements of the knowledge base or properties of these representations. The existence of explicit colnmon sense concepts in the knowledge base makes it possible to decompose homogeneously technical and ordinary words.",
"cite_spans": [
{
"start": 156,
"end": 159,
"text": "[8]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "The lexical contents are assembled by heuristic rules to form candidate domain objects which are recognized as instances of prototypes in the representation. Lexical content itself is loosely structured; the association of the components is completed according to their type (which is derived t rom the type of entity they refer to) and the dependency (predicate-argument, predicateadjunct) relations between the lexemes that contain such components, as provided by the LFG.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "As such elements of representation are recognized by the model, the reactive environment is triggered and interprets data until new information is analyzed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
},
{
"text": "The prototype currently runs on a small set of 30 sentences taken from patient discharge summaries. These sentences were selected for the linguistic issues they illustrate and the domain inferences they trigger. A fully compiled version of the program running on a VAX 8810 processes a sentence in an average 12 sec. CPU time.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Construction",
"sec_num": "4"
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Lexical ambiguity as a touchstone for theories of language analysis",
"authors": [
{
"first": "L",
"middle": [],
"last": "Birnbaum",
"suffix": ""
}
],
"year": 1985,
"venue": "IJ-CAI",
"volume": "9",
"issue": "",
"pages": "815--820",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Birnbaum, L. (1985). Lexical ambiguity as a touchstone for theories of language analysis. IJ- CAI 9, Los Angeles, 815-820.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "On deep versus compiled knowledge approaches to medical diagnosis",
"authors": [
{
"first": "B",
"middle": [],
"last": "Chandrasekaran",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Mittal",
"suffix": ""
}
],
"year": null,
"venue": "Int J Man-Machine S\u00a2udies",
"volume": "19",
"issue": "1",
"pages": "425--436",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Chandrasekaran, B. and Mittal, S. (1!183). On deep versus compiled knowledge approaches to medical diagnosis. Int J Man-Machine S\u00a2udies 19:425-436.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "On the lexical representation of Romance reflexive clitics",
"authors": [
{
"first": "J",
"middle": [],
"last": "Orimshaw",
"suffix": ""
}
],
"year": 1982,
"venue": "The Mental Representation of Grammatical Relations",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Orimshaw, J. (1982). On the lexical represen- tation of Romance reflexive clitics, in Bresnan (ed.), The Mental Representation of Grammat- ical Relations, Cambridge, Mass., MIT Press.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Induction: Processes of Inference, Learning, and Discovery",
"authors": [
{
"first": "J",
"middle": [
"H"
],
"last": "Holland",
"suffix": ""
},
{
"first": "K",
"middle": [
"J"
],
"last": "Holyoak",
"suffix": ""
},
{
"first": "R",
"middle": [
"E"
],
"last": "Nisbet~",
"suffix": ""
},
{
"first": "P",
"middle": [
"R"
],
"last": "Thagard",
"suffix": ""
}
],
"year": 1986,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Holland, J.H., Holyoak, K.J., Nisbet~, R.E., Thagard, P.R. (1986). Induction: Processes of Inference, Learning, and Discovery. Cam- bridge: MIT Press.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Problems of the part-whole relation",
"authors": [
{
"first": "M",
"middle": [
"A"
],
"last": "Iris",
"suffix": ""
},
{
"first": "B",
"middle": [
"E"
],
"last": "Litowitz",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Evens",
"suffix": ""
}
],
"year": 1988,
"venue": "ional Models of the le~i-con",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Iris, M.A., Litowitz, B.E., and Evens, M. (1988). Problems of the part-whole relation. In Evens, M.E., ed. Rela$ional Models of the le~i- con. Cambridge University Press.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Mental Models",
"authors": [
{
"first": "P",
"middle": [
"N"
],
"last": "Johson-Laird",
"suffix": ""
}
],
"year": 1983,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johson-Laird, P.N. (1983). Mental Models, Cambridge University Press.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Lexical-Functional Grammar: A Formal System for Grammatical Representation",
"authors": [
{
"first": "R",
"middle": [
"M"
],
"last": "Kaplan",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Bresnan",
"suffix": ""
}
],
"year": 1982,
"venue": "The Mental Representation of Grammatical Relations",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kaplan, R.M., and Bresnan, J. (1982). Lexical- Functional Grammar: A Formal System for Grammatical Representation, in Bresnan (ed.), The Mental Representation of Grammatical Re- lations, Cambridge, Mass., MIT Press.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Sdmantique Interprdtative",
"authors": [
{
"first": "F",
"middle": [],
"last": "Rastier",
"suffix": ""
}
],
"year": 1987,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rastier, F. (1987). Sdmantique Interprdtative. Paris: Presses Universitaires de France.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Scripts, Plans, Goals and Understanding",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Scripts, Plans, Goals and Understanding. Lawrence Erlbaum Associates.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Orammaire Lexlcale-Fonctionnelle --Dislocation, inversion stylistique et constructions impersonnelles",
"authors": [
{
"first": "J",
"middle": [],
"last": "Waite",
"suffix": ""
}
],
"year": 1986,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Waite, J.3. (1986). Orammaire Lexlcale- Fonctionnelle --Dislocation, inversion stylis- tique et constructions impersonnelles. PhD Thesis, University of Montreal.",
"links": null
}
},
"ref_entries": {}
}
}