๐ค AI Summary
Byte-level neural machine translation (NMT) suffers from semantic sparsity and cross-lingual encoding heterogeneity, hindering effective contextual modeling. Method: We propose a Contextualized Mixture of Experts (MoCE) mechanism for the Transformer architecture, introducing gated mixture attention wherein each attention head is dynamically treated as a domain-specific expert; experts are adaptively selected and weighted based on Unicode byte features and local contextโrequiring no manual hyperparameter tuning and naturally accommodating scale variations across multilingual byte sequences. Contribution/Results: On the Ted-59 benchmark, MoCE significantly outperforms existing byte-level models, uses fewer parameters than mainstream subword-based models, and achieves superior translation performance on low-resource languages. The approach enhances semantic representation capability and cross-lingual generalization in byte-level NMT.
๐ Abstract
Byte-based machine translation systems have shown significant potential in massively multilingual settings. Unicode encoding, which maps each character to specific byte(s), eliminates the emergence of unknown words, even in new languages. This avoids out-of-vocabulary risk in multilingual translation and enables broad language scalability. However, byte-level tokenization results in sequences that are hard to interpret due to limited semantic information per byte. Local contextualization has proven effective in assigning initial semantics to tokens, improving sentence comprehension. Nevertheless, variations in encoding rules across languages necessitate an adaptive approach for effective contextualization. To this end, we propose Mixture of Contextualization Experts (MoCE), adaptively selecting and mixing attention heads, which are treated as contextualization experts. This enhances the flexibility of contextualization scales and allows models to search for better contextualization combinations. Experiment results show that our method outperforms existing methods without extensive manual adjustment of hyper-parameters and surpasses subword-based models with fewer parameters in Ted-59 dataset. Our code is available at https://github.com/ictnlp/MoCE.