Speculative Decoding Across Languages

Alexis Palmer
University of Colorado
*Equal contribution


Abstract

Speculative decoding [1], [2] has become a crucial component of large language model (LLM) inference, enabling faster generation by drafting multiple tokens and verifying them in parallel. However, small draft models tend to suffer from disproportionately poor multilingual capabilities [3]. Thus, when generating text in a non-English language, speculative decoding is far less effective [4], [5].

We compare three strategies to improve speculative decoding efficiency for eleven languages: finetuning the draft model on task-specific data (translation); finetuning the draft model on unlabeled monolingual corpora; and training simple n-gram draft models on the same monolingual corpora. We evaluate efficiency on translation (from English into the target language) and the held-out task of story generation. We find that while task-specific distillation can significantly improve efficiency, distilled models generalize poorly to a new task. Meanwhile, n-gram draft models, despite lower acceptance rates, consistently provide large speed-ups due to much faster draft generation.

1 Introduction↩︎

Autoregressive decoding from LLMs requires \(K\) serial forward passes (each reloading the model weights into memory) to generate a sequence of \(K\) tokens. Speculative decoding is a popular technique to accelerate inference by drafting a sequence of tokens with a lightweight draft model and verifying the drafted tokens in parallel [1], [2], which can drastically reduce the total number of forward passes with the target model (also known as the verifier).

Figure 1: Overall structure of experiments. We test four different approaches to creating draft models, which generate tokens that are then verified by the larger model. We test on two tasks: translation and story generation.

However, the effectiveness of speculative decoding depends on the similarity between the verifier model and draft model’s next-token probability distributions, often measured via the acceptance rate: how often a drafted token is accepted by the verifier model. A poor acceptance rate results in a minimal speed-up, or even worse generation speed if the cost of drafting tokens outweighs the benefit.

This raises a concern for languages other than English. It is well known that model capacity is correlated with multilingual capabilities [3], [6], suggesting that smaller draft models may differ significantly from the verifier model when generating text in a less common language. [4], [5] provide empirical support for this claim, observing significantly worse acceptance rates for non-English languages. The issue is exacerbated by tokenization biases, where less common languages can require far more tokens on average [7]. As a result, non-English users of LLMs may suffer far slower generation speed, as yet another instance of disparities in language technologies [8].

We test a standard speculative decoding setup with multilingual verifier and draft models (Qwen 3.5) on translation from English into eleven different languages, observing poor acceptance rates. We compare three different approaches for training draft models for specific languages: (1) task-specific distillation, (2) distillation on general domain monolingual corpora, and (3) n-gram modeling. We test whether these approaches generalize to a new domain—story generation—without specifically training for that domain. We find resounding evidence in favor of n-gram models, which achieve large speed-ups due to inexpensive forward passes. Meanwhile, distillation is effective in-domain, but generalizes to new tasks poorly. We will release our code on GitHub (anonymized).

2 Background and Related Work↩︎

[1], [2], [9] proposed speculative decoding as a technique for accelerating generation. Specifically, the draft model autoregressively generates \(\gamma\) new tokens with conditional probabilities \(p(x_1) \dots p(x_\gamma)\), and the verifier model runs a single forward pass over the full drafted sequence, assigning distinct probabilities \(q(x_1) \dots q(x_\gamma)\). For each token \(i\), if \(p_i\leq q_i\), the token is accepted. If \(p_i > q_i\), we randomly choose between: a) accepting the token with probability \(\frac{q_i}{p_i}\); or b) rejecting the token and all subsequent draft tokens and then sampling a new token from the adjusted distribution \(p'=q(x)-p(x)\). This results in a sampling distribution equivalent to the verifier model’s distribution.

To improve the probability of accepting a draft token, a popular technique is performing knowledge distillation from the verifier model to the draft model [10], where the draft model is finetuned to minimize its KL divergence with the teacher’s distribution. [4] applies this technique to a multilingual setting, distilling models for translation from another language into English, but they do not study the more difficult case of generating text in the target language.1

Our work is most similar to [5], which observes acceptance rate disparities across tasks and languages. They propose methods to mitigate these issues by balancing the training dataset or scaling per-task gradients during distillation. However, their approach requires a representative dataset for each of the desired tasks, which is infeasible to acquire for many languages. Instead, we focus on testing whether methods can generalize to new tasks without task-specific training data.

3 Methodology↩︎

We evaluate on two tasks: machine translation (MT) and open-ended story generation. MT serves as our in-domain task, as we perform distillation (see §3.3) on task-specific translation examples. Story generation serves as an out-of-domain task (where the draft model is not trained on story generation data) in order to measure the robustness of our methods to different types of tasks.

3.1 Datasets↩︎

For machine translation, we use parallel data from a variety of sources—limited to 5,200 examples per language—with dataset counts described in 1 and sources in 8. Our main evaluation for speculative decoding efficiency uses the test split only, and the train split is reserved for distillation. We also collect monolingual, unlabeled data for distillation and training, also in 1. We use datasets for eleven different languages, covering a range of resourcedness, typological properties, and geographic regions.

Table 1: Per language, number of tokens of monolingual text and number of parallel sentences. Sources are described in 4 and 5.
Language Mono (trn/tst) Parallel (trn/tst)
Amharic [amh] 1.3M / 321.0k 4800 / 400
Berber [ber] 306.3k / 76.9k 4800 / 400
Cherokee [chr] 1.3M / 315.8k 4800 / 400
Guarani [grn] 319.3k / 79.2k 788 / 198
Hawaiian [haw] 82.1k / 20.5k 96 / 25
Igbo [ibo] 677.5k / 164.0k 1398 / 350
Nepali [npi] 13.0M / 3.2M 3133 / 400
Occitan [oci] 46.0k / 11.5k 3631 / 400
Quechua [que] 510.2k / 131.8k 4800 / 400
Yoruba [yor] 1.0M / 256.9k 4800 / 400
Tamazight [zgh] 4.8M / 336.6k 4800 / 400

For story generation, we create topics by pairing nouns from [11] and adjectives from the Brown Corpus [12] by similarity according to Glove word embeddings [13]. During evaluation we prompt the model to generate a story in the target language about each topic. A few examples of generated stories appear in 11. We do not compute any metrics over these stories, but we do verify that they are consistently generated in the correct language and do not get stuck in endless repetition loops. As generated stories tend to be longer than translations, we only use 200 test examples.

3.2 Models↩︎

We use the Qwen 3.5 family of models [14]. Our main results are presented using the 9b parameter model as the verifier and the 0.8b parameter model as the draft model; however, we include results with 2b and 4b parameter draft models in §9.3. We use sampling-based inference using a top-k of 100, top-p of 0.9, and a maximum 128 generated tokens. We use KV caching for both the draft and verifier models [15]. For each setting, we sweep the \(\gamma\) value over \([2,4]\) and report the best result.

3.3 Experimental Settings↩︎

Our baseline setting is an unmodified smaller model of the same family (0.8b Qwen). We then perform soft-target distillation (details in §7) from the verifier model to the 0.8b model on two types of corpora. First, for our distilled (task) setting, we use parallel data for distillation on translation prompts. Second, we distill on monolingual, general domain text for the distilled (general) setting.

Finally, we train simple n-gram draft models on the same monolingual corpora, using the Qwen tokenizer to segment tokens. We test various \(n\) values and find that bigrams (2-grams) produce the highest acceptance rates for all languages. During inference, we compute a simple logit distribution for an \((n-1)\) length prefix from the conditional distribution observed during training.

3.4 Metrics↩︎

3.4.0.1 Acceptance Rate (\(\alpha\)).

Following [1], Definition 3.1, we measure the probability that a draft token is accepted by the target model, given all prior tokens have been confirmed. We estimate this probability for a single example \(i\) with the Monte Carlo estimator \(\hat{\alpha_i} = \frac{m_i}{d_i}\) where \(m_i\) is the number of accepted tokens and \(d_i\) is the number proposed, and we take the mean over examples.

3.4.0.2 Speed-up Factor (\(f\)).

Using \(\alpha\), we compute the speed-up factor, which quantifies the expected improvement under speculative decoding: \[f = \frac{1 - \alpha^{\gamma+1}}{(1 - \alpha)(\gamma c + 1)}\] where \(c = t_{\text{draft}} / t_{\text{target}}\) is the cost ratio of a single draft forward pass to a single target forward pass (measured via CUDA timing). Speed-up values are reported as multiplicative factors (e.g., \(1.2\times\)).

Figure 2: Distribution of average forward pass times for each LLM and our n-gram models. The small line in the upper left represents the n-gram time of 0.001s.

a

b

Figure 3: Acceptance rates (top) and speed-up factors (bottom) for translation prompts, over four experimental settings and eleven languages. Error bars are standard deviation..

Figure 4: Speed-up factors for story generation prompts, over four experimental settings and eleven languages. Error bars are standard deviation.

4 Findings↩︎

4.1 Translation↩︎

3 reports the average acceptance rates and speed-up factors per setting for the translation task.

4.1.0.1 Standard speculative decoding is ineffective due to low acceptance rates.

In the baseline setting using unspecialized draft models, acceptance rates are fairly low, ranging from \(0.30\) (ber) to \(0.54\) (amh) with an average over languages of \(\bar{\alpha} =0.40\). This results in most languages having speed-up factors close to 1 (\(\bar{f} = 1.02\times\)), in which case speculative decoding is not beneficial. We find no correlation between translation quality (chrF score) and acceptance rates, discussed in §[sec:chrf95acceptance].

4.1.0.2 Task-specific distillation improves acceptance rates, while general domain distillation is less effective.

As expected, distillation on translation prompts clearly improves acceptance rates (\(\bar{\alpha} = 0.60\)) and therefore speed-up factors (\(\bar{f} = 1.28 \times\)). Meanwhile, the general domain distillation setting (\(\bar{\alpha} = 0.39, \bar{f} =1.03\times\)) only beats the baseline in five of eleven languages. Thus, distillation is an effective option only for specific, predetermined domains. In this case, the distillation loss provides a lower bound on acceptance rate (see §9.5).

4.2 Story Generation↩︎

4 and 6 report speed-up factors and acceptance rates, respectively, for the story generation prompts. We see similar trends as the prior setting for the baseline (\(\bar{\alpha} = 0.46, \bar{f} =1.09\times\)), n-gram model (\(\bar{\alpha} = 0.30, \bar{f} =1.39\times\)), and general domain distilled model (\(\bar{\alpha} = 0.47, \bar{f} =1.10\times\)).

4.2.0.1 Task-specific distillation does not generalize to new domains well.

The task-specific distilled models show a large deterioration on the new task (\(\bar{\alpha} = 0.43, \bar{f} =1.03\times\)), underperforming the baseline and the general distillation approach. 5 shows this trade-off: distillation improves acceptance on the training task at the expense of the other, unseen task.

4.2.0.2 N-gram models are highly effective due to favorable draft-to-verifier cost ratios.

While the n-gram models tend to have inferior acceptance rates (\(\bar{\alpha}=0.24\)), they are much faster to run, with a mean forward pass of \(0.001\)s compared to \(0.033\)s for the 0.8b draft model (2). This results in highly competitive speed-up factors (\(\bar{f}=1.30\times\)), beating the baseline on all but one language (oci), and suggesting that n-gram models are a viable option if a monolingual training corpus is available.

Figure 5: Relationship between the acceptance rates, per language, for translation and story generation.

5 Conclusion↩︎

Our results confirm that standard speculative decoding may not be useful for non-English languages, and can even be detrimental. We identify distillation as an effective way to improve per-language performance, but improvements are limited to the training domain and fail to generalize to new tasks. Meanwhile, we demonstrate that simple n-gram models can provide superior speed-up factors (across domains) thanks to the low cost of inference. In real-world usage, then, it would be beneficial to dynamically switch the draft model based on the language being generated, and in many cases an n-gram model may be the best choice.

Limitations↩︎

This work studied a single family of models (Qwen 3.5), using the 9b model as a verifier and primarily using the 0.8b model as the draft. Absolute results may vary across other size combinations and model families, but we expect the general trends to hold. Our work also studies a small set of eleven languages, and results may differ for languages dissimilar to those eleven. Finally, our work studies two realistic tasks in a rare language, and our results may not hold for tasks like mathematical reasoning (as in [5]).

Ethical Considerations↩︎

This work suggests approaches to mitigate user experience disparities for disadvantaged languages. However, we recognize that work done without the involvement of language stakeholders risks poor alignment with the actual needs of speakers. In particular, we are aware that the generations in our evaluation suites were very poor quality, largely unusable for the desired tasks. This was not a primary concern as our main focus was generation speed, but there remains a large gap in usability for many languages. Our work used data sourced from existing open access datasets, and we defer to their ethical policies regarding data collection and processing. Finally, we recognize the severe environmental cost of training large-scale models, and have striven to use our resources efficiently. We used AI assistants for code review and to help modify plotting code.

Figure 6: Acceptance rates for story generation prompts, over four experimental settings and eleven languages. Error bars are standard deviation.

a

b

Figure 7: Tokens/second for translation (top) and story generation (bottom) prompts, over four experimental settings and eleven languages. Error bars are standard deviation..

a

b

Figure 8: Acceptance rates (left) and speed-up factors (right) for translation prompts in the baseline setting over draft model sizes..

Figure 9: Relationship between the model’s translation capability (chrF++) in a language and acceptance rates on translation prompts, using the baseline draft model.

6 Implementation↩︎

We use the Hugging Face libraries for model implementations and tokenizers, Weights and Biases for tracking, Sacrebleu for evaluation, and NLTK for story generation.

7 Distillation Details↩︎

We train draft models via distillation using the truncated cross-entropy loss on the top twenty logits of the teacher. We use the train splits from each dataset, and we select 5% of these examples to use as a validation split. For translation, we use greedy decoding to generate translations using the teacher model, and perform soft-target distillation on the generated outputs using the top 20 logits per-token [16]. We ignore the tail of the logit distribution, which is known to incur bias [17]. For the general domain distillation, we do not generate outputs, but rather compute teacher logits on the raw texts. All languages and models use the hyperparameters in 2 and bfloat16 precision, and we sweep the learning rate over \(\{1e-4, 5e-5, 2e-5\}\) and select the best model by validation loss. For the general domain distillation approach, we truncate sequences to 128 tokens. For translation, we allow up to 128 generated tokens (excluding the prompt).

Table 2: Distillation hyperparameters
Total steps 800
Batch size 16
Grad. acc. steps 4
Warm-up steps 60
Optimizer AdamW
LR Schedule cosine
Weight decay 0.01

8 Dataset Sources↩︎

We list the various data sources in 3, as well as the per-language counts in 4 and 5.

9 Additional Results↩︎

9.1 Story Generation Acceptance Rates↩︎

Acceptance rates for story generation are provided in 6, corresponding to the speed-up factors in 4.

9.2 Throughput↩︎

We report throughput (tokens/second) metrics for both tasks in 7. Raw decoding throughput is an implementation-agnostic measure of generation speed. We measure this as total generated tokens over total decode wall clock time, excluding the prefill:

\[\text{TPS} = \frac{\sum_{i=1}^{N} g_i}{\sum_{i=1}^{N} t_i}\]

where \(g_i\) is the number of output tokens for sentence \(i\) and \(t_i\) is its decode time.

9.3 Draft Model Size↩︎

In addition to the 0.8b parameter draft model, we also test the baseline setting (no distillation) with the 2b and 4b parameter Qwen 3.5 models. From the 0.8b results, we select the language with the highest acceptance rate (amh), the lowest acceptance rate (ber), and a random language from the middle (grn). We report speed-up factors and acceptance rates in 8. We observe that larger draft models improve both the acceptance rate and speed-up factor most of the time, although in one case (amh) the largest model shows a drop in speed-up.

9.4 Translation Quality↩︎

In 9, we visualize the relationship between the model’s translation capability in a language (measured via the chrF score of generated translations) and acceptance rate. We had hypothesized that acceptance rates would be higher for languages the model is stronger on (as a proxy for the prevalence of a given language in the training data). However, we observe a very weak correlation (\(r=0.170\)), failing to provide evidence for our hypothesis.

9.5 Distillation and Acceptance Rate↩︎

When performing distillation on the same domain as the test data, we can compute a lower bound on the acceptance rate from the KL divergence between the teacher and student model. First, we use Theorem 3.5 from [1] to get: \[\alpha = \sum_x \min(p(x), q(x))\] Let \(A = \{x: p(x) \geq q(x)\}\) and \(B = \{x: q(x) > p(x)\}\). Then, we get: \[\alpha = \sum_{x\in A} q(x) + \sum_{x\in B} p(x)\] \[= \sum_{x\in A} p(x) - (p(x) - q(x)) + \sum_{x\in B} p(x)\] \[= \sum_{x\in A} p(x) + \sum_{x\in B} p(x) - \sum_{x \in A} (p(x) - q(x))\] \[= 1 - \sum_{x \in A} (p(x) - q(x)) \label{eq:acc}\tag{1}\] Next, we use the definition of total variation distance \(\delta\): \[\delta(P,Q) = \frac{1}{2}\sum_x \vert p(x)-q(x) \rvert\] Using the same definitions of \(A\) and \(B\), \[\delta(P,Q) = \frac{1}{2} \left( \sum_{x \in A} p(x) - q(x) + \sum_{x \in B} q(x) - p(x) \right)\] We show these two sums are equal: \[\sum_{x \in A} p(x) - q(x) - \sum_{x \in B} q(x) - p(x)\] \[= \sum_{x \in A} p(x) - q(x) + \sum_{x \in B} p(x) - q(x)\] \[= \sum_x p(x) - \sum_x q(x) = 0\] \[\therefore \sum_{x \in A} p(x) - q(x) = \sum_{x \in B} q(x) - p(x) = \delta(P,Q)\] Substituting into 1 , we get \[\alpha = 1 - \delta(P,Q)\] By Pinsker’s inequality, we have an upper bound on the total variation distance: \[\delta(P,Q) \leq \sqrt {\frac{1}{2} D_{KL}(P \vert\vert Q)}\] where \(D_{KL}\) is the KL-divergence. Finally, this gives the lower bound on acceptance rate: \[\alpha \geq 1-\sqrt {\frac{1}{2} D_{KL}(P \vert\vert Q)}\]

We validate this bound against the task-specific distillation runs in 10. We observe that all of the models well out-perform the bound, and there is not necessarily the negative correlation we would expect. However, this insight makes it possible to predict a lower bound on acceptance rate solely based on the distillation training run.

Figure 10: Relationship between KL divergence and acceptance rate for task-specific distilled models.
Table 3: All of the sources used throughout our experiments. The Mono and Parallel columns indicate how we use the corpus; in some cases, a corpus has parallel sentences but we only use the text in the target language.
Code Name Source Mono Parallel
Ame America’s NLP 2024 [18]
Aya Aya Dataset [19]
Che - Hugging Face
Chr ChrEn [20]
ChEn Cherokee English Dictionary [21]
Haw Hawaiian Corpus Project [22]
Lei Leipzig Corpus Collections [23]
Men MENYO-20k [24]
Ope OpenCSR [25]
Opu OPUS-100 [26]
Opus Opus [27]
Que QuBERT [28]
Tal TALAM [29]
Tat Tatoeba [30]
Tha - [31]
Wub Unified Amharic-English Corpus GitHub
Table 4: Monolingual source counts for each language; see 3 for source abbreviations.
Language Total Tokens Sources
Amharic [amh] 2.2M Aya
Berber [ber] 335.0k Tat
Cherokee [chr] 1.1M Chr, Tat
Guarani [grn] 426.7k Lei
Hawaiian [haw] 101.9k Haw
Igbo [ibo] 852.3k lei, Aya
Nepali [npi] 22.3M Tha, Aya
Occitan [oci] 60.1k Lei
Quechua [que] 684.7k Que, Tat
Yoruba [yor] 1.7M Aya
Tamazight [zgh] 2.8M Tat, Tal
Table 5: Parallel sentence counts for each language; see 3 for source abbreviations.
Language Total Examples Sources
Amharic [amh] 5200 Tat
Berber [ber] 5200 Tat
Cherokee [chr] 5200 ChEn, Che
Guarani [grn] 986 Tat
Hawaiian [haw] 121 Tat
Igbo [ibo] 1748 Opus, Tat
Nepali [npi] 3533 Tat
Occitan [oci] 4031 Tat
Quechua [que] 5200 Opus, Tat
Yoruba [yor] 5200 Men
Tamazight [zgh] 5200 Tat

10 Generated Story Examples↩︎

None

Figure 11: Samples of story generation for the topics sunlit garden and vibrant festival, sampled from the 9b Qwen 3.5 model..

References↩︎

[1]
Yaniv Leviathan, Matan Kalman, and Yossi Matias. 2023. https://arxiv.org/abs/2211.17192. Preprint, arXiv:2211.17192.
[2]
Charlie Chen, Sebastian Borgeaud, Geoffrey Irving, Jean-Baptiste Lespiau, Laurent Sifre, and John Jumper. 2023. https://arxiv.org/abs/2302.01318. Preprint, arXiv:2302.01318.
[3]
Alexis Conneau, Kartikay Khandelwal, Naman Goyal, Vishrav Chaudhary, Guillaume Wenzek, Francisco Guzmán, Edouard Grave, Myle Ott, Luke Zettlemoyer, and Veselin Stoyanov. 2020. https://doi.org/10.18653/v1/2020.acl-main.747. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 8440–8451, Online. Association for Computational Linguistics.
[4]
Euiin Yi, Taehyeon Kim, Hongseok Jeung, Du-Seong Chang, and Se-Young Yun. 2024. https://doi.org/10.18653/v1/2024.emnlp-main.602. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 10789–10802, Miami, Florida, USA. Association for Computational Linguistics.
[5]
Jameson Sandler, Ahmet Üstün, Marco Romanelli, Sara Hooker, and Ferdinando Fioretto. 2025. https://arxiv.org/abs/2510.02128. Preprint, arXiv:2510.02128.
[6]
Tyler A. Chang, Catherine Arnett, Zhuowen Tu, and Ben Bergen. 2024. https://doi.org/10.18653/v1/2024.emnlp-main.236. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 4074–4096, Miami, Florida, USA. Association for Computational Linguistics.
[7]
Aleksandar Petrov, Emanuele La Malfa, Philip Torr, and Adel Bibi. 2023. https://proceedings.neurips.cc/paper_files/paper/2023/file/74bb24dca8334adce292883b4b651eda-Paper-Conference.pdf. In Advances in Neural Information Processing Systems, volume 36, pages 36963–36990. Curran Associates, Inc.
[8]
Damian Blasi, Antonios Anastasopoulos, and Graham Neubig. 2022. https://doi.org/10.18653/v1/2022.acl-long.376. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 5486–5505, Dublin, Ireland. Association for Computational Linguistics.
[9]
Heming Xia, Tao Ge, Peiyi Wang, Si-Qing Chen, Furu Wei, and Zhifang Sui. 2023. https://doi.org/10.18653/v1/2023.findings-emnlp.257. In Findings of the Association for Computational Linguistics: EMNLP 2023, pages 3909–3925, Singapore. Association for Computational Linguistics.
[10]
Yongchao Zhou, Kaifeng Lyu, Ankit Singh Rawat, Aditya Krishna Menon, Afshin Rostamizadeh, Sanjiv Kumar, Jean-François Kagy, and Rishabh Agarwal. 2024. https://openreview.net/forum?id=rsY6J3ZaTF. In The Twelfth International Conference on Learning Representations.
[11]
Marc Brysbaert, Amy Beth Warriner, and Victor Kuperman. 2014. Concreteness ratings for 40 thousand generally known english word lemmas. Behavior research methods, 46(3):904–911.
[12]
W Nelson Francis. 1979. Brown corpus manual. http://icame. uib. no/brown/bcm. html.
[13]
Jeffrey Pennington, Richard Socher, and Christopher Manning. 2014. https://doi.org/10.3115/v1/D14-1162. In Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 1532–1543, Doha, Qatar. Association for Computational Linguistics.
[14]
Qwen Team. 2026. https://qwen.ai/blog?id=qwen3.5.
[15]
Reiner Pope, Sholto Douglas, Aakanksha Chowdhery, Jacob Devlin, James Bradbury, Anselm Levskaya, Jonathan Heek, Kefan Xiao, Shivani Agrawal, and Jeff Dean. 2022. https://arxiv.org/abs/2211.05102. Preprint, arXiv:2211.05102.
[16]
Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. 2015. https://arxiv.org/abs/1503.02531. Preprint, arXiv:1503.02531.
[17]
Sayantan Dasgupta, Timothy Baldwin, and Trevor Cohn. 2026. https://openreview.net/forum?id=EYflZV1caL.
[18]
Abteen Ebrahimi, Ona de Gibert, Raul Vazquez, Rolando Coto-Solano, Pavel Denisov, Robert Pugh, Manuel Mager, Arturo Oncevay, Luis Chiruzzo, Katharina von der Wense, and Shruti Rijhwani. 2024. https://doi.org/10.18653/v1/2024.americasnlp-1.28. In Proceedings of the 4th Workshop on Natural Language Processing for Indigenous Languages of the Americas (AmericasNLP 2024), pages 236–246, Mexico City, Mexico. Association for Computational Linguistics.
[19]
Shivalika Singh, Freddie Vargus, Daniel Dsouza, Börje F. Karlsson, Abinaya Mahendiran, Wei-Yin Ko, Herumb Shandilya, Jay Patel, Deividas Mataciunas, Laura OMahony, Mike Zhang, Ramith Hettiarachchi, Joseph Wilson, Marina Machado, Luisa Moura, Dominik Krzemiński, Hakimeh Fadaei, Irem Ergun, Ifeoma Okoh, and 14 others. 2024. https://doi.org/10.18653/v1/2024.acl-long.620. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 11521–11567, Bangkok, Thailand. Association for Computational Linguistics.
[20]
Shiyue Zhang, Benjamin Frey, and Mohit Bansal. 2020. https://doi.org/10.18653/v1/2020.emnlp-main.43. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 577–595, Online. Association for Computational Linguistics.
[21]
Tim Nuttle, Tim Orr, TommyLee Whitlock, and Sarah Orndorff. https://cherokeedictionary.net/.
[22]
Liam Doherty. 2016. https://dohliam.github.io/corpus/haw/.
[23]
Dirk Goldhahn, Thomas Eckart, and Uwe Quasthoff. 2012. https://aclanthology.org/L12-1154/. In Proceedings of the Eighth International Conference on Language Resources and Evaluation (LREC’12), pages 759–765, Istanbul, Turkey. European Language Resources Association (ELRA).
[24]
David Ifeoluwa Adelani, Dana Ruiter, Jesujoba O. Alabi, Damilola Adebonojo, Adesina Ayeni, Mofe Adeyemi, Ayodele Esther Awokoya, and Cristina España-Bonet. 2021. https://aclanthology.org/2021.mtsummit-research.6/. In Proceedings of Machine Translation Summit XVIII: Research Track, pages 61–75, Virtual. Association for Machine Translation in the Americas.
[25]
Yijiong Yu, Ziyun Dai, Zekun Wang, Wei Wang, Ran Chen, and Ji Pei. 2025. https://arxiv.org/abs/2501.08197. Preprint, arXiv:2501.08197.
[26]
Biao Zhang, Philip Williams, Ivan Titov, and Rico Sennrich. 2020. https://doi.org/10.18653/v1/2020.acl-main.148. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 1628–1639, Online. Association for Computational Linguistics.
[27]
Jörg Tiedemann. 2012. https://aclanthology.org/L12-1246/. In Proceedings of the Eighth International Conference on Language Resources and Evaluation (LREC’12), pages 2214–2218, Istanbul, Turkey. European Language Resources Association (ELRA).
[28]
Rodolfo Zevallos, John Ortega, William Chen, Richard Castro, Núria Bel, Cesar Yoshikawa, Renzo Venturas, Hilario Aradiel, and Nelsi Melgarejo. 2022. https://doi.org/10.18653/v1/2022.deeplo-1.1. In Proceedings of the Third Workshop on Deep Learning for Low-Resource Natural Language Processing, pages 1–13, Hybrid. Association for Computational Linguistics.
[29]
IRCA. 2015. https://tal.ircam.ma/talam/corpus.php.
[30]
Jörg Tiedemann. 2020. https://aclanthology.org/2020.wmt-1.139/. In Proceedings of the Fifth Conference on Machine Translation, pages 1174–1182, Online. Association for Computational Linguistics.
[31]
Prajwal Thapa, Jinu Nyachhyon, Mridul Sharma, and Bal Krishna Bal. 2025. https://aclanthology.org/2025.chipsal-1.2/. In Proceedings of the First Workshop on Challenges in Processing South Asian Languages (CHiPSAL 2025), pages 9–16, Abu Dhabi, UAE. International Committee on Computational Linguistics.

  1. Except for a brief evaluation in the appendix↩︎