<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:ns2="http://www.tei-c.org/ns/Examples">
    <teiHeader>
        <fileDesc>
            <titleStmt>
                <title>Japanese Unknown Word Identification by Character-based Chunking</title>
            </titleStmt>
        </fileDesc>
    </teiHeader>
    <text>
        <front>
            <div type="abs">
                <head>Abstract</head>
                <p>We introduce a character-based chunking for unknown word identification in Japanese text. A major advantage of our method is an ability to detect low frequency unknown words of unrestricted character type patterns. The method is built upon SVM-based chunking, by use of character n-gram and surrounding context of n-best word segmentation candidates from statistical morphological analysis as features. It is applied to newspapers and patent texts, achieving 95% precision and 55-70% recall for newspapers and more than 85% precision for patent texts.</p>
            </div>
        </front>
        <body>
            <div>
                <p/>
            </div>
            <div1>
                <head xml:id="sec1">Introduction</head>
                <p>Japanese and Chinese sentences are written without spaces between words. A word segmentation process is a prerequisite for natural language processing (NLP) of non-segmented language family. Statistical morphological analyzers are often used for word segmentation in Japanese NLP, which achieve over 96% precision. However, unknown word processing still remains an issue to be addressed in those morphological analyzers. Unknown word processing in non-segmented languages are more challenging, as it first needs to identify boundaries of unknown words in texts, prior to assignment of correspoinding part-of-speech.</p>
                <p>Unknown word processing in morphological analysis of non-segmented language can follow one of either approaches: modular or embedded. In the modular approach, a separate off-line module is used to extract unknown words from text (Mori 1996; Ikeya 2000). They are checked and added to the lexicon of morphological analyzers. In the embedded approach, an on-line module which statistically induces the likelihood of a particular string being a word is embedded in a morphological analyzer (Nagata, 1999; Uchimoto et al., 2001). A modular approach is generally preferable in practice, since it allows developers to maintain a high quality lexicon which is crucial for good performance. Previous work of the modular approach was either unable to detect low frequency unknown words (Mori 1996) or limited to predefined character patterns for low frequency unknown words (Ikeya 2000).</p>
                <p>We propose a general-purpose unknown word identification based on character-based chunking in order to address these shortcomings. A cascade model of a morphological analyzer (trained with Markov Model) and a chunker (trained with Support Vector Machines) is applied. The morphological analyzer produces n-best word segmentation candidates, from which candidate segmentation boundaries, character n-gram and surrounding contexts are extracted as features for each character. The chunker determines the boundaries of unknown words based on the features.</p>
                <p>The rest of this paper is as follows. We describe our method in Section 2, and present experimental results on newspaper articles and patent text in Section 3. Related work is provided in Section 4, and a summary and future directions are given in Section 5.</p>
            </div1>
            <div1>
                <head xml:id="sec2">Method</head>
                <p>We describe our method for unknown word identification. The method is based on the following three steps: 1. A statistical morphological analyzer is applied</p>
                <p>to the input sentence and produces n-best seg-</p>
                <p>mentation candidates with their correspoinding</p>
                <p>part-of-speech (POS). 2. Features for each character in the sentence are</p>
                <p>annotated as the character type and multiple</p>
                <p>POS tag information according to the n-best</p>
                <p>word candidates. 3. Unknown words are identified by a support</p>
                <p>vector machine (SVM)-based chunker based</p>
                <p>on annotated features.</p>
                <p>Now, we illustrate each of these three steps in more detail.</p>
                <div2>
                    <head xml:id="sec2.1">Japanese Morphological Analysis</head>
                    <p>Japanese morphological analysis is based on Markov model. The goal is to find the word and POS tag sequences W and T that maximize the fol- lowing probability: T = arg max W,T P ( T|W ) .</p>
                    <p>Bayes’ rule allows P ( T|W ) to be decomposed as the product of tag and word probabilities. arg max W,T P ( T|W ) = arg max W,T P ( W|T ) P ( T ) .</p>
                    <p>We introduce approximations that the word probability is conditioned only on the tag of the word, and the tag probability is determined only by the immediately preceding tag. The probabilities are estimated from the frequencies in tagged corpora using Maximum Likelihood Estimation. Using these parameters, the most probable tag and word sequences are determined by the Viterbi algorithm.</p>
                    <p>In practice, we use log likelihood as cost. Maximizing probabilities means minimizing costs. Redundant analysis outputs in our method mean the top n-best word candidates within a certain cost width. The n-best word candidates are picked up for each character in the ascending order of the accumulated cost from the beginning of the sentence. Note that, if the difference between the costs of the best candidate and n-th best candidate exceeds a predefined cost width, we abandon the n-th best candidate. The cost width is defined as the lowest probability in all events which occur in the training data. We use ChaSen 1 as the morphological analyzer. ChaSen induces the n-best segmentation within a user-defined width.</p>
                </div2>
                <div2>
                    <head xml:id="sec2.2">Feature for Chunking</head>
                    <p>There are two general indicators of unknown words in Japanese texts. First, they have highly ambiguous boundaries. Thus, a morphological analyzer, which is trained only with known words, often produces a confused segmentation and POS assignment for an unknown word. If we inspect the lattice built during the analysis, subgraphs around unknown words are often dense with many equally plausible paths. We intend to reflect this observation as a feature and do this by use of n-best candidates from the morphological analyzer. As shown Figure 1, each character (Char.) in an input sentence is annotated with a Table 1: Tags for positions in a word Description one-character word first character in a multi-character word last character in a multi-character word intermediate character in a multi-character word (only for words longer than 2 chars) Support Vector Machine-based Chunking the chunker YamCha (Kudo and Matsumoto, feature encoded as a pair of segmentation tag and POS tag. For example, the best POS of the character “ 死 ” is “GeneralNoun-B”. This renders as the POS is a common noun (General Noun) and its segmentation makes the character be the first one in a multi-character token. The POS tagset is based on IPADIC (Asahara and Matsumoto, 2002) and the segmentation tag is summarized in Table 1. The 3best candidates from the morphological analyzer is used. The second indicator of Japanese unknown words is the character type. Unknown words occur around long Katakana sequences and alphabetical characters. We use character type (Char. Type) as feature, as shown in Figure 1. Seven character types ar defined: Space, Digit, Lowercase alphabet, Uppercase alphabet, Hiragana, Katakana, Other (Kanji) . The character type is directly or indirectly used in most of previous work and appears an important feature to characterize unknown words in Japanese texts. Tag</p>
                    <p>S B E</p>
                    <p>I</p>
                </div2>
                <div2>
                    <head xml:id="sec2.3"></head>
                    <p>We use 2001), which is based on SVMs (Vapnik, 1998). Suppose we have a set of training data for a bix i ∈R n is a feature vector of the i th sample in the training data and y∈{ i +1 ,− 1 } is the label of the sample. The goal is to find a decision function which accurately predicts y for an unseen x . An support vector machine classifier gives a decision function f ( x )= sign ( g ( x )) for an input vector x where nary class problem: ( x 1 ,y 1 ) ,..., ( x N ,y N ) , where g ( x )= ∑ αyK i i ( x , z i )+ b. z i ∈SV</p>
                    <p>K ( x , z ) is a kernel function which maps vectors into a higher dimensional space. We use a polynomial kernel of degree 2 given by K ( x , z )= (1+ x z ) 2 · .</p>
                    <p>SVMs are binary classifiers. We extend binary classifiers to an n-class classifier in order to compose chunking rules. Two methods are often used Char. id i− 2 i− 1</p>
                    <p>i i +1 i +2 Char. 焼 死 体 で 発 Char. Type</p>
                    <p>Other</p>
                    <p>Other</p>
                    <p>Other</p>
                    <p>Hiragana</p>
                    <p>Other</p>
                    <p>POS(Best) PrefixNoun-S GeneralNoun-B GeneralNoun-E CaseParticle-S VerbalNoun-B</p>
                    <p>POS(2nd) GeneralNoun-S GeneralNoun-S SuffixNoun-S Auxil.Verb-S</p>
                    <p>*</p>
                    <p>POS(3rd)</p>
                    <p>SuffixNoun-S SuffixVerbalNoun-S</p>
                    <p>GeneralNoun-S ConjunctiveParticle-S</p>
                    <p>* unknown word tag</p>
                    <p>B</p>
                    <p>I I Figure 1: An example of features for chunking for the extension, the “One vs. Rest method” and the “Pairwise method”. In the “One vs. Rest methods”, we prepare n binary classifiers between one class and the remain classes. Whereas in the “Pairwise method”, we prepare n C 2 binary classifiers between all pairs of classes. We use “Pairwise method” since it is efficient to train than the “One vs. Rest method”.</p>
                    <p>Chunking is performed by deterministically annotating a tag on each character. Table 2 shows the unknown word tags for chunking, which are known as the IOB2 model (Ramshaw and Marcus, 1995).</p>
                    <p>Table 2: Tags for unknown word chunking Tag Description B first character in an unknown word</p>
                    <p>I character in an unknown word (except B) O character in a known word</p>
                    <p>We perform chunking either from the beginning or from the end of the sentence. Figure 1 illustrates a snapshot of chunking procedure. Two character contexts on both sides are referred to. Information of two preceding unknown word tags is also used since the chunker has already determined them and they are available. In the example, the chunker uses the features appearing within the solid box to infer the unknown word tag (“I”) at the position i .</p>
                    <p>We perform chunking either from the beginning of a sentence (forward direction) or from the end of a sentence (backward direction).</p>
                </div2>
            </div1>
            <note n="1" place="below">http://chasen.naist.jp/</note>
            <div1>
                <head xml:id="sec3">Experiments and Evaluation</head>
                <div2>
                    <head xml:id="sec3.1">Experiments for measuring Recall</head>
                    <p>Firstly, we evaluate recall of our method. We use RWCP text corpus (Real World Computing Partnership, 1998) as the gold standard and IPADIC (Version 2.6.3) (Asahara and Matsumoto, 2002) as the base lexicon. We set up two data sets based on the hit number of a web search engine which is shown in Appendix A. Table 3 shows the two data sets. Words with lower hit number than the threshold are regarded as unknown. We evaluate how many unknown words in the corpus are identified. Table 3: Two data for recall evaluation threshold 1,000 10,000 # of word inthe lexicon (rate) 108,471 (44.2%) 52,069 (21.2%) # of unknown word in the corpus (rate)</p>
                    <p>9,814 (1.06%)</p>
                    <p>33,201 (3.60%) Table 4: Results – Recall by Newspaper</p>
                    <p>Token Type Prec. 75.3% 73.4% 82.2% 80.9% Rec. 55.8% 53.8% 74.2% 72.0% Prec. 69.5% 68.0% 75.8% 74.3% validation and data A B Setting A/for A/back B/for B/back Rec. 55.9% 53.5% 74.5% 72.0%</p>
                    <p>We perform five fold cross average the five results. We carefully separate the data into the training and test data. The training and test data do not share any unknown word. We evaluate recall and precision on both token and type as follows: Recall = # of words correctly identified # of words in Gold Std. Data Precision = # of words correctly identified</p>
                    <p># of words identified</p>
                    <p>The experiment is conducted only for recall, since it is difficult to make fair judgment of precision in this setting. The accuracy is estimated by the word segmentation defined in the corpus. Nevertheless, there are ambiguities of word segmentation in the corpus. For example, while “ 京都大学 (Kyoto University)” is defined as one word in a corpus, “ 大 阪 / 大学 (Osaka University)” is defined as two words in the same corpus. Our analyzer identifies “ 大阪大 学 ” as one word based on generalization of “ 京都大 学 ”. Then, it will be judged as false in this experiment. We make fairer precision evaluation in the next section. However, since several related works make evaluation in this setting, we also present precision for reference.</p>
                    <p>Table 4 shows the result of recall evaluation. For # of token</p>
                    <p>9,009</p>
                    <p>3,938</p>
                    <p>3,800</p>
                    <p>3,717</p>
                    <p>3,446</p>
                    <p>2,895</p>
                    <p>1,911</p>
                    <p>1,864</p>
                    <p>624</p>
                    <p>449 Recall 67.1 86.8 63.8 90.4 73.4 87.5 79.3 58.3 83.2 88.4 # of identified words Precision Token Type 58,708 19,880 59,029 19,658 142,591 41,068 142,696 41,035 94.6% 94.0% 95.3% 95.5% Identification from correct answers over extracted candidates.</p>
                    <p>Concerning with compound words, we reject the words which do not match any constituent of the dependency structure of the largest compound word. Figure 2 illustrates judgment for compound words. In this example, we permit “ 海外留学 (overseas study)”. However, we reject “ 短期海外 (short-term overseas)” since it does not compose any constitutent in the compound word. OK 短期海外留学 海外留学 短期 海外 留学 NG 短期海外 Figure 2: Judgement for compound words</p>
                    <p>We make two models: Model A is composed by data set A in Table 3 and model B is composed by data set B. We make two settings for the direction of chunking, forward (from BOS to EOS) and backward (from EOS to BOS).</p>
                    <p>Table 6 shows the precision for newspaper articles. It shows that our method achieves around 95% precision in both models. There is almost no difference in the several settings of the direction and the contextual feature. Table 6: Results – Precision by Newspaper Setting A/For A/Back B/For B/Back</p>
                </div2>
                <div2>
                    <head xml:id="sec3.2.2">Unknown Word Patent Texts</head>
                    <p>We also examine word identification experiment with patent texts. We use patent texts (25,084 sentences), which are OCR recognized. We evaluate models by the number of extracted words and precisions as in the preceding experiment. In this experiments, the extracted tokens may contain errors of the OCR reader. Thus, we define three categories for the judgment: Correct, Wrong and OCR Error. We use the rate of three categories for evaluation. Note that, our method does not categorize the outputs into Correct and OCR Error.</p>
                    <p>Table 7 shows the precision for patent texts. The backward direction of chunking gets better score Table 5: Results – Recall of each POS POS GeneralNoun PN (First Name) PN (Organization) PN (Last Name) Verb VerbalNoun PN (Location) PN (Other) AdjectiveNoun PN (Country) “PN” stands for “Proper Noun” Data Set B, forward direction. Shown POSs are higher than the rank 11th by the token sizes. example, an experimental setting “A/for” stands for the data set A with a forward direction chunking, while “A/Back” stands for the data set A with a backward direction chunking. Since there is no significant difference between token and type, our method can detect both high and low frequency words in the corpus. Table 5 shows the recall of each POS in the setting data set B and forward direction chunking. While the recall is slightly poor for the words which include compounds such as organization names and case particle collocations, it achieves high scores for the words which include no compounds such as person names. There are typical errors of conjugational words such as verbs and adjectives which are caused by ambiguities between conjugational suffixes and auxiliary verbs.</p>
                </div2>
                <div2>
                    <head xml:id="sec3.2">Experiments for measuring Precision</head>
                    <p>Secondly, we evaluate precision of our method manually. We perform unknown word identification on newspaper articles and patent texts.</p>
                </div2>
                <div2>
                    <head xml:id="sec3.2.1">Unknown Word Identification in Newspapers</head>
                    <p>Firstly, we examine unknown word identification experiment in newspaper articles. We use articles of Mainichi Shinbun in January 1999 (116,863 sentences). Note that, the model is made by RWCP text corpus, which consists of articles of Mainichi Shinbun in 1994 (about 35,000 sentences).</p>
                    <p>We evaluate the models by the number of identified words and precisions. The number of identified words are counted in both token and type. To estimate the precision, 1,000 samples are selected at random with the surrounding context and are showed in KWIC (KeyWord in Context) format. One human judge checks the samples. When the selected string can be used as a word, we regard it as a correct answer. The precision is the percentage of than the forward one. Since suffixes are critical clues for the long word identification, the backward direction is effective for this task. Table 7: Results – Precision by Patent Texts Setting A/For A/Back B/For B/Back</p>
                </div2>
                <div2>
                    <head xml:id="sec3.3">Word Segmentation Accuracy</head>
                    <p>Thirdly, we evaluate how our method improves word segmentation accuracy. In the preceding experiments, we do chunking with tags in Table 2. We can do word segmentation with unknown word processing by annotating B and I tags to known words and rejecting O tag. RWCP text corpus and IPADIC are used for the experiment. We define single occurrence words as unknown words in the corpus. 50% of the corpus (unknown words/all words= 8,274/461,137) is reserved for Markov Model estimation. 40% of the corpus (7,485/368,587) is used for chunking model estimation. 10% of the corpus (1,637/92,222) is used for evaluation. As the baseline model for comparison, we make simple Markov Model using 50% and 90% of the corpus. The results of Table 8 show that the unknown word processing improves word segmentation accuracy. Table 8: Results – Word Segmentation</p>
                    <p>Rec. Prec. F-Measure</p>
                    <p>97.7% 96.5% 97.1</p>
                    <p>97.8% 96.6% 97.2</p>
                    <p>98.5% 98.1% 98.3 Baseline (50%) Baseline (90%) Our Method</p>
                </div2>
            </div1>
            <div1>
                <head xml:id="sec4">Related Work</head>
                <p>Mori (1996) presents a statistical method based on n-gram model for unknown word identification. The method estimates how likely the input string is to be a word. The method cannot cover low frequency unknown words. Their method achieves 87.4% precision and 73.2% recall by token, 57.1% precision and 69.1% recall by type 2 on EDR corpus. Ikeya (2000) presents a method to find unknown word boundaries for strings composed by only kanji characters. The # of identified words</p>
                <p>Token | Type 56,008 | 12,263 56,004 | 10,505 97,296 | 16,526 98,826 | 15,895</p>
                <p>Accuracy Correct | Wrong | OCR Error 83.9% | 15.4% | 0.7% 89.2% | 10.0% | 0.8% 85.6% | 13.7% | 0.7% 87.0% | 11.8% | 1.2% method also uses the likelihood based on n-gram model. Their method achieves 62.8 (F-Measure) for two kanji character words and 18.2 (F-Measure) for three kanji character words in newspapers domain.</p>
                <p>Nagata (1999) classifies unknown word types based on the character type combination in an unknown word. They define likelihood for each combination. The context POS information is also used. The method achieves 42.0% recall and 66.4% precision on EDR corpus 3 .</p>
                <p>Uchimoto (2001) presents Maximum Entropy based methods. They extract all strings less than six characters as the word candidates. Then, they do morphological analysis based on words in lexicon and extracted strings. They use Kyoto University text corpus (Version 2) (Kurohashi and Nagao, 1997) as the text and JUMAN dictionary (Version 3.61) (Kurohashi and Nagao, 1999) as the base lexicon 4 . The recall of Uchimoto’s method is 82.4% (1,138/1,381) with major POS estimation. We also perform nearly same experiment 5 . The result of our method is 48.8% precision and 36.2% recall (293/809) with the same training data (newspaper articles from Jan. 1 to Jan. 8, 1995) and test data (articles on Jan. 9, 1995). When we use all of the corpus excluding the test data, the result is 53.7% precision and 42.7% recall (345/809).</p>
                <p>Uchimoto (2003) also adopts their method for CSJ Corpus (Maekawa et al. 2000) 6 . They present that the recall for shortwords onthecorpusis55.7% (928/1,667) (without POS information). We try to perform the same experiment. However, we cannot get same version of the corpus. Then, we use CSJ Corpus – Monitor Edition (2002) . It only contains short word by the definition of the National Institute of Japanese Language . 80 %of the corpus is used for training and the rest 20 % is for test. The result is 68.4% precision and 61.1% recall (810/1,326) 7 . Note, the version of the corpus and the definition of unknown word are different between Uchimoto’s one and ours.</p>
                <p>The difference of the result may come from the word unit definition. The word unit in Kyoto University Corpus is longerthan the word unit in RWCP text Corpus and the short word of CSJ Corpus . Though our method is good at shorter unknown words, the method is poor at longer words including compounds.</p>
                <p>For Chinese language, Chen (2002) introduces a method using statistical methods and human-aided rules. Their method achieves 89% precision and 68% recall on CKIP lexicon. Zhang (2002) shows a method with role (position) tagging on characters in sentences. Their tagging method is based on Markov model. The role tagging resembles our method in that it is a character-based tagging. Their method achieves 69.88% presicion and 91.65% recall for the Chinese person names recognition in the People’s Daily . Goh (2003) also uses a characterbased position tagging method by support vector machines. Their method achieves 63.8% precision and 58.4% recall for the Chinese general unknown words in the People’s Daily . Ourmethod isone variation of the Goh’s method with redundant outputs of a morphological analysis.</p>
            </div1>
            <note n="2" place="below">The evaluation of their method depends on the threshold of the confidence F min in their definition. We refer the precision and recall at F min =0 . 25 .</note>
            <note n="3" place="below">They do not assume any base lexicon. Base lexicon size 45,027 words (composed by only the words in the corpus), training corpus size 100,000 sentences, test corpus size 100,000 sentences. Unknown words are defined by single occurrence words in the corpus. 4 Base lexicon size 180,000 words, training corpus size 7,958 sentences, test corpus size 1,246 sentences OOV (out-ofvocabulary) rate 17.7%. Unknown words are defined by single occurrence words in the corpus. 5 The difference is the definition of unknown words. Whereas they define unknown words by the possible word form frequency, we define ones by the stem form frequency. 6 Training corpus size 744,244 tokens, test corpus size 63,037 tokens, OOV rate 1.66%. 7 Training corpus size 678,649 tokens, 83,819 utterances, test corpus size 185,573 tokens, 20,955 utterances OOV rate 0.71%. Single occurence word by the stem form is defined as the unknown word.</note>
            <div1>
                <head xml:id="sec5">Summary and Future Direction</head>
                <p>We introduce a character-based chunking method for general unknown word identification in Japanese texts. Our method is based on cascading a morphological analyzer and a chunker. The method can identify unknown words regardless of their occurence frequencies.</p>
                <p>Our research need to include POS guessing for the identified words. One would argue that, once the word boundaries are identified, the POS guessing method in European language can be applied (Brants 2000; Nakagawa 2001). In our preliminary experiments of POS guessing, both SVM and Maximum Entropy with contextual information achieves 93% with a coarse-grained POS set evaluation, but reaches only around 65% with a fine-grained POS set evaluation.</p>
                <p>The poor result may be due to the “possibilitybased POS tagset”. The tagset is not necessarily friendly for statistical morphological analyzer development, but is widely used in Japanese corpus annotation. In the scheme, the fine-grained POS Verbal Noun in Japanese means that the word can be used both as Verbal Noun with verb and General Noun without verb. It is difficult to estimate the POS Verbal Noun , if the word appear in the context without verb. We are currently pursuing the research to better estimate fine-grained POS for the possibilitybased POS tagset. ———————————– A Unknown Word Definition by Search</p>
                <p>Engine Hits Unknown words mean out-of-vocabulary (hereafter OOV) words. The definition of the unknown words depends on the base lexicon. We investigate the relationship between the base lexicon size and the number of OOV words. We examine how the reduction of lexicon size affects the OOV rate in a corpus.</p>
                <p>When we reduce the size of lexicon, we reject the words in increasing order of frequency in a corpus. Then, we use hits on a web search engine as substitutes for frequencies. We use goo 8 as the search engine and IPADIC (Asahara and Matsumoto, 2002) as the base lexicon. Figure 3 shows the distribution of the hit numbers. The x-axis is the number of hits in the search engine. The y-axis is the number of words which get the number of hits. The curve on the graph is distorted at 100 at which round-off begins. Figure 3: The hits of the words in IPADIC</p>
                <p>We reduce the size of lexicon according to the number of hits. The rate of known words in a corpus is also reduced along the size of lexicon. Figure 4 shows the rate of known words in RWCP text corpus (Real World Computing Partnership, 1998). The xaxis is the threshold of the hit number. When the hit number of a word is less than the threshold, we regard the word as an unknown word. The left y-axis is the number of known words in the corpus. The right y-axis is the rate of known words in the corpus. Note, when the hit number of a word is 0, we do not remove the word from the corpus, because the word may be a stop word of the web search engine.</p>
                <p>When we reject the words less than 1,000 hits from the lexicon, the lexicon size becomes 1/3 and Figure 4: The rate of the known words the OOV rate is 1%. When we reject the words less than 10,000 hits from the lexicon, the lexicon size becomes 1/6 and the OOV rate is 3.5%. We use these two data set, namely the lexicons and the definition of out-of-vocabulary words, for evaluation in section 3.1 and 3.2. References Masayuki Asahara and Yuji Matsumoto. 2002.</p>
                <p>IPADIC User Manual. Nara Institute of Science</p>
                <p>and Technology, Japan. Masayuki Asahara and Yuji Matsumoto. 2003.</p>
                <p>Japanese Named Entity Extraction with Redun-</p>
                <p>dant Morphological Analysis. In Proc. of HLT-</p>
                <p>NAACL 2003 , pages 8–15. Thorsten Brants. 2000. TnT – A Statistical Part-of-</p>
                <p>Speech Tagger In Proc. of ANLP-2000 , Keh-Jiann Chen and Wei-Yun Ma. 2002. Un-</p>
                <p>known Word Extraction for Chinese Documents.</p>
                <p>In Proc. of COLING-2002 , pages 169–175. Chooi-Ling Goh, Masayuki Asahara and Yuji Mat-</p>
                <p>sumoto. 2003. Chinese Unknown Word Identifi-</p>
                <p>cation Using Position Tagging and Chunking. In</p>
                <p>Proc. of ACL-2003 Interactive Poster/Demo Ses-</p>
                <p>sions, Companion volume , pages 197–200. Masanori Ikeya and Hiroyuki Shinnou. 2000. Ex-</p>
                <p>traction of Unknown Words by the Probability</p>
                <p>to Accept the Kanji Character Sequence as One</p>
                <p>Word (in Japanese). In IPSJ SIG Notes NL-135 ,</p>
                <p>pages 49–54. Taku Kudo and Yuji Matsumoto. 2001. Chunk-</p>
                <p>ing with Support Vector Machines. In Proc. of</p>
                <p>NAACL 2001 , pages 192–199. Sadao Kurohashi and Makoto Nagao. 1997. Build-</p>
                <p>ing a Japanese Parsed Corpus while Improv-</p>
                <p>ing the Parsing System. In Proc. of NLPRS-97,</p>
                <p>pages 451–456. Sadao Kurohashi and Makoto Nagao. 1999.</p>
                <p>Japanese Morphological Analysis System JU-</p>
                <p>MAN Version 3.61. Department of Informatics,</p>
                <p>Kyoto University, Japan. Kikuo Maekawa, Hanae Koiso, Sasaoki Furui and</p>
                <p>Hiroshi Isahara. 2000. Spontaneous Speech Cor-</p>
                <p>pus of Japanese. In Proc. of LREC-2000, pages</p>
                <p>947–952. Shinsuke Mori and Makoto Nagao. 1996. Word</p>
                <p>Extraction from Corpora and Its Part-of-Speech</p>
                <p>Estimation Using Distributional Analysis. In</p>
                <p>Proc. of COLING-96, pages 1119–1122. Masaaki Nagata. 1999. A Part of Speech Estima-</p>
                <p>tion Method for Japanese Unknown Words using</p>
                <p>a Statistical Model of Morphology and Context.</p>
                <p>In Proc. of ACL-99, pages 277–284. Tetsuji Nakagawa, Taku Kudoh and Yuji Mat-</p>
                <p>sumoto. 2001 Unknown Word Guessing and</p>
                <p>Part-of-Speech Tagging Using Support Vector</p>
                <p>Machines. In Proc. of NLPRS-2001, pages 325–</p>
                <p>331. Lance Ramshaw and Mitchell Marcus. 1995. Text</p>
                <p>Chunking using Transformation-based Learning.</p>
                <p>In Proc. of the 3rd Workshop on Very Large Cor-</p>
                <p>pora, pages 83–94. Real World Computing Partnership. 1998. RWC</p>
                <p>Text Database . Kiyotaka Uchimoto, Satoshi Sekine and Hitoshi Isa-</p>
                <p>hara. 2001. The Unknown Word Problem: a</p>
                <p>Morphological Analysis of Japanese Using Max-</p>
                <p>imum Entropy Aided by a Dictionary. In Proc. of</p>
                <p>EMNLP-2001, pages 91–99. Kiyotaka Uchimoto, Chikashi Nobata, Atsushi</p>
                <p>Yamada, Satoshi Sekine and Hiroshi Isahara.</p>
                <p>2002. Morphological Analysis of the Sponta-</p>
                <p>neous Speech Corpus. In Proc. of COLING-</p>
                <p>2002, pages 1298–1302. Kiyotaka Uchimoto, Chikashi Nobata, Atsushi Ya-</p>
                <p>mada, Satoshi Sekine and Hiroshi Isahara. 2003.</p>
                <p>Morphological Analysis of a Large Spontaneous</p>
                <p>Speech Corpus in Japanese. In Proc. of ACL-</p>
                <p>2003, pages 479–488. Vladimir Naumovich Vapnik. 1998. Statistical</p>
                <p>Learning Theory. A Wiley-Interscience Publica-</p>
                <p>tion. Kevin Zhang, Qun Liu, Hao Zhang and Xue-Qi</p>
                <p>Cheng. 2002. Automatic Recognition of Chi-</p>
                <p>nese Unknown Words Based on Roles Tagging.</p>
                <p>In Proc. of 1st SIGHAN Workshop on Chinese</p>
                <p>Language Processing, pages 71–77.</p>
            </div1>
            <note n="8" place="below">http://www.goo.ne.jp/</note>
        </body>
        <back/>
    </text>
</TEI>
