Views
No views yet
ru) subset of
facebook/xnli — all splits.| Parameter | Value |
|---|---|
| Algorithm | MorpheL (MI + Gumbel) |
| Vocabulary size | 32,083 |
| top_k | 4 |
| temperature (T) | 1.0 (vocab induction: T=0) |
| mi_threshold | 0.0 (keep MI > 0) |
| min_frequency | 2 |
| Special tokens | <s>, <pad>, </s>, <unk>, <mask> |
| Corpus | facebook/xnli/ru — all splits (800,404 sentences) |
| Vowel set | Russian Cyrillic (а е ё и о у ы э ю я — 10 vowel letters; й/ь/ъ excluded) |
| Metric | BPE | WordPiece | Unigram | MorpheL |
|---|---|---|---|---|
| Fertility ↓ | — | — | — | 1.4282 |
| Tokens/char ↓ | — | — | — | 0.2076 |
| Avg seq len ↓ | — | — | — | 19.27 |
| Vocab coverage ↑ | — | — | — | 1.0000 |
| OOV rate ↓ | — | — | — | 0.0000 |
1from transformers import AutoTokenizer
2tokenizer = AutoTokenizer.from_pretrained("NIRVLab/xnli-morphel-ru-32k")Note: MorpheL segments words before passing to the tokenizer. At downstream training time, usetemperature=1.0for stochastic segmentation. For inference, usetemperature=0(deterministic).