Benjamin Aw
Add updated pkl file v3
6fa4bc9
raw
history blame contribute delete
No virus
20.4 kB
{
"paper_id": "A92-1034",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T02:03:32.004274Z"
},
"title": "MORPHIa: A Practical Compiler for Reversible Morphology Rules",
"authors": [
{
"first": "John",
"middle": [
"R R"
],
"last": "Leavitt",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Carnegie Mellon University Pittsburgh",
"location": {
"postCode": "15213",
"region": "PA"
}
},
"email": "jrrl@cs@cmu.edu"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Morph~ is a Common Lisp compiler for reversible inflectional morphology rules developed at the Center for Machine Translation at Carnegie Mellon University. This paper describes the Morph~ processing model, its implementation, and how it handles some common morphological processes.",
"pdf_parse": {
"paper_id": "A92-1034",
"_pdf_hash": "",
"abstract": [
{
"text": "Morph~ is a Common Lisp compiler for reversible inflectional morphology rules developed at the Center for Machine Translation at Carnegie Mellon University. This paper describes the Morph~ processing model, its implementation, and how it handles some common morphological processes.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "The input to the Morph~ rule compiler is a rule file containing inflection rules, the specification of a discrimination network of morphological forms, and definitions of certain classes of strings and string mappings. This rule file can be compiled into either a word generation program or a word parsing program. The word generation program produces an inflected surface form from a feature structure, 1 while the word parsing program takes an inflected form and produces a set of feature structures for valid parses. 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In Morph~ the process of inflection is seen as consisting of two basic steps:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "1. By making a series of feature-and orthographicallybased decisions, choose an inflection procedure.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "2. Apply that procedure to the uninflected root.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "To implement the first step, Morph~ uses a feature-based discrimination network with orthographically-based inflection rules at the leaves. Each node in the discrimination network specifies a set of features common to all of its descendants. For example, at the top of a subtree for nouns, a node might contain the features { (cat: noun) } which wouldbe inherited by the nodes for single-noun and plural-noun, and SO on.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "That Morph~ explicitly divides feature-based decisions from orthographic decisions has two important consequences:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "1These feature slructures are structurally the same as those used by the Generalized LR Parser/Compiler [Tomita et al., 1988] and the Generation Kit [Tomita and Nyberg, 1988] , and can contain non-syntactic features.",
"cite_spans": [
{
"start": 104,
"end": 125,
"text": "[Tomita et al., 1988]",
"ref_id": "BIBREF0"
},
{
"start": 149,
"end": 174,
"text": "[Tomita and Nyberg, 1988]",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "2A detailed description of the Morph~ program and rule file formalism and some example rule files axe given in [Leavitt, 1992] .",
"cite_spans": [
{
"start": 111,
"end": 126,
"text": "[Leavitt, 1992]",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "\u2022 The type of feature that may be checked in the discrimination network is not restricted. For instance, phonological and/or morphological features (e.g. paradigm) can be checked alongside syntactic features (e.g. category).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "\u2022 A single morpheme can be split across several leaf nodes if feature tests below the morpheme level are necessary.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Processing Model",
"sec_num": "2"
},
{
"text": "As shown in Figure 1 , a rule consists of a set of clauses, each of which contains orthographic pattern on the left-hand side and a set of inflection operations on the right-hand side.",
"cite_spans": [],
"ref_spans": [
{
"start": 12,
"end": 20,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "The Rule Formalism",
"sec_num": "2.1"
},
{
"text": "\u2022 Orthographic patterns. The orthographically-based decisions are made by matching against regular expressionbased patterns. Standard regular expression operations (i.e. Kleene closure, wildcards, etc.) are included. In addition, non-standard operations for matching against a pre-defined class of strings 3, and binding and retrieval of portions of the word 4 are included.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Rule Formalism",
"sec_num": "2.1"
},
{
"text": "\u2022 Inflection Operations. The application of the inflection procedure is implemented as the sequential execution of the inflection operations in the right-hand side. The inflection operations include affixation, deletion, and the combined operation of \"replacement\" in prefix, suffix, and infix positions. Also included is an operation for performing regular string-to-string mapping within a word.5",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Rule Formalism",
"sec_num": "2.1"
},
{
"text": "During generation, processing begins with a feature structure entering the tree at the root node, and trickling down to the appropriate leaf node. Once at the leaf node, the word root is compared against each clause's orthographic pattern in turn. When a match is found, the inflection procedure for that clause is applied to the word root and the result is returned. During parsing, processing begins with an inflected form entering the tree at each leaf node where the inflection rules are applied \"in reverse\" and the non-passing results discarded. Applying a rule \"in reverse\" means that the word is matched 3This class matching is equivalent\"alphabet subsets\" in KIMMO [Karttunen et al., 1983] , \"restricted variables\" in NABU [Slocum, 1988] , and \"sla'ing vats\" in DIMORPH [Gibson, 1991] .",
"cite_spans": [
{
"start": 674,
"end": 698,
"text": "[Karttunen et al., 1983]",
"ref_id": "BIBREF0"
},
{
"start": 732,
"end": 746,
"text": "[Slocum, 1988]",
"ref_id": "BIBREF0"
},
{
"start": 779,
"end": 793,
"text": "[Gibson, 1991]",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Processing",
"sec_num": "3"
},
{
"text": "4These mechanisms are similar to the binding and retrieval mechanisms used in Unix utilities such as \"sed\".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Processing",
"sec_num": "3"
},
{
"text": "5String-to-string mapping is roughly equivalent to the \"pairingup [of] variables\" in NABU.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Processing",
"sec_num": "3"
},
{
"text": "(leaf-rule v+pres-part (((:or \"x .... y\") $) (+s \"ing\") ) ((c v (% Gc) s) (+s %1 \"ing\")) ( (C \"e\" S) (rs \"e .... ing\") ) ( (C \"ie\" $) (rs \"le .... ying\") ) ( : ot herwi se (+s \"ing\") ) )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Processing",
"sec_num": "3"
},
{
"text": "; ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Processing",
"sec_num": "3"
},
{
"text": "This section explains how common morphological processes are handled by Morph~.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Handling Common Morphological Processes",
"sec_num": "4"
},
{
"text": "\u2022 Affixation. Prefixation, suffixation, and infixation are handled directly by the +p, +s, and +5. inflection operators. To determine the insertion point, infixes must be placed either before or after some portion of the word that was bound during pattern matching.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Handling Common Morphological Processes",
"sec_num": "4"
},
{
"text": "\u2022 Deletion. Word initial, word final, and word internal deletion are handled directly by the -p, -s, and -5_ inflection operators. As with infixation, some bound part of the word must act as an \"anchor\" for the deletion.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Handling Common Morphological Processes",
"sec_num": "4"
},
{
"text": "\u2022 Gemination and Reduplication. Since expressions may be bound during pattern matching, bound expressions can be affixed to the word to create the effects of gemination or reduplication. For example, when forming the present participle, certain English verbs repeat the final consonant before adding the suffix \"ing\" (e.g. \"cut\" --~ \"cutting\"). This simple twinning is encoded by the third clause in the above sample rule. Reduplication, as found in Warlpiri [Sproat and Brunson, 1988] , or Latin [Matthews, 1974] , can be handled in a similar manner (i.e. by binding the appropriate portion of the root and retrieving it during affixation).",
"cite_spans": [
{
"start": 459,
"end": 485,
"text": "[Sproat and Brunson, 1988]",
"ref_id": null
},
{
"start": 497,
"end": 513,
"text": "[Matthews, 1974]",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Handling Common Morphological Processes",
"sec_num": "4"
},
{
"text": "\u2022 Paradigmatic Alternation. Alternations that consists of a single mapping of one string to another, such as the \"-fe/-ve\" alternation for the plural of English nouns like \"wife\" or\"knife\" can be handled by a single replacement operation. Alternations that consist of a number of related alternation, such as the {\"-us/-i\" \"-um/-a\" \"-a/-ae\"} alternation for the plural of English nouns like \"octopus\", \"spectrum\", and \"vertebra\" could be handled as separate cases, but it is convenient to be able to refer to the entire class of alternations. The map operator invokes a string-to-string mapping on a bound portion of a word. 6 Alternations such as vowel rounding in the comparative forms of German adjectives, and consonant and vowel alternation in Rumanian, can be handled by this method.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Handling Common Morphological Processes",
"sec_num": "4"
},
{
"text": "\u2022 Suppletion. Morph~ currently handles suppletion by requiring suppletive forms (e.g. \"went\" for \"go\") to be included in the lexicon. In this, it is not unlike many other system, such as KIMMO and DIMORPH.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Handling Common Morphological Processes",
"sec_num": "4"
},
{
"text": "Morph~ is presently being used for French and German generation morphology in the Kant project, a knowledge-based machine translation system being developed at Carnegie Mellon University [Mitamura et al., 1991] . In addition, a rule file has been developed for English and one is currently being designed for Spanish. Future research will be directed towards morphological phenomena that cannot currently be handled in an elegant fashion. Certain types of suppletion, such as irregular stems with regular endings in Latin, should be handled more generally and with less reliance on the lexicon as a storehouse of irregularities. In addition, the design of mechanisms appropriate to the handling of prosodic inflection will also be investigated.",
"cite_spans": [
{
"start": 187,
"end": 210,
"text": "[Mitamura et al., 1991]",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Current Uses and Future Research",
"sec_num": "5"
}
],
"back_matter": [
{
"text": "I would like to thank Alex Franz, Nicholas Brownlow, and Deryle Lonsdale for their comments on drafts of this paper.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": "6"
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Constituent-Based Morphological Parsing: A New Approach to the Problem of Word-Recognition",
"authors": [
{
"first": "E",
"middle": [],
"last": "Gibson ; Gibson",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Karttunen",
"suffix": ""
}
],
"year": 1974,
"venue": "Proceedingsofthe 26thAn-nual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "228--234",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gibson, 1991] Gibson, E. (1991). DIMoRPH: A Morphological Analyzer. Technical Report CMU-CMT-91-128, Center for Ma- chine Translation, Carnegie Mellon University. [Karttunen et al., 1983] Karttunen et al., L. (1983). KIMMO: A two level morphological analyzer. In Texas Linguistic Forum 22. [Leavitt, 1992] Leavitt, J. (1992). The MORPHI~ User's Guide. Center for Machine Translation, Carnegie Mellon University. [Matthews, 1974] Matthews, P. (1974). Morphology. Cambridge University Press, Cambridge, England. [Mitamura et al., 1991] Mitamura, T., Nyberg, E., and Carbonell, J. (1991). An Efficient Interlingua Translation System for Multi- lingual Document Production. In Proceedings of Machine Trans- lation Sumrait IlL [Slocum, 1988] Slocum, J. (1988). Morphological processing in the NABU system. In Proceedings of the SecondApplied Natural Language Processing Conference, pages 228-234. [SproatandBmnson, 1988] Sproat, R. and Bmnson, B. (1988). Constituent-Based Morphological Parsing: A New Approach to the Problem of Word-Recognition. In Proceedingsofthe 26thAn- nual Meeting of the Association for Computational Linguistics. [Tomita et al., 1988] Tomita, M., Mitamura, T., and Kee, M. (1988). The Generalized LR Parser~Compiler User's Guide. Center for Machine Translation, Carnegie Mellon University. [Tomita and Nyberg, 1988] Tomita, M. and Nyberg, E. (1988). The Generation Kit and the Transformation Kit. Center for Machine Translation, Carnegie Mellon University. 6It should be noted that binding the appropriate portion of the word is a non.vial task and may require a place marker in the root to help the pattern locate it. This is, however, an artifact of language, not the inflection model.",
"links": null
}
},
"ref_entries": {}
}
}