tinyopsec/minicpm5-2b-distilled-reasoning-GGUF
01.2k
minicpm5-2b-distilled-reasoning GGUF
GGUF quantizations of jigs97022/minicpm5-2b-distilled-reasoning.
A 2B parameter reasoning model distilled from three frontier models — Qwen3.8-Max, GLM-5.2, and Kimi K3 — onto the efficient openbmb/MiniCPM5-2B architecture. Trained via QLoRA on 10,000 quality-filtered reasoning traces covering math, code, logic puzzles, and structured problem-solving.
Quantization Table
VRAM Requirements
Training Details
Usage
llama.cpp
./llama-cli -m model_q4_k_m.gguf \
--temp 0.7 \
-n 1024 \
-p "If 3x + 7 = 22, what is x? Show step-by-step reasoning."llama-cpp-python
from llama_cpp import Llama
llm = Llama(model_path="model_q4_k_m.gguf", n_ctx=4096)
output = llm(
"Solve step by step: If 3x + 7 = 22, what is x?",
max_tokens=1024,
temperature=0.7,
)
print(output["choices"][0]["text"])LM Studio
Search tinyopsec/minicpm5-2b-distilled-reasoning-GGUF in the model browser.
Ollama
ollama run hf.co/tinyopsec/minicpm5-2b-distilled-reasoning-GGUF:Q4_K_MLimitations
- Reasoning quality may degrade beyond 4K context
- Trained on 10K samples subset; edge cases may be weaker than full 52K variant
- English and Chinese only
- Knowledge cutoff ~2024 (inherited from MiniCPM5-2B base)
