Model reference · open weights
EuroMoE-A-2512 is an open-weight language model from utter-project. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | utter-project |
|---|---|
| Type | Language models |
| Task | Text gen · MoE |
| Parameters (lead) | 2.6B |
| Context | 32k tokens |
| Runs with | transformers |
| Based on | utter-project/EuroMoE-2.6B-A0.6B-2512 |
| Released | 2025-12-15 |
| Popularity | 539 downloads / month |
| Licence | Open weights |
About
This is the model card for EuroMoE-2.6B-A0.6B-Instruct-2512. You can also check the pre-trained version: EuroMoE-2.6B-A0.6B-2512.
The EuroLLM project has the goal of creating a suite of LLMs capable of understanding and generating text in all European Union languages as well as some additional relevant languages. EuroMoE-2.6B-A0.6B is a 2.6B parameter model trained on 8 trillion tokens divided across the considered languages and several data sources: Web data, parallel data (en-xx and xx-en), and high-quality datasets. EuroMoE-2.6B-A0.6B-Instruct was further instruction tuned on EuroBlocks, an instruction tuning dataset with focus on general instruction-following and machine translation.
EuroMoE uses a standard MoE Transformer architecture:
For pre-training, we use 512 Nvidia A100 GPUs of the Leonardo supercomputer, training the model with a constant batch size of 4096 sequences, which corresponds to approximately 17 million tokens, using the Adam optimizer, and BF16 precision. Here is a summary of the model hyper-parameters:
| Sequence Length | 4,096 |
| Number of Layers | 24 |
| Embedding Size | 1,024 |
| Total/Active experts | 64/8 |
| Expert Hidden Size | 512 |
| Number of Heads | 8 |
| Number of KV Heads (GQA) | 2 |
| Activation Function | SwiGLU |
| Position Encodings | RoPE (\Theta=500,000) |
| Layer Norm | RMSNorm |
| Tied Embeddings | Yes |
| Embedding Parameters | 0.13B |
| LM Head Parameters | 0.13B |
| Active Non-embedding Parameters | 0.34B |
| Total Non-embedding Parameters | 2.35B |
| Active Parameters | 0.6B |
| Total Parameters | 2.61B |
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "utter-project/EuroMoE-2.6B-A0.6B-Instruct-2512"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
messages = [
{
"role": "system",
"content": "You are EuroLLM --- an AI assistant specialized in European languages that provides safe, educational and helpful answers.",
},
{
"role": "user", "content": "What is the capital of Portugal? How would you describe it?"
},
]
inputs = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt")
outputs = model.generate(inputs, max_new_tokens=1024)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
EuroMoE-2.6B-A0.6B-Instruct-2512 has not been aligned to human preferences, so the model may generate problematic outputs (e.g., hallucinations, harmful content, or false statements).
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys euromoe-a-2512 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (euromoe-a-2512 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"euromoe-a-2512","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.