PrimeIntellect/INTELLECT-3
2177k
1---2library_name: transformers3tags:4- prime-rl5- verifiers6- prime-intellect7- reinforcement-learning8- reasoning9- agentic10- mixture-of-experts11license: mit12language:13- en14base_model:15- zai-org/GLM-4.5-Air-Base16pipeline_tag: text-generation17---18 19# INTELLECT-320 21<div align="center">22<img src="banner.png" alt="Prime Intellect Logo" />23</div>24 25<p align="center">26 <strong>INTELLECT-3: A 100B+ MoE trained with large-scale RL</strong>27 <br><br>28 Trained with <a href="https://github.com/PrimeIntellect-ai/prime-rl">prime-rl</a> and <a href="https://github.com/PrimeIntellect-ai/verifiers">verifiers</a>29 <br>30 Environments released on <a href="https://app.primeintellect.ai/dashboard/environments">Environments Hub</a> 31 <br>32 Read the <a href="https://primeintellect.ai/blog/intellect-3">Blog</a> & <a href="https://storage.googleapis.com/intellect-3-paper/INTELLECT_3_Technical_Report.pdf">Technical Report</a>33 <br>34 <a href="https://x.com/primeintellect">X</a> | <a href="https://discord.gg/RC5GvMbfDf">Discord</a> | <a href="https://app.primeintellect.ai/dashboard/create-cluster">Prime Intellect Platform</a>35</p>36 37## Introduction38 39**INTELLECT-3** is a 106B (A12B) parameter Mixture-of-Experts reasoning model post-trained from [GLM-4.5-Air-Base](https://huggingface.co/zai-org/GLM-4.5-Air-Base) using supervised fine-tuning (SFT) followed by large-scale reinforcement learning (RL).40 4142 43Training was performed with [prime-rl](https://github.com/PrimeIntellect-ai/prime-rl) using environments built with the [verifiers](https://github.com/PrimeIntellect-ai/verifiers) library.44All training and evaluation environments are available on the [Environments Hub](https://app.primeintellect.ai/dashboard/environments).45 46The model, training frameworks, and environments are open-sourced under fully-permissive licenses (MIT and Apache 2.0).47 48For more details, see the [technical report](https://storage.googleapis.com/intellect-3-paper/INTELLECT_3_Technical_Report.pdf).49 50## Evaluation51 52INTELLECT-3 achieves best-in-class performance on math, coding, and reasoning benchmarks:53 54| Benchmark | MATH-500 | AIME24 | AIME25 | LCB | GPQA | HLE | MMLU-Pro |55|-----------|----------|---------|---------|--------|------|-----|----------|56| INTELLECT-3 | **98.1** | **90.8** | **88.0** | 69.3 | 74.4 | 14.6 | 81.9 |57| GLM-4.5-Air | 97.8 | 84.6 | 82.0 | 61.5 | 73.3 | 13.3 | 73.9 |58| GLM-4.5 | 97.0 | 85.8 | 83.3 | 64.5 | 77.0 | 14.8 | 83.5 |59| DeepSeek R1 0528 | 87.3 | 83.2 | 73.4 | 62.5 | 77.5 | 15.9 | 75.3 |60| DeepSeek v3.2 | 96.8 | 88.1 | 84.7 | **71.6** | **81.4** | **17.9** | **84.6** |61| GPT-O5S 120B | 96.0 | 75.8 | 77.7 | 69.9 | 70.0 | 10.6 | 67.1 |62 63## Model Variants64 65| Model | HuggingFace |66|-------|-------------|67| INTELLECT-3 | [PrimeIntellect/INTELLECT-3](https://huggingface.co/PrimeIntellect/INTELLECT-3) |68| INTELLECT-3-FP8 | [PrimeIntellect/INTELLECT-3-FP8](https://huggingface.co/PrimeIntellect/INTELLECT-3-FP8) |69 70## Serving with vLLM71 72The BF16 version can be served on 2x H200s:73```bash74vllm serve PrimeIntellect/INTELLECT-3 \75 --tensor-parallel-size 2 \76 --enable-auto-tool-choice \77 --tool-call-parser qwen3_coder \78 --reasoning-parser deepseek_r179```80 81The FP8 version can be served on a single H200:82 83```bash84vllm serve PrimeIntellect/INTELLECT-3-FP8 \85 --enable-auto-tool-choice \86 --tool-call-parser qwen3_coder \87 --reasoning-parser deepseek_r188```89 90## Citation91 92```bibtex93@misc{intellect3,94 title={INTELLECT-3: Technical Report},95 author={Prime Intellect Team},96 year={2025},97 url={https://huggingface.co/PrimeIntellect/INTELLECT-3}98}99```100 