ACL-OCL / Base_JSON /prefixE /json /E83 /E83-1029.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "E83-1029",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T10:37:04.717070Z"
},
"title": "NATURAL LANGUAGE INPUT FOR SCENE GENERATION M",
"authors": [
{
"first": "Giovanni",
"middle": [],
"last": "Adorni",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Genoa Viale F",
"location": {
"addrLine": "Causa 13",
"postCode": "16145",
"settlement": "Genoa",
"country": "Italy"
}
},
"email": ""
},
{
"first": "Mauro",
"middle": [
"Di"
],
"last": "Manzo",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Genoa Viale F",
"location": {
"addrLine": "Causa 13",
"postCode": "16145",
"settlement": "Genoa",
"country": "Italy"
}
},
"email": ""
},
{
"first": "Giacomo",
"middle": [],
"last": "Ferrari",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "CNR",
"location": {
"addrLine": "Via della Faggiola",
"postCode": "56100",
"settlement": "Pisa",
"country": "Italy"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In this paper a system which understands and conceptualizes scenes descriptions in natural language is presented. Specifically, the following components of the system are described: the syntactic analyzer, based on a Procedural Systemic Grammar, the semantic analyzer relying on the Conceptual Dependency Theory, and the dictionary.",
"pdf_parse": {
"paper_id": "E83-1029",
"_pdf_hash": "",
"abstract": [
{
"text": "In this paper a system which understands and conceptualizes scenes descriptions in natural language is presented. Specifically, the following components of the system are described: the syntactic analyzer, based on a Procedural Systemic Grammar, the semantic analyzer relying on the Conceptual Dependency Theory, and the dictionary.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "In this paper a system is presented, which under stands and conceptualizes scenes descriptions in natural language (Italian) and produces simple stat ic images of the scenes. It is part of a larger project that aims at understanding the description of static scenes, reasoning (in case of incompleteness or inconsistency) and dialoguing about them, and finally generating and displaying them.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "INTRODUCTION",
"sec_num": null
},
{
"text": "The Input Analyzer (IA) of the system is the most stable end experimented component and it is the topic of this paper. It consists of a Syntactic Analyzer, a Cognitive Data Base (CDB) and a Semantic Interpreter.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "INTRODUCTION",
"sec_num": null
},
{
"text": "The syntactic analysis is performed by means of a Procedural Systemic Grammar (PSG) (McCord, 77) . The main characteristics of the PSG parser is that the operation flow is highly structured, since different levels of the analysis are associated to the syntactic units of the sentence. Five processes can be activated (CLAUSE, COMPL.GR, NOUN.GR, ADJ.GR and VERB.GR) devoted to recognize respectively: (i) the sentences, (ii) the propositional phrases, comparatives, quantification and noun phrases, (iii) the components of the noun phrases, (iv) the adjectives and their modifiers, (v) the verb and its modifiers. FEATURE NETWORK:array(FEATURE) of LINK; Each NODE represents s feature identified by its NAME; the ALTERNATE pointer allows the connection in a Circular list of mutually exclusive features as in SHRLDU (Winograd, 72) . Each process gives as output a fragment of the FEATURE NETWORK manipulated to describe the input; this is performed by means of a set of functions which test the presence of a feature in the FEATURE_NETWORK, add and erase features, as described in McCord ('77) . The process is divided into a set of sequential routines,called SLOTs, analyzing the functional components of a Syntactic Unit. In the function:",
"cite_spans": [
{
"start": 84,
"end": 92,
"text": "(McCord,",
"ref_id": null
},
{
"start": 93,
"end": 96,
"text": "77)",
"ref_id": null
},
{
"start": 815,
"end": 825,
"text": "(Winograd,",
"ref_id": null
},
{
"start": 826,
"end": 829,
"text": "72)",
"ref_id": null
},
{
"start": 1080,
"end": 1092,
"text": "McCord ('77)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "II SYNTACTIC ANALYZER",
"sec_num": null
},
{
"text": "function FILLER(ARGI:PROCESS, ARG2:SETOF_FEATURES):boolean; ARGI activates the appropriate process to fill the caller slot; the second argument of the function selects the set of features to which the called process must be inizialized. This last features-passing mechanism is absent in the original PSG; from our experience, we found it usefull in all the cases in which a choice in a syntactic level is determined by the syperior level or by a more larger context. Thus, for instance, the set of features characterizing a prepositional phrase is determined at the corresponding syntactic level by the preposition and the features of the nominal phrase; but further and not less important selection criteria can be imposed by the verb which is found in the upper level. The output of a simple analysis is shown in Fig.2 ; it gives an idea of the syntactic representation. The choice of PSG is mainly motivated by the possibility of parallel computation. A control structure allowing the parallel computation is: cobegin ... coend; It is a single input-output structure, very usefull to handle alternative choices for the same computational level. In the case of mutually exclusive alternatives only one of the \"n\" processes activated by a cobegin control structure can end successfully. In the case of not mutually exclusive alternatives, it is still possible to use the cobegin control structure , but it is necessary to define a strategy for the selection of the most suitable alternative when the coend occurs.",
"cite_spans": [],
"ref_spans": [
{
"start": 815,
"end": 820,
"text": "Fig.2",
"ref_id": null
}
],
"eq_spans": [],
"section": "II SYNTACTIC ANALYZER",
"sec_num": null
},
{
"text": "An experimental implementation in terms of para~ lel computation has been made on a multiprocessor system (Adorni et ai., '79) . Another version of this parser has been implemented in PASCAL (DiManzo et ai.,'79} and a version in FranzLisp is in progress.",
"cite_spans": [
{
"start": 106,
"end": 121,
"text": "(Adorni et ai.,",
"ref_id": null
},
{
"start": 122,
"end": 126,
"text": "'79)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "II SYNTACTIC ANALYZER",
"sec_num": null
},
{
"text": "The organization of knowledge, in this system, is based on a set of THOUGHTs. A THOUGHT is a frame like structure within which new data are interpreted in terms of concepts acquired through previous experience (Minsky,'75), (Schank, Abelson, '77) . Every THOUGHT has a TYPE which determines a set of operations applicable to it.",
"cite_spans": [
{
"start": 224,
"end": 232,
"text": "(Schank,",
"ref_id": null
},
{
"start": 233,
"end": 241,
"text": "Abelson,",
"ref_id": null
},
{
"start": 242,
"end": 246,
"text": "'77)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "III STRUCTURE OF THE COGNITIVE DATA BASE",
"sec_num": null
},
{
"text": "The following predefined types are allowed (Adorni, DiManzo, '83) : -DESCRIPTIVE, that defines the complete description of a physical,abstract,animate or not,object.",
"cite_spans": [
{
"start": 43,
"end": 51,
"text": "(Adorni,",
"ref_id": null
},
{
"start": 52,
"end": 60,
"text": "DiManzo,",
"ref_id": null
},
{
"start": 61,
"end": 65,
"text": "'83)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "III STRUCTURE OF THE COGNITIVE DATA BASE",
"sec_num": null
},
{
"text": "-PROTOTYPE, that defines the structural part of a physical object in terms of generalized cones (Marr, Nishihara, '78) . An example of definition of simple prototype object is given in Fig.3 . -JOINT, that defines the element of connection between physical objects, in order to build more complex objects or scenes (Fig.4 ).",
"cite_spans": [
{
"start": 96,
"end": 102,
"text": "(Marr,",
"ref_id": null
},
{
"start": 103,
"end": 113,
"text": "Nishihara,",
"ref_id": null
},
{
"start": 114,
"end": 118,
"text": "'78)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 185,
"end": 190,
"text": "Fig.3",
"ref_id": null
},
{
"start": 315,
"end": 321,
"text": "(Fig.4",
"ref_id": null
}
],
"eq_spans": [],
"section": "III STRUCTURE OF THE COGNITIVE DATA BASE",
"sec_num": null
},
{
"text": "-SPATIALREL, that defines spatial relationships like \"on,near,on the left of,...\" between objects.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "III STRUCTURE OF THE COGNITIVE DATA BASE",
"sec_num": null
},
{
"text": "All the linguistic relationships like \"above,under, behind\", and so on, are reduced into quantitative geometrical relationships between the coordinates of some points of the involved objects; this choice is motivated by the possibility of deriving a set of very general inference rules from analytic geometry (Adorni et ai., '82) , (Boggess, '79) , (Boggess, Waltz, '79) . The coordinates of an indefinite point P are given in the form: COORD K OF P (REFERRED_TO A)=H where K is a group of possible coordinates, H a set of values for these coordinates and A is the THOUGHT of the object to which the reference system used is connected. Fig.5 shows the THOUGHT for an use of the preposition \"on\".",
"cite_spans": [
{
"start": 309,
"end": 324,
"text": "(Adorni et ai.,",
"ref_id": null
},
{
"start": 325,
"end": 329,
"text": "'82)",
"ref_id": null
},
{
"start": 332,
"end": 341,
"text": "(Boggess,",
"ref_id": null
},
{
"start": 342,
"end": 346,
"text": "'79)",
"ref_id": null
},
{
"start": 349,
"end": 358,
"text": "(Boggess,",
"ref_id": null
},
{
"start": 359,
"end": 365,
"text": "Waltz,",
"ref_id": null
},
{
"start": 366,
"end": 370,
"text": "'79)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 636,
"end": 641,
"text": "Fig.5",
"ref_id": null
}
],
"eq_spans": [],
"section": "III STRUCTURE OF THE COGNITIVE DATA BASE",
"sec_num": null
},
{
"text": "A spatialrel type THOUGHT can contain conceptualizations and prototype THOUGHTs; a joint type can contain only its description; a prototype type can contain joint or prototype THOUGHTs or descriptions in terms of generalyzed cones;all these types can be enclosed in a descriptive type which can contain conceptualizations and all the types of THOUGHTs, previously introduced. A descriptive type can include the following fields (Adorni, DiManzo, '83) , (see -POSITION, gives the most common spatial relations between the described object and other objects in standard scenes, in terms of a spatialrel between prototype THOUGHTs; -SUPPORT, contains the indication, in terms of descriptive THOUGHTs, of the objects which are supported in standard situations; -COLOR and MADE, describe the possible set of colors and materials, while WEIGHT contains information about the range of possible weights; -CONTENT, says, in terms of descriptive THOUGHTs, that the normal use of the object is a container for other objects; -DYNAMIC, contains the current expectations about the boundaries of the dimensions of the objects; it can be dinamically updated every time a new object of the same class enters the system's CDB.",
"cite_spans": [
{
"start": 428,
"end": 436,
"text": "(Adorni,",
"ref_id": null
},
{
"start": 437,
"end": 445,
"text": "DiManzo,",
"ref_id": null
},
{
"start": 446,
"end": 450,
"text": "'83)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "III STRUCTURE OF THE COGNITIVE DATA BASE",
"sec_num": null
},
{
"text": "The Semantic Interpreter of the IA interacts with the Syntactic Analyzer and operates on a set of rules in order to build the concepts a sentence was intended to mean. The output of this module is a Conceptual Dependency Network (Schank, '75) , in which every nominal is substituted by a complex descriptive THOUGHT instantiated from the CDB.",
"cite_spans": [
{
"start": 229,
"end": 237,
"text": "(Schank,",
"ref_id": null
},
{
"start": 238,
"end": 242,
"text": "'75)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "Let us illustrate the procedure of analysis considering the following sentence (the translation is word by word in order to reproduce the problems of Italian): (i) \"l'uomo dai capelli grigi e' andato a Roma con l'auto di Giuseppe\" (the man with the grey hair has gone to Rome with the car of Joseph)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "The procedure of analysis has several steps:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "A. Analysis of Words and Simple Phrases During this step the entities which take part into the conceptualization are identified. In fact an indexed identifier Xi is associated to each object referred to in the sentence (each nominal), which points to one or more conceptualizations, contained in the field \"descr\" of each nominal in the CDB. The adjectives contained in the noun phrases are also analyzed during this step. Each of them adds some conceptualizations which contribute to further individuate the nominal. During this step personal pronouns are identified as:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "Xi ~=--> ISA(HUMAN) Temporal and local adverbials are also analyzed in this phase in order to assign to the sentence conceptualization a time and place identification according to certain rules described in (Adorni et al., '81) . At the end of this step the sentence (i) is represented as follows:",
"cite_spans": [
{
"start": 207,
"end": 222,
"text": "(Adorni et al.,",
"ref_id": null
},
{
"start": 223,
"end": 227,
"text": "'81)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "identifier nominal conceptualization Xl uomo (man) Xl <=~ISA(HUMAN) X2 capelli (hair) X2<==>ISA(HAIR) X3 Roma (Rome) X3~=>ISA(CITY) XS<==>NAME(ROME) X4 auto (car) X4<==>ISA(CAR) X5 Giuseppe (Joseph) X5<==>ISA(HUMAN) X5~-->NAME(JOSEPH)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "The sentence (i) can then be read:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "(2) \"XI da X2 e' andato a X3 con X4 di X5\" (XI from X2 is gone to X3 with X4 of X5)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "IV SEMANTIC INTERPRETER",
"sec_num": null
},
{
"text": "The simple phrases of a sentence can either fill conceptual cases of a main conceptualization, thus serving as 'picture producer' (PP), or further ind ! ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "B. Analysis of Modifiers",
"sec_num": null
},
{
"text": "Like \"a man is on a chair\" viduate a PP. Therefore they can be classified according to whether they modify: a) the nominal that precedes(also not immediately); \"i libri di Carlo\" ^ (the books of Charles) b) the subject or object independently from their position;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "\"Maria e' andata a Roma con Anna\" ^ (Mary has gone to Rome with Ann) c) the action;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "\"Maria e' andata a Roma con la macchina\" ^ (Mary has gone to Rome with the car) quires that the structure of the sentence is entirely known and cannot, in any case, be performed before the verb has been analyzed (subject and object are considered type c) modifiers). The modifiers in a), on the contrary, have a local role, limited to the PP they are to modify, and their relation to the sentence structure is marginal. They are, therefore,immediately associated to their corresponding nominals. In (2) \"da X2\" and \"di X5\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "are of this kind and are consequently linked to X1 and X4 producing:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "(3) \"XI e' andato a X3 con X4\" (XI has gone to X3 with X4)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "In the \"descr\" field of THOUGHTs Xl and X4 the following information is added:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "X2 < .... PART OF(X1) X5 <===> OWNERSHIP(X4)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "The embodying of a modifier creates complex PPs or CLUSTERs. Each CLUSTER has as its HEAD a b) or c) modifier,a conceptual index node modified by the accessory concepts. In our example \"l'uomo dai capelli neri\", \"a Roma\", and \"con l'auto di Giuseppe\" are CLUSTERs, in which the head is always the leftmost nominal.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "The decision about the embodying of a modifier into its head is related to the classical problem of the placement of PP's. In fact, it is not always the case that a prepositional phrase modifies a conceptual index node; it is often possible that it has to be embodied into another accessory modifier, as in: \"il libro dell'uomo dal cappotto blu\" At this step \"splitting\" of a conceptualization often occurs. In the sentence:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "\"Giovanni d~ un colpo a Maria\" (lit. John gives a blow to Mary) although two nuclei are present (d~ & colpo),nevertheless the correct interpretation is \"Giovanni colpisce Maria\" (John hits Mary), instead of \"Giovanni trasferisce il possesso dell'oggetto colpo a Maria\" (John tansfers the ownership of the object 'blow' to Mary)!!!",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "We have observed that this phenomenon involves conceptualizations based on the primitives of \"state\", \"action\", and \"spatial relationship\" and relies only on the pairs ACTION-STATE, ACTION-SPATIAL RE-LATIONSHIP, and ACTION-ACTION. The regularities ruling the formation of these pairs have been found to depend only upon those conceptual primitives. This keeps the number of rules to be evaluated reasonably small, if compared with the number of CDB entries (~600 entries in the present implementation (Adorni et al., '81) )~ An example will illustrate the mechanism of reduction of the conceptual \"splitting\" as well as of disambiguation.",
"cite_spans": [
{
"start": 501,
"end": 516,
"text": "(Adorni et al.,",
"ref_id": null
},
{
"start": 517,
"end": 521,
"text": "'81)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "The pair ACTION-SPATIAL RELATIONSHIP may be represented by: \"tirare su il braccio\" The compound \"tirare su\" has the two meanings: ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "-innalzare,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "(TO(NIL)))) ) X ~ ~ DO == S(Y(CHANGE STATE((FROM(HAPPINESS(N)}) (TO(HAPPINESS(N)))) ) )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "The context helps disambiguation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "In our example, the object of the spatial relationship being a physical object, the first alternative is selected. The rule performs a further control, discovering that the physical object is, in this case, PART OF(HUMAN); the PROPEL primitive is then substituted by the MOVE primitive.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "FIG.5 -Example of Use of a Spatial Relationship in a Case",
"sec_num": null
},
{
"text": "The next step performed by the semantic module is the filling of the conceptual cases of the main conceptualization with the THOUGHTs instantiated during the previous steps. Again, standard rules are associated to prepositions and adverbs and hidiosyncrasies are also treated. These rules make use of messages sent by the syntactic component and look at the conceptual syntax of the main conceptualization. Through these rules the cluster\"con X4\" turns out to be 'instrumental' and the following conceptualization is then produced:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "D. Case Fillin~ in the Main Conceptualization",
"sec_num": null
},
{
"text": "(4) X1 .... USE .... OBJ(X4) Since the filler of the instrumental case of the main conceptualization has to be a conceptualization, the rule activated by the \"con\" modifier fills the instrumental case with (4). In (3), 'a X3' is placed in the destination of the directive case of the main conceptualization, because preposition 'a' is stated to indicate the 'destination' if the main conceptualization contains a PTRANS,PROPEL or MOVE,with empty directive case; otherwise it indicates 'state'. \"Andare a Roma\" is thus distinguished from \"essere a Roma\" (to be in Rome). The result, for our example, is: XI< .... PTRANS~---OBJ(XI)~---DIR((FROM(NIL)) (TO (IN X3) ) )",
"cite_spans": [],
"ref_spans": [
{
"start": 653,
"end": 660,
"text": "(IN X3)",
"ref_id": null
}
],
"eq_spans": [],
"section": "D. Case Fillin~ in the Main Conceptualization",
"sec_num": null
},
{
"text": "The directive case,as shown in the above example is not simply filled with a md; it is filled with a \"spatial_relationship-md\" pair. This is a general rule for our system, emphasizing the change of coot dinates caused by an action. In our example this means that the primitive PTRANS has moved the object to a point whose coordinates are defined with in the city of Rome. The result of the analysis of (I) is given in Fig.9 . ",
"cite_spans": [],
"ref_spans": [
{
"start": 418,
"end": 423,
"text": "Fig.9",
"ref_id": null
}
],
"eq_spans": [],
"section": "D. Case Fillin~ in the Main Conceptualization",
"sec_num": null
},
{
"text": "The process of semantic interpretation is applied to every clause in the sentence, identified by a verb or a noun indicating an action. Segmentation into such clauses or nominalized clauses is obviously performed by the syntactic component, which has also non-standard rules for specific classes of (modal) verbs like: dovere (must),volere (to want),potere (can),incominciare (to start) .... These verbs constitute a single main conceptualization together with the embedded infinitive. Simple composition rules have been defined to combine the meaning of clauses (sentences). Thus for conjunction, as in \"si alzo',si mise il cappello eapri' la porta\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "E. Conceptual Analysis of Complex Sentences",
"sec_num": null
},
{
"text": "(he stood up,put on its hat and opened the door) the main conceptualizations associated to every proposition are connected by an 'and' relationship.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "E. Conceptual Analysis of Complex Sentences",
"sec_num": null
},
{
"text": "(si alzo') ......................... T1 and (si mise il cappello) T2 >TI and (apri' la porta) T3 >T2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "E. Conceptual Analysis of Complex Sentences",
"sec_num": null
},
{
"text": "A time indication is also associated to every main conceptualization to emphasize the execution order of every action. Conceptual analysis of each single clause (sentence) is activated by this top level structure and at the end the resulting conceptualizations are linked one to the other.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "E. Conceptual Analysis of Complex Sentences",
"sec_num": null
},
{
"text": "In this paper a system for understanding a natural language input to a scene generator has been described. It makes use of a conceptual dependency semantic model, substantially modified in as much as syntax is kept apart from semantic interpretation and a fully formalized dictionary is used, much more complex than the one embodied in Schank's theory. The dictionary is particularly oriented to the generation of scenes, and the stress is on the representation of the structure of objects.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "The awareness of the structure of the objects is often intimately related to our capability of under standing the. meaning of spatial relationships and other complex linguistic expressions. For instance, the meaning \"the cat is under the car\" is clear, even if it may depend on the state of the car, moving or parked; on the contrary, the sentence \"the cat is under the wall\" is not clear, unless the wall is crashed or it has a very particular shape.Our model tries to account t~is understanding activity by means of the following features: -an object is described at several levels of details; in some cases, only a rough definition of the object dimensions can be sufficient, while in other cases a more sophisticated knowledge about the structure of the object itself is required;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "-the characteristic features of an object are emphasized; the recognition of a feature allows the activation of particular rules and the generation of hypotheses about the presence of an object; -the typical relationships among objects are described.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "The interaction between syntactic and semantic analyzers seems rather complex, but it provides some valuable solutions to certain crucial points of computational linguistics, like PP's placement, conceptual splitting, idioms and preassembled",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "The syntactic analyzer, working top-down, yelds a representation of the input sentence in which information about gender, number, person and tense are recorded and for each function such as subj, obj, time, etc.., the ccrresponding filler is identified, or a list of fillers is given in case of ambiguity.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "These two kinds of information are exactly what is usefull for semantic interpretation and are picked up in various steps of the interaction by the semantic analyzer in order to build the main conceptualization and to fill its role. Also MARGIE (Schank, '75) It also provides a simpler way of dealing with syntactic variants of the same sentence and a help in identifying coreferences.",
"cite_spans": [
{
"start": 245,
"end": 253,
"text": "(Schank,",
"ref_id": null
},
{
"start": 254,
"end": 258,
"text": "'75)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "The semantic interpreter works fundamentally bottom-up and, although much is still to be attempted, it seems that it can usefully cooperate with a top-down parser to find the correct interpretation. These practical advantages will be taken into account also in the future development of the system. In fact it seems that, although no definite solution has been given to many linguistic problems, the interaction between two fully developped mechanisms controlling each other can provide an indication and a frame into which a more compact system can be built.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "In the present version of the system the interaction between the two modules is strictly sequential. In a more compact analyzer, syntactic specialists, i.e. simplified pieces of grammar specialized in particular syntactic phenomena, will be called by semantic interpreter according to opportunity.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
},
{
"text": "This second version is still being designed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "V CONCLUSIONS",
"sec_num": null
}
],
"back_matter": [
{
"text": "The autors would like to thank Dr. Lina Massone for her contributions and assistance in the preparation of this paper.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "VI ACKNOWLEDGEMENTS",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Un Analizzatore Sintattico del Linguaggio naturale Italiano per l'Elaboratore Multi-Mini Associativo EMMA",
"authors": [
{
"first": "G",
"middle": [],
"last": "Adorni",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Cavagnaro",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Delcanto",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Dimanzo",
"suffix": ""
},
{
"first": "O",
"middle": [],
"last": "Giuffre",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Stringa",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G.Adorni,F.Cavagnaro,M.DelCanto,M.DiManzo,O.Giuffre and L.Stringa, \"Un Analizzatore Sintattico del Linguaggio naturale Italiano per l'Elaboratore Multi-Mini Associativo EMMA\", DOC-ERI-050, ELSAG SpA, Genoa, 1979.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "NAUSICA: NAtural language Understanding System; the Italian language Case Analyzed",
"authors": [
{
"first": "G",
"middle": [],
"last": "Adorni",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Ansaldi",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Dimanzo",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Stringa",
"suffix": ""
}
],
"year": 1981,
"venue": "Rivista di Informatica ii",
"volume": "",
"issue": "",
"pages": "39--88",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G.Adorni,W.Ansaldi,M.DiManzo and L.Stringa,\"NAUSICA: NAtural language Understanding System; the Italian language Case Analyzed\", Rivista di Informatica ii, 1981, 39-88.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Cognitive Models for Computer Vision",
"authors": [
{
"first": "G",
"middle": [],
"last": "Adorni",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Boccalatte",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Dimanzo",
"suffix": ""
}
],
"year": 1982,
"venue": "Proc. COLING '82",
"volume": "",
"issue": "",
"pages": "7--12",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G.Adorni,A.Boccalatte and M.DiManzo, \"Cognitive Models for Computer Vision\", Proc. COLING '82, Prague, 1982, 7-12.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Top-Down Approach to Scene Interpretation",
"authors": [
{
"first": "G",
"middle": [],
"last": "Adorni",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Dimanzo",
"suffix": ""
}
],
"year": 1983,
"venue": "Proc. CIL '83",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G.Adorni and M.DiManzo, \"Top-Down Approach to Scene Interpretation\", Proc. CIL '83,Barcellona,1983.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Computational Interpretation of English Spatial Prepositions",
"authors": [
{
"first": "L",
"middle": [
"C"
],
"last": "Boggess",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L.C.Boggess, \"Computational Interpretation of English Spatial Prepositions\", Tech.Rep. T-75, Coordinated Laboratory, University of Illinois, Urbana, 1979.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Visual Analog Representation for Natural Language Understanding",
"authors": [
{
"first": "L",
"middle": [
"C"
],
"last": "Boggess",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Waltz",
"suffix": ""
}
],
"year": 1979,
"venue": "Proc. IJCAI '79",
"volume": "",
"issue": "",
"pages": "926--934",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L.C.Boggess and L.Waltz, \"Visual Analog Represen- tation for Natural Language Understanding\",Proc. IJCAI '79, 1979, 926-934.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Un Approccio proce durale all'Analisi Sintattica dell'Italiano",
"authors": [
{
"first": "M",
"middle": [],
"last": "Dimanzo",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Stringa",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Zano",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M.DiManzo,L.Stringa and G.Zano, \"Un Approccio proce durale all'Analisi Sintattica dell'Italiano\".",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Representation and Recognition of the Spatial Organization of 3-D Shape",
"authors": [
{
"first": "D",
"middle": [],
"last": "Marr",
"suffix": ""
},
{
"first": "H",
"middle": [
"K"
],
"last": "Nishihara",
"suffix": ""
}
],
"year": 1978,
"venue": "Proc. R.Soc. London",
"volume": "",
"issue": "",
"pages": "289--294",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D.Marr and H.K.Nishihara, \"Representation and Re- cognition of the Spatial Organization of 3-D Shape\", Proc. R.Soc. London, 1978, 289-294.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Procedural Systemic Grammars",
"authors": [
{
"first": "M",
"middle": [
"C"
],
"last": "Mccord",
"suffix": ""
}
],
"year": 1977,
"venue": "Int.J. o\u00a3 Man-Machine Studies",
"volume": "9",
"issue": "",
"pages": "255--286",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M.C.McCord, \"Procedural Systemic Grammars\", Int.J. o\u00a3 Man-Machine Studies 9, 1977, 255-286.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "A Framework for Representing Knowledge",
"authors": [
{
"first": "M",
"middle": [],
"last": "Mi{sky",
"suffix": ""
}
],
"year": null,
"venue": "The PsycholoF~y of Computer Vision",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M.Mi{sky, \"A Framework for Representing Knowledge\", in The PsycholoF~y of Computer Vision, ed.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Conceptual Information Processing",
"authors": [
{
"first": "R",
"middle": [
"C"
],
"last": "Schank",
"suffix": ""
}
],
"year": 1975,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R.C.Schank, Conceptual Information Processing,North Holland, Amsterdam, 1975.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Understanding Natural Language",
"authors": [
{
"first": "T",
"middle": [],
"last": "Winograd",
"suffix": ""
}
],
"year": 1972,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T.Winograd, Understanding Natural Language,Academic Press, 1972.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"text": "Fig.l shows how these processes can interact in our parser: double arrows indicate message passing and Work supported by M.P.I. under grant 27430/81 single I CLAUSE [.-,.1 ........ ...... ...........Levels of Syntactic Analysis level is activated by the superior one, as shown in Fig.l, and returns to its caller the results of its computation as a message.A feature network is associated to each process, which is activated together with its corresponding processes. In a PASCAL-like language the feature network can be defined as follows: type FEATURE .... (.LIST OF FEATURES.)...",
"num": null,
"uris": null
},
"FIGREF1": {
"type_str": "figure",
"text": "FIG.2 -Result of a Sentence Analysis",
"num": null,
"uris": null
},
"FIGREF2": {
"type_str": "figure",
"text": "Fig.6): -DESCR, contains all the basic not specialized knowledge about the object; -LEVELS, contains a description of the shape of the object (in terms of prototype THOUGHTs) divided in different levels of detail hierarchically organized; -USE, contains the descriptions of the most common activities involving the use of the object, in terms of spatialrel between prototype THOUGHTs; FIG.3 -Example of Definition of a Simple Prototype FIG.4 -Definition of a Simple Jointing Element and Use of this Element to build a More Complex Object",
"num": null,
"uris": null
},
"FIGREF3": {
"type_str": "figure",
"text": "which is part Of the THOUGhT(A) and a point ~ which is par= of r.he THOUGHT(B) and for a.ny paL.\" Op points P and 0 is Z(P) >. ~(Q). More, there is an tssertion about the fact that the THOUGHT(B) suppor~ the THOUGHT(A)).",
"num": null,
"uris": null
},
"FIGREF4": {
"type_str": "figure",
"text": "FIG.5 HUMJL~BEING Is descelp~Ive] thought ... end. . ) NF.A~ IS $vatlalrel t~ought ... end. )",
"num": null,
"uris": null
},
"FIGREF5": {
"type_str": "figure",
"text": "the book of the man with the blue coat) If it is defined: md ---> the current phrase; md-i ---> the immediately proceeding phrase; md-2 ---~ the phrase that immediaZely proceeds md-l; the solution is obtained by recursively deciding wether md is to be embodied into md-i or md-2. Recursion is from the lower level. This decision is made by a set of standard general procedures associated to prepositions (di, da, con, per .... ) and adverbs (sopra, sotto, davanti, diefro, ...). Non-standard specialized alternatives are activated by particular nouns and verbs in order to treat hidiosyncrasies. These procedures are written as three-steps programs, which accomplish the operations of: 1-LOOKING for compatibility of certain features of md,md-l, and md-2. Typical features are superset and part-of relations of md's. A rule may state that \"IF md has a part-of relation to md-2 THEN md may be embodied into md-2\". Example: \"il libro del bambino dalla copertina rossa\" /---md-2 ...... md-I ........... md ............ / (the book of the child with red cover) 2-Deciding whether MERGING can be performed. This is made by imposing further restrictions of the type described above. Also the main md-I ...... md .......... / HAIR <===> PART_OF(MAN) is produced because md \"capelli\" can be part-of md \"uomo\". Should it not have been the case, the following structure would have been produced: (md-I OR md-2) < .... POSS(md) \"l'uomo dal vestito scuro\" /--md-i ....... md ......... / (the man with the dark dress) MAN c===, POSS(an object such that if x Use the lamp in a standard way,then the lamp is on the table) FIG.7 -THOUGHT of theTable LampC. Construction of the Main ConceptualizationThe nucleus of a main conceptualization can be associated in the CDB both to a noun indicating an action, state or change of state and a verb. In our example, we find the THOUGHT offig. 8. A time identification always related to the present (T@), is taken from the syntactic analysis and ==~PTR~---OBJ(X)~---DIR((FR(~(Y))(TO(Z)) and D~TR(C~C) end end.FIG.8 -THOUGHT of the verb \"andare\" (to go).",
"num": null,
"uris": null
},
"FIGREF7": {
"type_str": "figure",
"text": "alzare,...(lift,raise .... ); -confortare, dare sollievo psiehico,...(encourage, console .... ); which can be conceptualized respectively: X ..... PTRANS .... OBJ(Y) .... DIR ( (FROM (K))(TO(H) ) ) and ((COORD Z OF H-COORD Z OF K) and R(X ..... PROPEL .... OBJ(Y) .... DIR((FROM(NIL))",
"num": null,
"uris": null
},
"FIGREF8": {
"type_str": "figure",
"text": "Is de$crlptLve thought XI ~---* PT.RAN$ ,~--*OB3 (XI) ,,~--D IR ( (FRON(NI L) ) (TO( I;[ 13 ) ) T_T l.~_--( T I< T / INSTRIXI\u00a2.-~U$.~--or-JlX 1) Result of the Analysis of the Sentence (i)",
"num": null,
"uris": null
},
"TABREF0": {
"type_str": "table",
"text": "It seems,however, that an intermediate step, keeping the syntactic output separate from the semantic one, has the advantage of avoiding the multiplication of single pieces of syntactic knowledge.",
"html": null,
"num": null,
"content": "<table><tr><td/><td/><td/><td colspan=\"4\">makes some use of syntactic</td></tr><tr><td>knowledge</td><td colspan=\"2\">distributed</td><td colspan=\"2\">among lexical</td><td/><td>definitions</td></tr><tr><td colspan=\"7\">of words. This solution gives the entire control</td></tr><tr><td>to the</td><td>semantic</td><td colspan=\"2\">interpreter</td><td>and</td><td>no</td><td>syntactic</td></tr><tr><td colspan=\"5\">functional representation is used.</td><td/></tr></table>"
}
}
}
}