Views
No views yet
tr) subset of
facebook/xnli — all splits.| Parameter | Value |
|---|---|
| Algorithm | MorpheL (MI + Gumbel) |
| Vocabulary size | 32,067 |
| top_k | 8 |
| 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/fr — all splits (800,404 sentences) |
| Vowel set | Turkish (ı İ ö ü â î û + ASCII) |
| Metric | BPE | WordPiece | Unigram | MorpheL |
|---|---|---|---|---|
| Fertility ↓ | — | — | — | 1.2872 |
| Tokens/char ↓ | — | — | — | 0.2139 |
| Avg seq len ↓ | — | — | — | 21.68 |
| Vocab coverage ↑ | — | — | — | 1.0000 |
| OOV rate ↓ | — | — | — | 0.0000 |
1from transformers import AutoTokenizer
2tokenizer = AutoTokenizer.from_pretrained("NIRVLab/xnli-morphel-fr-32k-topk8")Note: MorpheL segments words before passing to the tokenizer. At downstream training time, usetemperature=1.0for stochastic segmentation. For inference, usetemperature=0(deterministic).