Text Generation
MLX
Safetensors
English
Chinese
llama
mlx-lm
minicpm
minicpm5
conversational
quantized
quantization
mixed-precision
apple-silicon
macos
local-llm
local-inference
on-device
edge-ai
long-context
131k-context
tool-calling
function-calling
agent
agentic
coding
reasoning
omlx
oq
oqe
uraion-labs
2-bit
Instructions to use UraionLabs/MiniCPM5-2B-oQ2e with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use UraionLabs/MiniCPM5-2B-oQ2e with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("UraionLabs/MiniCPM5-2B-oQ2e") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use UraionLabs/MiniCPM5-2B-oQ2e with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "UraionLabs/MiniCPM5-2B-oQ2e"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "UraionLabs/MiniCPM5-2B-oQ2e" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use UraionLabs/MiniCPM5-2B-oQ2e with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "UraionLabs/MiniCPM5-2B-oQ2e"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "UraionLabs/MiniCPM5-2B-oQ2e" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UraionLabs/MiniCPM5-2B-oQ2e", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use UraionLabs/MiniCPM5-2B-oQ2e with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "UraionLabs/MiniCPM5-2B-oQ2e"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default UraionLabs/MiniCPM5-2B-oQ2e
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use UraionLabs/MiniCPM5-2B-oQ2e with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "UraionLabs/MiniCPM5-2B-oQ2e"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "UraionLabs/MiniCPM5-2B-oQ2e" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
File size: 10,818 Bytes
3e5b740 699ff32 3e5b740 699ff32 3e5b740 699ff32 3e5b740 699ff32 3e5b740 699ff32 3e5b740 699ff32 3e5b740 699ff32 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | ---
base_model: openbmb/MiniCPM5-2B
base_model_relation: quantized
library_name: mlx
license: apache-2.0
language:
- en
- zh
pipeline_tag: text-generation
tags:
- mlx
- mlx-lm
- safetensors
- minicpm
- minicpm5
- llama
- text-generation
- conversational
- quantized
- quantization
- mixed-precision
- apple-silicon
- macos
- local-llm
- local-inference
- on-device
- edge-ai
- long-context
- 131k-context
- tool-calling
- function-calling
- agent
- agentic
- coding
- reasoning
- omlx
- oq
- oqe
- uraion-labs
datasets:
- openbmb/Ultra-FineWeb
- openbmb/UltraX-Preview
- openbmb/Ultra-FineWeb-L3
- openbmb/UltraData-Math
- openbmb/UltraData-Code
- openbmb/UltraData-SFT-2605
- openbmb/UltraData-SFT-Agent-2609
- openbmb/UltraData-RL-2609
---
<p align="center">
<img src="https://uraionlabs.com/public/icons/icon-192.png" alt="Uraion Labs" width="56">
</p>
<p align="center">
<strong>Uraion Labs</strong><br>
<sub>Foundational systems research.</sub>
</p>
# MiniCPM5-2B — oQ2e
> An MLX mixed-precision quantization of OpenBMB/MiniCPM5-2B for local inference on Apple Silicon, published by Uraion Labs.
**MiniCPM5-2B-oQ2e** is an MLX mixed-precision quantization of [OpenBMB/MiniCPM5-2B](https://huggingface.co/openbmb/MiniCPM5-2B) optimized for local inference on Apple Silicon Macs. It was quantized and published by Uraion Labs using the oMLX oQe quantization workflow with importance-matrix guided sensitivity allocation. The checkpoint uses the standard MLX format and is directly compatible with both [oMLX](https://github.com/jundot/omlx) and [mlx-lm](https://github.com/ml-explore/mlx-examples/tree/main/llms/mlx_lm).
## About This Quantization
- **Quantization Level**: `oQ2e`
- **Quantization Workflow**: oMLX oQe mixed-precision quantization
- **Base Weight Precision**: 2-bit
- **Mixed-Precision Profile**: Mixed 2/5/6-bit precision (10 @ 5b, 6 @ 6b, lm_head @ 6b)
- **Layer Overrides**: 16 overrides: 10 layers boosted to 5-bit, 6 layers boosted to 6-bit, and lm_head preserved at 6-bit
- **Output Head (`lm_head`) Precision**: 6-bit
- **Group Size**: 64
- **Quantization Mode**: Affine (scale and bias per group)
- **Non-Quantized Tensor Precision**: BF16 (LayerNorm weights, embedding scales and biases)
- **Calibration Dataset**: `oqe_code_multilingual` (294 calibration samples)
- **Model File Size**: 0.88 GB (900.44 MB)
- **Effective Bits Per Weight**: Effective ~2.8 bits per weight maximum compression variant under 900 MB.
## Model Information
| Property | Value |
| :--- | :--- |
| Original Model | [OpenBMB/MiniCPM5-2B](https://huggingface.co/openbmb/MiniCPM5-2B) |
| Quantization Variant | oQ2e |
| Quantized By | Uraion Labs |
| Architecture | `LlamaForCausalLM` (`llama`) |
| Base Precision | 2-bit |
| Mixed-Precision Allocation | Mixed 2/5/6-bit precision (10 @ 5b, 6 @ 6b, lm_head @ 6b) |
| Output Head (`lm_head`) | 6-bit |
| Quantization Mode | Affine (group size 64) |
| Non-Quantized Precision | BF16 |
| Total Parameters | 2,516,756,480 (~2.52B) |
| Non-Embedding Parameters | 1,981,982,720 (~1.98B) |
| Layers | 42 |
| Attention Configuration | GQA — 16 Q heads / 2 KV heads (head dim 128) |
| Context Length | 131,072 tokens |
| Storage Format | MLX safetensors |
| Target Runtime | Apple Silicon macOS (`omlx`, `mlx-lm`) |
| Model Weight Size | 0.88 GB (900.44 MB) |
| License | Apache-2.0 |
## Upstream MiniCPM5-2B Highlights
MiniCPM5-2B is developed by OpenBMB as the 2B-scale model in the MiniCPM5 series:
- **2B-Class Open-Source State of the Art**: Reaches top-tier performance among models in its size category (averaging 53.9 across OpenBMB's evaluation set) while remaining competitive with 3B and 4B class models.
- **Native 131k Context**: Supports up to 131,072 tokens context window out of the box for document synthesis, repo-wide code reasoning, and long conversation threads.
- **Standard LLaMA Architecture**: Uses standard `LlamaForCausalLM` with Grouped-Query Attention (GQA, 16 Q heads, 2 KV heads), enabling out-of-the-box execution across standard inference runtimes.
- **High-Quality Training Datasets**: Trained using OpenBMB's UltraData data curriculum, including Ultra-FineWeb, UltraX, UltraData-Code, UltraData-SFT, and UltraData-RL.
- **Agentic and Tool-Use Capabilities**: Engineered for high accuracy on function calling, structured output generation, and coding assistant workflows.
## Quantization Family Navigation
| Quant | Base Bits | Mixed-Precision Profile | lm_head | Model Size | Repository |
| :--- | :--- | :--- | :--- | :--- | :--- |
| **oQ8e** | 8-bit | Uniform 8-bit | 8-bit | 2.49 GB | [UraionLabs/MiniCPM5-2B-oQ8e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ8e) |
| **oQ6e** | 6-bit | Mixed 6/8-bit (28 layers @ 8-bit) | 6-bit | 1.95 GB | [UraionLabs/MiniCPM5-2B-oQ6e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ6e) |
| **oQ5e** | 5-bit | Mixed 5/6/8-bit (19 @ 6b, 6 @ 8b) | 6-bit | 1.67 GB | [UraionLabs/MiniCPM5-2B-oQ5e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ5e) |
| **oQ4e** | 4-bit | Mixed 4/5/6-bit (58 @ 5b, 9 @ 6b) | 4-bit | 1.38 GB | [UraionLabs/MiniCPM5-2B-oQ4e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ4e) |
| **oQ3.5e** | 3-bit | Mixed 3/5/6-bit (29 @ 5b, 7 @ 6b) | 6-bit | 1.17 GB | [UraionLabs/MiniCPM5-2B-oQ3.5e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ3.5e) |
| **oQ3e** | 3-bit | Mixed 3/5/6-bit (31 @ 5b, 7 @ 6b) | 3-bit | 1.08 GB | [UraionLabs/MiniCPM5-2B-oQ3e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ3e) |
| **oQ2.7e** | 2-bit | Mixed 2/5/6/8-bit (23 @ 5b, 8 @ 6b, lm_head @ 8b) | 8-bit | 0.98 GB | [UraionLabs/MiniCPM5-2B-oQ2.7e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ2.7e) |
| **oQ2e** | 2-bit | Mixed 2/5/6-bit (10 @ 5b, 6 @ 6b) | 6-bit | 0.88 GB | [UraionLabs/MiniCPM5-2B-oQ2e](https://huggingface.co/UraionLabs/MiniCPM5-2B-oQ2e) |
## Quickstart
### Using oMLX
[oMLX](https://github.com/jundot/omlx) provides a high-throughput runtime for MLX models on Apple Silicon:
```bash
# Install oMLX
pip install omlx
# Run inference
omlx run UraionLabs/MiniCPM5-2B-oQ2e --prompt "Explain quantum entanglement in simple terms."
```
### Using mlx-lm
This quantization is fully compatible with Apple's standard [mlx-lm](https://github.com/ml-explore/mlx-examples/tree/main/llms/mlx_lm) library:
```bash
# Install mlx-lm
pip install mlx-lm
```
#### Python Example
```python
from mlx_lm import load, generate
model, tokenizer = load("UraionLabs/MiniCPM5-2B-oQ2e")
prompt = "Explain quantum entanglement in simple terms."
messages = [{"role": "user", "content": prompt}]
prompt_formatted = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
response = generate(
model,
tokenizer,
prompt=prompt_formatted,
max_tokens=512,
temp=1.0,
top_p=0.95,
verbose=True,
)
```
#### CLI Example
```bash
python -m mlx_lm.generate \
--model UraionLabs/MiniCPM5-2B-oQ2e \
--prompt "Explain quantum entanglement in simple terms." \
--temp 1.0 \
--top-p 0.95 \
--max-tokens 512
```
### Hugging Face Download
To download the repository files locally:
```bash
hf download UraionLabs/MiniCPM5-2B-oQ2e
```
## Recommended Generation Settings
The following sampling parameters are officially recommended by OpenBMB for MiniCPM5-2B:
| Parameter | Recommended Value | Note |
| :--- | :--- | :--- |
| `temperature` | `1.0` | Balanced diversity and reasoning coherence |
| `top_p` | `0.95` | Nucleus sampling threshold |
| `do_sample` | `true` | Stochastic sampling enabled |
When performing deterministic evaluation or greedy decoding, set `temperature=0.0` or `do_sample=false`.
## Evaluation Results and Benchmark Context
> Benchmark results below are reported by OpenBMB for the original MiniCPM5-2B release. This Uraion Labs quantization has not been independently benchmarked unless explicitly stated otherwise.
| Capability / Benchmark | MiniCPM5-2B (Upstream) | Qwen3.5-4B | granite-4.2-3B | LFM2.5-2.6B |
| :--- | :--- | :--- | :--- | :--- |
| **Average Score** | **53.9** | 51.1 | 42.7 | 33.2 |
| **LiveCodeBench v6** | **69.1** | 56.4 | 58.9 | 42.1 |
| **LCB-Pro 25Q2 (Easy)** | **68.0** | 58.3 | 54.6 | 30.9 |
| **AIME 2025** | **86.5** | 78.8 | 79.4 | 41.9 |
| **AIME 2026** | **86.5** | 82.7 | 83.5 | 45.2 |
| **MATH-500** | 94.6 | **99.0** | 97.0 | 89.6 |
| **MMLU-Pro** | 70.8 | **78.0** | 65.8 | 65.2 |
| **MMLU-Redux** | 84.7 | **88.7** | 78.9 | 80.0 |
| **IFBench** | 66.3 | 59.0 | **73.0** | 59.0 |
| **AA-LCR (Long Context)** | **59.0** | 46.1 | 35.8 | 5.3 |
## Limitations and Disclaimer
This model generates text based on statistical language modeling patterns and may produce inaccurate, biased, or hallucinated statements. Responses regarding sensitive or specialized domains (such as law, medical treatment, or financial investment) must not be treated as professional advice.
This model is provided "AS IS", without warranty of any kind, express or implied. Users are responsible for verifying outputs, implementing safety guardrails, and complying with all applicable local regulations and acceptable use policies.
## Original Model and Attribution
This repository contains a quantized derivative of [OpenBMB/MiniCPM5-2B](https://huggingface.co/openbmb/MiniCPM5-2B).
MiniCPM5-2B was developed and trained by OpenBMB. Model architecture, pre-training, instruction tuning, benchmarks, and capabilities described on this page originate from the upstream MiniCPM5-2B release.
Training-data metadata is inherited from the upstream OpenBMB/MiniCPM5-2B release. Uraion Labs performed quantization only and did not retrain this checkpoint.
### Upstream Resources
- **Model Card**: [openbmb/MiniCPM5-2B](https://huggingface.co/openbmb/MiniCPM5-2B)
- **GitHub Repository**: [OpenBMB/MiniCPM](https://github.com/OpenBMB/MiniCPM)
- **MiniCPM Technical Report**: [arXiv:2506.07900](https://arxiv.org/abs/2506.07900)
- **UltraData Paper**: [arXiv:2602.09003](https://arxiv.org/abs/2602.09003)
- **Online Demo**: [MiniCPM5-2B-Demo](https://huggingface.co/spaces/openbmb/MiniCPM5-2B-Demo)
- **OpenBMB MLX Deployment Guide**: [mlx.md](https://github.com/OpenBMB/MiniCPM/blob/main/docs/deployment/mlx.md)
## License
This repository and the underlying MiniCPM model weights are released under the [Apache-2.0](https://github.com/OpenBMB/MiniCPM/blob/main/LICENSE) License.
## Citation
Please cite the original MiniCPM research when referencing this work:
```bibtex
@article{minicpm4,
title={Minicpm4: Ultra-efficient llms on end devices},
author={MiniCPM, Team},
journal={arXiv preprint arXiv:2506.07900},
year={2025}
}
```
<p align="center">
<sub>Quantized and published by <a href="https://uraionlabs.com">Uraion Labs</a>. Foundational systems research.</sub>
</p>
|