Views
No views yet

| Version | 26.05.01 |
| Calibration | STEM and Agentic |
| Languages |
EN ZH HI AR RU
JA KO NL FR ES
|
| Model Size | 11.26 GB |
| Contact |

| Model | Stage | Description |
|---|---|---|
| Instella-MoE-16B-A3B-Pretrain (Link) | Pre-training | MoE base model trained from scratch on a large and diverse training corpus. |
| Instella-MoE-16B-A3B-Midtrain (Link) | Mid-training | Pretrained model further trained on high-quality data mixtures to refine key capabilities. |
| Instella-MoE-16B-A3B-Base (Link) | Long-context | Long-context training to extend the model’s ability to process and reason over longer sequences. We use this as our final base checkpoint. |
| Instella-MoE-16B-A3B-SFT (Link) | SFT | Base checkpoint extended via supervised fine-tuning (SFT) to enable instruction following and chain-of-thought reasoning capabilities. |
| Instella-MoE-16B-A3B-DPO (Link) | DPO | Direct preference optimization (DPO) on contrastive preference data to improve model performance. |
| Instella-MoE-16B-A3B-Think (Link) | RL | Final thinking checkpoint refined with reinforcement learning (RL) to further strengthen instruction following and overall response quality. |
| Parameter | Value |
|---|---|
| Total Parameters | 16B |
| Active Parameters per Token | 2.8B |
| Decoder Layers | 27 |
| Hidden Size | 2048 |
| Attention Heads | 16 |
| Number of Experts | 64 |
| Shared Experts | 2 |
| Activated Experts per Token | 6 |
| Vocabulary Size | 128,896 |
| Attention | Gated Multi-head Latent Attention (Gated MLA) |
| MoE Connectivity | FarSkip-Collective |



1from transformers import AutoModelForCausalLM, AutoTokenizer
2checkpoint = "amd/Instella-MoE-16B-A3B-Think"
3
4tokenizer = AutoTokenizer.from_pretrained(checkpoint, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(checkpoint, device_map="auto", trust_remote_code=True)
6
7prompt = [{"role": "user", "content": "What are the computational benefits of Mixture-of-Experts models?"}]
8inputs = tokenizer.apply_chat_template(
9 prompt,
10 add_generation_prompt=True,
11 return_tensors='pt'
12)
13
14tokens = model.generate(
15 inputs.to(model.device),
16 max_new_tokens=1024,
17 temperature=0.6,
18 top_p=0.95,
19 do_sample=True
20)
21
22print(tokenizer.decode(tokens[0], skip_special_tokens=False))Core contributors: Jiang Liu, Sudhanshu Ranjan, Prakamya Mishra, Yonatan Dukler, Gowtham Ramesh, Zicheng LiuContributors: Jialian Wu, Ximeng Sun, Wen Xie, Chaojun Hou, Vikram Appia, Zhenyu Gu, Emad Barsoum
1@article{instella,
2 title={Instella: Fully Open Language Models with Stellar Performance},
3 author={Liu, Jiang and Wu, Jialian and Yu, Xiaodong and Su, Yusheng and Mishra, Prakamya and Ramesh, Gowtham and Ranjan, Sudhanshu and Manem, Chaitanya and Sun, Ximeng and Wang, Ze and Brahma, Pratik Prabhanjan and Liu, Zicheng and Barsoum, Emad},
4 journal={arXiv preprint arXiv:2511.10628},
5 year={2025}
6}
7
8@inproceedings{
9dukler2026farskipcollective,
10title={FarSkip-Collective: Unhobbling Blocking Communication in Mixture of Experts Models},
11author={Yonatan Dukler and Guihong Li and Deval Shah and Jiang Liu and Vikram Appia and Emad Barsoum},
12booktitle={Ninth Conference on Machine Learning and Systems},
13year={2026},
14url={https://openreview.net/forum?id=ruOpvLzsGV}
15}