Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "W01-0516",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T06:01:39.600457Z"
},
"title": "Hybrid text mining for finding abbreviations and their definitions",
"authors": [
{
"first": "Youngja",
"middle": [],
"last": "Park",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "IBM Thomas J. Watson Research Center",
"location": {
"addrLine": "Yorktown Heights New York 10598",
"postBox": "P.O. Box 704",
"country": "USA"
}
},
"email": "pyoungja@us.ibm.com"
},
{
"first": "Roy",
"middle": [
"J"
],
"last": "Byrd",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "IBM Thomas J. Watson Research Center",
"location": {
"addrLine": "Yorktown Heights New York 10598",
"postBox": "P.O. Box 704",
"country": "USA"
}
},
"email": "roybyrd@us.ibm.com"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "We present a hybrid text mining method for finding abbreviations and their definitions in free format texts. To deal with the problem, this method employs pattern-based abbreviation rules in addition to text markers and cue words. The pattern-based rules describe how abbreviations are formed from definitions. Rules can be generated automatically and/or manually and can be augmented when the system processes new documents. The proposed method has the advantages of high accuracy, high flexibility, wide coverage, and fast recognition.",
"pdf_parse": {
"paper_id": "W01-0516",
"_pdf_hash": "",
"abstract": [
{
"text": "We present a hybrid text mining method for finding abbreviations and their definitions in free format texts. To deal with the problem, this method employs pattern-based abbreviation rules in addition to text markers and cue words. The pattern-based rules describe how abbreviations are formed from definitions. Rules can be generated automatically and/or manually and can be augmented when the system processes new documents. The proposed method has the advantages of high accuracy, high flexibility, wide coverage, and fast recognition.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Many organizations have a large number of on-line documents --such as manuals, technical reports, transcriptions of customer service calls or telephone conferences, and electronic mail -which contain information of great potential value. In order to utilize the knowledge these data contain, we need to be able to create common glossaries of domain-specific names and terms. While we were working on automatic glossary extraction, we noticed that technical documents contain a lot of abbreviated terms, which carry important knowledge about the domains. We concluded that the correct recognition of abbreviations and their definitions is very important for understanding the documents and for extracting information from them [1, 6, 9, 11] .",
"cite_spans": [
{
"start": 726,
"end": 729,
"text": "[1,",
"ref_id": "BIBREF0"
},
{
"start": 730,
"end": 732,
"text": "6,",
"ref_id": "BIBREF5"
},
{
"start": 733,
"end": 735,
"text": "9,",
"ref_id": "BIBREF8"
},
{
"start": 736,
"end": 739,
"text": "11]",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "An abbreviation is usually formed by a simple method: taking zero or more letters from each word of its definition. However, the tendency to make unique, interesting abbreviations is growing. So, it is easy to find new kinds of abbreviations which cannot be processed by hard-coded heuristics-based algorithms [1, 6, 7, 13, 14] , since they are formed in ways not anticipated when the algorithms were devised.",
"cite_spans": [
{
"start": 310,
"end": 313,
"text": "[1,",
"ref_id": "BIBREF0"
},
{
"start": 314,
"end": 316,
"text": "6,",
"ref_id": "BIBREF5"
},
{
"start": 317,
"end": 319,
"text": "7,",
"ref_id": "BIBREF6"
},
{
"start": 320,
"end": 323,
"text": "13,",
"ref_id": "BIBREF13"
},
{
"start": 324,
"end": 327,
"text": "14]",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "We propose a hybrid text mining approach to deal with these problems. We use three kinds of knowledge: pattern-based abbreviation rules, text markers, and linguistic cue words. An abbreviation rule consists of an abbreviation pattern, a definition pattern and a formation rule. The formation rule describes how an abbreviation is formed from a definition. There may exist multiple formation rules for a given pair of abbreviation and definition patterns. Abbreviation rules are described in Section 3.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "Text markers are special symbols frequently used to imply the abbreviation-definition relationship in texts. They include characters such as '(\u2026)', '[\u2026]', and '='. Cue words are particular words occurring in the local contexts of abbreviations and the definitions, which strongly imply the abbreviation relationship. They include words such as \"or\", \"short\", \"acronym\" and \"stand\". Text markers and cue words are discussed in section 2.4.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "This system has 5 components -abbreviation recognizer, definition finder, rule applier, abbreviation matcher and best match selector --as shown in Figure 1 . The abbreviation recognizer seeks candidate abbreviations in a text and generates their patterns (Section 1). When an abbreviation candidate is found, the system determines the contexts within which to look for a definition. When it finds a candidate definition, it generates a pattern for it also (Section 2).",
"cite_spans": [],
"ref_spans": [
{
"start": 147,
"end": 155,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "Having generated the abbreviation pattern and the definition pattern, the system first searches the rulebase for a rule which would generate the abbreviation from the definition. The rules for the given candidates are applied in the order of rule priorities (Section 4.1). If the rulebase is empty or if no existing rule matches the candidate abbreviation with the candidate definition, the system runs the abbreviation matcher and generates a new abbreviation rule. The abbreviation matcher consists of 5 layered matching algorithms (Section 4.2). If the matcher succeeds, new rules may be added to the rulebase, allowing it to grow as the system processes new documents.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": null
},
{
"text": "An abbreviation is defined as a shortened form of a written word or phrase used in place of the full form [2] . Acronyms are a special case of abbreviations which are devoted to multi-word full forms. In this work, we consider a string of alphabetic, numeric and special characters as a candidate abbreviation if it satisfies the following three conditions:",
"cite_spans": [
{
"start": 106,
"end": 109,
"text": "[2]",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Candidate Abbreviations",
"sec_num": "1.1"
},
{
"text": "(1) Its first character is alphabetic or numeric (2) Its length is between 2 and 10 characters (3) It contains at least one capital letter and if the string meets the following restrictions:",
"cite_spans": [
{
"start": 49,
"end": 52,
"text": "(2)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Candidate Abbreviations",
"sec_num": "1.1"
},
{
"text": "(1) It is not a known (dictionary) word containing an initial capital letter and appearing as the first word in a sentence. (2) It is not a member of a predefined set of person and location names. (3) It is not a member of user-defined list of stopwords.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Candidate Abbreviations",
"sec_num": "1.1"
},
{
"text": "The first restriction keeps many common words from being treated as possible abbreviations. Many proper names have the same characteristics above and may be recognized as abbreviations. To reduce generating false candidates and thus improve system performace, we use a list of proper names created by the Talent system [3, 10] . We also provide users with a way to create a user defined list of stopwords. ",
"cite_spans": [
{
"start": 319,
"end": 322,
"text": "[3,",
"ref_id": "BIBREF2"
},
{
"start": 323,
"end": 326,
"text": "10]",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Candidate Abbreviations",
"sec_num": "1.1"
},
{
"text": "Once a candidate abbreviation is identified an abbreviation pattern is generated from it. An abbreviation pattern is a string of 'c' and 'n' characters. An alphabetic character is replaced with a 'c' and a sequence of numeric characters (including '.' and ',') is replaced with an 'n' regardless of its length. Non-alphanumeric characters such as hyphen, slash, and ampersand are not reflected in abbreviation patterns. Some examples of candidate abbreviations and their patterns are in Table 1 . maximally allowed distance (offset) between a definition and its abbreviation.",
"cite_spans": [],
"ref_spans": [
{
"start": 487,
"end": 494,
"text": "Table 1",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "2 Abbreviation Patterns",
"sec_num": "1."
},
{
"text": "We have analyzed about 4,500 abbreviations and their definitions in computer science texts. The maximum number of skipped words (words in a definition that are not reflected in the abbreviation) was 4 in our sample data. Based on this analysis, we decided that, for relatively short abbreviations (from two to four characters), the length of a definition in words should not be greater than twice the abbreviation length. For long abbreviations (five or more characters), the definition should not be longer than the abbreviation length plus 5. Thus, the maximum length of a definition D of an abbreviation A is calculated as follows.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "2 Abbreviation Patterns",
"sec_num": "1."
},
{
"text": "The maximum offset means the longest distance of a definition from an abbreviation. If a definition is in the left context, the distance is the number of words from the last word of the definition to the abbreviation. If a definition is in the right context, the distance is the number of words from the abbreviation to the first word of the definition. We set the maximum offset to 10 in this experiment. Therefore, the size of each search space is {max. |D| + 10} words to the left and right of the candidate abbreviation as shown in ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "max. |D| = min {|A| + 5, |A| * 2}",
"sec_num": null
},
{
"text": "The system searches for candidate definitions within the search space. A sequence of words in the contexts is considered as a candidate definition if it satisfies the following conditions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Search",
"sec_num": "2.2"
},
{
"text": "(1) The first character of the first word of a definition is matched with the first character of the abbreviation (including 'replacement match (Section 3)').",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Search",
"sec_num": "2.2"
},
{
"text": "(2) All words in a definition are in the same sentence. (3) The first word and the last word of a definition are not prepositions, be-verbs, modal verbs, conjunctions or pronouns. (4) Some symbols such as (, ), [, ] , {, }, =, !, ? may not be inside of a definition.",
"cite_spans": [
{
"start": 211,
"end": 215,
"text": "[, ]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Search",
"sec_num": "2.2"
},
{
"text": "Next, we preprocess the candidate definition as follows to generate a pattern for the candidate.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Patterns",
"sec_num": "2.3"
},
{
"text": "(1) replace special symbols with spaces. Input/Output => Input Output (2) separate strings of numerical characters.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Patterns",
"sec_num": "2.3"
},
{
"text": "Windows98 => Windows 98",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Definition Patterns",
"sec_num": "2.3"
},
{
"text": "(3) separate prefixes 1) from the headword reusable => re usable A definition pattern consists of the characters 'w' (word), 's' (stopword), 'p' (prefix), 'h' (headword) and 'n' (number). Some examples of definitions and their patterns are in Table 2 . In the above examples, the definition pattern for 'product database' is 'phw', which is not morphologically correct. This happens because 'pro' is included in our prefix list and 'duct' is found in the dictionary and we don't do any semantic-level processing.",
"cite_spans": [
{
"start": 22,
"end": 24,
"text": "1)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [
{
"start": 243,
"end": 250,
"text": "Table 2",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Definition Patterns",
"sec_num": "2.3"
},
{
"text": "We extract some orthographic and syntactic structure information as well as possible definitions from the contexts. If there exist text markers and/or cue words in the contexts of a candidate abbreviation and its candidate definition, the pair is highly likely to be valid and to be useful for augmenting the abbreviation 1) We currently have 60 prefixes such as anti, bi, electro, inter, pre, sub, trans, un. ",
"cite_spans": [
{
"start": 322,
"end": 324,
"text": "1)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Syntactic Cues",
"sec_num": "2.4"
},
{
"text": "An abbreviation rule describes how an abbreviation is formed from its definition. An abbreviation rule, R, consists of an abbreviation pattern (A_Pattern), a definition pattern (D_Pattern) and a formation rule (F_Rule). R = <A_Pattern, D_Pattern, F_Rule> A formation rule defines how each character in an abbreviation is formed from a definition. An element in a formation rule has a pair of values, a word number and a formation method. A word number is the sequential location of a word within the preprocessed definition. A formation method represents how a character (or characters) in the word takes part in the abbreviation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abbreviation Rule Format",
"sec_num": "3.1"
},
{
"text": "We have defined five kinds of formation methods: 'F', 'I', 'L', 'E' and 'R'. 'F' means that the first character of a word occurs in the abbreviation. Similarly, 'I' refers to an interior character and 'L' indicates the last character of a word. 'E' means 'exact match' and 'R' means 'replacement match'. Exact match ('E') is used only for matching numbers. If both a candidate abbreviation and a candidate definition contain a string of numeric characters, the two numbers must be exactly same. For example, \"V3\" is not an abbreviation of \"Version 3.5\" but may be an abbreviation of \"Version 3\". Replacement match ('R') is for recognizing multi-characters abbreviated with one character. In our current list of replacement matches, 'x' in an abbreviation may stand for \"hex\", \"ex\", \"trans\", or \"cross\"; 'f' may stand for \"ph\"; '1' may stand for \"first\", \"one\", or \"1st\"; and so on. Some examples of abbreviation rules are listed in Table 3 .",
"cite_spans": [],
"ref_spans": [
{
"start": 932,
"end": 939,
"text": "Table 3",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "Abbreviation Rule Format",
"sec_num": "3.1"
},
{
"text": "In one example, the abbreviation rule for the abbreviation \"NEXT\" and its definition \"Near-End CrossTalk\" is <cccc, www, (1, F) (2, F) (3, R) (3, I)>. The definition is encoded in \"www\" because \"Near-End\" is divided in two words \"Near\" and \"End. This rule means that the first character in the abbreviation 'N' is formed from the first letter of the first word '(1, F)'; the second character 'E' is from the first letter of the second word '(2, F)'; the third character 'X' is formed by a replacement match within the third word (\"Cross\" is replaced into 'X'); and 'T' comes from an interior character of the third word. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abbreviation Rule Format",
"sec_num": "3.1"
},
{
"text": ") (2,F) (3,F) (4,F) (5,F)> CFCs chlorofluorocarbons <cccc, w, (1,F) (1,I) (1, I) (1, L) > CONTOUR Comet Nuclear Tour <ccccccc, www, (1,F)(1,I)(2,F)(3,F)(3,I)(3,I)(3,L) > NEXT Near-End CrossTalk <cccc, www, (1,F) (2, F) (3, R) (3, I)> SN1987A Supernova 1987A <ccnc, phnw, (1, F) (2, F) (3, E) (4, F)> TAXI Transparent",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abbreviation Rule Format",
"sec_num": "3.1"
},
{
"text": "We constructed an initial rulebase from our analysis of 4,500 abbreviations in the field of computer science, which were collected from the Web. We ran the Abbreviation Matcher routine to generate patterns and formation rules for the abbreviations and their definitions and selected frequent rules for the initial rulebase. The initial rulebase currently contains 45 abbreviation rules, some of which are shown in Table 4 .",
"cite_spans": [],
"ref_spans": [
{
"start": 414,
"end": 421,
"text": "Table 4",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "The Initial RuleBase",
"sec_num": "3.2"
},
{
"text": "When the system has found a candidate abbreviation with a candidate definition, it generates the A_pattern and the D_pattern, respectively, and then looks up the pattern pair in the rulebase. If the pair exists, the system applies the associated formation rules in priority order. If any rule can generate the given abbreviation from the definition, the pair is regarded as valid.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Rule Application",
"sec_num": "4.1"
},
{
"text": "Suppose, for example, that the abbreviation \"5GL\" and the definition \"fifth generation language\" are found in a text. The system preprocesses them and generates their patterns. In this case, the A_Pattern is \"ncc\" and the D_Pattern is \"www\". A formation rule <(1, R) (2, F) (3, F)> is associated with this pattern pair in the rulebase. Thus, the system applies the rule to determine the validity of the abbreviation/definition pair. The first word ('fifth') can be replaced into ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Rule Application",
"sec_num": "4.1"
},
{
"text": "If the rulebase does not have rules for the pattern pair or if no rule successfully generates the abbreviation from the definition, and if the pair occurs in one of the cue environments described in section 2.4, the system activates the Abbreviation Matcher routine. This routine is also used for creating the initial rulebase.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Abbreviation Matcher",
"sec_num": "4.2"
},
{
"text": "The Abbreviation Matcher contains five layered matching algorithms. We categorized abbreviations into five different types, one for each layer, based on the relationship between the abbreviation length and the length of the corresponding definition. Abbreviations of type 1 are the most frequent in our 4,500 item sample. Type 2 is the next most frequent, and so on. 1 This system processes an <A, D> pair by applying the algorithms in layer order, beginning at layer 1. If the pair is matched at any layer, matching stops and the successful formation rule is returned. If a match is not found at any layer, the candidate pair is discarded.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The Abbreviation Matcher",
"sec_num": "4.2"
},
{
"text": "The system may generate multiple definition candidates in many cases, but we assume that there exists only one definition in a local context. In order to select the best candidate, we employ several weighting features.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Best Match Selection",
"sec_num": "4.3"
},
{
"text": "(1) syntactic cues A definition has a higher weight than other candidates if it has syntactic cues. (2) rule priority A definition has a higher weight if it was matched by a higher priority rule.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Best Match Selection",
"sec_num": "4.3"
},
{
"text": "The definition closest to the abbreviation is favored over other candidate definitions. If multiple candidate definitions are found in a document for an abbreviation, these six features are tested on the definitions in the order given, until one definition remains. If ambiguity still remains at the end of the test, the first definition is selected.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "(3) distance",
"sec_num": null
},
{
"text": "Users can specify whether they want to update the rulebase with the results of processing a new document. If an existing rule successfully matches an abbreviation/definition pair, then that rule's frequency is updated in the rulebase, thereby increasing the rule's priority. Users may also specify a rule threshold; new rules which occur with a frequency exceeding the threshold will be added to the rulebase.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "(3) distance",
"sec_num": null
},
{
"text": "We have conducted experiments with three documents: a book about automotive engineering (D1), a technical book from a pharmaceutical company (D2), and NASA press releases for 1999 (D3). The data used in the experiments and experimental results are shown in Table 5 . Performance is evaluated using recall and precision. For D1, the system found 32 abbreviations and their definitions but among them 1 abbreviation is incorrect. Thus, it shows 93.9% recall and 96.9% precision. For D2, it found 60 pairs and missed 3 pairs showing 95.2% recall and 100% precision. For D3, it found 78 pairs with 2 incorrect results and missed 5 pairs. The recall rate is 93.8 % and precision is 97.4 %.",
"cite_spans": [],
"ref_spans": [
{
"start": 257,
"end": 264,
"text": "Table 5",
"ref_id": "TABREF5"
}
],
"eq_spans": [],
"section": "Experiments and Results",
"sec_num": "5."
},
{
"text": "The reasons for missing some abbreviations are (a) the definitions fell outside of the search space (b) misinterpretation by the part-of-speech tagger (c) matches beyond system's current capability. Some examples of missed abbreviations are: For (1), we would need to add the domainspecific prefixes \"ethyl and \"hexyl\" to the prefix list. In general, adaptation of our method to new technical domains will probably involve the addition of domain-specific prefixes to the prefix list. (2) failed because there was no first letter match for \"aminotransferase\". The abbreviation in 3is an acronym of the Italian translation of the definition. In 4, there is no credible source for the \"I\" in the abbreviation. In (5) , the numeric replacement in the abbreviation is permuted. These and other phenomena such as compound word processing will be the subject of further investigation.",
"cite_spans": [
{
"start": 710,
"end": 713,
"text": "(5)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments and Results",
"sec_num": "5."
},
{
"text": "AFP (Acronym Finding Program) is an early attempt to automatically find acronyms and their definitions in free text [13] . In this work, however, an acronym candidate is simply an upper-case word from 3 to 10 characters in length. AFP looks for candidate expansions in two sub-windows -the pre-window and the post-window -of the acronym by applying an LCS (longest common subsequence) algorithm. Each subwindow's length in words is set to twice the number of characters in the acronym and it looks for matching letters occurring at word beginnings or after hyphens.",
"cite_spans": [
{
"start": 116,
"end": 120,
"text": "[13]",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "6."
},
{
"text": "However, AFP does not support 2-letter acronyms that are very common in texts (e.g., AI, DB, and IP) and it does not allow interior-letter matches that are not uncommon in abbreviations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "6."
},
{
"text": "TLA (Three Letter Acronym) [14] removes all non-alphabetic characters and breaks the text into chunks based on the occurrences of '(', ')' and '.' characters. It looks for candidate acronyms in each chunk and attempts to find matching definitions in the preceding and following chunks. Candidate acronyms and candidate definitions are compared by matching up to the first three letters of each word in the chunks. The potential matches are passed through a number of ad-hoc heuristics below, each of which can reject any candidate acronyms.",
"cite_spans": [
{
"start": 27,
"end": 31,
"text": "[14]",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "6."
},
{
"text": "\u2022 As part of a larger study of the topology of relations across the World-Wide Web, Sundaresan and Yi [12] explore specific relations involving acronyms and their definitions. Similar to other work on mining the Web for relations (e.g., Kleinberg [5] for hyperlinks and Larson [8] for bibliometrics), their work uses duality-based methods to build networks of interrelated syntactic cues, acronym-definition pairs, and formation rules. It develops iterative techniques for finding new acronym-definition pairs, given a set of syntactic cues, and for finding new syntactic cues, given a set of known pairs. It can also learn new formation rules. While the overall system frameworks are quite different, our hybrid text mining method and the duality-based method both use similar underlying machinery: syntactic cues, abbreviation-definition pairs, and formation rules. Differences include the hybrid method's use of a more abstract representation for formation rules, the central use of abbreviation patterns and definition patterns as the organizing principle for the rule base, and the use of cue words among the syntactic cues.",
"cite_spans": [
{
"start": 102,
"end": 106,
"text": "[12]",
"ref_id": "BIBREF12"
},
{
"start": 237,
"end": 250,
"text": "Kleinberg [5]",
"ref_id": null
},
{
"start": 277,
"end": 280,
"text": "[8]",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "6."
},
{
"text": "The developers of the Acrophile system at UMass Amherst [7] evaluated four different acronym extraction algorithms against manually-analyzed test documents and against hand-crafted acronym dictionaries.",
"cite_spans": [
{
"start": 56,
"end": 59,
"text": "[7]",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "6."
},
{
"text": "Their \"canonical-contextual\" algorithm, which shares elements with our hybrid method, was the most successful one. In particular, Acrophile uses a fixed 40-word search space for their \"contextual\" definition search and has a set of syntactic cues similar to ours for defining the \"canonical\" environments in which abbreviation-definition pairs may be found.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "6."
},
{
"text": "Beyond special handling for numeric characters in acronyms, however, there is no provision for replacement matches; for explicit lists of prefixes, known words, and proper names; or for adaptively learning new acronym patterns. Acrophile's system environment and experimental results are quite interesting; by directed search of the World-Wide Web, the system was able to exceed the coverage of the largest publicly available hand-crafted on-line acronym dictionary.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "6."
},
{
"text": "We have introduced a new hybrid approach for finding abbreviations and their definitions in unstructured texts. The problem of abbreviation processing has attracted relatively little attention in NLP field. However, technical documents use a lot of abbreviations to represent domainspecific knowledge. Thus, the ability to find correct abbreviations and their definitions is very important to being able to utilize the information contained in those documents. It is also very useful for many NLP applications such as information retrieval [1] and glossary extraction [4, 9, 11] .",
"cite_spans": [
{
"start": 540,
"end": 543,
"text": "[1]",
"ref_id": "BIBREF0"
},
{
"start": 568,
"end": 571,
"text": "[4,",
"ref_id": "BIBREF3"
},
{
"start": 572,
"end": 574,
"text": "9,",
"ref_id": "BIBREF8"
},
{
"start": 575,
"end": 578,
"text": "11]",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "The proposed method has the following advantages:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "(1) It is simple and fast.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "A small number of formation rules can describe many abbreviations. By keeping these rules in the rulebase, this system can process most abbreviations by simple pattern matches. Furthermore, the abbreviation matcher consists of 5 simple match routines and each routine is dedicated to a certain type of abbreviations. Thus, it is conceptually simple and fast.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "(2) It shows high recall and precision rates.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "(3) It provides for flexible user customization.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "For example, users can specify rule thresholds for updating the rulebase. (4) It is trainable. The rulebase may be automatically refined as the system processes new documents. (5) It is adaptable to new styles and editorial conventions. It can process new types of abbreviations by inserting appropriate rules in the rulebase without modifying the system. Rules are symbolic, so users can easily add, modify, or delete the rules by hand. (6) It can be adapted to new technical domains.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "The dictionary, set of replacement matches, stopword list, and prefix list, can be tailored for new domains.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "In addition to the lacunae mentioned in Section 5, we are aware that there are classes of abbreviations which our current method does not handle adequately. These are typically written with all lower-case characters and are almost never introduced with text markers or cue words. Examples are :",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
},
{
"text": "\u2022 cu -customer \u2022 hw -hardware \u2022 mgr -manager \u2022 pgm -program \u2022 sw -software Mechanisms for processing these abbreviations, which tend to occur in informal text such as email, chat rooms, or customer service call records, are the subject of ongoing research in our project.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions and Future Work",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Lexical Assistance at the Information-Retrieval User Interface",
"authors": [
{
"first": "Roy",
"middle": [],
"last": "Byrd",
"suffix": ""
},
{
"first": "Yael",
"middle": [],
"last": "Ravin",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Prager",
"suffix": ""
}
],
"year": 1994,
"venue": "Research Report",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Byrd, Roy, Yael Ravin, and John Prager. Lexical Assistance at the Information-Retrieval User Interface. Research Report, RC19484, IBM T.J. Watson Research Center, 1994.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Webster's New Collegiate Dictionary",
"authors": [
{
"first": "G. & C. Merriam",
"middle": [],
"last": "Co",
"suffix": ""
}
],
"year": 1981,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G. & C. Merriam Co. Webster's New Collegiate Dictionary. 1981",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "The Talent (Text Analysis and Language Engineering) project",
"authors": [
{
"first": "",
"middle": [
"J"
],
"last": "Ibm T",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Watson Research",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "IBM T. J. Watson Research. The Talent (Text Analysis and Language Engineering) project. http://www.research.ibm.com/talent/. 2001.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Technical terminology: some linguistic properties and an algorithm for identification in text",
"authors": [
{
"first": "John",
"middle": [],
"last": "Justeson",
"suffix": ""
},
{
"first": "Slava",
"middle": [],
"last": "Katz",
"suffix": ""
}
],
"year": 1995,
"venue": "Natural Language Engineering",
"volume": "1",
"issue": "1",
"pages": "9--17",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Justeson, John and Slava Katz. Technical terminology: some linguistic properties and an algorithm for identification in text. Natural Language Engineering, 1(1):9-17, 1995.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Authoritative sources in a hyperlinked environment",
"authors": [
{
"first": "Jon",
"middle": [],
"last": "Kleinberg",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the 9th ACM-SIAM Symposium on Discrete Algorithms",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kleinberg, Jon. Authoritative sources in a hyperlinked environment, In Proceedings of the 9th ACM-SIAM Symposium on Discrete Algorithms, May 1997.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Machine Translation apparatus having a process function for proper nouns with acronyms",
"authors": [
{
"first": "Shuzo",
"middle": [],
"last": "Kugimiya",
"suffix": ""
},
{
"first": "Yoji",
"middle": [],
"last": "Fukumochi",
"suffix": ""
},
{
"first": "Ichiko",
"middle": [],
"last": "Sata",
"suffix": ""
},
{
"first": "Tokyuki",
"middle": [],
"last": "Hirai",
"suffix": ""
},
{
"first": "Hitoshi",
"middle": [],
"last": "Suzuki",
"suffix": ""
}
],
"year": 1992,
"venue": "US Patent",
"volume": "5161105",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kugimiya, Shuzo, Yoji Fukumochi, Ichiko Sata, Tokyuki Hirai, and Hitoshi Suzuki. Machine Translation apparatus having a process function for proper nouns with acronyms. US Patent 5161105, 1992",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Acrophile:An Automated Acronym Extractor and Server",
"authors": [
{
"first": "Leah",
"middle": [],
"last": "Larkey",
"suffix": ""
},
{
"first": "Paul",
"middle": [],
"last": "Ogilvie",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Price",
"suffix": ""
},
{
"first": "Brenden",
"middle": [],
"last": "Tamilio",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of the ACM Digital Libraries conference",
"volume": "",
"issue": "",
"pages": "205--214",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Larkey, Leah, Paul Ogilvie, Andrew Price and Brenden Tamilio. Acrophile:An Automated Acronym Extractor and Server, In Proceedings of the ACM Digital Libraries conference, pp. 205-214, 2000.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Bibliometrics of the World-Wide Web: An exploratory analysis of the intellectual structure of cyberspace",
"authors": [
{
"first": "R",
"middle": [],
"last": "Larson",
"suffix": ""
}
],
"year": 1966,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Larson, R. Bibliometrics of the World-Wide Web: An exploratory analysis of the intellectual structure of cyberspace, Technical Report, School of Information Management and Systems, University of California, Berkeley, 1966.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Term Extraction using a Similarity-based Approach",
"authors": [
{
"first": "Diana",
"middle": [],
"last": "Maynard",
"suffix": ""
},
{
"first": "Sophia",
"middle": [],
"last": "Anaiadou",
"suffix": ""
}
],
"year": 1999,
"venue": "Recent Advances in Computational Terminology, John Benjamins",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Maynard, Diana and Sophia Anaiadou. Term Extraction using a Similarity-based Approach. In Recent Advances in Computational Terminology, John Benjamins, 1999.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Disambiguation of proper names in text",
"authors": [
{
"first": "Yael",
"middle": [],
"last": "Ravin",
"suffix": ""
},
{
"first": "Nina",
"middle": [],
"last": "Wacholder",
"suffix": ""
},
{
"first": "Misook",
"middle": [],
"last": "Choi",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ravin, Yael, Nina Wacholder and Misook Choi. Disambiguation of proper names in text. 17th",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Annual ACM-SIGIR Conference",
"authors": [],
"year": 1997,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Annual ACM-SIGIR Conference, 1997.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Nounphrase co-occurrence statistics for semi-automatic semantic lexicon construction",
"authors": [
{
"first": "Brian",
"middle": [],
"last": "Roark",
"suffix": ""
},
{
"first": "Eugene",
"middle": [],
"last": "Charniak",
"suffix": ""
}
],
"year": 1998,
"venue": "proceedings of the 36 th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "1110--1116",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Roark, Brian and Eugene Charniak. Noun- phrase co-occurrence statistics for semi-automatic semantic lexicon construction. In proceedings of the 36 th Annual Meeting of the Association for Computational Linguistics, pp 1110-1116, 1998.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Mining the Web for Relations",
"authors": [
{
"first": "Neel",
"middle": [],
"last": "Sundaresan",
"suffix": ""
},
{
"first": "Jeonghee",
"middle": [],
"last": "Yi",
"suffix": ""
}
],
"year": 2000,
"venue": "The Ninth International World Wide Web Conference",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sundaresan, Neel and Jeonghee Yi. Mining the Web for Relations, In The Ninth International World Wide Web Conference, 2000. http://www9.org/w9cdrom/363/363.html.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Recognizing Acronyms and their Definitions",
"authors": [
{
"first": "Kazem",
"middle": [],
"last": "Taghva",
"suffix": ""
},
{
"first": "Jeff",
"middle": [],
"last": "Gilbreth",
"suffix": ""
}
],
"year": 1995,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Taghva, Kazem and Jeff Gilbreth. Recognizing Acronyms and their Definitions, Technical Report 95-03, Information Science Research Institute, University of Nevada, Las Vegas, June 1995.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Automatic Extraction of Acronyms from text",
"authors": [
{
"first": "Stuart",
"middle": [],
"last": "Yeates",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of the Third New Zealand Computer Science Research Students' Conference",
"volume": "",
"issue": "",
"pages": "117--124",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yeates, Stuart. Automatic Extraction of Acronyms from text. In Proceedings of the Third New Zealand Computer Science Research Students' Conference. Pp 117-124, 1999.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "Based on these conditions, AI (Artificial Intelligence), Baracuda (Boldly Advanced and Refined Aircraft Concept Under Development for AGATE), SgRP (seating reference point), 2MASS (Two-Micron All Sky Survey), ACIS (Advanced CCD Imaging Spectrometer), W3C (World Wide Web Consortium), T/C/F (Trim/Chassis/Final) are recognized as candidate abbreviations.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF1": {
"text": "Fig 2.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF2": {
"text": "Search Space for Definitions D A D max. offset max. length of a definition search search rulebase. The structures we take into account include: (1) (abbr) or [abbr] (2) (definition) or [definition](3) abbr = definition (4) definition = abbr (5) abbr, or definition (6) definition, or abbr (7) abbr \u2026 stands/short/acronym \u2026 definition (8) definition, abbr for short",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF3": {
"text": "Asynchrous Transceiver Interface <cccc, wwww, (1,F) (2,F) (3,R) (4,F)> X2B Hexadecimal to Binary <cnc, phsw, (1,R) (3, R) (4, F)> W3C World Wide Web Consortium <cnc, wwww, (1,F) (2,F) (3,F) (4,F)>",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF4": {
"text": "'5' [(1, R)]; the first character of the second word is 'G' [(2, F)]; and the first character of the third word is 'L' [(3, F)]. Hence the pair is valid and 'fifth generation language' is considered to be a definition of '5GL'.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF5": {
"text": ") capitalization A definition with initial capital letters is preferred. (5) number of words A definition is preferred based on the following sequence of length comparisons: |A| = |D|, |A| < |D| and |A| > |D|. (6) number of stopwords A definition having fewer stopwords is preferred.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF7": {
"text": "Acronyms are shorter than their definitions \u2022 Acronyms contain initial characters of most of the words in their definitions \u2022 Acronyms are given in upper case \u2022 Shorter acronyms tend to have longer words in their definition \u2022 Longer acronyms tend to have more stop words",
"uris": null,
"type_str": "figure",
"num": null
},
"TABREF0": {
"text": "Abbreviation Patterns",
"content": "<table><tr><td>Abbreviations</td><td>Patterns</td></tr><tr><td>2MASS</td><td>ncccc</td></tr><tr><td>NEXT</td><td>cccc</td></tr><tr><td>R&amp;D</td><td>cc</td></tr><tr><td>SN1987A</td><td>ccnc</td></tr><tr><td>T/C/F</td><td>ccc</td></tr><tr><td>V3.5</td><td>cn</td></tr><tr><td>2. Definition Finding</td><td/></tr><tr><td>2.1 Search Space</td><td/></tr><tr><td colspan=\"2\">This system searches for a possible definition</td></tr><tr><td colspan=\"2\">of a candidate abbreviation in its left and right</td></tr><tr><td colspan=\"2\">contexts. The size of the search space is a</td></tr><tr><td colspan=\"2\">function of the length of the abbreviation and the</td></tr></table>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF1": {
"text": "Definition Patterns",
"content": "<table><tr><td>Definitions</td><td>Patterns</td></tr><tr><td>Product Database</td><td>phw</td></tr><tr><td>Supernova 1987A</td><td>phnw</td></tr><tr><td>Trim/Chassis/Final</td><td>www</td></tr><tr><td>Two-Micron All Sky Survey</td><td>wwwww</td></tr><tr><td>U.S. Department of Agriculture</td><td>wwsw</td></tr></table>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF2": {
"text": "Abbreviation Rule Expamples",
"content": "<table><tr><td>2-MASS</td><td>Two-Micron All Sky Survey</td></tr><tr><td colspan=\"2\">&lt;ncccc, wwwww , (1,R</td></tr></table>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF3": {
"text": "Initial RuleBase",
"content": "<table><tr><td colspan=\"2\">Pattern A_Pat D_Pat</td><td>Formation Rule</td></tr><tr><td>cc</td><td>wph</td><td>(1,F)(2,F)</td></tr><tr><td>cc</td><td>wsw</td><td>(1,F)(3,F)</td></tr><tr><td>cc</td><td>ww</td><td>(1,F)(2,F)</td></tr><tr><td>ccc</td><td>phww</td><td>(1,F)(3,F)(4,F)</td></tr><tr><td>ccc</td><td>wphw</td><td>(1,F)(2,F)(4,F)</td></tr><tr><td>ccc</td><td>wsw</td><td>(1,F)(2,F)(3,F)</td></tr><tr><td>ccc</td><td>wsww</td><td>(1,F)(3,F)(4,F)</td></tr><tr><td>ccc</td><td>wwph</td><td>(1,F)(2,F)(3,F)</td></tr><tr><td>ccc</td><td>wwsw</td><td>(1,F)(2,F)(4,F)</td></tr><tr><td>ccc</td><td>www</td><td>(1,F)(2,F)(3,F)</td></tr><tr><td>ccc</td><td>www</td><td>(1,R)(2,F)(3,R)</td></tr><tr><td>cccc</td><td>phwsww</td><td>(1,F)(3,F)(5,F)(6,F)</td></tr><tr><td>cccc</td><td>wphww</td><td>(1,F)(2,F)(4,F)(5,F)</td></tr><tr><td>cccc</td><td>wsww</td><td>(1,F)(2,F)(3,F)(4,F)</td></tr><tr><td>ccn</td><td>wwn</td><td>(1,F)(2,F)(3,E)</td></tr><tr><td>cnc</td><td>wsw</td><td>(1,F)(2,R)(3,F)</td></tr><tr><td>ncc</td><td>www</td><td>(1,R)(2,F)(3,F)</td></tr></table>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF5": {
"text": "Test Data and Experimetal Results",
"content": "<table><tr><td/><td/><td>D1</td><td>D2</td><td>D3</td></tr><tr><td colspan=\"2\">Size (# of words)</td><td colspan=\"3\">20,379 97,000 83,539</td></tr><tr><td colspan=\"2\">No. of Abbreviations</td><td>33</td><td>63</td><td>81</td></tr><tr><td/><td>Correct</td><td>31</td><td>60</td><td>76</td></tr><tr><td>Found</td><td>Incorrect</td><td>1</td><td>0</td><td>2</td></tr><tr><td/><td>Total</td><td>32</td><td>60</td><td>78</td></tr><tr><td/><td>Missed</td><td>1</td><td>3</td><td>5</td></tr></table>",
"type_str": "table",
"num": null,
"html": null
}
}
}
}