| { |
| "paper_id": "P07-1012", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T08:50:46.104980Z" |
| }, |
| "title": "Vocabulary Decomposition for Estonian Open Vocabulary Speech Recognition", |
| "authors": [ |
| { |
| "first": "Antti", |
| "middle": [], |
| "last": "Puurula", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Helsinki University of Technology", |
| "location": { |
| "postBox": "P.O.Box 5400", |
| "postCode": "FIN-02015", |
| "settlement": "HUT", |
| "country": "Finland" |
| } |
| }, |
| "email": "puurula@cis.hut.fi" |
| }, |
| { |
| "first": "Mikko", |
| "middle": [], |
| "last": "Kurimo", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "Helsinki University of Technology", |
| "location": { |
| "postBox": "P.O.Box 5400", |
| "postCode": "FIN-02015", |
| "settlement": "HUT", |
| "country": "Finland" |
| } |
| }, |
| "email": "mikkok@cis.hut.fi" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "Speech recognition in many morphologically rich languages suffers from a very high out-of-vocabulary (OOV) ratio. Earlier work has shown that vocabulary decomposition methods can practically solve this problem for a subset of these languages. This paper compares various vocabulary decomposition approaches to open vocabulary speech recognition, using Estonian speech recognition as a benchmark. Comparisons are performed utilizing large models of 60000 lexical items and smaller vocabularies of 5000 items. A large vocabulary model based on a manually constructed morphological tagger is shown to give the lowest word error rate, while the unsupervised morphology discovery method Morfessor Baseline gives marginally weaker results. Only the Morfessor-based approach is shown to adequately scale to smaller vocabulary sizes.", |
| "pdf_parse": { |
| "paper_id": "P07-1012", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "Speech recognition in many morphologically rich languages suffers from a very high out-of-vocabulary (OOV) ratio. Earlier work has shown that vocabulary decomposition methods can practically solve this problem for a subset of these languages. This paper compares various vocabulary decomposition approaches to open vocabulary speech recognition, using Estonian speech recognition as a benchmark. Comparisons are performed utilizing large models of 60000 lexical items and smaller vocabularies of 5000 items. A large vocabulary model based on a manually constructed morphological tagger is shown to give the lowest word error rate, while the unsupervised morphology discovery method Morfessor Baseline gives marginally weaker results. Only the Morfessor-based approach is shown to adequately scale to smaller vocabulary sizes.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Open vocabulary speech recognition refers to automatic speech recognition (ASR) of continuous speech, or \"speech-to-text\" of spoken language, where the recognizer is expected to recognize any word spoken in that language. This capability is a recent development in ASR, and is required or beneficial in many of the current applications of ASR technology. Moreover, large vocabulary speech recogni-tion is not possible in most languages of the world without first developing the tools needed for open vocabulary speech recognition. This is due to a fundamental obstacle in current ASR called the out-ofvocabulary (OOV) problem.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OOV problem", |
| "sec_num": "1.1" |
| }, |
| { |
| "text": "The OOV problem refers to the existence of words encountered that a speech recognizer is unable to recognize, as they are not covered in the vocabulary. The OOV problem is caused by three intertwined issues. Firstly, the language model training data and the test data always come from different samplings of the language, and the mismatch between test and training data introduces some OOV words, the amount depending on the difference between the data sets. Secondly, ASR systems always use finite and preferably small sized vocabularies, since the speed of decoding rapidly slows down as the vocabulary size is increased. Vocabulary sizes depend on the application domain, sizes larger than 60000 being very rare. As some of the words encountered in the training data are left out of the vocabulary, there will be OOV words during recognition. The third and final issue is the fundamental one; languages form novel sentences not only by combining words, but also by combining sub-word items called morphs to make up the words themselves. These morphs in turn correspond to abstract grammatical items called morphemes, and morphs of the same morpheme are called allomorphs of that morpheme. The study of these facets of language is aptly called morphology, and has been largely neglected in modern ASR technology. This is due to ASR having been developed primarily for English, where the OOV problem is not as severe as in other languages of the world.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "OOV problem", |
| "sec_num": "1.1" |
| }, |
| { |
| "text": "Morphologies in natural languages are characterized typologically using two parameters, called indexes of synthesis and fusion. Index of synthesis has been loosely defined as the ratio of morphs per word forms in the language (Comrie, 1989) , while index of fusion refers to the ratio of morphs per morpheme. High frequency of verb paradigms such as \"hear, hear + d, hear + d\" would result in a high synthesis, low fusion language, whereas high frequency of paradigms such as \"sing, sang, sung\" would result in almost the opposite. Counting distinct item types and not instances of the types, the first example would have 2 word forms, 2 morphs and 2 morphemes, the second 3 word forms, 3 morphs and 1 morpheme. Although in the first example, there are 3 word instances of the 2 word forms, the latter word form being an ambiguous one referring to two distinct grammatical constructions. It should also be noted that the first morph of the first example has 2 pronunciations. Pronunciational boundaries do not always follow morphological ones, and a morph may and will have several pronunciations that depend on context, if the language in question has significant orthographic irregularity.", |
| "cite_spans": [ |
| { |
| "start": 226, |
| "end": 240, |
| "text": "(Comrie, 1989)", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Relevance of morphology for ASR", |
| "sec_num": "1.2" |
| }, |
| { |
| "text": "As can be seen, both types of morphological complexity increase the amount of distinct word forms, resulting in an increase in the OOV rate of any finite sized vocabulary for that language. In practice, the OOV increase caused by synthesis is much larger, as languages can have thousands of different word forms per word that are caused by addition of processes of word formation followed by inflections. Thus the OOV problem in ASR has been most pronounced in languages with much synthesis, regardless of the amount of fusion. The morphemebased modeling approaches evaluated in this work are primarily intended for fixing the problem caused by synthesis, and should work less well or even adversely when attempted with low synthesis, high fusion languages. It should be noted that models based on finite state transducers have been shown to be adequate for describing fusion as well (Koskenniemi, 1983) , and further work should evaluate these types of models in ASR of languages with higher indexes of fusion.", |
| "cite_spans": [ |
| { |
| "start": 884, |
| "end": 903, |
| "text": "(Koskenniemi, 1983)", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Relevance of morphology for ASR", |
| "sec_num": "1.2" |
| }, |
| { |
| "text": "The traditional method for reducing OOV would be to simply increase the vocabulary size so that the rate of OOV words becomes sufficiently low. Naturally this method fails when the words are derived, compounded or inflected forms of rarer words. While this approach might still be practical in languages with a low index of synthesis such as English, it fails with most languages in the world. For example, in English with language models (LM) of 60k words trained from the Gigaword Corpus V.2 , and testing on a very similar Voice of America -portion of TDT4 speech corpora , this gives a OOV rate of 1.5%. It should be noted that every OOV causes roughly two errors in recognition, and vocabulary decomposition approaches such as the ones evaluated here give some benefits to word error rate (WER) even in recognizing languages such as English (Bisani and Ney, 2005) .", |
| "cite_spans": [ |
| { |
| "start": 846, |
| "end": 868, |
| "text": "(Bisani and Ney, 2005)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Approaches for solving the OOV problem", |
| "sec_num": "1.3" |
| }, |
| { |
| "text": "Four different approaches to lexical unit selection are evaluated in this work, all of which have been presented previously. These are hence called \"word\", \"hybrid\", \"morph\" and \"grammar\". The word approach is the default approach to lexical item selection, and is provided here as a baseline for the alternative approaches. The alternatives tested here are all based on decomposing the in-vocabulary words, OOV words, or both, in LM training data into sequences of sub-word fragments. During recognition the decoder can then construct the OOV words encountered as combinations of these fragments. Word boundaries are marked in LMs with tokens so that the words can be reconstructed from the subword fragments after decoding simply by removing spaces between fragments, and changing the word boundaries tokens to spaces. As splitting to subword items makes the span of LM histories shorter, higher order n-grams must be used to correct this. Varigrams (Siivola and Pellom, 2005) are used in this work, and to make LMs trained with each approach comparable, the varigrams have been grown to roughly sizes of 5 million counts. It should be noted that the names for the approaches here are somewhat arbitrary, as from a theoretical perspec-tive both morph-and grammar-based approaches try to model the grammatical morph set of a language, difference being that \"morph\" does this with an unsupervised data-driven machine learning algorithm, whereas \"grammar\" does this using segmentations from a manually constructed rule-based morphological tagger.", |
| "cite_spans": [ |
| { |
| "start": 952, |
| "end": 978, |
| "text": "(Siivola and Pellom, 2005)", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Approaches for solving the OOV problem", |
| "sec_num": "1.3" |
| }, |
| { |
| "text": "The first approach evaluated in this work is the traditional word based LM, where items are simply the most frequent words in the language model training data. OOV words are simply treated as unknown words in language model training. This has been the default approach to selection of lexical items in speech recognition for several decades, and as it has been sufficient in English ASR, there has been limited interest in any alternatives.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Modeling approaches 2.1 Word approach", |
| "sec_num": "2" |
| }, |
| { |
| "text": "The second approach is a recent refinement of the traditional word-based approach. This is similar to what was introduced as \"flat hybrid model\" (Bisani and Ney, 2005) , and it tries to model OOV-words as sequences of words and fragments. \"Hybrid\" refers to the LM histories being composed of hybrids of words and fragments, while \"flat\" refers to the model being composed of one n-gram model instead of several models for the different item types. The models tested in this work differ in that since Estonian has a very regular phonemic orthography, grapheme sequences can be directly used instead of more complex pronunciation modeling. Subsequently the fragments used are just one grapheme in length.", |
| "cite_spans": [ |
| { |
| "start": 145, |
| "end": 167, |
| "text": "(Bisani and Ney, 2005)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Hybrid approach", |
| "sec_num": "2.2" |
| }, |
| { |
| "text": "The morph-based approach has shown superior results to word-based models in languages of high synthesis and low fusion, including Estonian. This approach, called \"Morfessor Baseline\" is described in detail in (Creutz et al., 2007) . An unsupervised machine learning algorithm is used to discover the morph set of the language in question, using minimum description length (MDL) as an optimization criterion. The algorithm is given a word list of the language, usually pruned to about 100 000 words, that it proceeds to recursively split to smaller items, using gains in MDL to optimize the item set. The resulting set of morphs models the morph set well in languages of high synthesis, but as it does not take fusion into account any manner, it should not work in languages of high fusion. It neither preserves information about pronunciations, and as these do not follow morph boundaries, the approach is unsuitable in its basic form to languages of high orthographic irregularity.", |
| "cite_spans": [ |
| { |
| "start": 209, |
| "end": 230, |
| "text": "(Creutz et al., 2007)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Morph approach", |
| "sec_num": "2.3" |
| }, |
| { |
| "text": "The final approach applies a manually constructed rule-based morphological tagger (Alum\u00e4e, 2006) . This approach is expected to give the best results, as the tagger should give the ideal segmentation along the grammatical morphs that the unsupervised and language-independent morph approach tries to find. To make this approach more comparable to the morph models, OOV morphs are modeled as sequences of graphemes similar to the hybrid approach. Small changes to the original approach were also made to make the model comparable to the other models presented here, such as using the tagger segmentations as such and not using pseudomorphemes, as well as not tagging the items in any manner. This approach suffers from the same handicaps as the morph approach, as well as from some additional ones: morphological analyzers are not readily available for most languages, they must be tailored by linguists for new datasets, and it is an open problem as to how pronunciation dictionaries should be written for grammatical morphs in languages with significant orthographic irregularity.", |
| "cite_spans": [ |
| { |
| "start": 82, |
| "end": 96, |
| "text": "(Alum\u00e4e, 2006)", |
| "ref_id": "BIBREF2" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Grammar approach", |
| "sec_num": "2.4" |
| }, |
| { |
| "text": "For training the LMs, a subset of 43 million words from the Estonian Segakorpus was used (Segakorpus, 2005) , preprocessed with a morphological analyzer (Alum\u00e4e, 2006) . After selecting the item types, segmenting the training corpora and generation of a pronunciation dictionary, LMs were trained for each lexical item type. Table 1 shows the text format for LM training data after segmentation with each model. As can be seen, the wordbased approach doesn't use word boundary tokens. (Siivola and Pellom, 2005) were used with no limits as to the order of n-grams, but limiting the number of counts to 4.8 and 5 million counts. In some models this growing method resulted in the inclusion of very frequent long item sequences to the varigram, up to a 28gram. Models of both 5000 and 60000 lexical items were trained in order to test if and how the modeling approaches would scale to smaller and therefore much faster vocabularies. Distribution of counts in n-gram orders can be seen in figure 1. The performance of the statistical language models is often evaluated by perplexity or cross-entropy. However, we decided to only report the real ASR performance, because perplexity does not suit well to the comparison of models that use different lexica, have different OOV rates and have lexical units of different lengths.", |
| "cite_spans": [ |
| { |
| "start": 89, |
| "end": 107, |
| "text": "(Segakorpus, 2005)", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 153, |
| "end": 167, |
| "text": "(Alum\u00e4e, 2006)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 485, |
| "end": 511, |
| "text": "(Siivola and Pellom, 2005)", |
| "ref_id": "BIBREF5" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 325, |
| "end": 332, |
| "text": "Table 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Text segmentation and language modeling", |
| "sec_num": "2.5" |
| }, |
| { |
| "text": "Acoustic models for Estonian ASR were trained on the Estonian Speechdat-like corpus (Meister et al., 2002) . This consists of spoken newspaper sentences and shorter utterances, read over a telephone by 1332 different speakers. The data therefore was quite clearly articulated, but suffered from 8kHz sample rate, different microphones, channel noises and occasional background noises. On top of this the speakers were selected to give a very broad coverage of different dialectal varieties of Estonian and were of different age groups. For these reasons, in spite of consisting of relatively common word forms from newspaper sentences, the database can be considered challenging for ASR.", |
| "cite_spans": [ |
| { |
| "start": 84, |
| "end": 106, |
| "text": "(Meister et al., 2002)", |
| "ref_id": "BIBREF9" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation set", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Held-out sentences were from the same corpus used as development and evaluation set. 8 different sentences from 50 speakers each were used for evaluation, while sentences from 15 speakers were used for development. LM scaling factor was optimized for each model separately on the development set. On total over 200 hours of data from the database was used for acoustic model training, of which less than half was speech.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation set", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "The acoustic models were Hidden Markov Models (HMM) with Gaussian Mixture Models (GMM) for state modeling based on 39-dimensional MFCC+P+D+DD features, with windowed cepstral mean subtraction (CMS) of 1.25 second window. Maximum likelihood linear transformation (MLLT) was used during training. State-tied cross-word triphones and 3 left-to-right states were used, state durations were modeled using gamma distributions. On total 3103 tied states and 16 Gaussians per state were used.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Decoding", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "Decoding was done with the decoder developed at TKK (Pylkk\u00f6nen, 2005) , which is based on a onepass Viterbi beam search with token passing on a lexical prefix tree. The lexical prefix tree included a cross-word network for modeling triphone contexts, and the nodes in the prefix tree were tied at the triphone state level. Bigram look-ahead models were used in speeding up decoding, in addition to pruning with global beam, history, histogram and word end pruning. Due to the properties of the decoder and varigram models, very high order n-grams could be used without significant degradation in decoding speed.", |
| "cite_spans": [ |
| { |
| "start": 52, |
| "end": 69, |
| "text": "(Pylkk\u00f6nen, 2005)", |
| "ref_id": "BIBREF4" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Decoding", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "As the decoder was run with only one pass, adaptation was not used in this work. In preliminary experiments simple adaptation with just constrained maximum likelihood linear regression (CMLLR) was shown to give as much as 20 % relative word error rate reductions (RWERR) with this dataset. Adaptation was not used, since it interacts with the model types, as well as with the WER from the first round of decoding, providing larger RWERR for the better models. With high WER models, adaptation matrices are less accurate, and it is also probable that the decomposition methods yield more accurate matrices, as they produce results where fewer HMMstates are misrecognized. These issues should be investigated in future research.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Decoding", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "After decoding, the results were post-processed by removing words that seemed to be sequences of junk fragments: consonant-only sequences and 1phoneme words. This treatment should give very significant improvements with noisy data, but in preliminary experiments it was noted that the use of sentence boundaries resulted in almost 10% RW-ERR weaker results for the approaches using fragments, as that almost negates the gains achieved from this post-processing. Since sentence boundary forcing is done prior to junk removal, it seems to work erroneously when it is forced to operate on noisy data. Sentence boundaries were nevertheless used, as in the same experiments the word-based models gained significantly from their use, most likely because they cannot use the fragment items for detection of acoustic junk, as the models with fragments can.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Decoding", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "Results of the experiments were consistent with earlier findings . Traditional word based LMs showed the worst performance, with all of the recently proposed alternatives giving better results. Hybrid LMs consistently outperformed traditional word-based LMs in both large and small vocabulary conditions. The two morphology-driven approaches gave similar and clearly superior results. Only the morph approach seems to scale down well to smaller vocabulary sizes, as the WER for the grammar approach increased rapidly as size of the vocabulary was decreased.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Results", |
| "sec_num": "4" |
| }, |
| { |
| "text": "word hybrid morph grammar 60000 53.1 47.1 39.4 38.7 5000 82.0 63.0 43.5 47.6 Table 2 . Word error rates for the models (WER %). Table 2 shows the WER for the large (60000) and small (5000) vocabulary sizes and different modeling approaches. Table 3 shows the corresponding letter error rates (LER). LERs are more comparable across some languages than WERs, as WER depends more on factors such as length, morphological complexity, and OOV of the words. However, for within-language and between-model comparisons, the RWERR should still be a valid metric, and is also usable in languages that do not use a phonemic writing system. The RWERRs of different novel methods seems to be comparable between different languages as well. Both WER and LER are high considering the task. However, standard methods such as adaptation were not used, as the intention was only to study the RWERR of the different approaches. Table 3 . Letter error rates for the models (LER %).", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 77, |
| "end": 84, |
| "text": "Table 2", |
| "ref_id": null |
| }, |
| { |
| "start": 128, |
| "end": 135, |
| "text": "Table 2", |
| "ref_id": null |
| }, |
| { |
| "start": 241, |
| "end": 248, |
| "text": "Table 3", |
| "ref_id": null |
| }, |
| { |
| "start": 909, |
| "end": 916, |
| "text": "Table 3", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "size", |
| "sec_num": null |
| }, |
| { |
| "text": "Four different approaches to lexical item selection for large and open vocabulary ASR in Estonian were evaluated. It was shown that the three approaches utilizing vocabulary decomposition give substantial improvements over the traditional word based approach, and make large vocabulary ASR technology possible for languages similar to Estonian, where the traditional approach fails due to very high OOV rates. These include memetic relatives Finnish and Turkish, among other languages that have morphologies of high fusion, low synthesis and low orthographic irregularity.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Discussion", |
| "sec_num": "5" |
| }, |
| { |
| "text": "The morpheme-based approaches outperformed the word-and hybrid-based approaches clearly. The results for \"hybrid\" are in in the range suggested by earlier work (Bisani and Ney, 2005) . One possible explanation for the discrepancy between the hybrid and morpheme-based approaches would be that the morpheme-based approaches capture items that make sense in n-gram modeling, as morphs are items that the system of language naturally operates on. These items would then be of more use when trying to predict unseen data (Creutz et al., 2007) . As modeling pronunciations is much more straightforward in Estonian, the morpheme-based approaches do not suffer from erroneous pronunciations, resulting in clearly superior performance.", |
| "cite_spans": [ |
| { |
| "start": 160, |
| "end": 182, |
| "text": "(Bisani and Ney, 2005)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 517, |
| "end": 538, |
| "text": "(Creutz et al., 2007)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Performance of the approaches", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "As for the superiority of the \"grammar\" over the unsupervised \"morph\", the difference is marginal in terms of RWERR. The grammatical tagger was tailored by hand for that particular language, whereas Morfessor method is meant to be unsupervised and language independent. There are further arguments that would suggest that the unsupervised approach is one that should be followed; only \"morph\" scaled well to smaller vocabulary sizes, the usual practice of pruning the word list to produce smaller morph sets gives better results than here and most importantly, it is questionable if \"grammar\" can be taken to languages with high indexes of fusion and orthographic irregularity, as the models have to take these into account as well.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Performance of the approaches", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "There are few previous results published on Estonian open vocabulary ASR. In (Alum\u00e4e, 2006) a WER of 44.5% was obtained with word-based trigrams and a WER of 37.2% with items similar to ones from \"grammar\" using the same speech corpus as in this work. Compared to the present work, the WER for the morpheme-based models was measured with compound words split in both hypothesis and reference texts, making the task slightly easier than here. In a WER of 57.6% was achieved with word-based varigrams and a WER of 49.0% with morphs-based ones. This used the same evaluation set as this work, but had slightly different LMs and different acoustic modelling which is the main reason for the higher WER levels. In summary, morpheme-based approaches seem to consistently outperform the traditional word based one in Estonian ASR, regardless of the specifics of the recognition system, test set and models.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Comparison to previous results", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "In a corresponding comparison of unsupervised and grammar-based morphs was presented in Finnish, and the grammar-based model gave a significantly higher WER in one of the tasks. This result is interesting, and may stem from a number of factors, among them the different decoder and acoustic models, 4-grams versus varigrams, as well as differences in post-processing. Most likely the difference is due to lack of coverage for domainspecific words in the Finnish tagger, as it has a 4.2% OOV rate on the training data. On top of this the OOV words are modeled simply as grapheme sequences, instead of modeling only OOV morphs in that manner, as is done in this work.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Comparison to previous results", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "As stated in the introduction, modeling languages with high indexes of fusion such as Arabic will require more complex vocabulary decomposition approaches. This is verified by recent empirical results, where gains obtained from simple morphological decomposition seem to be marginal (Kirchhoff et al., 2006; Creutz et al., 2007) . These languages would possibly need novel LM inference algorithms and decoder architectures. Current research seems to be heading in this direction, with weighted finite state transducers becoming standard representations for the vocabulary instead of the lexical prefix tree. Another issue in vocabulary decomposition is orthographic irregularity, as the items resulting from decomposition do not necessarily have unambiguous pronunciations. As most modern recognizers use the Viterbi approximation with vocabularies of one pronunciation per item, this is problematic. One solution to this is expanding the different items with tags according to pronunciation, shifting the problem to language modeling (Creutz et al., 2007) . For example, English plural \"s\" would expand to \"s#1\" with pronunciation \"/s/\", and \"s#2\" with pronunciation \"/z/\", and so on. In this case the vocabulary size increases by the amount of different pronunciations added. The new items will have pronunciations that depend on their language model context, enabling the prediction of pronunciations with language model probabilities. The only downside to this is complicating the search for optimal vocabulary decomposition, as the items should make sense in both pronunciational and morphological terms.", |
| "cite_spans": [ |
| { |
| "start": 283, |
| "end": 307, |
| "text": "(Kirchhoff et al., 2006;", |
| "ref_id": "BIBREF10" |
| }, |
| { |
| "start": 308, |
| "end": 328, |
| "text": "Creutz et al., 2007)", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 1035, |
| "end": 1056, |
| "text": "(Creutz et al., 2007)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Open problems in vocabulary decomposition", |
| "sec_num": "5.3" |
| }, |
| { |
| "text": "One can consider the originally presented hybrid approach as an approach to vocabulary decomposition that tries to keep the pronunciations of the items as good as possible, whereas the morph approach tries to find items that make sense in terms of morphology. This is obviously due to the methods having been developed on very different types of languages. The morph approach was developed for the needs of Finnish speech recognition, which is a high synthesis, moderate fusion and very low orthographic irregularity language, whereas the hybrid approach in (Bisani and Ney, 2005) was developed for English, which has low synthesis, moderate fusion, and very high orthographic irregularity. A universal approach to vocabulary decomposition would have to take all of these factors into account.", |
| "cite_spans": [ |
| { |
| "start": 558, |
| "end": 580, |
| "text": "(Bisani and Ney, 2005)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Open problems in vocabulary decomposition", |
| "sec_num": "5.3" |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "The authors would like to thank Dr. Tanel Alum\u00e4e from Tallinn University of Technology for help in performing experiments with Estonian speech and text databases. This work was supported by the Academy of Finland in the project: New adaptive and learning methods in speech recognition.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgements", |
| "sec_num": null |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Language Universals and Linguistic Typology, Second Edition", |
| "authors": [ |
| { |
| "first": "", |
| "middle": [], |
| "last": "Bernard Comrie", |
| "suffix": "" |
| } |
| ], |
| "year": 1972, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Bernard Comrie. 1972. Language Universals and Lin- guistic Typology, Second Edition. Athenaeum Press Ltd, Gateshead, UK.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Two-level Morphology: a General Computational Model for Word-Form Recognition and Production", |
| "authors": [ |
| { |
| "first": "Kimmo", |
| "middle": [], |
| "last": "Koskenniemi", |
| "suffix": "" |
| } |
| ], |
| "year": 1983, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Kimmo Koskenniemi. 1983. Two-level Morphol- ogy: a General Computational Model for Word-Form Recognition and Production. University of Helsinki, Helsinki, Finland.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Methods for Estonian Large Vocabulary Speech Recognition", |
| "authors": [ |
| { |
| "first": "", |
| "middle": [], |
| "last": "Tanel Alum\u00e4e", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Tanel Alum\u00e4e. 2006. Methods for Estonian Large Vo- cabulary Speech Recognition. PhD Thesis. Tallinn University of Technology. Tallinn, Estonia.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Open Vocabulary Speech Recognition with Flat Hybrid Models. INTERSPEECH-2005", |
| "authors": [ |
| { |
| "first": "Maximilian", |
| "middle": [], |
| "last": "Bisani", |
| "suffix": "" |
| }, |
| { |
| "first": "Hermann", |
| "middle": [], |
| "last": "Ney", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "725--728", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Maximilian Bisani, Hermann Ney. 2005. Open Vocab- ulary Speech Recognition with Flat Hybrid Models. INTERSPEECH-2005, 725-728.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "An Efficient One-pass Decoder for Finnish Large Vocabulary Continuous Speech Recognition", |
| "authors": [ |
| { |
| "first": "Janne", |
| "middle": [], |
| "last": "Pylkk\u00f6nen", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of The 2nd Baltic Conference on Human Language Technologies", |
| "volume": "", |
| "issue": "", |
| "pages": "167--172", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Janne Pylkk\u00f6nen. 2005. An Efficient One-pass Decoder for Finnish Large Vocabulary Continuous Speech Recognition. Proceedings of The 2nd Baltic Con- ference on Human Language Technologies, 167-172. HLT'2005. Tallinn, Estonia.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Growing an n-Gram Language Model", |
| "authors": [ |
| { |
| "first": "Vesa", |
| "middle": [], |
| "last": "Siivola", |
| "suffix": "" |
| }, |
| { |
| "first": "Bryan", |
| "middle": [ |
| "L" |
| ], |
| "last": "Pellom", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "INTERSPEECH-2005", |
| "volume": "", |
| "issue": "", |
| "pages": "1309--1312", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Vesa Siivola, Bryan L. Pellom. 2005. Growing an n- Gram Language Model. INTERSPEECH-2005, 1309- 1312.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "LDC Gigaword Corpora: English Gigaword Second Edition", |
| "authors": [ |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Graff", |
| "suffix": "" |
| }, |
| { |
| "first": "Junbo", |
| "middle": [], |
| "last": "Kong", |
| "suffix": "" |
| }, |
| { |
| "first": "Ke", |
| "middle": [], |
| "last": "Chen", |
| "suffix": "" |
| }, |
| { |
| "first": "Kazuaki", |
| "middle": [], |
| "last": "Maeda", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "LDC link", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "David Graff, Junbo Kong, Ke Chen and Kazuaki Maeda. 2005. LDC Gigaword Corpora: En- glish Gigaword Second Edition. In LDC link: http://www.ldc.upenn.edu/Catalog/index.jsp.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "TDT4 Multilingual Broadcast News Speech Corpus", |
| "authors": [ |
| { |
| "first": "Junbo", |
| "middle": [], |
| "last": "Kong", |
| "suffix": "" |
| }, |
| { |
| "first": "David", |
| "middle": [], |
| "last": "Graff", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "LDC link", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Junbo Kong and David Graff. 2005. TDT4 Multilin- gual Broadcast News Speech Corpus. In LDC link: http://www.ldc.upenn.edu/Catalog/index.jsp.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Segakorpus -Mixed Corpus of Estonian", |
| "authors": [ |
| { |
| "first": "", |
| "middle": [], |
| "last": "Segakorpus", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Segakorpus. 2005. Segakorpus -Mixed Corpus of Esto- nian. Tartu University. http://test.cl.ut.ee/korpused/.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Estonian SpeechDat: a project in progress", |
| "authors": [ |
| { |
| "first": "Einar", |
| "middle": [], |
| "last": "Meister", |
| "suffix": "" |
| }, |
| { |
| "first": "J\u00fcrgen", |
| "middle": [], |
| "last": "Lasn", |
| "suffix": "" |
| }, |
| { |
| "first": "Lya", |
| "middle": [], |
| "last": "Meister", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of the Fonetiikan P\u00e4iv\u00e4t -Phonetics Symposium", |
| "volume": "", |
| "issue": "", |
| "pages": "21--26", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Einar Meister, J\u00fcrgen Lasn and Lya Meister 2002. Esto- nian SpeechDat: a project in progress. In Proceedings of the Fonetiikan P\u00e4iv\u00e4t -Phonetics Symposium 2002 in Finland, 21-26.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "Morphologybased language modeling for conversational Arabic speech recognition", |
| "authors": [ |
| { |
| "first": "Katrin", |
| "middle": [], |
| "last": "Kirchhoff", |
| "suffix": "" |
| }, |
| { |
| "first": "Dimitra", |
| "middle": [], |
| "last": "Vergyri", |
| "suffix": "" |
| }, |
| { |
| "first": "Jeff", |
| "middle": [], |
| "last": "Bilmes", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Computer Speech & Language", |
| "volume": "20", |
| "issue": "4", |
| "pages": "589--608", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Katrin Kirchhoff, Dimitra Vergyri, Jeff Bilmes, Kevin Duh and Andreas Stolcke 2006. Morphology- based language modeling for conversational Arabic speech recognition. Computer Speech & Language 20(4):589-608.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Analysis of Morph-Based Speech Recognition and the Modeling of Out-of-Vocabulary Words Across Languages To appear in Proceedings of Human Language Technologies: The Annual Conference of the North American Chapter of the Association for Computational Linguistics", |
| "authors": [ |
| { |
| "first": "Mathias", |
| "middle": [], |
| "last": "Creutz", |
| "suffix": "" |
| }, |
| { |
| "first": "Teemu", |
| "middle": [], |
| "last": "Hirsim\u00e4ki", |
| "suffix": "" |
| }, |
| { |
| "first": "Mikko", |
| "middle": [], |
| "last": "Kurimo", |
| "suffix": "" |
| }, |
| { |
| "first": "Antti", |
| "middle": [], |
| "last": "Puurula", |
| "suffix": "" |
| }, |
| { |
| "first": "Janne", |
| "middle": [], |
| "last": "Pylkk\u00f6nen", |
| "suffix": "" |
| }, |
| { |
| "first": "Vesa", |
| "middle": [], |
| "last": "Siivola", |
| "suffix": "" |
| }, |
| { |
| "first": "Matti", |
| "middle": [], |
| "last": "Varjokallio", |
| "suffix": "" |
| }, |
| { |
| "first": "Ebru", |
| "middle": [], |
| "last": "Arisoy", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Mathias Creutz, Teemu Hirsim\u00e4ki, Mikko Kurimo, Antti Puurula, Janne Pylkk\u00f6nen, Vesa Siivola, Matti Var- jokallio, Ebru Arisoy, Murat Saraclar and Andreas Stolcke 2007. Analysis of Morph-Based Speech Recognition and the Modeling of Out-of-Vocabulary Words Across Languages To appear in Proceedings of Human Language Technologies: The Annual Con- ference of the North American Chapter of the Asso- ciation for Computational Linguistics. NAACL-HLT 2007, Rochester, NY, USA", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "Unlimited vocabulary speech recognition for agglutinative languages", |
| "authors": [ |
| { |
| "first": "Mikko", |
| "middle": [], |
| "last": "Kurimo", |
| "suffix": "" |
| }, |
| { |
| "first": "Antti", |
| "middle": [], |
| "last": "Puurula", |
| "suffix": "" |
| }, |
| { |
| "first": "Ebru", |
| "middle": [], |
| "last": "Arisoy", |
| "suffix": "" |
| }, |
| { |
| "first": "Vesa", |
| "middle": [], |
| "last": "Siivola", |
| "suffix": "" |
| }, |
| { |
| "first": "Teemu", |
| "middle": [], |
| "last": "Hirsim\u00e4ki", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Human Language Technology, Conference of the North American Chapter of the Association for Computational Linguistics. HLT-NAACL", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Mikko Kurimo, Antti Puurula, Ebru Arisoy, Vesa Siivola, Teemu Hirsim\u00e4ki, Janne Pylkk\u00f6nen, Tanel Alumae and Murat Saraclar 2006. Unlimited vocabulary speech recognition for agglutinative languages. In Hu- man Language Technology, Conference of the North American Chapter of the Association for Computa- tional Linguistics. HLT-NAACL 2006. New York, USA", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Unlimited vocabulary speech recognition with morph language models applied to Finnish", |
| "authors": [ |
| { |
| "first": "Teemu", |
| "middle": [], |
| "last": "Hirsim\u00e4ki", |
| "suffix": "" |
| }, |
| { |
| "first": "Mathias", |
| "middle": [], |
| "last": "Creutz", |
| "suffix": "" |
| }, |
| { |
| "first": "Vesa", |
| "middle": [], |
| "last": "Siivola", |
| "suffix": "" |
| }, |
| { |
| "first": "Mikko", |
| "middle": [], |
| "last": "Kurimo", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Computer Speech & Language", |
| "volume": "20", |
| "issue": "4", |
| "pages": "515--541", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Teemu Hirsim\u00e4ki, Mathias Creutz, Vesa Siivola, Mikko Kurimo, Sami Virpioja and Janne Pylkk\u00f6nen 2006. Unlimited vocabulary speech recognition with morph language models applied to Finnish. Computer Speech & Language 20(4):515-541.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "type_str": "figure", |
| "uris": null, |
| "text": "Number of counts included for each ngram order in the 60k varigram models.", |
| "num": null |
| }, |
| "TABREF0": { |
| "content": "<table><tr><td>model</td><td>text segmentation</td></tr><tr><td>word 5k</td><td>voodis reeglina loeme</td></tr><tr><td>word 60k</td><td>voodis reeglina loeme</td></tr><tr><td>hybrid 5k</td><td>v o o d i s <w> reeglina <w> l o e m e</td></tr><tr><td>hybrid 60k</td><td>voodis <w> reeglina <w> loeme</td></tr><tr><td>morph 5k</td><td>voodi s <w> re e g lina <w> loe me</td></tr><tr><td>morph 60k</td><td>voodi s <w> reegli na <w> loe me</td></tr><tr><td>grammar 5k</td><td>voodi s <w> reegli na <w> loe me</td></tr><tr><td>grammar 60k</td><td>voodi s <w> reegli na <w> loe me</td></tr><tr><td colspan=\"2\">Table 1. Sample segmented texts for each model.</td></tr></table>", |
| "type_str": "table", |
| "num": null, |
| "html": null, |
| "text": "To keep the LMs comparable between each model-91" |
| } |
| } |
| } |
| } |