Instructions to use mlx-community/MiniCPM5-1B-OptiQ-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/MiniCPM5-1B-OptiQ-4bit 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("mlx-community/MiniCPM5-1B-OptiQ-4bit") 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
- LM Studio
- Pi new
How to use mlx-community/MiniCPM5-1B-OptiQ-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "mlx-community/MiniCPM5-1B-OptiQ-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mlx-community/MiniCPM5-1B-OptiQ-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mlx-community/MiniCPM5-1B-OptiQ-4bit 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 "mlx-community/MiniCPM5-1B-OptiQ-4bit"
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 mlx-community/MiniCPM5-1B-OptiQ-4bit
Run Hermes
hermes
- MLX LM
How to use mlx-community/MiniCPM5-1B-OptiQ-4bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "mlx-community/MiniCPM5-1B-OptiQ-4bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "mlx-community/MiniCPM5-1B-OptiQ-4bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mlx-community/MiniCPM5-1B-OptiQ-4bit", "messages": [ {"role": "user", "content": "Hello"} ] }'
MiniCPM5-1B-OptiQ-4bit
Mixed-precision MLX quantization of openbmb/MiniCPM5-1B built with mlx-optiq. Apache-2.0 from the base model.
- Base: openbmb/MiniCPM5-1B (1.08 B params, Llama architecture, hybrid reasoning)
- Quantization: OptIQ sensitivity-aware mixed-precision (4-bit + 8-bit)
- Achieved bits-per-weight: 5.81 (target 5.0)
- Disk size: 875 MB (vs 2,062 MB bf16, 2.4× compression)
- Calibration: the bundled
optiq.jsonlmix (40 samples across prose, reasoning, code, agent loops, tool-calling, instructions)
The OptIQ optimizer kept 67 of 169 linears at 8-bit (output projections, gate, last block, lm_head) and 102 at 4-bit (most of MLP). The full per-layer assignment is in optiq_metadata.json next to the safetensors.
Headline numbers — 6-benchmark Capability Score
| Benchmark | uniform-4 | OptIQ-4 (mixed) | Δ |
|---|---|---|---|
| MMLU (5-shot, 1000) | 49.0% | 52.4% | +3.4 |
| GSM8K (no thinking) | 1.7% | 2.7% | +1.0 |
| IFEval (strict, full) | 58.6% | 64.7% | +6.1 |
| BFCL V3 (simple AST) | 0.0% | 0.0% | 0.0 |
| HumanEval (pass@1) | 45.7% | 57.9% | +12.2 |
| HashHop (overall) | 0.0% | 4.0% | +4.0 |
| Capability Score | 25.84 | 30.28 | +4.44 |
| KL vs bf16 (mean) | 0.350 | 0.136 | 2.6× closer |
Same recipe and benchmark suite as the rest of the mlx-optiq family (Qwen3.5, Qwen3.6, Gemma-4). MMLU + IFEval + HumanEval are the strong scores. GSM8K and BFCL are weak in the non-thinking-mode configuration the benchmark recipe uses for cross-family comparability — see "Hybrid reasoning" below for how to unlock them.
Loading
from mlx_lm import load, generate
model, tok = load("mlx-community/MiniCPM5-1B-OptiQ-4bit")
prompt = tok.apply_chat_template(
[{"role": "user", "content": "Summarize the plot of The Iliad in three sentences."}],
tokenize=False,
add_generation_prompt=True,
enable_thinking=False,
)
print(generate(model, tok, prompt=prompt, max_tokens=300))
Hybrid reasoning: think or no-think
MiniCPM5's chat template accepts an enable_thinking flag. With it on, the model emits a <think>...</think> block before answering, useful for math, multi-step planning, or any chain-of-thought task. The benchmark numbers above are with thinking off (the OptIQ framework forces it off for cross-family comparability).
| Mode | temperature | top_p | Use when |
|---|---|---|---|
| No-think (default) | 0.7 | 0.95 | Fast assistant, rewriting, conversational |
| Think | 0.9 | 0.95 | Math, code, multi-hop reasoning |
Pass via chat_template_kwargs at the OpenAI endpoint level or as a keyword to apply_chat_template directly. optiq serve forwards chat_template_kwargs verbatim:
optiq serve --model mlx-community/MiniCPM5-1B-OptiQ-4bit --port 8000
curl -s http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"model":"mlx-community/MiniCPM5-1B-OptiQ-4bit",
"messages":[{"role":"user","content":"What is 17 * 23?"}],
"chat_template_kwargs":{"enable_thinking":true}}'
Why HumanEval and HashHop jump so much
Sensitivity-aware allocation puts 8-bit precision on the layers OptIQ measured as most fragile (output projection, gate, the last few blocks). For a 1B model with limited redundancy, that targeting matters disproportionately. HumanEval +12.2 and HashHop recovering from a 0% floor to 4.0% are both consequences of that. Same pattern shows up on small Gemma quants, see the mlx-optiq sensitivity-aware research.
Fine-tuning
The 1B size makes MiniCPM5 the smallest base in mlx-optiq that's still capable enough to fine-tune for real tasks. On a 24 GB Mac, LoRA training fits comfortably at max_seq_length=2048 with all 7 Unsloth target modules adapted (peak ~3 GB during training, observed). The sensitivity-aware LoRA overlay reads optiq_metadata.json and gives 8-bit layers 2× the adapter rank of 4-bit layers at the same parameter budget.
optiq lora train mlx-community/MiniCPM5-1B-OptiQ-4bit \
--data ./my_training_data \
--preset default \
--max-seq-length 2048
Reproducibility
optiq convert openbmb/MiniCPM5-1B --target-bpw 5.0 --candidate-bits 4,8
Bit-for-bit deterministic given the same calibration mix.
License + provenance
Apache-2.0, inherited from openbmb/MiniCPM5-1B. Quantized with mlx-optiq.
- Downloads last month
- 163
4-bit
Model tree for mlx-community/MiniCPM5-1B-OptiQ-4bit
Base model
openbmb/MiniCPM5-1B