Text Generation
Transformers
Safetensors
English
Korean
Motif
feature-extraction
motif
motif-3
mixture-of-experts
Mixture of Experts
multilingual
conversational
custom_code
Eval Results
Instructions to use Motif-Technologies/Motif-3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Motif-Technologies/Motif-3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Motif-Technologies/Motif-3", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Motif-Technologies/Motif-3", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Motif-Technologies/Motif-3 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Motif-Technologies/Motif-3" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Motif-Technologies/Motif-3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Motif-Technologies/Motif-3
- SGLang
How to use Motif-Technologies/Motif-3 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Motif-Technologies/Motif-3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Motif-Technologies/Motif-3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Motif-Technologies/Motif-3" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Motif-Technologies/Motif-3", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Motif-Technologies/Motif-3 with Docker Model Runner:
docker model run hf.co/Motif-Technologies/Motif-3
Update README.md
Browse files
README.md
CHANGED
|
@@ -78,28 +78,28 @@ For contextual comparison, Motif 3 is compared with strong open-weight models us
|
|
| 78 |
(*: public dataset only)
|
| 79 |
<div align="center">
|
| 80 |
|
| 81 |
-
| Benchmark | **Motif 3**<br><sup>314B-A13B</sup> | MiniMax-3<br><sup>428B-A23B</sup> | GLM-5.1<br><sup>744B-A40B</sup> | Kimi-K2.6<br><sup>1T-A32B</sup> | Qwen-3.
|
| 82 |
|:---|:---:|:---:|:---:|:---:|:---:|:---:|
|
| 83 |
| **Agentic** | | | | | | |
|
| 84 |
-
| GDPVal v2 | 38.7 | 44.4 | 37.8 | 34.4 |
|
| 85 |
-
| τ²-Bench Telecom | 94.7 | 88.9 | 97.7 | 95.9 |
|
| 86 |
-
| τ³-Banking | 35.3 | 15.3 | 13.6 | 23.3 |
|
| 87 |
-
| ITBench* | 51.5 | — | 40.3 | 31.2 |
|
| 88 |
| **Coding** | | | | | | |
|
| 89 |
-
| SWE-Bench Verified | 76.2 | 75.0 | 76.4 | 76.2 | 80.
|
| 90 |
-
| Terminal-Bench 2.1 | 74.9 | 65.2 | 61.8 | 65.9 |
|
| 91 |
-
| SciCode | 40.6 | 45.4 | 43.8 | 53.5 |
|
| 92 |
| **Reasoning & Knowledge** | | | | | | |
|
| 93 |
-
| IMOAnswerBench | 83.2 | — | 83.8 | 81.8 |
|
| 94 |
-
| Apex-Shortlist | 75.5 | — | 71.1 | 77.4 |
|
| 95 |
-
| GPQA Diamond | 83.4 | 92.9 | 86.8 | 91.1 |
|
| 96 |
-
| HLE | 37.0 | 39.0 | 30.1 | 37.5 |
|
| 97 |
-
| CritPt | 6.6 | 3.7 | 4.6 | 8.0 |
|
| 98 |
-
| OmniScience — Accuracy | 30.1 | 16.7 | 23.7 | 32.6 |
|
| 99 |
-
| OmniScience — Non-Hallucination | 71.6 | 81.6 | 70.1 | 59.5 |
|
| 100 |
| **Long Context & Instruction Following** | | | | | | |
|
| 101 |
-
| AA-LCR | 72.3 | 80.3 | 68.0 | 76.7 |
|
| 102 |
-
| IFBench | 78.2 | 82.9 | 76.3 | 76.0 |
|
| 103 |
|
| 104 |
</div>
|
| 105 |
|
|
|
|
| 78 |
(*: public dataset only)
|
| 79 |
<div align="center">
|
| 80 |
|
| 81 |
+
| Benchmark | **Motif 3**<br><sup>314B-A13B</sup> | MiniMax-3<br><sup>428B-A23B</sup> | GLM-5.1<br><sup>744B-A40B</sup> | Kimi-K2.6<br><sup>1T-A32B</sup> | Qwen-3.7<br><sup>max<sup> | DS-v4-Pro<br><sup>1.6T-A49B</sup> |
|
| 82 |
|:---|:---:|:---:|:---:|:---:|:---:|:---:|
|
| 83 |
| **Agentic** | | | | | | |
|
| 84 |
+
| GDPVal v2 | 38.7 | 44.4 | 37.8 | 34.4 | 39.0 | 40.2 |
|
| 85 |
+
| τ²-Bench Telecom | 94.7 | 88.9 | 97.7 | 95.9 | 94.7 | 96.2 |
|
| 86 |
+
| τ³-Banking | 35.3 | 15.3 | 13.6 | 23.3 | 12.0 | 30.1 |
|
| 87 |
+
| ITBench* | 51.5 | — | 40.3 | 31.2 | 42.5 | 38.3 |
|
| 88 |
| **Coding** | | | | | | |
|
| 89 |
+
| SWE-Bench Verified | 76.2 | 75.0 | 76.4 | 76.2 | 80.4 | 77.4 |
|
| 90 |
+
| Terminal-Bench 2.1 | 74.9 | 65.2 | 61.8 | 65.9 | 75.0 | 64.0 |
|
| 91 |
+
| SciCode | 40.6 | 45.4 | 43.8 | 53.5 | 53.5 | 50.0 |
|
| 92 |
| **Reasoning & Knowledge** | | | | | | |
|
| 93 |
+
| IMOAnswerBench | 83.2 | — | 83.8 | 81.8 | 90.0 | 89.8 |
|
| 94 |
+
| Apex-Shortlist | 75.5 | — | 71.1 | 77.4 | 44.5 | 85.8 |
|
| 95 |
+
| GPQA Diamond | 83.4 | 92.9 | 86.8 | 91.1 | 92.4 | 88.8 |
|
| 96 |
+
| HLE | 37.0 | 39.0 | 30.1 | 37.5 | 41.4 | 37.5 |
|
| 97 |
+
| CritPt | 6.6 | 3.7 | 4.6 | 8.0 | 11.4 | 12.9 |
|
| 98 |
+
| OmniScience — Accuracy | 30.1 | 16.7 | 23.7 | 32.6 | 31.0 | 42.9 |
|
| 99 |
+
| OmniScience — Non-Hallucination | 71.6 | 81.6 | 70.1 | 59.5 | 74 | 5.9 |
|
| 100 |
| **Long Context & Instruction Following** | | | | | | |
|
| 101 |
+
| AA-LCR | 72.3 | 80.3 | 68.0 | 76.7 | 75.0 | 70.0 |
|
| 102 |
+
| IFBench | 78.2 | 82.9 | 76.3 | 76.0 | 79.1 | 76.5 |
|
| 103 |
|
| 104 |
</div>
|
| 105 |
|