Benjamin Aw
Add updated pkl file v3
6fa4bc9
raw
history blame contribute delete
No virus
27.9 kB
{
"paper_id": "A92-1032",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T02:03:32.299159Z"
},
"title": "Robust parsing of natural language descriptions expressed in telegraphic style",
"authors": [
{
"first": "Michela",
"middle": [],
"last": "Fasolo",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "CERVED SpA",
"location": {
"addrLine": "Corso Stati Uniti 14",
"postCode": "35020",
"settlement": "Padova",
"country": "Italy"
}
},
"email": ""
},
{
"first": "Lorenzo",
"middle": [],
"last": "Garbuio",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "CERVED SpA",
"location": {
"addrLine": "Corso Stati Uniti 14",
"postCode": "35020",
"settlement": "Padova",
"country": "Italy"
}
},
"email": ""
},
{
"first": "Andrea",
"middle": [],
"last": "Malanima",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "CERVED SpA",
"location": {
"addrLine": "Corso Stati Uniti 14",
"postCode": "35020",
"settlement": "Padova",
"country": "Italy"
}
},
"email": ""
},
{
"first": "Nicola",
"middle": [],
"last": "Guarino",
"suffix": "",
"affiliation": {},
"email": "guarino@ladseb.pd.cnr.it"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "",
"pdf_parse": {
"paper_id": "A92-1032",
"_pdf_hash": "",
"abstract": [],
"body_text": [
{
"text": "Sublanguages represent an important application area for NLU (Grishman and Kittredge,1986) . Their syntactic simplicity and reduced semantic variability provide clear computational advantages. In the present paper we consider a sublanguage currently used for official publication of business activities which is characterized by a telegraphic style typical of commercial ads. Morphological and syntactic ill-formedness is very frequent within this sublanguage, hence a robust parser is a must.",
"cite_spans": [
{
"start": 61,
"end": 90,
"text": "(Grishman and Kittredge,1986)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The corpus we have considered was extracted from the on-line archives of the Italian Chambers of Commerce, and contains about 4 million descriptions of economic activities. They represent an important source of information about the structure of the Italian economy. Since our main goal is intelligent information retrieval, only a part of the information contained in the sentences is considered relevant. Basically, the kind of information we are interested in involves nouns, prepositions and noun modifiers, and involves verbs only in their nominalized or infinitive form.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The peculiarity of the parsing approach described in the paper consists in the fact that we limit the syntactic analysis to the elementary relationships occurring among these elements, discarding whatever is not recognized by the morphological analyzer and giving up the attempt to reconstruct the syntactic tree of the whole sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Examples of the sublanguage we are considering are reported below:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The sublanguage",
"sec_num": "2"
},
{
"text": "Produzione conto terzi olio di oliva. La produzione, l'importazione, l'esportazione, il commercio all'ingrosso e al dettaglio di prodotti tessili in fibre naturali e sintetiche e articoli per la casa in genere. *Production, import, export, wholesale and retail trade of textile products of natural and synthetic fibres and articles for the home. As we can see, the utterances are mostly formed by complex noun phrases rather than complete sentences, in which the number of constituents and the nesting degree may be rather high. Ellipses of prepositions and/or coordinating conjunctions are also frequent; the use of adjectives is relatively poor, and, when used, they generally bind the technical component of the information; the use of locutions with adjectival function is also common. Finally, the usage of verbs is quite scanty, and restricted to conversational parts; lexical mistakes are also recurrent.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The sublanguage",
"sec_num": "2"
},
{
"text": "In their basic version, these noun phrases are formed either by a single noun or by a group of the form NI-P-N2 (noun, preposition, noun) where N1 is associated with an economic activity, and N2 with the object of this activity linked by a preposition, which is often absent.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The sublanguage",
"sec_num": "2"
},
{
"text": "The core of our approach is the extraction of elementary syntactic relationships (ESR) from a possibly ill-formed sentence. ESR's are described by a definite clause grammar (DCG), a fragment of which appears in Fig.1 . Due to the presence of the special symbol skip in the right side of the rules, this grammar turns to be a special, very simple case of a discontinuous grammar (Dahl, 1989) .",
"cite_spans": [
{
"start": 378,
"end": 390,
"text": "(Dahl, 1989)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 211,
"end": 216,
"text": "Fig.1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Syntactic analysis",
"sec_num": "3"
},
{
"text": "esr(na(N,A)) esr(npn(N1,EN2)) esr(nn(N1,N2)) esr(ncn(N1 ,C,N2)) ---* na(N,A).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Syntactic analysis",
"sec_num": "3"
},
{
"text": "% noun-adjective -.> npn(N1, P, N2). % noun-preposition-noun nn(N1, N2). % noun-noun --.3. ncn(N1,C,N2). % noun-conjunction-noun na(N,A) ~ noun(N), adj(A). npn(N1, P, N2) -~ noun(N1), skip, prep(P), possible_adjs, noun~group(N2). nn (Nl, N2) -~ noun(N1), possible_adjs, noun(N2). non(N1, C, N2) ~ noun(N1), skip, conj(C), noun group(N2). skip(S0,S2):-appond(S1 ,$2,S0).",
"cite_spans": [
{
"start": 233,
"end": 237,
"text": "(Nl,",
"ref_id": null
},
{
"start": 238,
"end": 241,
"text": "N2)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Syntactic analysis",
"sec_num": "3"
},
{
"text": "The introduction of the skip allows us to ignore unknown or ill-formed words, and accounts in a very compact way for the positional variations of the structure elements.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fig 1 A part of our DCG grammar",
"sec_num": null
},
{
"text": "Input text first passes through a morphological analyzer similar to the one used in (Antonacci et al., 1988) . Before undergoing syntactical analysis, the relevant phrases occurring within descriptions are isolated by taking into account the coarse semantic trait (activities vs. activity objects) of the nouns involved. After a single description has been analyzed by our grammar, ESR's undergo an intermediate processing in order to reduce morphological and syntactic ambiguity and to take into account ellipses and conjunctions. These phenomena are handled by employing preference schemes improved by semantic control (Hobbs and Bear, 1990) .",
"cite_spans": [
{
"start": 84,
"end": 108,
"text": "(Antonacci et al., 1988)",
"ref_id": "BIBREF1"
},
{
"start": 621,
"end": 643,
"text": "(Hobbs and Bear, 1990)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The system",
"sec_num": "4"
},
{
"text": "Finally, ESR's are converted into conceptual relationships by using a many-to-many mapping between syntactic and conceptual relations similar to the one used in (Antonacci et al., 1988) ; conceptual relationships are subsequently validated by using a semantic knowledge base, and finally merged into a semantic tree. The knowledge representation technique adopted is inspired by the ITL system (Guarino, 1991) , where semantic validation reduces to order-sorted unification.",
"cite_spans": [
{
"start": 161,
"end": 185,
"text": "(Antonacci et al., 1988)",
"ref_id": "BIBREF1"
},
{
"start": 394,
"end": 409,
"text": "(Guarino, 1991)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The system",
"sec_num": "4"
},
{
"text": "A prototype of the system has been implemented on Macintosh workstation in LPA MacProlog. It has been tested on a significative fragment of our corpus (about 2000 descriptions in the areas of agriculture and services).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminary results",
"sec_num": "5"
},
{
"text": "The output of the system has been manually tested by a linguist, for correctness and completeness. Errors turn out to be independent of the syntactic algorithm, and are mainly due to (i) lack of semantic knowledge; (ii) lack of lexical knowledge (unknown or ill-formed words); (iii) difficulties with disambiguation and phrase separation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminary results",
"sec_num": "5"
},
{
"text": "The query system is now under development. As far as system efficiency is concerned, the time complexity of the whole analysis process seems to be almost quadratic with respect to the length of the sentence, while the mean understanding time is well below 10 seconds on a Macintosh Ilfx.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Preliminary results",
"sec_num": "5"
},
{
"text": "We would like to make clear that the approach we have presented is seriously limited, by the fact that we are not able to fully exploit syntactic information. This means that complete sentences containing verbs and subordinate clauses cannot be properly handled. However, our experiments show that the approach behaves well in the field of real business descriptions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and conclusions",
"sec_num": "6"
},
{
"text": "Semantic knowledge plays a fundamental role in our system, as it has to validate the syntactic relationships proposed by the shallow parsing algorithm. Currently, our knowledge base consists of a taxonomy of 3000 concepts, together with 360 semantic constraints for the conceptual relations. Although the current prototype uses a hand-written knowledge base, some techniques for semi-automatic extraction of semantic knowledge from our large corpus have been studied in our project (Velardi et al., 1991) . The idea is that the non-ambiguous sentence fragments present in the corpus capture specific word usage patterns, which, via a human-controlled generalization process, may generate the kind of semantic constraints we are looking for to pu t in the knowledge base.",
"cite_spans": [
{
"start": 482,
"end": 504,
"text": "(Velardi et al., 1991)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and conclusions",
"sec_num": "6"
},
{
"text": "A full syntactic parsing would be too expensive for large corpora, and it would also fail to consider useful information embedded within ill-formed sentences. The encouraging preliminary results indicate that our approach constitutes a good compromise between syntactic completeness and meaning extraction.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and conclusions",
"sec_num": "6"
},
{
"text": "In conclusion, the shallow parsing algorithm we have described may play a crucial role in order to trigger a bootstrapping process of knowledge acquisition, giving us some chance to overcome, at least in our domain, a major bottleneck in natural language understanding.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion and conclusions",
"sec_num": "6"
},
{
"text": "The translation provided is rather literal, but reflects the ungrammatical, telegraphic style of the sublanguage.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF1": {
"ref_id": "b1",
"title": "Representation and Control Strategies for large Knowledge Domains: An Application to NLP",
"authors": [
{
"first": "F",
"middle": [],
"last": "Antonacci",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Russo",
"suffix": ""
},
{
"first": "M",
"middle": [
"T"
],
"last": "Pazienza",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Velardi",
"suffix": ""
}
],
"year": 1988,
"venue": "Applied Artificial Intelligence",
"volume": "2",
"issue": "3-4",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "F. Antonacci, M. Russo, M.T. Pazienza, and P. Velardi. Representation and Control Strategies for large Knowledge Domains: An Application to NLP. Applied Artificial Intelligence, 2 (3-4), 1988.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Recovery Strategies for Parsing Extragrammatical Language",
"authors": [
{
"first": "Jaime",
"middle": [
"G"
],
"last": "Carbonell",
"suffix": ""
},
{
"first": "Philip",
"middle": [
"J"
],
"last": "Hayes",
"suffix": ""
}
],
"year": 1983,
"venue": "Computational Linguistics, Special Issue on Ill-Formed Input",
"volume": "9",
"issue": "3-4",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jaime G. Carbonell and Philip J. Hayes. Recovery Strategies for Parsing Extragrammatical Language. Computational Linguistics, Special Issue on Ill-Formed Input, 9(3-4), 1983.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Comprensione di descrizioni di attivit~ economico-produttive espresse in linguaggio naturale",
"authors": [
{
"first": "Michela",
"middle": [],
"last": "Fasolo",
"suffix": ""
},
{
"first": "Lorenzo",
"middle": [],
"last": "Garbuio",
"suffix": ""
},
{
"first": "Nicola",
"middle": [],
"last": "Guarino",
"suffix": ""
}
],
"year": 1990,
"venue": "Proceedings of the 5 \u00b0-Convegno sulla Programmazioni Logica (GULP \"90)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michela Fasolo, Lorenzo Garbuio and Nicola Guarino. Comprensione di descrizioni di attivit~ economico-produttive espresse in linguaggio naturale. In Proceedings of the 5 \u00b0- Convegno sulla Programmazioni Logica (GULP \"90), Padova, Italy, 1990.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Two Principles of Parse Preference",
"authors": [
{
"first": "Jerry",
"middle": [
"R"
],
"last": "Hobbs",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Bear",
"suffix": ""
}
],
"year": 1990,
"venue": "Proceedings of the 13th International Conference on Computational Linguistics (COLING-90)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jerry R. Hobbs, John Bear. Two Principles of Parse Preference. In Proceedings of the 13th International Conference on Computational Linguistics (COLING-90), Helsinki, Finland, 1990.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Analysing Language in Restricted Domains: Sublanguage Descriptions and Processing",
"authors": [
{
"first": "Ralph",
"middle": [],
"last": "Grishman",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Kittredge",
"suffix": ""
}
],
"year": 1986,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ralph Grishman and Richard Kittredge editors. Analysing Language in Restricted Domains: Sublanguage Descriptions and Processing. Lawrence Erlbaum Ass., Hillsdale, New Jersey, 1986.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "A Concise Presentation of ITL",
"authors": [
{
"first": "Nicola",
"middle": [],
"last": "Guarino",
"suffix": ""
}
],
"year": 1991,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nicola Guarino. A Concise Presentation of ITL. To appear in M. Richter editor. Processing Declarative Knowledge. Springer-Verlag, 1991.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Parse Fitting and Prose Fixing: Getting a Hold on Ill-Formedness",
"authors": [
{
"first": "K",
"middle": [],
"last": "Jensen",
"suffix": ""
},
{
"first": "G",
"middle": [
"E"
],
"last": "Heidorn",
"suffix": ""
},
{
"first": "L",
"middle": [
"A"
],
"last": "Miller",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Ravin",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "K. Jensen, G.E. Heidorn, L.A. Miller, and Y. Ravin. Parse Fitting and Prose Fixing: Getting a Hold on Ill-Formedness.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "How to encode semantic knowledge: a method for meaning representation and computer aided acquisition",
"authors": [
{
"first": "Paola",
"middle": [],
"last": "Velardi",
"suffix": ""
},
{
"first": "Maria",
"middle": [
"Teresa"
],
"last": "Pazienza",
"suffix": ""
},
{
"first": "Michela",
"middle": [],
"last": "Fasolo",
"suffix": ""
}
],
"year": 1991,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Paola Velardi, Maria Teresa Pazienza, and Michela Fasolo. How to encode semantic knowledge: a method for meaning representation and computer aided acquisition. To appear on Computational Linguistics, 1991.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "production (for) third parties (of) olive oil. 1 Mulino. Produzione di foraggio cereali mais. *Mill. Production of fodder cereals com."
},
"FIGREF1": {
"type_str": "figure",
"uris": null,
"num": null,
"text": "noun group(N) -~ noun(N) I art(A), noun(N). possil~e_adjs --~ adjectives I [ ]adjectives --~ adj(A), possible_conj, adjectives. possib~e_conj --> conj(C) I [ ]-Prolog expansion of the skip symbol:"
}
}
}
}