source languages: nl; target languages: en; OPUS readme: nl-en; dataset: opus; model: transformer-align; pre-processing: normalization + SentencePiece.
Search public pages, research tools, and SAVRN solutions.
A Frontier Sparse Mixture-of-Experts (SMoE) Foundation Translation Model for 500+ Global Languages Mythos is an open-source foundation model family built by Adithyan AI.
By Adithyan bm, published under apache-2.0, revision 688abee06a4a.
A Frontier Sparse Mixture-of-Experts (SMoE) Foundation Translation Model for 500+ Global Languages Mythos is an open-source foundation model family built by Adithyan AI. In this organization, we develop and open-source state-of-the-art Sparse Mixture-of-Experts (SMoE) language models, universal translation engines, parallel multilingual datasets, and ultra-efficient inference runtimes targeting 500+ languages. 100% Free and Open-Source: Released under the permissive Apache 2.0 license with zero paywalls, metered tokens, or subscription fees. Mythos2.0-2B was trained on a massive 16.5B sentence-pair parallel corpus covering 500+ languages and regional dialects across Africa, the Americas…
Organization · Supported Languages (500+) · Collections · Architecture · Quickstart · Collaboration
Mythos is an open-source foundation model family built by Adithyan AI. In this organization, we develop and open-source state-of-the-art Sparse Mixture-of-Experts (SMoE) language models, universal translation engines, parallel multilingual datasets, and ultra-efficient inference runtimes targeting 500+ languages.
Mythos2.0-2B was trained on a massive 16.5B sentence-pair parallel corpus covering 500+ languages and regional dialects across Africa, the Americas, Asia, Europe, and Oceania.
To translate any text into a desired language, simply prepend the target language tag <2code> (e.g. <2es> for Spanish, <2ml> for Malayalam, <2hi> for Hindi, <2fr> for French, <2de> for German, <2ta> for Tamil).
eng), Spanish (spa), French (fra), German (deu), Italian (ita), Portuguese (por), Russian (rus), Mandarin Chinese (cmn), Japanese (jpn), Korean (kor), Arabic (ara), Turkish (tur), Vietnamese (vie), Indonesian (ind), Dutch (nld), Polish (pol).hin), Malayalam (mal), Tamil (tam), Telugu (tel), Bengali (ben), Marathi (mar), Gujarati (guj), Kannada (kan), Punjabi (pan), Urdu (urd), Odia (ori), Assamese (asm), Sanskrit (san), Nepali (nep), Sinhala (sin), Maithili (mai), Bhojpuri (bho), Sindhi (snd), Kashmiri (kas), Konkani (kok).swa), Amharic (amh), Yoruba (yor), Igbo (ibo), Hausa (hau), Somali (som), Oromo (orm), Zulu (zul), Xhosa (xho), Shona (sna), Tigrinya (tir), Malagasy (mlg), Kinyarwanda (kin), Lingala (lin), Bambara (bam), Wolof (wol).ukr), Czech (ces), Romanian (ron), Greek (ell), Hungarian (hun), Danish (dan), Finnish (fin), Norwegian (nob), Swedish (swe), Bulgarian (bul), Croatian (hrv), Serbian (srp), Slovak (slk), Catalan (cat), Basque (eus), Galician (glg), Irish (gle), Welsh (cym), Scottish Gaelic (gla).Southeast Asian & Middle Eastern Languages: Thai (tha), Burmese (mya), Khmer (khm), Lao (lao), Tagalog / Filipino (fil), Cebuano (ceb), Persian / Farsi (pes), Hebrew (heb), Pashto (pus), Kurdish (kmr/ckb), Uyghur (uig), Kazakh (kaz), Uzbek (uzb), Azerbaijani (aze).
Americas & Indigenous Languages: Quechua (que), Guarani (grn), Aymara (aym), Nahuatl (nah), Navajo (nav), Mayan languages (myn), Inuktitut (iku), Cherokee (chr).
[!TIP] Universal Language Prompting:
To translate into any supported language, prepend<2{iso_code}>to your source text (e.g.,<2es>for Spanish,<2hi>for Hindi,<2fr>for French,<2de>for German,<2ml>for Malayalam). All 500+ ISO-639 language codes are mapped directly into the model vocabulary and registered in the metadata above for automatic Hugging Face search filtering.
Following the modular design of frontier foundation families like Qwen, the Mythos2.0 Series spans foundation models, specialized context engines, and quantized edge runtimes:
| Collection / Model | Architecture | Parameters (Total / Active) | Context Window | Target Capability | Status |
|---|---|---|---|---|---|
| Mythos2.0-2B | Sparse MoE (8E, Top-2) | 2.04B / 678.7M | 8,192 | Flagship Universal 500+ Language Translation | Active Run |
| Mythos2.0-4B | Sparse MoE (16E, Top-2) | 4.10B / 1.10B | 16,384 | Long Document and Legal/Technical Translation | Pipeline |
| Mythos2.0-Edge-2B | 2-bit / 4-bit SMoE | 2.04B (~1.2 GB RAM) | 4,096 | Sub-2-bit Edge and Mobile Phone Deployment | In Dev |
| Mythos-Tokenizer | Byte-Level BPE | 128,000 Vocab | - | Balanced Compression for 552 Global Languages | Available |
| Mythos-16B-Corpus | Parallel Bilingual Corpus | 16 Billion Pairs | - | Bicleaner & LASER Curated Parallel Training Data | Open Data |
Explore all models in the official Hugging Face Collection:
https://huggingface.co/collections/AdithyanAI
src_embed, tgt_embed, proj.weight) in full 32-bit FP32 master weights, ensuring stable representation across rare scripts.| Specification | Mythos2.0-2B | TranslateGemma-7B | NLLB-200 (3.3B) | Google Cloud API |
|---|---|---|---|---|
| Architecture | Sparse MoE (8E, Top-2) | Dense Transformer | Dense Enc-Dec | Proprietary LLM |
| Total Parameters | 2.04B | 7.0B | 3.3B | Closed |
| Active Parameters / Token | 678.7M | 7.0B | 3.3B | Closed |
| Context Window | 8,192 tokens | 2,048 tokens | 1,024 tokens | Dynamic |
| Supported Languages | 500+ | 55 | 200 | 189 |
| Min Inference VRAM | ~4 GB | 16 GB | 8 GB | Cloud API |
| License | Apache 2.0 (100% Free) | Community License | CC-BY-NC 4.0 | Paid Metered API |
AdithyanAI/Mythos2.0-2B2,037,643,264)678,688,768)aux_loss_weight = 0.01)pip install torch transformers tokenizers sacrebleu
import torch
from tokenizers import Tokenizer
# Load Tokenizer
tokenizer = Tokenizer.from_file("multilingual_tokenizer.json")
sos_id = tokenizer.token_to_id("[SOS]")
eos_id = tokenizer.token_to_id("[EOS]")
pad_id = tokenizer.token_to_id("[PAD]")
def translate(model, text: str, tgt_lang: str = "fra", max_len: int = 128, device: str = "cuda:0"):
clean_tgt = tgt_lang.split("_")[0]
prompt = f"<2{clean_tgt}> {text}"
tokens = tokenizer.encode(prompt).ids
src_tensor = torch.tensor([tokens], dtype=torch.long, device=device)
src_mask = (src_tensor != pad_id).unsqueeze(1).unsqueeze(2)
with torch.no_grad():
enc_out = model.encode(src_tensor, src_mask)
gen_tokens = torch.tensor([[sos_id, tokenizer.token_to_id(f"<2{clean_tgt}>")]], device=device)
for _ in range(max_len):
cur_len = gen_tokens.size(1)
causal_mask = torch.tril(torch.ones((cur_len, cur_len), dtype=torch.bool, device=device)).unsqueeze(0).unsqueeze(0)
dec_out = model.decode(gen_tokens, enc_out, src_mask, causal_mask)
logits = model.project(dec_out[:, -1:])
next_token = logits.argmax(dim=-1).item()
if next_token == eos_id:
break
gen_tokens = torch.cat([gen_tokens, torch.tensor([[next_token]], device=device)], dim=1)
return tokenizer.decode(gen_tokens[0].tolist()[2:])
capacity_factor = 1.35) with calibrated auxiliary loss (0.01) preventing expert collapse.We welcome researchers, linguists, and compute sponsors to join the Mythos AI initiative:
If you use Mythos2.0-2B in your research or applications, please cite:
@misc{mythos2026multilingual,
author = {Adithyan AI and Community Contributors},
title = {Mythos2.0-2B: A Free and Open-Source Sparse Mixture-of-Experts Translation Foundation Model for 500+ Languages},
year = {2026},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/AdithyanAI/Mythos2.0-2B}}
}
12 files, 27.6 GB in total. The weights are 4 files totalling 27.6 GB in pt.
| File | Type | Size | SHA-256 |
|---|---|---|---|
| Mythos_Translator.pt | Weights | 9.2 GB | — |
| best_checkpoint.pt | Weights | 9.2 GB | — |
| fixed_val_benchmark.pt | Weights | 1.9 MB | — |
| last_checkpoint.pt | Weights | 9.2 GB | — |
| README.md | Documentation | 18.0 KB | — |
| figures/mythos_icon.png | Other | 482.8 KB | — |
| figures/mythos_logo.svg | Other | 2.5 KB | — |
| runs/events.out.tfevents.1789653379.276b212c64a7.74.0 | Other | 238.1 KB | — |
| runs/events.out.tfevents.1789699125.7b69f9e914cb.74.0 | Other | 179.5 KB | — |
| validation_metrics.csv | Other | 905 B | — |
| .gitattributes | Repository | 2.4 KB | — |
| multilingual_tokenizer.json | Tokenizer | 10.0 MB | — |
Adithyan bm grants access through its official repository on Hugging Face. Read the license.
| Precision | Weights in memory |
|---|---|
| As published | 27.6 GB |
Weights only, from the published parameter count; the key-value cache and runtime add to this.
Yes. Mythos2.0-2B is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.
source languages: nl; target languages: en; OPUS readme: nl-en; dataset: opus; model: transformer-align; pre-processing: normalization + SentencePiece.
This is the model card of NLLB-200's distilled 600M variant. Here are the metrics for that particular checkpoint. - Information about training algorithms, parameters, fairness constraints or other applied approaches, and features. The exact training algorithm, data and the strategies to handle data imbalances for high and low resource languages that were used to train NLLB-200 is described in the paper. - Paper or other resource for more information NLLB Team et al, No Language Left Behind: Scaling Human-Centered Machine Translation, Arxiv, 2022 - Where to send questions or comments about the model: https://github.com/facebookresearch/fairseq/issues • Model performance measures: NLLB-200…
source languages: en; target languages: ru; OPUS readme: en-ru; dataset: opus; model: transformer-align; pre-processing: normalization + SentencePiece.
This model can be used for translation and text-to-text generation. CONTENT WARNING: Readers should be aware this section contains content that is disturbing, offensive, and can propagate historical and current stereotypes. Significant research has explored bias and fairness issues with language models (see, e.g., Sheng et al. (2021) and Bender et al. (2021)). Further details about the dataset for this model can be found in the OPUS readme: en-de
hfname: kor-eng - sourcelanguages: kor - targetlanguages: eng - opusreadmeurl: https://github.com/Helsinki-NLP/Tatoeba-Challenge/tree/master/models/kor-eng/README.md - originalrepo: Tatoeba-Challenge - srcconstituents: {'korHani', 'korHang', 'korLatn', 'kor'} - tgtconstituents: {'eng'} - srcmultilingual: False - tgtmultilingual: False - urlmodel: https://object.pouta.csc.fi/Tatoeba-MT-models/kor-eng/opus-2020-06-17.zip - urltestset: https://object.pouta.csc.fi/Tatoeba-MT-models/kor-eng/opus-2020-06-17.test.txt - srcalpha3: kor - tgtalpha3: eng - shortpair: ko-en - chrF2score: 0.588 - brevitypenalty: 0.9590000000000001 - reflen: 17711.0 - srcname: Korean - tgtname: English - traindate…
source languages: de; target languages: en; OPUS readme: de-en; dataset: opus; model: transformer-align; pre-processing: normalization + SentencePiece.