ACL-OCL / Base_JSON /prefixX /json /X98 /X98-1015.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "X98-1015",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T15:06:12.316739Z"
},
"title": "Japanese IE System and Customization Tool",
"authors": [
{
"first": "Chikashi",
"middle": [],
"last": "Nobata",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Tokyo Science",
"location": {
"addrLine": "Building 7. Hongou 7-3-1 Bunkyo-ku",
"postCode": "113",
"settlement": "Tokyo",
"country": "Japan"
}
},
"email": ""
},
{
"first": "Satoshi",
"middle": [],
"last": "Sekine",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "New York University",
"location": {
"addrLine": "715 Broadway, 7th floor",
"postCode": "10003",
"settlement": "New York",
"region": "NY",
"country": "USA"
}
},
"email": ""
},
{
"first": "Roman",
"middle": [],
"last": "Yangarber",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "New York University",
"location": {
"addrLine": "715 Broadway, 7th floor",
"postCode": "10003",
"settlement": "New York",
"region": "NY",
"country": "USA"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This paper reports on the development of thee Japanese Information Extraction system and the Japanese Information Extraction customization tool. These systems are based on the corresponding English systems, the Proteus Information Extraction system (Grishman 97) and the Proteus Extraction Tool (Yangarber and Grishman 97), developed at NYU. In this paper, we will, in particular, describe the differences between the Japanese systems and English systems.",
"pdf_parse": {
"paper_id": "X98-1015",
"_pdf_hash": "",
"abstract": [
{
"text": "This paper reports on the development of thee Japanese Information Extraction system and the Japanese Information Extraction customization tool. These systems are based on the corresponding English systems, the Proteus Information Extraction system (Grishman 97) and the Proteus Extraction Tool (Yangarber and Grishman 97), developed at NYU. In this paper, we will, in particular, describe the differences between the Japanese systems and English systems.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "shows the overall structure of the Japanese IE system. The system consists of a cascade of modules with their attendant knowledge bases, with the input text document passed through the pipeline of modules.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Japanese IE System",
"sec_num": "2"
},
{
"text": "Because -5h~-l-y-s~ .... t ..................... Japanese sentences have no spaces between the tokens, we first have to run a morphological analyzer in order to segment each sentence into tokens. Although an alternative is to use the input sequence of characters as it is, this may cause a serious problem when we apply patterns because of ambiguities. The first module, morphological analysis is responsible for breaking the sentence into tokens. We used JUMAN (Matsumoto et al. 97) for this purpose. It also provides the part-ofspeech information for each token, which will be used in the next module. The second module is responsible for extracting named entities, like organization, person, location names, time expressions, and numeric expressions. This is different from the English system, which uses the pattern matching mechanism for named entity detection. In the Japanese system, this is done by an independent program which uses a decision tree technique to assign tags of named entity information to the input text (Sekine 98).",
"cite_spans": [
{
"start": 8,
"end": 48,
"text": "-5h~-l-y-s~ .... t .....................",
"ref_id": null
},
{
"start": 462,
"end": 483,
"text": "(Matsumoto et al. 97)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Japanese IE System",
"sec_num": "2"
},
{
"text": "document i ~5~hl ~",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Japanese IE System",
"sec_num": "2"
},
{
"text": "The next two modules employ regular expression pattern matching, applying patterns of successively increasing complexity to the document. These are essentially the same as those of the English system. The patterns -the regular expressions with their associated actions, --are encoded in a special pattern specification language, and are compiled and stored in a separate pattern base. Pattern matching is a form of deterministic, bottom-up partial parsing. The numbers of patterns between the two systems are slightly different mainly due to the difference in the methods of detecting named entities. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Japanese IE System",
"sec_num": "2"
},
{
"text": "The following explains the pattern matching component using some simplified examples of Japanese patterns. There are two phases in the pattern matching component. The first phase uses patterns to identify small syntactic units, such as noun and verb phrases. Thus, e.g., in order to analyze the example sentence in Appendix A, this phase will employ a pattern such as:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "91",
"sec_num": null
},
{
"text": "np(person) np(position)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "91",
"sec_num": null
},
{
"text": "which matches an ordered pair of noun phrases (up) whose lexical heads belong to the semantic class \"person\" and \"position\", respectively. The pattern's action will subsume the matched text into a new, larger constituent, with the side effect that the entity corresponding to the \"person\" noun phrase will acquire a slot named \"position\", linked to the position entity.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "91",
"sec_num": null
},
{
"text": "The second phase called event patterns applies domain-specific and scenario-specific patterns, to resolve higher-level syntactic constructions (apposition, prepositional phrase attachment), conjunction, and clause constructions. The actions triggered by the patterns specify operations on the logical form representation of the sentence, which evolves as the pattern matching progresses. The logical form contains the descriptions of the entities, relationships, and events discovered so far by the analysis. The subsequent phases operate on the logical form built in the pattern matching phases. Reference resolution links anaphoric pronouns to their antecedents, and resolves other co-referring expressions. We create some Japanese-specific rules for abbreviations and any other equivalent expressions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "91",
"sec_num": null
},
{
"text": "The Japanese system uses the corresponding English components for unification of partial event structures and template generation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "91",
"sec_num": null
},
{
"text": "There is not much to mention about the porting of the English Customization tool (PET) to Japanese. There were programming level difficulties because its window system is developed using GARNET, a graphical system for LISP, which does not support the Japanese language. Table 2 shows the result of the information extraction experiment for English and Japanese. The English results are based on the formal MUC-6 experiment. The Japanese experiment is conducted using Nikkei newspaper articles on the same domain, \"executive succession events\". We spent about two months of one person's part-time labor to develop the patterns. Actually, the developer created the patterns at the same time as he developed the Japanese system. It achieves a slightly better score. This may due to the fact that he spent more time than that spent for the English rule creation (one month), or due to the tendency we found that there is a typical document style for this kind of articles. The latter is not clear as we have not investigated the English articles.",
"cite_spans": [],
"ref_spans": [
{
"start": 270,
"end": 277,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Customization Tool",
"sec_num": "3"
},
{
"text": "Structural generalization",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Future Work",
"sec_num": "5"
},
{
"text": "In the English system, there is a facility to generalize a pattern based on structural variation. For example, an active mood pattern can be generalized to a passive pattern or a relative clause pattern. A similar mechanism might be useful in Japanese. Japanese is known as a free word-order language. In principle, a pattern can be generalized based on this property of Japanese, but there are some exceptions and some heuristics should be considered.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Future Work",
"sec_num": "5"
},
{
"text": "In Japanese, subject or object nouns can sometimes be omitted. It is a difficult problem to recover the noun, but we found several cases where such technologies are needed to achieve better performance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Reference resolution for zero pronoun",
"sec_num": null
},
{
"text": "The English Proteus Information Extraction system, on which this work is based, was developed by Professor Ralph Grishman. We would like to gratefully acknowledge his assistance in the development of the Japanese system.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": "6"
},
{
"text": ":person person-entity :position position-entity :company company-entity :reason reason-symbol :verb verb-head :verb-tense verb-tense)) (when position-prey-entity (assert-event :predicate 'leave-job :person person-entity :position position-prev-entity :company company-entity :reason reason-symbol :verb verb-head :verb-tense verb-tense)))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": "6"
}
],
"back_matter": [
{
"text": "3noun-jinji '~' jverb-decision: verb-tense=future, person-at=5.attributes, company-prev-at=l.attributes, person-prev-at=6.attributes, company-at=l.attributes, position-at=8.attributes\") (defclausefun when-j-appoint (phrase-type) (let ((person-at (binding 'person-at)) (person-entity (essential-entity-bound 'person-at 'C-person)) (company-prev-entity (entity-bound 'company-prev-at)) (position-prev-entity (entity-bound 'position-'~rev-at)) (company-entity (entity-bound 'company-at)) (position-entity (entity-bound 'position-at)) (reason-symbol 'REASSIGNMENT) (verb-span (binding 'verb-span)) (tense-verb-word (first-word-bound 'verb-span) (tense-verb-symbol) (new-event) ) (when (null position-entity) (error \"~%when-j-appoint:cannot output appoint event.-%\")) (not-an-antecedent position-entity) (setq tense-verb-symbol (intern tense-verb-word)) (format *trace-output* \"~%-S ~S\" verb-span tense-verb-symbol) (setq new-event (assert-event :predicate 'appoint",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "annex",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Information extraction: Techniques and challenges",
"authors": [
{
"first": "Ralph",
"middle": [],
"last": "Grishman",
"suffix": ""
}
],
"year": 1997,
"venue": "formation Extraction",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ralph Grishman: Information extraction: Techniques and chal- lenges. In Maria Teresa Pazienza, editor, In- formation Extraction. Springer-Verlag, Lecture Notes in Artificial Intelligence, Rome, 1997.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "Japanese Proteus IE system architecture",
"num": null,
"uris": null,
"type_str": "figure"
},
"FIGREF1": {
"text": "the Japanese characters are written in typewriter type-face) This is an event pattern and it constructs several relationships regarding the person, position and the predicate SHOUKAKU-SURU (to promote).",
"num": null,
"uris": null,
"type_str": "figure"
},
"TABREF0": {
"text": "..",
"html": null,
"type_str": "table",
"content": "<table><tr><td colspan=\"3\">I morphological analysis (JUMAN) ]</td></tr><tr><td>[</td><td>name recognition</td><td>[</td></tr><tr><td>[</td><td>partial syntactic analysis</td><td>]</td></tr><tr><td>[</td><td>event pattern matching</td><td>]</td></tr><tr><td>[</td><td>co-reference analysis</td><td>[</td></tr><tr><td>[</td><td>inference /</td><td>I</td></tr><tr><td>[</td><td>template generation</td><td>[</td></tr><tr><td/><td>extracted templates</td><td/></tr></table>",
"num": null
},
"TABREF2": {
"text": "",
"html": null,
"type_str": "table",
"content": "<table/>",
"num": null
}
}
}
}