ACL-OCL / Base_JSON /prefixM /json /mtsummit /1987.mtsummit-1.10.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "1987",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T03:17:48.640156Z"
},
"title": "Fujitsu Machine Translation System",
"authors": [
{
"first": "Hiroshi",
"middle": [],
"last": "Uchida",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Fujitsu Laboratories Ltd",
"location": {}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "",
"pdf_parse": {
"paper_id": "1987",
"_pdf_hash": "",
"abstract": [],
"body_text": [
{
"text": "ATLAS II aims to simulate human translation, understanding a sentence written one language, then expressing it in another. Any language is based on the assumption that every person is able to understand a sentence from the meaning of the component words and context. Syntactic rules are also based on this assumption. To be able to translate naturally a computer should also be able to do this.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "Human have their own world models, formed from linguistic knowledge, common sense, cause-effect relationships, and human characteristics. This is why humans can perform both semantic and contextual analysis with ease. The world model can be extended by inference, or narrowed according to the context. Humans also have a language model which guides our actual use of words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "ATLAS II is equipped with both a world model and a language model (see Fig.l ). The world model is expressed as a semantic relation between concepts: The language model expresses the cooccurrence relation between words. Grammatical rules for analysis and generation, and transfer rules are provided for simulating the human translation process.",
"cite_spans": [],
"ref_spans": [
{
"start": 71,
"end": 76,
"text": "Fig.l",
"ref_id": null
}
],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "The conceptual structure is a semantic network representation of an inputted sentence. Fig 2 shows the conceptual structure which is equivalent to \"John drunk beer yesterday.\" The network consists of nodes and arcs: a node represents a word conceptually, \"John#l\" of \"John\", \"drink#l\" of \"drink\", \"beer#l\" of \"beer\", \"yesterday#1\" of \"yesterday\", a binary arc denotes a deep case relation between nodes such as \"agent\", \"object\", \"time\". In addition to the above binary arcs, there are unary arcs which indicate additional information about a specific node, such as tense, sentence style, for example, in Fig.2 \"past\" indicates tense and \"focus\" indicates focus.",
"cite_spans": [],
"ref_spans": [
{
"start": 87,
"end": 98,
"text": "Fig 2 shows",
"ref_id": null
},
{
"start": 605,
"end": 610,
"text": "Fig.2",
"ref_id": null
}
],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "The system understands an input sentence in the form of a conceptual structure. Humans understand a sentence by using their knowledge. ATLAS II refers to its world model in the same way as humans. The world model defines every possible relation between concepts. For example, the knowledge, \"animals drink\" is expressed in the world model as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "(animal#1, drink#l, agent) = true The lefthand side indicates a conceptual structure where an arc \"conjoins the nodes\" animal#l and node drink#l. This is found to be true by referring to the world model. The system checks whether the conceptual structure is included in the world model. If it is, the system accepts it; if it is not, the system rejects it and asks for an alternative sentence analysis.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "Relation between concepts should be as universal as possible. However, it is not possible to apply this to all concepts, because each language is to some degree, unique. As a result, a conceptual structure produced by analyzing a Japanese sentence may remain Japanese to some extent; consequently, this structure may not be appropriate for English generation. For example, the sentence \"Ningen niwa zunou ga aru.\" would ideally be translated as \"Man has a brain.\" To do this, conceptual transfer is required; if not, the literal translation \"There is a brain in man\" will be produced.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "Conceptual transfer is performed between conceptual structures: from a source language dependent structure to a target language dependent structure. The conceptual structure interface guarantees complete separation between analysis and generation. The interlingua approach serves for almost all translations and the transfer approach is used only for specialized ones, allowing a minimum number of transfer rules. As a result, this system is appropriate for multi-language translation. Figure 2 shows the translation flow of ATLAS II.",
"cite_spans": [],
"ref_spans": [
{
"start": 486,
"end": 494,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "ATLAS II",
"sec_num": "2."
},
{
"text": "The sentence analysis section analyzes an inputted sentence and expresses its meaning as a conceptual structure in the form of a semantic network. This section consists of three modules; SEGMENT for morphological analysis, and ESPER for syntactic analysis and semantic analysis. This section uses the word dictionary, word adjacency relations analysis rules, and semantic relations to analyze the sentence. Figure 2 shows how each module uses the dictionaries, and the rules, and the forms of processing results.",
"cite_spans": [],
"ref_spans": [
{
"start": 407,
"end": 415,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Analysis Process",
"sec_num": "3.1."
},
{
"text": "An input sentence is first analyzed morphologically and then divided into morphemes. SEGMENT performs this morphological analysis using the word dictionary and adjacency relations. Generally, morphological analysis and synthesis are highly language-dependent. This system, however, adopts a languageindependent method for multilingual translation. This method uses an adjacency matrix which defines the adjacency possibility between morphemes.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Analysis Process",
"sec_num": "3.1."
},
{
"text": "Morphemes extracted by morphological analysis are output into an analysis node list. ESPER receives this node list and each morpheme is treated as a terminal node. The sequence of these nodes is the same as that of the input morphemes. Each node obtains grammatical and semantic information from the word dictionary. Grammatical information is a set of grammatical attributes. This allows each grammatical rule to cover a wide range of linguistic phenomena, thus reducing the number of rules. Each terminal node contains the most probable word selected from several possibilities.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Analysis Process",
"sec_num": "3.1."
},
{
"text": "ESPER consists of a status stack, analysis window, and control section. The status stack monitors the status during analysis; the analysis window view two adjacent nodes. ESPER performs simultaneous syntactic and semantic analysis using analysis rules which are based mainly on context-free grammar. The suitability of syntactic processing is verified semantically.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Analysis Process",
"sec_num": "3.1."
},
{
"text": "Semantic processing is performed with a series of semantic symbols which correspond to the conceptual structure. The applied rule attaches a semantic symbol to the new node and determines the semantic relation between two nodes in the analysis window. The semantic processing checks to find if the processing is consistent with general world knowledge.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Analysis Process",
"sec_num": "3.1."
},
{
"text": "Finally, ESPER arrives at a conceptual structure of the input sentence. This conceptual structure is verified by referring to the world model. If it is incorrect, ESPER reanalyzes the sentence and outputs another possibility.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Analysis Process",
"sec_num": "3.1."
},
{
"text": "The transfer section is provided to fill the gap between the source language and the target language. Differences in languages stem from among other things, the cultural background of the people speaking each language. Superficially, it appears as a difference in words and grammar; internally, it appears as a difference in concepts and in the speaker's way of thinking.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transfer Process",
"sec_num": "3.2."
},
{
"text": "ATLAS II compares these difference, not superficially, but internally; examining not the differences between words or grammar, but the differences between concepts and thinking. The differences, therefore, are treated at the level of the intermediate representation, and the conceptual structure is transferred. However, the pivot approach which does not require this transfer, is suitable in most cases.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transfer Process",
"sec_num": "3.2."
},
{
"text": "Let's look at a few cases which would require such a transfer. For example, the sentence \"Heya niwa mado ga futatsu aru\" would be literally translated as \"There are two windows in this room\" but the natural translation would be \"This room has two windows.\" Another case involves the causative. Japanese expresses it using the auxiliary verb 'saseru'; while English depends on an intransitive verb and word order.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Transfer Process",
"sec_num": "3.2."
},
{
"text": "Target language text is generated from the conceptual structure which is in the form of a semantic network. This conceptual structure is converted into a linear word string. This direct conversion eliminates the need for transformation, allowing not only the generation mechanism but also the rules to be language-independent. Using this approach, generation rules can deal with both syntactic structuring and morphological synthesizing at the same time, thus simplifying the generation mechanism.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generation Process",
"sec_num": "3.3."
},
{
"text": "The generation system consists of a generation window, output list and a rule interpreter. The rule interpreter traverses each node of the conceptual structure by moving the generation window and returns an output list containing the translation results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generation Process",
"sec_num": "3.3."
},
{
"text": "The generation window is set at the first node of the conceptual structure and is then moved from node to node. This window is used to check the nodes and arcs. The contents of the output list indicate the surface-structure word order.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generation Process",
"sec_num": "3.3."
},
{
"text": "The rule interpreter interprets each generation rule, traverses each node by moving the generation window, and selects words from nodes and arcs by checking the co-occurrence relation and adjacency relation. Each selected word is added to the output list.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generation Process",
"sec_num": "3.3."
},
{
"text": "The co-occurrence relation between two words gives the true/false value indicating the likelihood of the two words cooccuring in the same sentence. Generally a concept covers several words. For example, a concept indicating 'sonzaisuru' in Japanese includes selection of a word from several candidates by checking the co-occurrence relation between the candidates.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generation Process",
"sec_num": "3.3."
},
{
"text": "The biggest problem with any machine translation system is the quality of the translation. Unfortunately, current technology has not produced perfect results. We have to provide support systems for pre-editing, post-editing, and dictionary compilation. And also we have to study how to use machine translation system effectively. The quality of translation depends on the accuracy of both rules and dictionaries, as well as the amount of information contained in the dictionary. But this presents another problem: the greater the amount of information, the longer the processing time. It is also difficult to guarantee the accuracy of a large amount of information. These problems cannot be solved by one company alone. We must ask for assistance from users, especially in the compilation of dictionaries. We believe, however, that machine translation will eventually prove superior to manual translation in terms of speed and consistency, and will play an important role in promoting international communication.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "4."
}
],
"back_matter": [],
"bib_entries": {},
"ref_entries": {}
}
}