| { |
| "paper_id": "Y03-1016", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T13:34:32.585531Z" |
| }, |
| "title": "Context-rule Model for Pos Tagging", |
| "authors": [ |
| { |
| "first": "Yu-Fang", |
| "middle": [], |
| "last": "Tsai", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Academia", |
| "middle": [], |
| "last": "Sinica", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Keh-Jiann", |
| "middle": [], |
| "last": "Chen", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "kchen@iis.sinica.edu.tw" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "Part-of-speech tagging for a large corpus is a labour intensive and time-consuming task. In order to achieve fast and high quality tagging, algorithms should be high precision and in particular, its tagging results should require less manual proofreading. In this paper, we proposed a context-rule model to achieve both the above goals for pos tagging. We compared the tagging precisions between Markov bi-gram model and context-rule classifier. According to the experiments, context-rule classifier performs better than those two other algorithms. Also, it covers the data sparseness problem by utilizing more context features, and reduces the amount of corpus that is need to be manual proofread by introducing the confidence measure.", |
| "pdf_parse": { |
| "paper_id": "Y03-1016", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "Part-of-speech tagging for a large corpus is a labour intensive and time-consuming task. In order to achieve fast and high quality tagging, algorithms should be high precision and in particular, its tagging results should require less manual proofreading. In this paper, we proposed a context-rule model to achieve both the above goals for pos tagging. We compared the tagging precisions between Markov bi-gram model and context-rule classifier. According to the experiments, context-rule classifier performs better than those two other algorithms. Also, it covers the data sparseness problem by utilizing more context features, and reduces the amount of corpus that is need to be manual proofread by introducing the confidence measure.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Part-of-speech tagging for a large corpus is a labour intensive and time-consuming task. In order to achieve fast and high quality tagging, algorithms should be high precision and in particular, its tagging results should require less manual proofreading. There is lots of work on part-of-speech tagging such as Hidden Markov Models (HMMs), Maximum Entropy Models (MEs), and Support Vector Machines (SVMs), etc. Most of works addressed on the high accuracy of tagging results only. In this paper, we proposed a context-rule model to achieve both the above goals for pos tagging.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In this study, we are going to test two different tagging algorithms based on same training data and testing data. The two tagging algorithms are Markov bi-gram model, and context-rule classifier. For Markov bi-gram model, we propose a new form named word-dependent Markov bi-gram model, which will be described later. The training data and testing data are extracted from Sinica corpus, a 5 million word balanced Chinese corpus with pos tagging (Chen et al., 1996) . The confidence measure will be defined for each algorithm and the best accuracy will be estimated at the constraint of only a fixed amount of testing data being proofread. It is easier to proofread and make more consistent tagging results, if proofreading processes were done by checking the keyword-in-context file for each ambivalence word and only the tagging results of ambivalence word need to be proofread. The words with single category need not be rechecked their pos tagging. For instance, in Table 1 , the keyword-in-context file of the word '1111: F9: (research), which has pos-categories of verb type VE and noun type Nv, is sorted according to its left/right context. The proofreader can see the other examples as references to determine whether or not each tagging result is right. If all of the occurrences of ambivalence word have to be rechecked, it is still too much of the work.", |
| "cite_spans": [ |
| { |
| "start": 446, |
| "end": 465, |
| "text": "(Chen et al., 1996)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 970, |
| "end": 977, |
| "text": "Table 1", |
| "ref_id": "TABREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Tagging Algorithms", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The common terms used in the following tagging algorithms were defined as follows:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Tagging Algorithms", |
| "sec_num": "2" |
| }, |
| { |
| "text": "W k", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Tagging Algorithms", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The k-th word in a sequence", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Tagging Algorithms", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The pos-category associated with k-th word wk", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C k", |
| "sec_num": null |
| }, |
| { |
| "text": "ilig(DE) *16 ,-(VH) fi)fR(Nv) vt 40(Na) (Dfa) wrE(VJ) iiffR(Nv) (Nv) (Na)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C k", |
| "sec_num": null |
| }, |
| { |
| "text": "fr EM(Na) ifFR(VE) (Na) ki _1(VCL) w4(Nc) iffr i,(VE) A(Nes) .71 3ift-f4(VH) ii): Given a word sequence wo...wn , the Markov bi-gram model calculates the probability of each candidate category ck for a target word wk by P(ck I ck_i ) P(wk I ck ). There are two approaches to estimate the statistical data for P(ck ck_i ) . One is to count all the occurrences in the training data, called general Markov model, and another one is to count only the occurrences in which each wk occurs, called word-dependent Markov model. We compared the two different approaches of Markov bi-gram model with the proposed context-rule model algorithm in the experiments.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C k", |
| "sec_num": null |
| }, |
| { |
| "text": "FR(VE) (PERIODCATEGORY) 1-rkit(Na)ffif4(VH) lifFR(VE) (PERIODCATEGORY) W(D) MV4(VH) ii)M(Nv) (PERIODCATEGORY) Z(DE) (COMMACATEGORY) 1. 'tj (Nb) t{h(Na)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "C k", |
| "sec_num": null |
| }, |
| { |
| "text": "The conventional Markov n-gram models utilize the features of categories of context words and the probability distribution of the categories of target words. In fact, for some cases the best pos-tags might be determined by other context features, such as context words instead of the categories. In the context-rule model, we extend the scope of the dependency context of a target word into its 2 by 2 context windows. Therefore the context features of a target word wo can be represented by the vector of , w_1 , c_1 , w1 , ci ,w2 , c2 ] . Each feature vector may be associated with one or more pos-tags. The association probability of the candidate category c; is P(c;Iwo , feature vector). If for some ( wo , the value of P(co wo , feature vector) is not 1, it means that the pos of wo cannot be uniquely determined by its context vector. Some additional features have to be incorporated to resolve the ambiguity. If for some word wo , all of its pos c; such that the value of P(c'o I wo , feature vector) is zero which means there is no training examples with the same context vector of wo . If the full scope of the context feature vector is used, data sparseness problem will seriously hurt the system performance. Therefore partial feature vectors are used instead of full feature vectors. The partial feature vectors applied in our context-rule classifier are w_1 , w1 , c _2 c , c1 c2 , c_1 cl ,w_2 c_1 , w_l c_i , and c1 w2 .", |
| "cite_spans": [ |
| { |
| "start": 506, |
| "end": 538, |
| "text": ", w_1 , c_1 , w1 , ci ,w2 , c2 ]", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Context-rule Model", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "[w_2 , c_2", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Context-rule Model", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "At the training stage, for each feature vector type many rule instances will be generated. For instance, with the above applied feature vector types, we can extract rule patterns of w _1 (%), w1 (2, c _2 c _1 (Nb, Na) , ci c2 (Ng, COMMA), ... etc, associated with the category VE of target word 'FR research' from the following sentence: Tsou (Nb)", |
| "cite_spans": [ |
| { |
| "start": 195, |
| "end": 198, |
| "text": "(2,", |
| "ref_id": null |
| }, |
| { |
| "start": 199, |
| "end": 213, |
| "text": "c _2 c _1 (Nb,", |
| "ref_id": null |
| }, |
| { |
| "start": 214, |
| "end": 217, |
| "text": "Na)", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Context-rule Model", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "Mr (Na) ifFR research (YE) zn after (Ng) ' (COMMA) \" After Mr. Tsou has done his research,\" By investigating all training data, different rule patterns will be generated, and their association probabilities P(c'olwo , feature vector) are also derived. For instance, If we take those word sequences Table 1 as training data and c _lci as feature pattern, and set .. research' as target word, we would train with a result containing a rule pattern = PERIOD) and derive the probabilities of P(VE (VII, PERIOD)) = 2/3 and P(.1VV I (Y1-1,PERIOD))= 1/3. Suppose that the target word wo has ambiguous categories of cl , c2 c , and the context patterns of patterni , pattern 2 ,..., pattern m, then the probability to assign tag ci to the target word wo is defined as follows:", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 298, |
| "end": 305, |
| "text": "Table 1", |
| "ref_id": "TABREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Context-rule Model", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "P(c1 I w, pattern),) Y=m 1 n y, y, P(ex I w, pattern),)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Context-rule Model", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "x=1 y=1", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Context-rule Model", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "In other words, the probabilities of different patterns with the same candidate category are accumulated and normalized by the total probability distributed to all candidates as the probability of the candidate category. The algorithm will tag the category of the highest probability.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Context-rule Model", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "The Sinica corpus is separated into two parts as our training data and testing data. The training data is randomly generated and utilizes 90% of the corpus, while the testing data is the remaining 10% part. Some ambiguous words' frequencies in the corpus are too low so that neither the context-rule algorithm nor the word-dependent Markov model is able to tag them well. Those words should be processed by other generic tagging algorithms. Therefore, we picked up words that its frequency is equal to or greater than 10 only as the target words in the experiments. The six ambivalence words with different frequencies, listed in Table 2 , were picked as our example target words to see the performance of each tagging algorithm on words with different characteristics. Some words like .. interview' and `.. perform' have too low frequencies to have enough training data.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 630, |
| "end": 637, |
| "text": "Table 2", |
| "ref_id": "TABREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Experiment Results", |
| "sec_num": "3" |
| }, |
| { |
| "text": "To solve the problem of data sparseness, the Jeffreys-Perks law, or Expected Likehood Estimation (ELE), is introduced as the smoothing method for all evaluated tagging algorithms. To smooth for an unseen pattern wn , the probability PO411 ,...,1410 is defined as , where N+.13.1, C(wi,...,wn) is the amount that the pattern occurs in the training data, and N is the total amount of all training patterns, and B denotes the amount of all pattern types in training data and A denotes the default occurrence count for an unseen pattern. The most widely used value for A. is 0.5, which is also applied in the experiments. The Markov bi-gram model was evaluated to be compared with our context-rule model. Markov bi-gram model looks the category of the target word and categories before/after the target words. That is, given a word sequence w1 ,...wn , it calculates the probability of each candidate category ck for a target word wk by P(ck I ck_1 ) P(e lc+, I C k) P(wk I ck ). In the experiments, we evaluate the probabilities of P(ck Ic k_1 ) and P(c k+1 I c k ) by two different approaches. One is to train all the sequences in the training data, and another one is to train only the sequences in which each wk occurs.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experiment Results", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Word-Depend. Markov Context-Rule and P(C k+i I C k ) in Markov model shows that using word-dependent context features is better than using all context features. The proposed context-rule model has higher precision rate than the Markov models.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "General Markov", |
| "sec_num": null |
| }, |
| { |
| "text": "The accuracy of a tagging result is usually estimated by the tagging precision of the algorithm. However the report precision of automatic tagging algorithm is about 95% to 96% (Chang et al., 1993; Lua, 1996; Liu et al., 1995) . A better accuracy can be achieved if the tagging results are manually proofread. If we can pinpoint the errors, only 4-5% of the corpus has to be revised. Since it is not known where occurrences of errors are, conventionally the whole corpus has to be reexamined. It is most tedious and time consuming, since a practically useful tagged corpus is at least in the size of several million words. In order to reduce the manual editing and speed up the construction process of a large tagged corpus, a partial proofreading process has to be carried out. Only potential errors of tagging will be rechecked manually. The problem is how we find the potential errors of the tagging and what is a reliable tagging system, which can provide a confidence score for each step of tagging?", |
| "cite_spans": [ |
| { |
| "start": 177, |
| "end": 197, |
| "text": "(Chang et al., 1993;", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 198, |
| "end": 208, |
| "text": "Lua, 1996;", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 209, |
| "end": 226, |
| "text": "Liu et al., 1995)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Confidence Measure and Reduction on Manual Proofreading", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Since a probabilistic-based tagging method will assign a probability to each candidate pas-category, we assume that a candidate with higher probability might be more reliable. Therefore we adopt the following hypothesis. If the probability P(c1 ) of the top choice candidate c 1 is much higher than the probability P(c2 ) of the second choice candidate c2 , then the confidence value assigned for c 1 is also higher. Likewise if the probability P(c 1 ) is closer to the probability P(c 2 ) , then the confidence value P(ci ) assigned for c1 is also lower. A general confidence measure was defined as the value of P(c1)+P c2where P(c1 ) is the probability of the top choice category c1 assigned by the tagging algorithm and P(c2 ) is the probability of the second choice category c 2 . By using this definition of confidence measure, one can choose a confidence score, for example, 0.6, to filter those tagged words that have score lower than the pre-chosen confidence score, which are need manual proofreading. We like to prove the above hypothesis by empirical methods. A tagging algorithm provided with a very reliable confidence score in some sense is a good cost-effective algorithm. A cost-effective algorithm may not be the algorithm with the highest precision. Therefore we defined below a new concept of reliability of a tagging system in term of cost-effective: Reliability The estimated best accuracy can be achieved by the tagging model under the constraint that only a fixed amount of K% corpus with the lowest confidence value is manually proofread. We carried out an experiment on the confidence measure on the context-rule tagging model. The target words are the ambivalence words of frequency greater than or equal to 10. Figure 1 shows the results. The confidence score is increased from 0.50, step in 0.01, to 1.00, to observe the curve between the amount of manual proofreading and the best accuracy with manual proofreading. When a certain confident score is chosen, some tagged words with confidence score lower than the chosen one will Tradeoffs between amount of manual proofreading and the best accuracy", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 1738, |
| "end": 1746, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Confidence Measure and Reduction on Manual Proofreading", |
| "sec_num": "4" |
| }, |
| { |
| "text": "show that they might have been tagged with wrong category. If those words are all manual proofread, the tagging accuracy can be increased more efficiently, and the final tagging accuracy can be easily estimated. For instance, if the confidence score is set 0.6, only 10.04% of tagged words have the confidence scores less than 0.6 that cover 57.92% error tagging. Therefore the estimated best tagging accuracy is 97.93%, if those tagged words with lower confidence score are all manual revised. The best accuracy is estimated by adding the amount of error reduction by manual proofreading to the original tagging accuracy, i.e. 95.08%+4.92%*57.92%=97.93% for confidence threshold of 0.6. It is obviously that there is a trade-off between the accuracy and the amount of corpus to be manual proofread. The higher accuracy required, the larger corpus to be manual proofread. Thus, with a fixed resource of labour, one can determine the final accuracy of corpus after manual proofread is done, or he/she can estimate how many corpus should be manual proofread to achieve the required accuracy according to the curve.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Confidence Measure and Reduction on Manual Proofreading", |
| "sec_num": "4" |
| }, |
| { |
| "text": "The proposed context-rule model utilizes a broader scope of features to tag pos and achieve a better precision. The target word dependent Markov model also performs better than general Markov model. It clearly shown that to utilize more dependent features and more precise probability dependent statistics will perform better on the pos tagging. On the other hand the sparseness of training data reduces the accuracy of the tagging algorithm. Therefore use of more dependent features means more serious of data sparseness problem. However the context-rule model avoid the data sparseness problem by utilizing the rules with higher occurrence patterns only and use the general category patterns to cope with the low frequency target words. The context-rule tagging models focus on the ambivalence words only since top 300 ambivalence words contains 95% of tagging ambiguities according to Huang et al (2000) . Therefore using confidence evaluation and context-rule models can drastically reduce amount of manual proofreading.", |
| "cite_spans": [ |
| { |
| "start": 888, |
| "end": 906, |
| "text": "Huang et al (2000)", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusion", |
| "sec_num": "5" |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "HMM-based Part-of-Speech Tagging for Chinese Corpora", |
| "authors": [ |
| { |
| "first": "C", |
| "middle": [ |
| "H D" |
| ], |
| "last": "Chang & C", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Chen", |
| "suffix": "" |
| } |
| ], |
| "year": 1993, |
| "venue": "Proceedings of the Workshop on Very Large Corpora", |
| "volume": "", |
| "issue": "", |
| "pages": "40--47", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "C. H. Chang & C. D. Chen, 1993, \"HMM-based Part-of-Speech Tagging for Chinese Corpora,\" in Proceedings of the Workshop on Very Large Corpora, Columbus, Ohio, pp. 40-47.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Category Guessing for Chinese Unknown Words", |
| "authors": [ |
| { |
| "first": "C", |
| "middle": [ |
| "J" |
| ], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [ |
| "H" |
| ], |
| "last": "Bai", |
| "suffix": "" |
| }, |
| { |
| "first": "&", |
| "middle": [ |
| "K J" |
| ], |
| "last": "Chen", |
| "suffix": "" |
| } |
| ], |
| "year": 1997, |
| "venue": "Proceedings of NLPRS97", |
| "volume": "", |
| "issue": "", |
| "pages": "35--40", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "C. J. Chen, M. H. Bai, & K. J. Chen, 1997, \"Category Guessing for Chinese Unknown Words,\" in Proceedings of NLPRS97, Phuket, Thailand, pp. 35-40.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Foundations of Statistical Natural Language Processing", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Christopher", |
| "suffix": "" |
| }, |
| { |
| "first": "", |
| "middle": [], |
| "last": "Manning & Hinrich Schutze", |
| "suffix": "" |
| } |
| ], |
| "year": 1999, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "202--204", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Christopher D. Manning & Hinrich Schutze, Foundations of Statistical Natural Language Processing, The MIT Press, 1999, pp. 202-204.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Sinica Corpus: Design Methodology for Balanced Corpora", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [ |
| "J" |
| ], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [ |
| "R" |
| ], |
| "last": "Huang", |
| "suffix": "" |
| }, |
| { |
| "first": "L", |
| "middle": [ |
| "P" |
| ], |
| "last": "Chang", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [ |
| "L" |
| ], |
| "last": "Hsu", |
| "suffix": "" |
| } |
| ], |
| "year": 1996, |
| "venue": "Proceedings of PACLIC II", |
| "volume": "", |
| "issue": "", |
| "pages": "167--176", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. J. Chen, C. R. Huang, L. P. Chang, & H. L. Hsu, 1996, \"Sinica Corpus: Design Methodology for Balanced Corpora,\" in Proceedings of PACLIC II, Seoul, Korea, pp. 167-176.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Part of Speech Tagging of Chinese Sentences Using Genetic Algorithm", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [ |
| "T" |
| ], |
| "last": "Lua", |
| "suffix": "" |
| } |
| ], |
| "year": 1996, |
| "venue": "Proceedings of ICCC96", |
| "volume": "", |
| "issue": "", |
| "pages": "45--49", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. T. Lua, 1996, \"Part of Speech Tagging of Chinese Sentences Using Genetic Algorithm,\" in Proceedings of ICCC96, National University of Singapore, pp. 45-49.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Semi-) Automatic Detection of Errors in PoS-Tagged Corpora", |
| "authors": [ |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Kveton", |
| "suffix": "" |
| }, |
| { |
| "first": "&", |
| "middle": [ |
| "K" |
| ], |
| "last": "Oliva", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of Coling", |
| "volume": "", |
| "issue": "", |
| "pages": "509--515", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "P. Kveton & K. Oliva, 2002, \"(Semi-) Automatic Detection of Errors in PoS-Tagged Corpora,\" in Proceedings of Coling 2002, Taipei, Tai-wan, pp. 509-515.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Automatic Part-of-Speech Tagging for Chinese Corpora", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [ |
| "H" |
| ], |
| "last": "Liu", |
| "suffix": "" |
| }, |
| { |
| "first": "K", |
| "middle": [ |
| "J" |
| ], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "L", |
| "middle": [ |
| "P" |
| ], |
| "last": "Chang", |
| "suffix": "" |
| }, |
| { |
| "first": "Y", |
| "middle": [ |
| "H" |
| ], |
| "last": "Chin", |
| "suffix": "" |
| } |
| ], |
| "year": 1995, |
| "venue": "on Computer Proceeding of Oriental Languages", |
| "volume": "9", |
| "issue": "", |
| "pages": "31--48", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. H. Liu, K. J. Chen, L. P. Chang, & Y. H. Chin, 1995, \"Automatic Part-of-Speech Tagging for Chinese Corpora,\" on Computer Proceeding of Oriental Languages, Hawaii, Vol. 9, pp.31-48.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "num": null, |
| "text": "Figure 1", |
| "uris": null, |
| "type_str": "figure" |
| }, |
| "TABREF0": { |
| "content": "<table><tr><td>141,Cn</td><td>A word sequence containing n words with their associated categories</td></tr><tr><td/><td>respectively</td></tr><tr><td colspan=\"2\">2.1 Markov Bi-gram Model</td></tr><tr><td colspan=\"2\">The most widely used tagging models are part-of-speech n-gram models, in particular bi-gram and</td></tr><tr><td colspan=\"2\">tri-gram model. In a bi-gram model, it looks at pair of categories (or words) and uses the conditional</td></tr><tr><td colspan=\"2\">probability of P(ck I ck_1 ) , and the Markov assumption is that the probability of a category occurring</td></tr><tr><td colspan=\"2\">depends only on the one category before it.</td></tr></table>", |
| "html": null, |
| "text": "Sample keyword-in-context file of the words 'z sorted by its left/right context", |
| "num": null, |
| "type_str": "table" |
| }, |
| "TABREF2": { |
| "content": "<table/>", |
| "html": null, |
| "text": "Target words used in the experiments listed in", |
| "num": null, |
| "type_str": "table" |
| }, |
| "TABREF4": { |
| "content": "<table/>", |
| "html": null, |
| "text": "Precision rates between evaluated tagging algorithmsThe evaluated result is shown in table 3. The comparison of two approaches to evaluating P(c k I ck_i )", |
| "num": null, |
| "type_str": "table" |
| } |
| } |
| } |
| } |