CoolFace
Modelpublic

tinyopsec/minicpm5-2b-distilled-reasoning-GGUF

sourceHugging Faceapache-2.0updated 10d agoView on Hugging Face
0likes1.2kdownloads
Model Card

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

FileBitsSizeUse Case
model_f16.gguf16~5.0 GBMaximum quality, reference
model_q8_0.gguf8~2.7 GBBest quality / size tradeoff
model_q6_k.gguf6~2.1 GBHigh quality
model_q5_k_m.gguf5~1.8 GBRecommended
model_q5_k_s.gguf5~1.7 GBSlightly smaller Q5
model_q4_k_m.gguf4~1.5 GBGood balance
model_q4_k_s.gguf4~1.4 GBSmaller Q4
model_q3_k_l.gguf3~1.2 GBLow RAM, large variant
model_q3_k_m.gguf3~1.1 GBLow RAM
model_q3_k_s.gguf3~1.0 GBMinimum RAM Q3
model_q2_k.gguf2~0.8 GBExtreme compression

VRAM Requirements

QuantMin VRAM
F168 GB
Q8_04 GB
Q4KM2 GB
Q2_K1.5 GB

Training Details

ParameterValue
Base Modelopenbmb/MiniCPM5-2B
TeachersQwen3.8-Max, GLM-5.2, Kimi K3
Datasetr0b0tlab/qwen3.8-max-glm5.2-kimi-k3-distillation
Train Samples10,000
MethodQLoRA (r=64, alpha=32)
Max Context4,096 tokens
HardwareKaggle T4 x2

Usage

llama.cpp

bash
./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

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

bash
ollama run hf.co/tinyopsec/minicpm5-2b-distilled-reasoning-GGUF:Q4_K_M

Limitations

  • 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)

Original Model

jigs97022/minicpm5-2b-distilled-reasoning