Automatic Speech Recognition
Transformers
Safetensors
seamless_m4t_v2
audio
speech
african-languages
multilingual
simba
low-resource
speech-recognition
asr
Instructions to use ghananlpcommunity/Simba-S with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ghananlpcommunity/Simba-S with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="ghananlpcommunity/Simba-S")# Load model directly from transformers import AutoTokenizer, AutoModelForSpeechSeq2Seq tokenizer = AutoTokenizer.from_pretrained("ghananlpcommunity/Simba-S") model = AutoModelForSpeechSeq2Seq.from_pretrained("ghananlpcommunity/Simba-S") - Notebooks
- Google Colab
- Kaggle
Commit ·
f980e37
0
Parent(s):
Duplicate from UBC-NLP/Simba-S
Browse filesCo-authored-by: AbdelRahim Elmadany <elmadany@users.noreply.huggingface.co>
- .gitattributes +36 -0
- README.md +212 -0
- added_tokens.json +100 -0
- config.json +119 -0
- generation_config.json +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +0 -0
- preprocessor_config.json +111 -0
- sentencepiece.bpe.model +3 -0
- special_tokens_map.json +144 -0
- tokenizer.json +3 -0
- tokenizer_config.json +935 -0
.gitattributes
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- am # Amharic
|
| 4 |
+
- ar # Arabic
|
| 5 |
+
- tw # Asante Twi
|
| 6 |
+
- bm # Bambara
|
| 7 |
+
- fr # French
|
| 8 |
+
- lg # Ganda
|
| 9 |
+
- ha # Hausa
|
| 10 |
+
- ig # Igbo
|
| 11 |
+
- rw # Kinyarwanda
|
| 12 |
+
- kg # Kongo
|
| 13 |
+
- ln # Lingala
|
| 14 |
+
- lu # Luba-Katanga
|
| 15 |
+
- mg # Malagasy
|
| 16 |
+
- nso # Northern Sotho
|
| 17 |
+
- ny # Nyanja
|
| 18 |
+
- om # Oromo
|
| 19 |
+
- pt # Portuguese
|
| 20 |
+
- sn # Shona
|
| 21 |
+
- so # Somali
|
| 22 |
+
- st # Southern Sotho
|
| 23 |
+
- sw # Swahili
|
| 24 |
+
- ss # Swati
|
| 25 |
+
- ti # Tigrinya
|
| 26 |
+
- ts # Tsonga
|
| 27 |
+
- tn # Tswana
|
| 28 |
+
- ak # Twi
|
| 29 |
+
- ve # Venda
|
| 30 |
+
- wo # Wolof
|
| 31 |
+
- xh # Xhosa
|
| 32 |
+
- yo # Yoruba
|
| 33 |
+
- zu # Zulu
|
| 34 |
+
- tzm # Tamazight
|
| 35 |
+
- sg # Sango
|
| 36 |
+
- din # Dinka
|
| 37 |
+
- ee # Ewe
|
| 38 |
+
- fo # Fon
|
| 39 |
+
- luo # Luo
|
| 40 |
+
- mos # Mossi
|
| 41 |
+
- umb # Umbundu
|
| 42 |
+
license: cc-by-4.0
|
| 43 |
+
tags:
|
| 44 |
+
- automatic-speech-recognition
|
| 45 |
+
- audio
|
| 46 |
+
- speech
|
| 47 |
+
- african-languages
|
| 48 |
+
- multilingual
|
| 49 |
+
- simba
|
| 50 |
+
- low-resource
|
| 51 |
+
- speech-recognition
|
| 52 |
+
- asr
|
| 53 |
+
datasets:
|
| 54 |
+
- UBC-NLP/SimbaBench
|
| 55 |
+
metrics:
|
| 56 |
+
- wer
|
| 57 |
+
- cer
|
| 58 |
+
library_name: transformers
|
| 59 |
+
pipeline_tag: automatic-speech-recognition
|
| 60 |
+
---
|
| 61 |
+
<div align="center">
|
| 62 |
+
|
| 63 |
+
<img src="https://africa.dlnlp.ai/simba/images/VoC_simba" alt="VoC Simba Models Logo">
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
[](https://aclanthology.org/2025.emnlp-main.559/)
|
| 67 |
+
[](https://africa.dlnlp.ai/simba/)
|
| 68 |
+
[](https://huggingface.co/spaces/UBC-NLP/SimbaBench)
|
| 69 |
+
[](https://github.com/UBC-NLP/simba)
|
| 70 |
+
[](https://huggingface.co/collections/UBC-NLP/simba-speech-series)
|
| 71 |
+
[](https://huggingface.co/datasets/UBC-NLP/SimbaBench_dataset)
|
| 72 |
+
|
| 73 |
+
</div>
|
| 74 |
+
|
| 75 |
+
## *Bridging the Digital Divide for African AI*
|
| 76 |
+
|
| 77 |
+
**Voice of a Continent** is a comprehensive open-source ecosystem designed to bring African languages to the forefront of artificial intelligence. By providing a unified suite of benchmarking tools and state-of-the-art models, we ensure that the future of speech technology is inclusive, representative, and accessible to over a billion people.
|
| 78 |
+
|
| 79 |
+
## Best-in-Class Multilingual Models
|
| 80 |
+
|
| 81 |
+
Introduced in our EMNLP 2025 paper *[Voice of a Continent](https://aclanthology.org/2025.emnlp-main.559/)*, the **Simba Series** represents the current state-of-the-art for African speech AI.
|
| 82 |
+
|
| 83 |
+
- **Unified Suite:** Models optimized for African languages.
|
| 84 |
+
- **Superior Accuracy:** Outperforms generic multilingual models by leveraging SimbaBench's high-quality, domain-diverse datasets.
|
| 85 |
+
- **Multitask Capability:** Designed for high performance in ASR (Automatic Speech Recognition) and TTS (Text-to-Speech).
|
| 86 |
+
- **Inclusion-First:** Specifically built to mitigate the "digital divide" by empowering speakers of underrepresented languages.
|
| 87 |
+
|
| 88 |
+
The **Simba** family consists of state-of-the-art models fine-tuned using SimbaBench. These models achieve superior performance by leveraging dataset quality, domain diversity, and language family relationships.
|
| 89 |
+
|
| 90 |
+
### 🗣️✍️ Simba-ASR
|
| 91 |
+
> **The New Standard for African Speech-to-Text**
|
| 92 |
+
|
| 93 |
+
**🎯 Task** `Automatic Speech Recognition` — Powering high-accuracy transcription across the continent.
|
| 94 |
+
|
| 95 |
+
**🌍 Language Coverage (43 African languages)**
|
| 96 |
+
> **Amharic** (`amh`), **Arabic** (`ara`), **Asante Twi** (`asanti`), **Bambara** (`bam`), **Baoulé** (`bau`), **Bemba** (`bem`), **Ewe** (`ewe`), **Fanti** (`fat`), **Fon** (`fon`), **French** (`fra`), **Ganda** (`lug`), **Hausa** (`hau`), **Igbo** (`ibo`), **Kabiye** (`kab`), **Kinyarwanda** (`kin`), **Kongo** (`kon`), **Lingala** (`lin`), **Luba-Katanga** (`lub`), **Luo** (`luo`), **Malagasy** (`mlg`), **Mossi** (`mos`), **Northern Sotho** (`nso`), **Nyanja** (`nya`), **Oromo** (`orm`), **Portuguese** (`por`), **Shona** (`sna`), **Somali** (`som`), **Southern Sotho** (`sot`), **Swahili** (`swa`), **Swati** (`ssw`), **Tigrinya** (`tir`), **Tsonga** (`tso`), **Tswana** (`tsn`), **Twi** (`twi`), **Umbundu** (`umb`), **Venda** (`ven`), **Wolof** (`wol`), **Xhosa** (`xho`), **Yoruba** (`yor`), **Zulu** (`zul`), **Tamazight** (`tzm`), **Sango** (`sag`), **Dinka** (`din`).
|
| 97 |
+
|
| 98 |
+
**🏗️ Base Architectures**
|
| 99 |
+
|
| 100 |
+
- **Simba-S** (SeamlessM4T-v2-MT) — *Top Performer*
|
| 101 |
+
- **Simba-W** (Whisper-v3-large)
|
| 102 |
+
- **Simba-X** (Wav2Vec2-XLS-R-2b)
|
| 103 |
+
- **Simba-M** (MMS-1b-all)
|
| 104 |
+
- **Simba-H** (AfriHuBERT)
|
| 105 |
+
|
| 106 |
+
🌐 Explore the Frontier
|
| 107 |
+
|
| 108 |
+
| **ASR Models** | **Architecture** | **#Parameters** | **🤗 Hugging Face Model Card** | **Status** |
|
| 109 |
+
|---------|:------------------:| :------------------:| :------------------:|:------------------:|
|
| 110 |
+
| 🔥**Simba-S**🔥| SeamlessM4T-v2 | 2.3B | 🤗 [https://huggingface.co/UBC-NLP/Simba-S](https://huggingface.co/UBC-NLP/Simba-S) | ✅ Released |
|
| 111 |
+
| 🔥**Simba-W**🔥| Whisper | 1.5B | 🤗 [https://huggingface.co/UBC-NLP/Simba-W](https://huggingface.co/UBC-NLP/Simba-W) | ✅ Released |
|
| 112 |
+
| 🔥**Simba-X**🔥| Wav2Vec2 | 1B | 🤗 [https://huggingface.co/UBC-NLP/Simba-X](https://huggingface.co/UBC-NLP/Simba-X) | ✅ Released |
|
| 113 |
+
| 🔥**Simba-M**🔥| MMS | 1B | 🤗 [https://huggingface.co/UBC-NLP/Simba-M](https://huggingface.co/UBC-NLP/Simba-M) | ✅ Released |
|
| 114 |
+
| 🔥**Simba-H**🔥| HuBERT | 94M | 🤗 [https://huggingface.co/UBC-NLP/Simba-H](https://huggingface.co/UBC-NLP/Simba-H) | ✅ Released |
|
| 115 |
+
|
| 116 |
+
* **Simba-S** emerged as the best-performing ASR model overall.
|
| 117 |
+
|
| 118 |
+
|
| 119 |
+
**🧩 Usage Example**
|
| 120 |
+
|
| 121 |
+
You can easily run inference using the Hugging Face `transformers` library.
|
| 122 |
+
|
| 123 |
+
```python
|
| 124 |
+
from transformers import pipeline
|
| 125 |
+
|
| 126 |
+
# Load Simba-S for ASR
|
| 127 |
+
asr_pipeline = pipeline(
|
| 128 |
+
"automatic-speech-recognition",
|
| 129 |
+
model="UBC-NLP/Simba-S" #Simba mdoels `UBC-NLP/Simba-S`, `UBC-NLP/Simba-W`, `UBC-NLP/Simba-X`, `UBC-NLP/Simba-H`, `UBC-NLP/Simba-M`
|
| 130 |
+
)
|
| 131 |
+
|
| 132 |
+
##### Load the multilingual African adapter (Only for `UBC-NLP/Simba-M`)
|
| 133 |
+
asr_pipeline.model.load_adapter("multilingual_african") # Only for `UBC-NLP/Simba-M`
|
| 134 |
+
###########################
|
| 135 |
+
|
| 136 |
+
# Transcribe audio from file
|
| 137 |
+
result = asr_pipeline("https://africa.dlnlp.ai/simba/audio/afr_Lwazi_afr_test_idx3889.wav")
|
| 138 |
+
print(result["text"])
|
| 139 |
+
|
| 140 |
+
|
| 141 |
+
# Transcribe audio from audio array
|
| 142 |
+
result = asr_pipeline({
|
| 143 |
+
"array": audio_array,
|
| 144 |
+
"sampling_rate": 16_000
|
| 145 |
+
})
|
| 146 |
+
print(result["text"])
|
| 147 |
+
|
| 148 |
+
```
|
| 149 |
+
|
| 150 |
+
#### Example Outputs
|
| 151 |
+
|
| 152 |
+
Using the same audio file with different Simba models:
|
| 153 |
+
|
| 154 |
+
```python
|
| 155 |
+
# Simba-S
|
| 156 |
+
{'text': 'watter verontwaardiging sou daar, in ons binneste gewees het.'}
|
| 157 |
+
```
|
| 158 |
+
|
| 159 |
+
```python
|
| 160 |
+
# Simba-W
|
| 161 |
+
{'text': 'watter veronwaardigingsel daar, in ons binneste gewees het.'}
|
| 162 |
+
```
|
| 163 |
+
|
| 164 |
+
```python
|
| 165 |
+
# Simba-X
|
| 166 |
+
{'text': 'fator fr on ar taamsodr is'}
|
| 167 |
+
```
|
| 168 |
+
|
| 169 |
+
```python
|
| 170 |
+
# Simba-M
|
| 171 |
+
{'text': 'watter veronwaardiging sodaar in ons binniste gewees het'}
|
| 172 |
+
```
|
| 173 |
+
|
| 174 |
+
```python
|
| 175 |
+
# Simba-H
|
| 176 |
+
{'text': 'watter vironwaardiging so daar in ons binneste geweeshet'}
|
| 177 |
+
```
|
| 178 |
+
|
| 179 |
+
Get started with Simba models in minutes using our interactive Colab notebook: [](https://github.com/UBC-NLP/simba/blob/main/simba_models.ipynb)
|
| 180 |
+
|
| 181 |
+
|
| 182 |
+
## Citation
|
| 183 |
+
|
| 184 |
+
If you use the Simba models or SimbaBench benchmark for your scientific publication, or if you find the resources in this website useful, please cite our paper.
|
| 185 |
+
|
| 186 |
+
```bibtex
|
| 187 |
+
|
| 188 |
+
@inproceedings{elmadany-etal-2025-voice,
|
| 189 |
+
title = "Voice of a Continent: Mapping {A}frica{'}s Speech Technology Frontier",
|
| 190 |
+
author = "Elmadany, AbdelRahim A. and
|
| 191 |
+
Kwon, Sang Yun and
|
| 192 |
+
Toyin, Hawau Olamide and
|
| 193 |
+
Alcoba Inciarte, Alcides and
|
| 194 |
+
Aldarmaki, Hanan and
|
| 195 |
+
Abdul-Mageed, Muhammad",
|
| 196 |
+
editor = "Christodoulopoulos, Christos and
|
| 197 |
+
Chakraborty, Tanmoy and
|
| 198 |
+
Rose, Carolyn and
|
| 199 |
+
Peng, Violet",
|
| 200 |
+
booktitle = "Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing",
|
| 201 |
+
month = nov,
|
| 202 |
+
year = "2025",
|
| 203 |
+
address = "Suzhou, China",
|
| 204 |
+
publisher = "Association for Computational Linguistics",
|
| 205 |
+
url = "https://aclanthology.org/2025.emnlp-main.559/",
|
| 206 |
+
doi = "10.18653/v1/2025.emnlp-main.559",
|
| 207 |
+
pages = "11039--11061",
|
| 208 |
+
ISBN = "979-8-89176-332-6",
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
```
|
| 212 |
+
|
added_tokens.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"__afr__": 256001,
|
| 3 |
+
"__amh__": 256002,
|
| 4 |
+
"__arb__": 256003,
|
| 5 |
+
"__ary__": 256004,
|
| 6 |
+
"__arz__": 256005,
|
| 7 |
+
"__asm__": 256006,
|
| 8 |
+
"__azj__": 256007,
|
| 9 |
+
"__bel__": 256008,
|
| 10 |
+
"__ben__": 256009,
|
| 11 |
+
"__bos__": 256010,
|
| 12 |
+
"__bul__": 256011,
|
| 13 |
+
"__cat__": 256012,
|
| 14 |
+
"__ceb__": 256013,
|
| 15 |
+
"__ces__": 256014,
|
| 16 |
+
"__ckb__": 256015,
|
| 17 |
+
"__cmn_Hant__": 256017,
|
| 18 |
+
"__cmn__": 256016,
|
| 19 |
+
"__cym__": 256018,
|
| 20 |
+
"__dan__": 256019,
|
| 21 |
+
"__deu__": 256020,
|
| 22 |
+
"__ell__": 256021,
|
| 23 |
+
"__eng__": 256022,
|
| 24 |
+
"__est__": 256023,
|
| 25 |
+
"__eus__": 256024,
|
| 26 |
+
"__fin__": 256025,
|
| 27 |
+
"__fra__": 256026,
|
| 28 |
+
"__fuv__": 256027,
|
| 29 |
+
"__gaz__": 256028,
|
| 30 |
+
"__gle__": 256029,
|
| 31 |
+
"__glg__": 256030,
|
| 32 |
+
"__guj__": 256031,
|
| 33 |
+
"__heb__": 256032,
|
| 34 |
+
"__hin__": 256033,
|
| 35 |
+
"__hrv__": 256034,
|
| 36 |
+
"__hun__": 256035,
|
| 37 |
+
"__hye__": 256036,
|
| 38 |
+
"__ibo__": 256037,
|
| 39 |
+
"__ind__": 256038,
|
| 40 |
+
"__isl__": 256039,
|
| 41 |
+
"__ita__": 256040,
|
| 42 |
+
"__jav__": 256041,
|
| 43 |
+
"__jpn__": 256042,
|
| 44 |
+
"__kan__": 256043,
|
| 45 |
+
"__kat__": 256044,
|
| 46 |
+
"__kaz__": 256045,
|
| 47 |
+
"__khk__": 256046,
|
| 48 |
+
"__khm__": 256047,
|
| 49 |
+
"__kir__": 256048,
|
| 50 |
+
"__kor__": 256049,
|
| 51 |
+
"__lao__": 256050,
|
| 52 |
+
"__lit__": 256051,
|
| 53 |
+
"__lug__": 256052,
|
| 54 |
+
"__luo__": 256053,
|
| 55 |
+
"__lvs__": 256054,
|
| 56 |
+
"__mai__": 256055,
|
| 57 |
+
"__mal__": 256056,
|
| 58 |
+
"__mar__": 256057,
|
| 59 |
+
"__mkd__": 256058,
|
| 60 |
+
"__mlt__": 256059,
|
| 61 |
+
"__mni__": 256060,
|
| 62 |
+
"__mya__": 256061,
|
| 63 |
+
"__nld__": 256062,
|
| 64 |
+
"__nno__": 256063,
|
| 65 |
+
"__nob__": 256064,
|
| 66 |
+
"__npi__": 256065,
|
| 67 |
+
"__nya__": 256066,
|
| 68 |
+
"__ory__": 256067,
|
| 69 |
+
"__pan__": 256068,
|
| 70 |
+
"__pbt__": 256069,
|
| 71 |
+
"__pes__": 256070,
|
| 72 |
+
"__pol__": 256071,
|
| 73 |
+
"__por__": 256072,
|
| 74 |
+
"__ron__": 256073,
|
| 75 |
+
"__rus__": 256074,
|
| 76 |
+
"__sat__": 256075,
|
| 77 |
+
"__slk__": 256076,
|
| 78 |
+
"__slv__": 256077,
|
| 79 |
+
"__sna__": 256078,
|
| 80 |
+
"__snd__": 256079,
|
| 81 |
+
"__som__": 256080,
|
| 82 |
+
"__spa__": 256081,
|
| 83 |
+
"__srp__": 256082,
|
| 84 |
+
"__swe__": 256083,
|
| 85 |
+
"__swh__": 256084,
|
| 86 |
+
"__tam__": 256085,
|
| 87 |
+
"__tel__": 256086,
|
| 88 |
+
"__tgk__": 256087,
|
| 89 |
+
"__tgl__": 256088,
|
| 90 |
+
"__tha__": 256089,
|
| 91 |
+
"__tur__": 256090,
|
| 92 |
+
"__ukr__": 256091,
|
| 93 |
+
"__urd__": 256092,
|
| 94 |
+
"__uzn__": 256093,
|
| 95 |
+
"__vie__": 256094,
|
| 96 |
+
"__yor__": 256095,
|
| 97 |
+
"__yue__": 256096,
|
| 98 |
+
"__zlm__": 256097,
|
| 99 |
+
"__zul__": 256098
|
| 100 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/seamless-m4t-v2-large",
|
| 3 |
+
"activation_dropout": 0.0,
|
| 4 |
+
"activation_function": "relu",
|
| 5 |
+
"adaptor_dropout": 0.1,
|
| 6 |
+
"adaptor_kernel_size": 8,
|
| 7 |
+
"adaptor_stride": 8,
|
| 8 |
+
"add_adapter": true,
|
| 9 |
+
"architectures": [
|
| 10 |
+
"SeamlessM4Tv2ForSpeechToText"
|
| 11 |
+
],
|
| 12 |
+
"attention_dropout": 0.1,
|
| 13 |
+
"bos_token_id": 2,
|
| 14 |
+
"char_vocab_size": 10943,
|
| 15 |
+
"conv_depthwise_kernel_size": 31,
|
| 16 |
+
"decoder_attention_heads": 16,
|
| 17 |
+
"decoder_ffn_dim": 8192,
|
| 18 |
+
"decoder_layerdrop": 0.05,
|
| 19 |
+
"decoder_layers": 24,
|
| 20 |
+
"decoder_start_token_id": 3,
|
| 21 |
+
"dropout": 0.1,
|
| 22 |
+
"encoder_attention_heads": 16,
|
| 23 |
+
"encoder_ffn_dim": 8192,
|
| 24 |
+
"encoder_layerdrop": 0.05,
|
| 25 |
+
"encoder_layers": 24,
|
| 26 |
+
"eos_token_id": 3,
|
| 27 |
+
"feature_projection_input_dim": 160,
|
| 28 |
+
"forced_decoder_ids": null,
|
| 29 |
+
"hidden_size": 1024,
|
| 30 |
+
"initializer_range": 0.02,
|
| 31 |
+
"is_encoder_decoder": true,
|
| 32 |
+
"lang_embed_dim": 256,
|
| 33 |
+
"layer_norm_eps": 1e-05,
|
| 34 |
+
"leaky_relu_slope": 0.1,
|
| 35 |
+
"left_max_position_embeddings": 64,
|
| 36 |
+
"max_new_tokens": 256,
|
| 37 |
+
"max_position_embeddings": 4096,
|
| 38 |
+
"model_type": "seamless_m4t_v2",
|
| 39 |
+
"num_adapter_layers": 1,
|
| 40 |
+
"num_attention_heads": 16,
|
| 41 |
+
"num_hidden_layers": 24,
|
| 42 |
+
"pad_token_id": 0,
|
| 43 |
+
"position_embeddings_type": "relative_key",
|
| 44 |
+
"resblock_dilation_sizes": [
|
| 45 |
+
[
|
| 46 |
+
1,
|
| 47 |
+
3,
|
| 48 |
+
5
|
| 49 |
+
],
|
| 50 |
+
[
|
| 51 |
+
1,
|
| 52 |
+
3,
|
| 53 |
+
5
|
| 54 |
+
],
|
| 55 |
+
[
|
| 56 |
+
1,
|
| 57 |
+
3,
|
| 58 |
+
5
|
| 59 |
+
]
|
| 60 |
+
],
|
| 61 |
+
"resblock_kernel_sizes": [
|
| 62 |
+
3,
|
| 63 |
+
7,
|
| 64 |
+
11
|
| 65 |
+
],
|
| 66 |
+
"right_max_position_embeddings": 8,
|
| 67 |
+
"sampling_rate": 16000,
|
| 68 |
+
"scale_embedding": true,
|
| 69 |
+
"speech_encoder_attention_heads": 16,
|
| 70 |
+
"speech_encoder_chunk_size": 20000,
|
| 71 |
+
"speech_encoder_dropout": 0.0,
|
| 72 |
+
"speech_encoder_hidden_act": "swish",
|
| 73 |
+
"speech_encoder_intermediate_size": 4096,
|
| 74 |
+
"speech_encoder_layerdrop": 0.1,
|
| 75 |
+
"speech_encoder_layers": 24,
|
| 76 |
+
"speech_encoder_left_chunk_num": 128,
|
| 77 |
+
"spkr_embed_dim": 256,
|
| 78 |
+
"t2u_bos_token_id": 0,
|
| 79 |
+
"t2u_decoder_attention_heads": 16,
|
| 80 |
+
"t2u_decoder_ffn_dim": 8192,
|
| 81 |
+
"t2u_decoder_layers": 6,
|
| 82 |
+
"t2u_encoder_attention_heads": 16,
|
| 83 |
+
"t2u_encoder_ffn_dim": 8192,
|
| 84 |
+
"t2u_encoder_layers": 6,
|
| 85 |
+
"t2u_eos_token_id": 2,
|
| 86 |
+
"t2u_max_position_embeddings": 4096,
|
| 87 |
+
"t2u_pad_token_id": 1,
|
| 88 |
+
"t2u_variance_pred_dropout": 0.5,
|
| 89 |
+
"t2u_variance_predictor_embed_dim": 1024,
|
| 90 |
+
"t2u_variance_predictor_hidden_dim": 256,
|
| 91 |
+
"t2u_variance_predictor_kernel_size": 3,
|
| 92 |
+
"t2u_vocab_size": 10082,
|
| 93 |
+
"torch_dtype": "float32",
|
| 94 |
+
"transformers_version": "4.48.1",
|
| 95 |
+
"unit_embed_dim": 1280,
|
| 96 |
+
"unit_hifi_gan_vocab_size": 10000,
|
| 97 |
+
"upsample_initial_channel": 512,
|
| 98 |
+
"upsample_kernel_sizes": [
|
| 99 |
+
11,
|
| 100 |
+
8,
|
| 101 |
+
8,
|
| 102 |
+
4,
|
| 103 |
+
4
|
| 104 |
+
],
|
| 105 |
+
"upsample_rates": [
|
| 106 |
+
5,
|
| 107 |
+
4,
|
| 108 |
+
4,
|
| 109 |
+
2,
|
| 110 |
+
2
|
| 111 |
+
],
|
| 112 |
+
"use_cache": true,
|
| 113 |
+
"var_pred_dropout": 0.5,
|
| 114 |
+
"variance_predictor_kernel_size": 3,
|
| 115 |
+
"vocab_size": 256102,
|
| 116 |
+
"vocoder_num_langs": 36,
|
| 117 |
+
"vocoder_num_spkrs": 200,
|
| 118 |
+
"vocoder_offset": 4
|
| 119 |
+
}
|
generation_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87ed6293668cbe587d0e04f88291cea44a436b02275aadc637b945d98e16e0da
|
| 3 |
+
size 4999937160
|
model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:942459ecfe7aa127752f7000d2e91188d9278b312b88539e5c6c2ce71b4cf331
|
| 3 |
+
size 1007614496
|
model.safetensors.index.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"feature_extractor_type": "SeamlessM4TFeatureExtractor",
|
| 3 |
+
"feature_size": 80,
|
| 4 |
+
"language_code": [
|
| 5 |
+
"__afr__",
|
| 6 |
+
"__amh__",
|
| 7 |
+
"__arb__",
|
| 8 |
+
"__ary__",
|
| 9 |
+
"__arz__",
|
| 10 |
+
"__asm__",
|
| 11 |
+
"__azj__",
|
| 12 |
+
"__bel__",
|
| 13 |
+
"__ben__",
|
| 14 |
+
"__bos__",
|
| 15 |
+
"__bul__",
|
| 16 |
+
"__cat__",
|
| 17 |
+
"__ceb__",
|
| 18 |
+
"__ces__",
|
| 19 |
+
"__ckb__",
|
| 20 |
+
"__cmn__",
|
| 21 |
+
"__cmn_Hant__",
|
| 22 |
+
"__cym__",
|
| 23 |
+
"__dan__",
|
| 24 |
+
"__deu__",
|
| 25 |
+
"__ell__",
|
| 26 |
+
"__eng__",
|
| 27 |
+
"__est__",
|
| 28 |
+
"__eus__",
|
| 29 |
+
"__fin__",
|
| 30 |
+
"__fra__",
|
| 31 |
+
"__fuv__",
|
| 32 |
+
"__gaz__",
|
| 33 |
+
"__gle__",
|
| 34 |
+
"__glg__",
|
| 35 |
+
"__guj__",
|
| 36 |
+
"__heb__",
|
| 37 |
+
"__hin__",
|
| 38 |
+
"__hrv__",
|
| 39 |
+
"__hun__",
|
| 40 |
+
"__hye__",
|
| 41 |
+
"__ibo__",
|
| 42 |
+
"__ind__",
|
| 43 |
+
"__isl__",
|
| 44 |
+
"__ita__",
|
| 45 |
+
"__jav__",
|
| 46 |
+
"__jpn__",
|
| 47 |
+
"__kan__",
|
| 48 |
+
"__kat__",
|
| 49 |
+
"__kaz__",
|
| 50 |
+
"__khk__",
|
| 51 |
+
"__khm__",
|
| 52 |
+
"__kir__",
|
| 53 |
+
"__kor__",
|
| 54 |
+
"__lao__",
|
| 55 |
+
"__lit__",
|
| 56 |
+
"__lug__",
|
| 57 |
+
"__luo__",
|
| 58 |
+
"__lvs__",
|
| 59 |
+
"__mai__",
|
| 60 |
+
"__mal__",
|
| 61 |
+
"__mar__",
|
| 62 |
+
"__mkd__",
|
| 63 |
+
"__mlt__",
|
| 64 |
+
"__mni__",
|
| 65 |
+
"__mya__",
|
| 66 |
+
"__nld__",
|
| 67 |
+
"__nno__",
|
| 68 |
+
"__nob__",
|
| 69 |
+
"__npi__",
|
| 70 |
+
"__nya__",
|
| 71 |
+
"__ory__",
|
| 72 |
+
"__pan__",
|
| 73 |
+
"__pbt__",
|
| 74 |
+
"__pes__",
|
| 75 |
+
"__pol__",
|
| 76 |
+
"__por__",
|
| 77 |
+
"__ron__",
|
| 78 |
+
"__rus__",
|
| 79 |
+
"__sat__",
|
| 80 |
+
"__slk__",
|
| 81 |
+
"__slv__",
|
| 82 |
+
"__sna__",
|
| 83 |
+
"__snd__",
|
| 84 |
+
"__som__",
|
| 85 |
+
"__spa__",
|
| 86 |
+
"__srp__",
|
| 87 |
+
"__swe__",
|
| 88 |
+
"__swh__",
|
| 89 |
+
"__tam__",
|
| 90 |
+
"__tel__",
|
| 91 |
+
"__tgk__",
|
| 92 |
+
"__tgl__",
|
| 93 |
+
"__tha__",
|
| 94 |
+
"__tur__",
|
| 95 |
+
"__ukr__",
|
| 96 |
+
"__urd__",
|
| 97 |
+
"__uzn__",
|
| 98 |
+
"__vie__",
|
| 99 |
+
"__yor__",
|
| 100 |
+
"__yue__",
|
| 101 |
+
"__zlm__",
|
| 102 |
+
"__zul__"
|
| 103 |
+
],
|
| 104 |
+
"num_mel_bins": 80,
|
| 105 |
+
"padding_side": "right",
|
| 106 |
+
"padding_value": 0.0,
|
| 107 |
+
"processor_class": "SeamlessM4TProcessor",
|
| 108 |
+
"return_attention_mask": true,
|
| 109 |
+
"sampling_rate": 16000,
|
| 110 |
+
"stride": 2
|
| 111 |
+
}
|
sentencepiece.bpe.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:026a76827537db9f1348e4d5aaa127bb10a2f2ff633243f3a52d16be82d73f9d
|
| 3 |
+
size 5165809
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"__afr__",
|
| 4 |
+
"__amh__",
|
| 5 |
+
"__arb__",
|
| 6 |
+
"__ary__",
|
| 7 |
+
"__arz__",
|
| 8 |
+
"__asm__",
|
| 9 |
+
"__azj__",
|
| 10 |
+
"__bel__",
|
| 11 |
+
"__ben__",
|
| 12 |
+
"__bos__",
|
| 13 |
+
"__bul__",
|
| 14 |
+
"__cat__",
|
| 15 |
+
"__ceb__",
|
| 16 |
+
"__ces__",
|
| 17 |
+
"__ckb__",
|
| 18 |
+
"__cmn__",
|
| 19 |
+
"__cmn_Hant__",
|
| 20 |
+
"__cym__",
|
| 21 |
+
"__dan__",
|
| 22 |
+
"__deu__",
|
| 23 |
+
"__ell__",
|
| 24 |
+
"__eng__",
|
| 25 |
+
"__est__",
|
| 26 |
+
"__eus__",
|
| 27 |
+
"__fin__",
|
| 28 |
+
"__fra__",
|
| 29 |
+
"__fuv__",
|
| 30 |
+
"__gaz__",
|
| 31 |
+
"__gle__",
|
| 32 |
+
"__glg__",
|
| 33 |
+
"__guj__",
|
| 34 |
+
"__heb__",
|
| 35 |
+
"__hin__",
|
| 36 |
+
"__hrv__",
|
| 37 |
+
"__hun__",
|
| 38 |
+
"__hye__",
|
| 39 |
+
"__ibo__",
|
| 40 |
+
"__ind__",
|
| 41 |
+
"__isl__",
|
| 42 |
+
"__ita__",
|
| 43 |
+
"__jav__",
|
| 44 |
+
"__jpn__",
|
| 45 |
+
"__kan__",
|
| 46 |
+
"__kat__",
|
| 47 |
+
"__kaz__",
|
| 48 |
+
"__khk__",
|
| 49 |
+
"__khm__",
|
| 50 |
+
"__kir__",
|
| 51 |
+
"__kor__",
|
| 52 |
+
"__lao__",
|
| 53 |
+
"__lit__",
|
| 54 |
+
"__lug__",
|
| 55 |
+
"__luo__",
|
| 56 |
+
"__lvs__",
|
| 57 |
+
"__mai__",
|
| 58 |
+
"__mal__",
|
| 59 |
+
"__mar__",
|
| 60 |
+
"__mkd__",
|
| 61 |
+
"__mlt__",
|
| 62 |
+
"__mni__",
|
| 63 |
+
"__mya__",
|
| 64 |
+
"__nld__",
|
| 65 |
+
"__nno__",
|
| 66 |
+
"__nob__",
|
| 67 |
+
"__npi__",
|
| 68 |
+
"__nya__",
|
| 69 |
+
"__ory__",
|
| 70 |
+
"__pan__",
|
| 71 |
+
"__pbt__",
|
| 72 |
+
"__pes__",
|
| 73 |
+
"__pol__",
|
| 74 |
+
"__por__",
|
| 75 |
+
"__ron__",
|
| 76 |
+
"__rus__",
|
| 77 |
+
"__sat__",
|
| 78 |
+
"__slk__",
|
| 79 |
+
"__slv__",
|
| 80 |
+
"__sna__",
|
| 81 |
+
"__snd__",
|
| 82 |
+
"__som__",
|
| 83 |
+
"__spa__",
|
| 84 |
+
"__srp__",
|
| 85 |
+
"__swe__",
|
| 86 |
+
"__swh__",
|
| 87 |
+
"__tam__",
|
| 88 |
+
"__tel__",
|
| 89 |
+
"__tgk__",
|
| 90 |
+
"__tgl__",
|
| 91 |
+
"__tha__",
|
| 92 |
+
"__tur__",
|
| 93 |
+
"__ukr__",
|
| 94 |
+
"__urd__",
|
| 95 |
+
"__uzn__",
|
| 96 |
+
"__vie__",
|
| 97 |
+
"__yor__",
|
| 98 |
+
"__yue__",
|
| 99 |
+
"__zlm__",
|
| 100 |
+
"__zul__"
|
| 101 |
+
],
|
| 102 |
+
"bos_token": {
|
| 103 |
+
"content": "<s>",
|
| 104 |
+
"lstrip": false,
|
| 105 |
+
"normalized": false,
|
| 106 |
+
"rstrip": false,
|
| 107 |
+
"single_word": false
|
| 108 |
+
},
|
| 109 |
+
"cls_token": {
|
| 110 |
+
"content": "<s>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false
|
| 115 |
+
},
|
| 116 |
+
"eos_token": {
|
| 117 |
+
"content": "</s>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false
|
| 122 |
+
},
|
| 123 |
+
"pad_token": {
|
| 124 |
+
"content": "<pad>",
|
| 125 |
+
"lstrip": false,
|
| 126 |
+
"normalized": false,
|
| 127 |
+
"rstrip": false,
|
| 128 |
+
"single_word": false
|
| 129 |
+
},
|
| 130 |
+
"sep_token": {
|
| 131 |
+
"content": "</s>",
|
| 132 |
+
"lstrip": false,
|
| 133 |
+
"normalized": false,
|
| 134 |
+
"rstrip": false,
|
| 135 |
+
"single_word": false
|
| 136 |
+
},
|
| 137 |
+
"unk_token": {
|
| 138 |
+
"content": "<unk>",
|
| 139 |
+
"lstrip": false,
|
| 140 |
+
"normalized": false,
|
| 141 |
+
"rstrip": false,
|
| 142 |
+
"single_word": false
|
| 143 |
+
}
|
| 144 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb08273b3ab8f38ebcb33558f96257ef97beeb0441f8a28eb886ae71d9f3e1fa
|
| 3 |
+
size 31219543
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,935 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"0": {
|
| 5 |
+
"content": "<pad>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"1": {
|
| 13 |
+
"content": "<unk>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"2": {
|
| 21 |
+
"content": "<s>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"3": {
|
| 29 |
+
"content": "</s>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"256001": {
|
| 37 |
+
"content": "__afr__",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"256002": {
|
| 45 |
+
"content": "__amh__",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"256003": {
|
| 53 |
+
"content": "__arb__",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"256004": {
|
| 61 |
+
"content": "__ary__",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"256005": {
|
| 69 |
+
"content": "__arz__",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"256006": {
|
| 77 |
+
"content": "__asm__",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"256007": {
|
| 85 |
+
"content": "__azj__",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"256008": {
|
| 93 |
+
"content": "__bel__",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"256009": {
|
| 101 |
+
"content": "__ben__",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"256010": {
|
| 109 |
+
"content": "__bos__",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"256011": {
|
| 117 |
+
"content": "__bul__",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": true
|
| 123 |
+
},
|
| 124 |
+
"256012": {
|
| 125 |
+
"content": "__cat__",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": true
|
| 131 |
+
},
|
| 132 |
+
"256013": {
|
| 133 |
+
"content": "__ceb__",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": true
|
| 139 |
+
},
|
| 140 |
+
"256014": {
|
| 141 |
+
"content": "__ces__",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": true
|
| 147 |
+
},
|
| 148 |
+
"256015": {
|
| 149 |
+
"content": "__ckb__",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": true
|
| 155 |
+
},
|
| 156 |
+
"256016": {
|
| 157 |
+
"content": "__cmn__",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": true
|
| 163 |
+
},
|
| 164 |
+
"256017": {
|
| 165 |
+
"content": "__cmn_Hant__",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": true
|
| 171 |
+
},
|
| 172 |
+
"256018": {
|
| 173 |
+
"content": "__cym__",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": true
|
| 179 |
+
},
|
| 180 |
+
"256019": {
|
| 181 |
+
"content": "__dan__",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": true
|
| 187 |
+
},
|
| 188 |
+
"256020": {
|
| 189 |
+
"content": "__deu__",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": true
|
| 195 |
+
},
|
| 196 |
+
"256021": {
|
| 197 |
+
"content": "__ell__",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": true
|
| 203 |
+
},
|
| 204 |
+
"256022": {
|
| 205 |
+
"content": "__eng__",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": true
|
| 211 |
+
},
|
| 212 |
+
"256023": {
|
| 213 |
+
"content": "__est__",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"256024": {
|
| 221 |
+
"content": "__eus__",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"256025": {
|
| 229 |
+
"content": "__fin__",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"256026": {
|
| 237 |
+
"content": "__fra__",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"256027": {
|
| 245 |
+
"content": "__fuv__",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"256028": {
|
| 253 |
+
"content": "__gaz__",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"256029": {
|
| 261 |
+
"content": "__gle__",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
},
|
| 268 |
+
"256030": {
|
| 269 |
+
"content": "__glg__",
|
| 270 |
+
"lstrip": false,
|
| 271 |
+
"normalized": false,
|
| 272 |
+
"rstrip": false,
|
| 273 |
+
"single_word": false,
|
| 274 |
+
"special": true
|
| 275 |
+
},
|
| 276 |
+
"256031": {
|
| 277 |
+
"content": "__guj__",
|
| 278 |
+
"lstrip": false,
|
| 279 |
+
"normalized": false,
|
| 280 |
+
"rstrip": false,
|
| 281 |
+
"single_word": false,
|
| 282 |
+
"special": true
|
| 283 |
+
},
|
| 284 |
+
"256032": {
|
| 285 |
+
"content": "__heb__",
|
| 286 |
+
"lstrip": false,
|
| 287 |
+
"normalized": false,
|
| 288 |
+
"rstrip": false,
|
| 289 |
+
"single_word": false,
|
| 290 |
+
"special": true
|
| 291 |
+
},
|
| 292 |
+
"256033": {
|
| 293 |
+
"content": "__hin__",
|
| 294 |
+
"lstrip": false,
|
| 295 |
+
"normalized": false,
|
| 296 |
+
"rstrip": false,
|
| 297 |
+
"single_word": false,
|
| 298 |
+
"special": true
|
| 299 |
+
},
|
| 300 |
+
"256034": {
|
| 301 |
+
"content": "__hrv__",
|
| 302 |
+
"lstrip": false,
|
| 303 |
+
"normalized": false,
|
| 304 |
+
"rstrip": false,
|
| 305 |
+
"single_word": false,
|
| 306 |
+
"special": true
|
| 307 |
+
},
|
| 308 |
+
"256035": {
|
| 309 |
+
"content": "__hun__",
|
| 310 |
+
"lstrip": false,
|
| 311 |
+
"normalized": false,
|
| 312 |
+
"rstrip": false,
|
| 313 |
+
"single_word": false,
|
| 314 |
+
"special": true
|
| 315 |
+
},
|
| 316 |
+
"256036": {
|
| 317 |
+
"content": "__hye__",
|
| 318 |
+
"lstrip": false,
|
| 319 |
+
"normalized": false,
|
| 320 |
+
"rstrip": false,
|
| 321 |
+
"single_word": false,
|
| 322 |
+
"special": true
|
| 323 |
+
},
|
| 324 |
+
"256037": {
|
| 325 |
+
"content": "__ibo__",
|
| 326 |
+
"lstrip": false,
|
| 327 |
+
"normalized": false,
|
| 328 |
+
"rstrip": false,
|
| 329 |
+
"single_word": false,
|
| 330 |
+
"special": true
|
| 331 |
+
},
|
| 332 |
+
"256038": {
|
| 333 |
+
"content": "__ind__",
|
| 334 |
+
"lstrip": false,
|
| 335 |
+
"normalized": false,
|
| 336 |
+
"rstrip": false,
|
| 337 |
+
"single_word": false,
|
| 338 |
+
"special": true
|
| 339 |
+
},
|
| 340 |
+
"256039": {
|
| 341 |
+
"content": "__isl__",
|
| 342 |
+
"lstrip": false,
|
| 343 |
+
"normalized": false,
|
| 344 |
+
"rstrip": false,
|
| 345 |
+
"single_word": false,
|
| 346 |
+
"special": true
|
| 347 |
+
},
|
| 348 |
+
"256040": {
|
| 349 |
+
"content": "__ita__",
|
| 350 |
+
"lstrip": false,
|
| 351 |
+
"normalized": false,
|
| 352 |
+
"rstrip": false,
|
| 353 |
+
"single_word": false,
|
| 354 |
+
"special": true
|
| 355 |
+
},
|
| 356 |
+
"256041": {
|
| 357 |
+
"content": "__jav__",
|
| 358 |
+
"lstrip": false,
|
| 359 |
+
"normalized": false,
|
| 360 |
+
"rstrip": false,
|
| 361 |
+
"single_word": false,
|
| 362 |
+
"special": true
|
| 363 |
+
},
|
| 364 |
+
"256042": {
|
| 365 |
+
"content": "__jpn__",
|
| 366 |
+
"lstrip": false,
|
| 367 |
+
"normalized": false,
|
| 368 |
+
"rstrip": false,
|
| 369 |
+
"single_word": false,
|
| 370 |
+
"special": true
|
| 371 |
+
},
|
| 372 |
+
"256043": {
|
| 373 |
+
"content": "__kan__",
|
| 374 |
+
"lstrip": false,
|
| 375 |
+
"normalized": false,
|
| 376 |
+
"rstrip": false,
|
| 377 |
+
"single_word": false,
|
| 378 |
+
"special": true
|
| 379 |
+
},
|
| 380 |
+
"256044": {
|
| 381 |
+
"content": "__kat__",
|
| 382 |
+
"lstrip": false,
|
| 383 |
+
"normalized": false,
|
| 384 |
+
"rstrip": false,
|
| 385 |
+
"single_word": false,
|
| 386 |
+
"special": true
|
| 387 |
+
},
|
| 388 |
+
"256045": {
|
| 389 |
+
"content": "__kaz__",
|
| 390 |
+
"lstrip": false,
|
| 391 |
+
"normalized": false,
|
| 392 |
+
"rstrip": false,
|
| 393 |
+
"single_word": false,
|
| 394 |
+
"special": true
|
| 395 |
+
},
|
| 396 |
+
"256046": {
|
| 397 |
+
"content": "__khk__",
|
| 398 |
+
"lstrip": false,
|
| 399 |
+
"normalized": false,
|
| 400 |
+
"rstrip": false,
|
| 401 |
+
"single_word": false,
|
| 402 |
+
"special": true
|
| 403 |
+
},
|
| 404 |
+
"256047": {
|
| 405 |
+
"content": "__khm__",
|
| 406 |
+
"lstrip": false,
|
| 407 |
+
"normalized": false,
|
| 408 |
+
"rstrip": false,
|
| 409 |
+
"single_word": false,
|
| 410 |
+
"special": true
|
| 411 |
+
},
|
| 412 |
+
"256048": {
|
| 413 |
+
"content": "__kir__",
|
| 414 |
+
"lstrip": false,
|
| 415 |
+
"normalized": false,
|
| 416 |
+
"rstrip": false,
|
| 417 |
+
"single_word": false,
|
| 418 |
+
"special": true
|
| 419 |
+
},
|
| 420 |
+
"256049": {
|
| 421 |
+
"content": "__kor__",
|
| 422 |
+
"lstrip": false,
|
| 423 |
+
"normalized": false,
|
| 424 |
+
"rstrip": false,
|
| 425 |
+
"single_word": false,
|
| 426 |
+
"special": true
|
| 427 |
+
},
|
| 428 |
+
"256050": {
|
| 429 |
+
"content": "__lao__",
|
| 430 |
+
"lstrip": false,
|
| 431 |
+
"normalized": false,
|
| 432 |
+
"rstrip": false,
|
| 433 |
+
"single_word": false,
|
| 434 |
+
"special": true
|
| 435 |
+
},
|
| 436 |
+
"256051": {
|
| 437 |
+
"content": "__lit__",
|
| 438 |
+
"lstrip": false,
|
| 439 |
+
"normalized": false,
|
| 440 |
+
"rstrip": false,
|
| 441 |
+
"single_word": false,
|
| 442 |
+
"special": true
|
| 443 |
+
},
|
| 444 |
+
"256052": {
|
| 445 |
+
"content": "__lug__",
|
| 446 |
+
"lstrip": false,
|
| 447 |
+
"normalized": false,
|
| 448 |
+
"rstrip": false,
|
| 449 |
+
"single_word": false,
|
| 450 |
+
"special": true
|
| 451 |
+
},
|
| 452 |
+
"256053": {
|
| 453 |
+
"content": "__luo__",
|
| 454 |
+
"lstrip": false,
|
| 455 |
+
"normalized": false,
|
| 456 |
+
"rstrip": false,
|
| 457 |
+
"single_word": false,
|
| 458 |
+
"special": true
|
| 459 |
+
},
|
| 460 |
+
"256054": {
|
| 461 |
+
"content": "__lvs__",
|
| 462 |
+
"lstrip": false,
|
| 463 |
+
"normalized": false,
|
| 464 |
+
"rstrip": false,
|
| 465 |
+
"single_word": false,
|
| 466 |
+
"special": true
|
| 467 |
+
},
|
| 468 |
+
"256055": {
|
| 469 |
+
"content": "__mai__",
|
| 470 |
+
"lstrip": false,
|
| 471 |
+
"normalized": false,
|
| 472 |
+
"rstrip": false,
|
| 473 |
+
"single_word": false,
|
| 474 |
+
"special": true
|
| 475 |
+
},
|
| 476 |
+
"256056": {
|
| 477 |
+
"content": "__mal__",
|
| 478 |
+
"lstrip": false,
|
| 479 |
+
"normalized": false,
|
| 480 |
+
"rstrip": false,
|
| 481 |
+
"single_word": false,
|
| 482 |
+
"special": true
|
| 483 |
+
},
|
| 484 |
+
"256057": {
|
| 485 |
+
"content": "__mar__",
|
| 486 |
+
"lstrip": false,
|
| 487 |
+
"normalized": false,
|
| 488 |
+
"rstrip": false,
|
| 489 |
+
"single_word": false,
|
| 490 |
+
"special": true
|
| 491 |
+
},
|
| 492 |
+
"256058": {
|
| 493 |
+
"content": "__mkd__",
|
| 494 |
+
"lstrip": false,
|
| 495 |
+
"normalized": false,
|
| 496 |
+
"rstrip": false,
|
| 497 |
+
"single_word": false,
|
| 498 |
+
"special": true
|
| 499 |
+
},
|
| 500 |
+
"256059": {
|
| 501 |
+
"content": "__mlt__",
|
| 502 |
+
"lstrip": false,
|
| 503 |
+
"normalized": false,
|
| 504 |
+
"rstrip": false,
|
| 505 |
+
"single_word": false,
|
| 506 |
+
"special": true
|
| 507 |
+
},
|
| 508 |
+
"256060": {
|
| 509 |
+
"content": "__mni__",
|
| 510 |
+
"lstrip": false,
|
| 511 |
+
"normalized": false,
|
| 512 |
+
"rstrip": false,
|
| 513 |
+
"single_word": false,
|
| 514 |
+
"special": true
|
| 515 |
+
},
|
| 516 |
+
"256061": {
|
| 517 |
+
"content": "__mya__",
|
| 518 |
+
"lstrip": false,
|
| 519 |
+
"normalized": false,
|
| 520 |
+
"rstrip": false,
|
| 521 |
+
"single_word": false,
|
| 522 |
+
"special": true
|
| 523 |
+
},
|
| 524 |
+
"256062": {
|
| 525 |
+
"content": "__nld__",
|
| 526 |
+
"lstrip": false,
|
| 527 |
+
"normalized": false,
|
| 528 |
+
"rstrip": false,
|
| 529 |
+
"single_word": false,
|
| 530 |
+
"special": true
|
| 531 |
+
},
|
| 532 |
+
"256063": {
|
| 533 |
+
"content": "__nno__",
|
| 534 |
+
"lstrip": false,
|
| 535 |
+
"normalized": false,
|
| 536 |
+
"rstrip": false,
|
| 537 |
+
"single_word": false,
|
| 538 |
+
"special": true
|
| 539 |
+
},
|
| 540 |
+
"256064": {
|
| 541 |
+
"content": "__nob__",
|
| 542 |
+
"lstrip": false,
|
| 543 |
+
"normalized": false,
|
| 544 |
+
"rstrip": false,
|
| 545 |
+
"single_word": false,
|
| 546 |
+
"special": true
|
| 547 |
+
},
|
| 548 |
+
"256065": {
|
| 549 |
+
"content": "__npi__",
|
| 550 |
+
"lstrip": false,
|
| 551 |
+
"normalized": false,
|
| 552 |
+
"rstrip": false,
|
| 553 |
+
"single_word": false,
|
| 554 |
+
"special": true
|
| 555 |
+
},
|
| 556 |
+
"256066": {
|
| 557 |
+
"content": "__nya__",
|
| 558 |
+
"lstrip": false,
|
| 559 |
+
"normalized": false,
|
| 560 |
+
"rstrip": false,
|
| 561 |
+
"single_word": false,
|
| 562 |
+
"special": true
|
| 563 |
+
},
|
| 564 |
+
"256067": {
|
| 565 |
+
"content": "__ory__",
|
| 566 |
+
"lstrip": false,
|
| 567 |
+
"normalized": false,
|
| 568 |
+
"rstrip": false,
|
| 569 |
+
"single_word": false,
|
| 570 |
+
"special": true
|
| 571 |
+
},
|
| 572 |
+
"256068": {
|
| 573 |
+
"content": "__pan__",
|
| 574 |
+
"lstrip": false,
|
| 575 |
+
"normalized": false,
|
| 576 |
+
"rstrip": false,
|
| 577 |
+
"single_word": false,
|
| 578 |
+
"special": true
|
| 579 |
+
},
|
| 580 |
+
"256069": {
|
| 581 |
+
"content": "__pbt__",
|
| 582 |
+
"lstrip": false,
|
| 583 |
+
"normalized": false,
|
| 584 |
+
"rstrip": false,
|
| 585 |
+
"single_word": false,
|
| 586 |
+
"special": true
|
| 587 |
+
},
|
| 588 |
+
"256070": {
|
| 589 |
+
"content": "__pes__",
|
| 590 |
+
"lstrip": false,
|
| 591 |
+
"normalized": false,
|
| 592 |
+
"rstrip": false,
|
| 593 |
+
"single_word": false,
|
| 594 |
+
"special": true
|
| 595 |
+
},
|
| 596 |
+
"256071": {
|
| 597 |
+
"content": "__pol__",
|
| 598 |
+
"lstrip": false,
|
| 599 |
+
"normalized": false,
|
| 600 |
+
"rstrip": false,
|
| 601 |
+
"single_word": false,
|
| 602 |
+
"special": true
|
| 603 |
+
},
|
| 604 |
+
"256072": {
|
| 605 |
+
"content": "__por__",
|
| 606 |
+
"lstrip": false,
|
| 607 |
+
"normalized": false,
|
| 608 |
+
"rstrip": false,
|
| 609 |
+
"single_word": false,
|
| 610 |
+
"special": true
|
| 611 |
+
},
|
| 612 |
+
"256073": {
|
| 613 |
+
"content": "__ron__",
|
| 614 |
+
"lstrip": false,
|
| 615 |
+
"normalized": false,
|
| 616 |
+
"rstrip": false,
|
| 617 |
+
"single_word": false,
|
| 618 |
+
"special": true
|
| 619 |
+
},
|
| 620 |
+
"256074": {
|
| 621 |
+
"content": "__rus__",
|
| 622 |
+
"lstrip": false,
|
| 623 |
+
"normalized": false,
|
| 624 |
+
"rstrip": false,
|
| 625 |
+
"single_word": false,
|
| 626 |
+
"special": true
|
| 627 |
+
},
|
| 628 |
+
"256075": {
|
| 629 |
+
"content": "__sat__",
|
| 630 |
+
"lstrip": false,
|
| 631 |
+
"normalized": false,
|
| 632 |
+
"rstrip": false,
|
| 633 |
+
"single_word": false,
|
| 634 |
+
"special": true
|
| 635 |
+
},
|
| 636 |
+
"256076": {
|
| 637 |
+
"content": "__slk__",
|
| 638 |
+
"lstrip": false,
|
| 639 |
+
"normalized": false,
|
| 640 |
+
"rstrip": false,
|
| 641 |
+
"single_word": false,
|
| 642 |
+
"special": true
|
| 643 |
+
},
|
| 644 |
+
"256077": {
|
| 645 |
+
"content": "__slv__",
|
| 646 |
+
"lstrip": false,
|
| 647 |
+
"normalized": false,
|
| 648 |
+
"rstrip": false,
|
| 649 |
+
"single_word": false,
|
| 650 |
+
"special": true
|
| 651 |
+
},
|
| 652 |
+
"256078": {
|
| 653 |
+
"content": "__sna__",
|
| 654 |
+
"lstrip": false,
|
| 655 |
+
"normalized": false,
|
| 656 |
+
"rstrip": false,
|
| 657 |
+
"single_word": false,
|
| 658 |
+
"special": true
|
| 659 |
+
},
|
| 660 |
+
"256079": {
|
| 661 |
+
"content": "__snd__",
|
| 662 |
+
"lstrip": false,
|
| 663 |
+
"normalized": false,
|
| 664 |
+
"rstrip": false,
|
| 665 |
+
"single_word": false,
|
| 666 |
+
"special": true
|
| 667 |
+
},
|
| 668 |
+
"256080": {
|
| 669 |
+
"content": "__som__",
|
| 670 |
+
"lstrip": false,
|
| 671 |
+
"normalized": false,
|
| 672 |
+
"rstrip": false,
|
| 673 |
+
"single_word": false,
|
| 674 |
+
"special": true
|
| 675 |
+
},
|
| 676 |
+
"256081": {
|
| 677 |
+
"content": "__spa__",
|
| 678 |
+
"lstrip": false,
|
| 679 |
+
"normalized": false,
|
| 680 |
+
"rstrip": false,
|
| 681 |
+
"single_word": false,
|
| 682 |
+
"special": true
|
| 683 |
+
},
|
| 684 |
+
"256082": {
|
| 685 |
+
"content": "__srp__",
|
| 686 |
+
"lstrip": false,
|
| 687 |
+
"normalized": false,
|
| 688 |
+
"rstrip": false,
|
| 689 |
+
"single_word": false,
|
| 690 |
+
"special": true
|
| 691 |
+
},
|
| 692 |
+
"256083": {
|
| 693 |
+
"content": "__swe__",
|
| 694 |
+
"lstrip": false,
|
| 695 |
+
"normalized": false,
|
| 696 |
+
"rstrip": false,
|
| 697 |
+
"single_word": false,
|
| 698 |
+
"special": true
|
| 699 |
+
},
|
| 700 |
+
"256084": {
|
| 701 |
+
"content": "__swh__",
|
| 702 |
+
"lstrip": false,
|
| 703 |
+
"normalized": false,
|
| 704 |
+
"rstrip": false,
|
| 705 |
+
"single_word": false,
|
| 706 |
+
"special": true
|
| 707 |
+
},
|
| 708 |
+
"256085": {
|
| 709 |
+
"content": "__tam__",
|
| 710 |
+
"lstrip": false,
|
| 711 |
+
"normalized": false,
|
| 712 |
+
"rstrip": false,
|
| 713 |
+
"single_word": false,
|
| 714 |
+
"special": true
|
| 715 |
+
},
|
| 716 |
+
"256086": {
|
| 717 |
+
"content": "__tel__",
|
| 718 |
+
"lstrip": false,
|
| 719 |
+
"normalized": false,
|
| 720 |
+
"rstrip": false,
|
| 721 |
+
"single_word": false,
|
| 722 |
+
"special": true
|
| 723 |
+
},
|
| 724 |
+
"256087": {
|
| 725 |
+
"content": "__tgk__",
|
| 726 |
+
"lstrip": false,
|
| 727 |
+
"normalized": false,
|
| 728 |
+
"rstrip": false,
|
| 729 |
+
"single_word": false,
|
| 730 |
+
"special": true
|
| 731 |
+
},
|
| 732 |
+
"256088": {
|
| 733 |
+
"content": "__tgl__",
|
| 734 |
+
"lstrip": false,
|
| 735 |
+
"normalized": false,
|
| 736 |
+
"rstrip": false,
|
| 737 |
+
"single_word": false,
|
| 738 |
+
"special": true
|
| 739 |
+
},
|
| 740 |
+
"256089": {
|
| 741 |
+
"content": "__tha__",
|
| 742 |
+
"lstrip": false,
|
| 743 |
+
"normalized": false,
|
| 744 |
+
"rstrip": false,
|
| 745 |
+
"single_word": false,
|
| 746 |
+
"special": true
|
| 747 |
+
},
|
| 748 |
+
"256090": {
|
| 749 |
+
"content": "__tur__",
|
| 750 |
+
"lstrip": false,
|
| 751 |
+
"normalized": false,
|
| 752 |
+
"rstrip": false,
|
| 753 |
+
"single_word": false,
|
| 754 |
+
"special": true
|
| 755 |
+
},
|
| 756 |
+
"256091": {
|
| 757 |
+
"content": "__ukr__",
|
| 758 |
+
"lstrip": false,
|
| 759 |
+
"normalized": false,
|
| 760 |
+
"rstrip": false,
|
| 761 |
+
"single_word": false,
|
| 762 |
+
"special": true
|
| 763 |
+
},
|
| 764 |
+
"256092": {
|
| 765 |
+
"content": "__urd__",
|
| 766 |
+
"lstrip": false,
|
| 767 |
+
"normalized": false,
|
| 768 |
+
"rstrip": false,
|
| 769 |
+
"single_word": false,
|
| 770 |
+
"special": true
|
| 771 |
+
},
|
| 772 |
+
"256093": {
|
| 773 |
+
"content": "__uzn__",
|
| 774 |
+
"lstrip": false,
|
| 775 |
+
"normalized": false,
|
| 776 |
+
"rstrip": false,
|
| 777 |
+
"single_word": false,
|
| 778 |
+
"special": true
|
| 779 |
+
},
|
| 780 |
+
"256094": {
|
| 781 |
+
"content": "__vie__",
|
| 782 |
+
"lstrip": false,
|
| 783 |
+
"normalized": false,
|
| 784 |
+
"rstrip": false,
|
| 785 |
+
"single_word": false,
|
| 786 |
+
"special": true
|
| 787 |
+
},
|
| 788 |
+
"256095": {
|
| 789 |
+
"content": "__yor__",
|
| 790 |
+
"lstrip": false,
|
| 791 |
+
"normalized": false,
|
| 792 |
+
"rstrip": false,
|
| 793 |
+
"single_word": false,
|
| 794 |
+
"special": true
|
| 795 |
+
},
|
| 796 |
+
"256096": {
|
| 797 |
+
"content": "__yue__",
|
| 798 |
+
"lstrip": false,
|
| 799 |
+
"normalized": false,
|
| 800 |
+
"rstrip": false,
|
| 801 |
+
"single_word": false,
|
| 802 |
+
"special": true
|
| 803 |
+
},
|
| 804 |
+
"256097": {
|
| 805 |
+
"content": "__zlm__",
|
| 806 |
+
"lstrip": false,
|
| 807 |
+
"normalized": false,
|
| 808 |
+
"rstrip": false,
|
| 809 |
+
"single_word": false,
|
| 810 |
+
"special": true
|
| 811 |
+
},
|
| 812 |
+
"256098": {
|
| 813 |
+
"content": "__zul__",
|
| 814 |
+
"lstrip": false,
|
| 815 |
+
"normalized": false,
|
| 816 |
+
"rstrip": false,
|
| 817 |
+
"single_word": false,
|
| 818 |
+
"special": true
|
| 819 |
+
}
|
| 820 |
+
},
|
| 821 |
+
"additional_special_tokens": [
|
| 822 |
+
"__afr__",
|
| 823 |
+
"__amh__",
|
| 824 |
+
"__arb__",
|
| 825 |
+
"__ary__",
|
| 826 |
+
"__arz__",
|
| 827 |
+
"__asm__",
|
| 828 |
+
"__azj__",
|
| 829 |
+
"__bel__",
|
| 830 |
+
"__ben__",
|
| 831 |
+
"__bos__",
|
| 832 |
+
"__bul__",
|
| 833 |
+
"__cat__",
|
| 834 |
+
"__ceb__",
|
| 835 |
+
"__ces__",
|
| 836 |
+
"__ckb__",
|
| 837 |
+
"__cmn__",
|
| 838 |
+
"__cmn_Hant__",
|
| 839 |
+
"__cym__",
|
| 840 |
+
"__dan__",
|
| 841 |
+
"__deu__",
|
| 842 |
+
"__ell__",
|
| 843 |
+
"__eng__",
|
| 844 |
+
"__est__",
|
| 845 |
+
"__eus__",
|
| 846 |
+
"__fin__",
|
| 847 |
+
"__fra__",
|
| 848 |
+
"__fuv__",
|
| 849 |
+
"__gaz__",
|
| 850 |
+
"__gle__",
|
| 851 |
+
"__glg__",
|
| 852 |
+
"__guj__",
|
| 853 |
+
"__heb__",
|
| 854 |
+
"__hin__",
|
| 855 |
+
"__hrv__",
|
| 856 |
+
"__hun__",
|
| 857 |
+
"__hye__",
|
| 858 |
+
"__ibo__",
|
| 859 |
+
"__ind__",
|
| 860 |
+
"__isl__",
|
| 861 |
+
"__ita__",
|
| 862 |
+
"__jav__",
|
| 863 |
+
"__jpn__",
|
| 864 |
+
"__kan__",
|
| 865 |
+
"__kat__",
|
| 866 |
+
"__kaz__",
|
| 867 |
+
"__khk__",
|
| 868 |
+
"__khm__",
|
| 869 |
+
"__kir__",
|
| 870 |
+
"__kor__",
|
| 871 |
+
"__lao__",
|
| 872 |
+
"__lit__",
|
| 873 |
+
"__lug__",
|
| 874 |
+
"__luo__",
|
| 875 |
+
"__lvs__",
|
| 876 |
+
"__mai__",
|
| 877 |
+
"__mal__",
|
| 878 |
+
"__mar__",
|
| 879 |
+
"__mkd__",
|
| 880 |
+
"__mlt__",
|
| 881 |
+
"__mni__",
|
| 882 |
+
"__mya__",
|
| 883 |
+
"__nld__",
|
| 884 |
+
"__nno__",
|
| 885 |
+
"__nob__",
|
| 886 |
+
"__npi__",
|
| 887 |
+
"__nya__",
|
| 888 |
+
"__ory__",
|
| 889 |
+
"__pan__",
|
| 890 |
+
"__pbt__",
|
| 891 |
+
"__pes__",
|
| 892 |
+
"__pol__",
|
| 893 |
+
"__por__",
|
| 894 |
+
"__ron__",
|
| 895 |
+
"__rus__",
|
| 896 |
+
"__sat__",
|
| 897 |
+
"__slk__",
|
| 898 |
+
"__slv__",
|
| 899 |
+
"__sna__",
|
| 900 |
+
"__snd__",
|
| 901 |
+
"__som__",
|
| 902 |
+
"__spa__",
|
| 903 |
+
"__srp__",
|
| 904 |
+
"__swe__",
|
| 905 |
+
"__swh__",
|
| 906 |
+
"__tam__",
|
| 907 |
+
"__tel__",
|
| 908 |
+
"__tgk__",
|
| 909 |
+
"__tgl__",
|
| 910 |
+
"__tha__",
|
| 911 |
+
"__tur__",
|
| 912 |
+
"__ukr__",
|
| 913 |
+
"__urd__",
|
| 914 |
+
"__uzn__",
|
| 915 |
+
"__vie__",
|
| 916 |
+
"__yor__",
|
| 917 |
+
"__yue__",
|
| 918 |
+
"__zlm__",
|
| 919 |
+
"__zul__"
|
| 920 |
+
],
|
| 921 |
+
"bos_token": "<s>",
|
| 922 |
+
"clean_up_tokenization_spaces": true,
|
| 923 |
+
"cls_token": "<s>",
|
| 924 |
+
"eos_token": "</s>",
|
| 925 |
+
"extra_special_tokens": {},
|
| 926 |
+
"model_max_length": 1000000000000000019884624838656,
|
| 927 |
+
"pad_token": "<pad>",
|
| 928 |
+
"processor_class": "SeamlessM4TProcessor",
|
| 929 |
+
"sep_token": "</s>",
|
| 930 |
+
"sp_model_kwargs": {},
|
| 931 |
+
"src_lang": "__eng__",
|
| 932 |
+
"tgt_lang": "__fra__",
|
| 933 |
+
"tokenizer_class": "SeamlessM4TTokenizer",
|
| 934 |
+
"unk_token": "<unk>"
|
| 935 |
+
}
|