ACL-OCL / Base_JSON /prefixW /json /W06 /W06-0122.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "W06-0122",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T04:05:47.024750Z"
},
"title": "On Using Ensemble Methods for Chinese Named Entity Recognition",
"authors": [
{
"first": "Chia-Wei",
"middle": [],
"last": "Wu",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"postCode": "115",
"settlement": "Nankang, Taipei",
"country": "Taiwan"
}
},
"email": "cwwu@iis.sinica.edu.tw"
},
{
"first": "Shyh-Yi",
"middle": [],
"last": "Jan",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"postCode": "115",
"settlement": "Nankang, Taipei",
"country": "Taiwan"
}
},
"email": ""
},
{
"first": "Richard",
"middle": [],
"last": "Tzong",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"postCode": "115",
"settlement": "Nankang, Taipei",
"country": "Taiwan"
}
},
"email": ""
},
{
"first": "Han",
"middle": [],
"last": "Tsai",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"postCode": "115",
"settlement": "Nankang, Taipei",
"country": "Taiwan"
}
},
"email": "thtsai@iis.sinica.edu.tw"
},
{
"first": "Wen-Lian",
"middle": [],
"last": "Hsu",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Academia Sinica",
"location": {
"postCode": "115",
"settlement": "Nankang, Taipei",
"country": "Taiwan"
}
},
"email": "hsu@iis.sinica.edu.tw"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In sequence labeling tasks, applying different machine learning models and feature sets usually leads to different results. In this paper, we exploit two ensemble methods in order to integrate multiple results generated under different conditions. One method is based on majority vote, while the other is a memory-based approach that integrates maximum entropy and conditional random field classifiers. Our results indicate that the memory-based method can outperform the individual classifiers, but the majority vote method cannot.",
"pdf_parse": {
"paper_id": "W06-0122",
"_pdf_hash": "",
"abstract": [
{
"text": "In sequence labeling tasks, applying different machine learning models and feature sets usually leads to different results. In this paper, we exploit two ensemble methods in order to integrate multiple results generated under different conditions. One method is based on majority vote, while the other is a memory-based approach that integrates maximum entropy and conditional random field classifiers. Our results indicate that the memory-based method can outperform the individual classifiers, but the majority vote method cannot.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Sequence labeling and segmentation tasks have been studied extensively in the fields of computational linguistics and information extraction. Several tasks, including, word segmentation, and semantic role labeling, provide rich information for various applications, such as segmentation in Chinese information retrieval and named entity recognition in biomedical literature mining. Probabilistic state automata models, such as the Hidden Markov model (HMM) [6] and conditional random fields (CRF) [5] are some of best, and therefore most popular, approaches for sequence labeling tasks. Both HMM and CRF consider that the state transition and the state prediction are conditional on the observation of data. The advantage of the CRF model is that richer feature sets can be considered, because, unlike HMM, it does not make a dependence assumption. However, the obvious drawback of the CRF model is that it needs more computing resources, so we can not apply all the features of the model. One possible way to resolve this problem is to effectively combine the results of vari-ous individual classifiers trained with different feature sets. In this paper, we use two ensemble methods to combine the results of the classifiers. We also combine the results generated by two machine learning models: maximum entropy (ME) [1] and CRF. One ensemble method is based on the majority vote [3] , and the other is the memory based learner [7] . Although the ensemble methods have been applied in some sequence labeling tasks [2] , [3] , similar work in Chinese named entity recognition is scarce. Our Chinese named entity tagger uses a character-based model. For English named entity tasks, a character-based NER model proposed by Dan Klein [4] proves the usefulness of substrings within words. In Chinese NER, the characterbased model is more straightforward, since there are no spaces between Chinese words and each Chinese character is actually meaningful. Another reason for using a character-based model is that it can avoid the errors sometimes made by a Chinese word segmentor. The remainder of this paper is organized as follows. In the Section 2, we introduce the machine learning models, the features we apply in the machine learning models, and the ensemble methods. In Section 3, we briefly describe the experimental data and the experiment results. Then, in Section 4, we present our conclusions..",
"cite_spans": [
{
"start": 457,
"end": 460,
"text": "[6]",
"ref_id": "BIBREF5"
},
{
"start": 497,
"end": 500,
"text": "[5]",
"ref_id": "BIBREF4"
},
{
"start": 1318,
"end": 1321,
"text": "[1]",
"ref_id": "BIBREF0"
},
{
"start": 1381,
"end": 1384,
"text": "[3]",
"ref_id": "BIBREF2"
},
{
"start": 1429,
"end": 1432,
"text": "[7]",
"ref_id": "BIBREF6"
},
{
"start": 1515,
"end": 1518,
"text": "[2]",
"ref_id": "BIBREF1"
},
{
"start": 1521,
"end": 1524,
"text": "[3]",
"ref_id": "BIBREF2"
},
{
"start": 1731,
"end": 1734,
"text": "[4]",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this section, we introduce ME and CRF.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Machine Learning Models",
"sec_num": "2.1"
},
{
"text": "ME [1] is a statistical modeling technique used for estimating the conditional probability of a target label based on given information. The technique computes the probability p(y|x), where y denotes all possible outcomes of the space, and x denotes all possible features of the space. The computation of p(y|x) depends on a set of fea-tures in x; the features are helpful for making predictions about the outcomes, y. Given a set of features and a training set, the ME estimation process produces a model, in which every feature f i has a weight \u03bb i . The ME model can be represented by the following formula:",
"cite_spans": [
{
"start": 3,
"end": 6,
"text": "[1]",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Entropy",
"sec_num": null
},
{
"text": "( ) ( ) ( ) \u239f \u239f \u23a0 \u239e \u239c \u239c \u239d \u239b = \u2211 i i i y x f x z x y p , exp | \u03bb 1 , ( ) ( ) \u2211 \u2211 \u239f \u239f \u23a0 \u239e \u239c \u239c \u239d \u239b = y i i i y x f x z , exp \u03bb .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Entropy",
"sec_num": null
},
{
"text": "The probability is derived by multiplying the weights of the active features (i.e., those f i (y,x) = 1).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Maximum Entropy",
"sec_num": null
},
{
"text": "A conditional random field (CRF) [5] can be seen as an undirected graph model in which the nodes corresponding to the label sequence y are conditional on the observed sequence x. The goal of CRF is to find the label sequence y that has the maximized probability, given an observation sequence x. The formula for the CRF model can be written as:",
"cite_spans": [
{
"start": 33,
"end": 36,
"text": "[5]",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Field",
"sec_num": null
},
{
"text": "( ) ( ) ( ) ( ) x y x x y , exp 1 | j j j F Z P \u2211 = \u03bb ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Field",
"sec_num": null
},
{
"text": "where \u03bb j is the parameter of a corresponding feature F j , Z(x) is an normalizing factor, and F j can be written as:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Field",
"sec_num": null
},
{
"text": "( ) ( \u2211 = \u2212 = n i i i i j i y y f F 0 1 , , , , x x y ),",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Field",
"sec_num": null
},
{
"text": "where i means the relative position in the sequence, and y i-1 and y i denote the label at position i-1 and i respectively. In this paper, we only consider linear chain and first-order Markov assumption CRFs. In NER applications, a feature function f j (y i-1 , y i, x, i) can be set to check whether x is a specific character, and whether y i-1 is a label (such as Location) and y i is a label (such as Others).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Field",
"sec_num": null
},
{
"text": "In this section, we present the features applied in our CRF and ME models, namely, characters, words, and chuck information.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Chinese Named Entity Recognition",
"sec_num": "2.2"
},
{
"text": "The character features we apply in the CRF model and the ME model are presented in Tables 1 and 2 respectively. The numbers listed in the feature type column indicate the relative position of a character in the sliding window. For example, -1 means the previous character of the target character. Therefore, the characters in those posi-tions are applied in the model. The numbers in parentheses mean that the feature includes a combination of the characters in those positions. The unigrams in Tables 1 and 2 indicate that the listed features only consider to their own labels, whereas the bigram model considers the combination of the current label and the previous label. Since ME does not consider multiple states in a single feature, there are only unigrams in Table 2 . In addition, as ME can handle more features than CRF, we apply extra features in the ME model ",
"cite_spans": [],
"ref_spans": [
{
"start": 83,
"end": 98,
"text": "Tables 1 and 2",
"ref_id": "TABREF0"
},
{
"start": 496,
"end": 510,
"text": "Tables 1 and 2",
"ref_id": "TABREF0"
},
{
"start": 767,
"end": 774,
"text": "Table 2",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Character Features",
"sec_num": null
},
{
"text": "-2, -1, 0, 1, 2, (-2,-1), (-1,0), (0,1), (1,2), (-1,0,1) bigram -2 -1 0 +1 +2, (0,1)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Character Features",
"sec_num": null
},
{
"text": "-2, -1, 0, 1, 2, (-2,-1), (-1,0), (0,1), (1,2), (-1,0,1) (-1,1)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Character Features",
"sec_num": null
},
{
"text": "Because of the limitations of the closed task, we use the NER corpus to train the segmentors based on the CRF model. To simulate noisy word information in the test corpus, we use a ten-fold method for training segmentors to tag the training corpus. The word features we apply in our NER systems are presented in Tables 3 and 4 . In addition to the word itself, chuck information, i.e., the relative position of a character in a word, is also valuable information. Hence, we also add chuck information to our models. As the diversity of Chinese words is greater than that of Chinese characters, the number of features that can be used in CRF is much lower than the number that can be used in ME. ",
"cite_spans": [],
"ref_spans": [
{
"start": 312,
"end": 326,
"text": "Tables 3 and 4",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "Word Information",
"sec_num": null
},
{
"text": "We can not put all the features into the CRF model because of its limited resources. Therefore, we train several CRF classifiers with different feature sets so that we can use as many features as possible. Then, we use the following simple, equally weighted linear equation, called majority vote, to combine the results of the CRF classifiers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Majority vote",
"sec_num": null
},
{
"text": "\u2211 = = T i i x y C x y S 0 , , ,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "( ) ( )",
"sec_num": null
},
{
"text": "where S(y,x) is the score of a label y and a character x respectively; T denotes the total number of CRF models; and the value of C i (y,x) is 1 if the decision of the result of the i th CRF model is y, otherwise it is zero. The highest score of y is chosen as the label of x. The results are incorporated into the Viterbi algorithm to search for the path with the maximum scores. In this paper, the first step in the majority vote experiment is to train three CRF classifiers with different feature sets. Then, in the second step, we use the results obtained in the first step to generate the voting scores for the Viterbi algorithm.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "( ) ( )",
"sec_num": null
},
{
"text": "The memory-based learning method memorizes all examples in a training corpus. If a word is unknown, the memory-based classifier uses the k-nearest neighbors to find the most similar example as the answer. Instead of using the complete algorithm of the memory-based learner, we do not handle unseen data. In our memory-based combination method, the learner remembers all named entities from the results of the various classifiers and then tags the characters that were originally tagged as \"Other\". For example, if a character x is tagged by one classifier as \"0\" (\"Others\" tag) and if the memory-based classifier learns from another classifier that this character is tagged as PER, then x will be tagged as \"B-PER\" by the memory-based classifier. The obvious drawback of this method is that the precision rate might decrease as the recall rate increases. Therefore, we set the following three rules to filter out samples that are likely to have a high error rate. 1. Named entities can not be tagged as different named entity tags by different classifiers. 2. We set an absolute frequency threshold to filter out examples that occur less than the threshold. 3. We set a relative frequency threshold to filter out examples that occur less than the threshold. For example, if a word x appears 10 times in the corpus, then half of the instances of x have to be tagged as named entities; otherwise, x will be filtered out of the memory classifier.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Memory Based learner",
"sec_num": null
},
{
"text": "In our experiment, we used the memory-based learner to memorize the named entities from the tagging results of an ME classifier and a CRF classifier, and then tagged the tagging results of the CRF classifier.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Memory Based learner",
"sec_num": null
},
{
"text": "We selected the corpora of City University of Hong Kong (CityU) and Microsoft Research (MSRA) corpora to evaluate our methods. CityU is a Traditional Chinese corpus, and MSRA is Simplified Chinese corpus. Table 5 shows the results of several methods applied to the MSRA corpus. The memory-based ensemble method, which combines the results of a maximum entropy model and those of a CRF classifier, achieves the best performance. The majority vote combined with the results of three CRF models based on different feature sets has the worst performance. The results obtained on Cityu, presented in Table 6 , show that the single CRF classifier achieved the best performance. None of the ensemble methods can outperform the non-ensemble methods. We set the frequency threshold as 2 and the relative frequency threshold as 0.5. The results show that the relative frequencies rule effectively reduces the loss of precision caused by more entities being tagged by the memory-based classifier. The memory-based ensemble method works well on the MSRA corpus, but not on the CityU corpus. In the MSRA corpus, the memory-based ensemble method outperforms the individual CRF model by approximately 0.4 % in FB1. We found that the memory-based classifier can not achieve a better performance than the CRF model because it misclassifies many organizations' names. Therefore, we chose another strategy that restricts the memory-based classifier to tagging person names only. Under this restriction, the performance of the memory-based classifier improves FB1 by approximately 0.2%. ",
"cite_spans": [],
"ref_spans": [
{
"start": 205,
"end": 212,
"text": "Table 5",
"ref_id": "TABREF3"
},
{
"start": 595,
"end": 603,
"text": "Table 6",
"ref_id": "TABREF4"
}
],
"eq_spans": [],
"section": "Data",
"sec_num": "3.1"
},
{
"text": "In this paper, we use ME and CRF models to train a Chinese named entity tagger. Like previous researchers, we found that CRF models outperform ME models. We also apply two ensemble methods, namely, majority vote and memory-based approaches, to the closed NER shared task. Our results show that integrating individual classifiers as the majority vote approach does not outperform the individual classifiers. Furthermore, a memory-based combination only seems to work when we restrict the memory-based classifier to handling person names.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "4"
}
],
"back_matter": [
{
"text": "We are grateful for the support of National Science Council under Grant NSC 95-2752-E-001-001-PAE.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgement",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A Maximum Entropy Approach to Natural Language Processing. Computer Linguistic, 22",
"authors": [
{
"first": "A",
"middle": [],
"last": "Berger",
"suffix": ""
},
{
"first": "S",
"middle": [
"A D"
],
"last": "Pietra",
"suffix": ""
},
{
"first": "V",
"middle": [
"J"
],
"last": "Pietra",
"suffix": ""
}
],
"year": 1996,
"venue": "",
"volume": "",
"issue": "",
"pages": "39--71",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Berger, A., Pietra, S.A.D. and Pietra, V.J.D. A Maximum Entropy Approach to Natural Language Processing. Computer Linguistic, 22. 1996 39-71.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Named Entity Recognition through Classifier Combination",
"authors": [
{
"first": "R",
"middle": [],
"last": "Florian",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Ittycheriah",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Jing",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "168--171",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Florian, R., Ittycheriah, A., Jing, H. and Zhang, T., Named Entity Recognition through Classifier Combination. in Proceedings of Conference on Computational Natural Language Learning, 2003, 168-171.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Improving accuracy in word class tagging through combination of machine learning systems",
"authors": [
{
"first": "H",
"middle": [
"V"
],
"last": "Halteren",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Zavrel",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Daelemans",
"suffix": ""
}
],
"year": 2001,
"venue": "Computational Linguistics",
"volume": "",
"issue": "2",
"pages": "199--230",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Halteren, H.v., Zavrel, J. and Daelemans, W. Im- proving accuracy in word class tagging through combination of machine learning systems. Compu- tational Linguistics, 27 (2). 2001 199-230.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Named Entity Recognition with Character-Level Models",
"authors": [
{
"first": "D",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Smarr",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Nguyen",
"suffix": ""
},
{
"first": "C",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
}
],
"year": 2003,
"venue": "Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "180--183",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Klein, D., Smarr, J., Nguyen, H. and Manning, C.D., Named Entity Recognition with Character- Level Models. in Conference on Computational Natural Language Learning, 2003, 180-183.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Conditional random fields: Probabilistic models for segmenting and labeling sequence data",
"authors": [
{
"first": "J",
"middle": [],
"last": "Lafferty",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Mccallum",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2001,
"venue": "International Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "282--289",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lafferty, J., McCallum, A. and Pereira, F. Condi- tional random fields: Probabilistic models for seg- menting and labeling sequence data. International Conference on Machine Learning. 2001 282-289.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "A tutorial on hidden Markov models and selected applications in speech recognition",
"authors": [
{
"first": "L",
"middle": [],
"last": "Rabiner",
"suffix": ""
}
],
"year": 1989,
"venue": "Proceedings of the IEEE",
"volume": "77",
"issue": "2",
"pages": "257--286",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rabiner, L. A tutorial on hidden Markov models and selected applications in speech recognition. Proceedings of the IEEE, 77 (2). 1989 257-286.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Dynamic Conditional Random Fields: Factorized Probabilistic Models for Labeling and Segmenting Sequence Data",
"authors": [
{
"first": "C",
"middle": [],
"last": "Sutton",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Rohanimanesh",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Mccallum",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the Twenty-First International Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "99--107",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sutton, C., Rohanimanesh, K. and McCallum, A., Dynamic Conditional Random Fields: Factorized Probabilistic Models for Labeling and Segmenting Sequence Data. in Proceedings of the Twenty-First International Conference on Machine Learning, 2004, 99-107.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Memory-based learning: using similarity for smoothing",
"authors": [
{
"first": "J",
"middle": [],
"last": "Zavrel",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Daelemans",
"suffix": ""
}
],
"year": 1997,
"venue": "",
"volume": "",
"issue": "",
"pages": "436--443",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zavrel, J. and Daelemans, W. Memory-based learn- ing: using similarity for smoothing. Proceedings of the eighth conference on European chapter of the Association for Computational Linguistics. 1997 436 -443.",
"links": null
}
},
"ref_entries": {
"TABREF0": {
"html": null,
"content": "<table><tr><td>Feature Types</td></tr><tr><td>unigram</td></tr></table>",
"num": null,
"text": "Character features for CRF",
"type_str": "table"
},
"TABREF1": {
"html": null,
"content": "<table/>",
"num": null,
"text": "",
"type_str": "table"
},
"TABREF2": {
"html": null,
"content": "<table><tr><td/><td>Feature Types</td></tr><tr><td>unigram</td><td>0</td></tr><tr><td>bigram</td><td>0</td></tr><tr><td colspan=\"2\">Table 4 Word features for ME</td></tr><tr><td/><td>Feature Types</td></tr><tr><td>unigram</td><td>-1, 0, 1, (-2,-1), (-1,0), (0,1), (1,2)</td></tr></table>",
"num": null,
"text": "Word features for CRF",
"type_str": "table"
},
"TABREF3": {
"html": null,
"content": "<table><tr><td>msra</td><td/><td/><td/></tr><tr><td/><td colspan=\"3\">Precision Recall FB1</td></tr><tr><td>Memory based</td><td>86.21</td><td>78.14</td><td>81.98</td></tr><tr><td>Majority Vote</td><td>85.83</td><td>76.06</td><td>80.65</td></tr><tr><td>Only-Character</td><td>86.70</td><td>75.54</td><td>80.74</td></tr><tr><td>CRF</td><td>86.23</td><td>77.40</td><td>81.58</td></tr></table>",
"num": null,
"text": "",
"type_str": "table"
},
"TABREF4": {
"html": null,
"content": "<table><tr><td>cityu</td><td/><td/><td/></tr><tr><td/><td colspan=\"3\">Precision Recall FB1</td></tr><tr><td>Memory based</td><td>90.79</td><td>86.26</td><td>88.47</td></tr><tr><td>Majority Vote</td><td>90.52</td><td>84.15</td><td>87.22</td></tr><tr><td>Only-Character</td><td>91.32</td><td>84.55</td><td>87.80</td></tr><tr><td>CRF</td><td>92.01</td><td>85.45</td><td>88.61</td></tr><tr><td colspan=\"4\">Tables 7 and 8 show the results of the memory-</td></tr><tr><td colspan=\"4\">based ensemble methods under different rules.</td></tr></table>",
"num": null,
"text": "",
"type_str": "table"
},
"TABREF5": {
"html": null,
"content": "<table><tr><td/><td colspan=\"3\">Precision Recall FB1</td></tr><tr><td colspan=\"2\">Frequency Threshold 86.18</td><td>78.16</td><td>81.97</td></tr><tr><td>Relative Frequency</td><td>86.21</td><td>78.14</td><td>81.98</td></tr><tr><td>Threshold</td><td/><td/><td/></tr><tr><td>Only Person</td><td>86.27</td><td>77.58</td><td>81.69</td></tr><tr><td colspan=\"4\">Table 8 cityu-The performances of memory</td></tr><tr><td colspan=\"4\">based ensemble methods under different rules.</td></tr><tr><td/><td colspan=\"3\">Precision Recall FB1</td></tr><tr><td colspan=\"2\">Frequency Threshold 90.69</td><td>86.55</td><td>88.57</td></tr><tr><td>Relative Frequency</td><td>90.87</td><td>86.29</td><td>88.52</td></tr><tr><td>Threshold</td><td/><td/><td/></tr><tr><td>Only Person</td><td>92.00</td><td>85.66</td><td>88.72</td></tr></table>",
"num": null,
"text": "msra-The performances of memory based ensemble methods under different rules.",
"type_str": "table"
}
}
}
}