Qwen-72B vs MiniCPM5-2B
Qwen-72B has 72.3B parameters (71.0B active per token) and takes 145 GB on disk; MiniCPM5-2B has 2.52B (2.25B active) and takes 5.03 GB. Compare them layer by layer.
At a glance
| Qwen/Qwen-72B | openbmb/MiniCPM5-2B | |
|---|---|---|
| Repo created | Nov 26, 2023updated Oct 9, 2024 | Sep 6, 2026updated Sep 12, 2026 |
| Model type | DenseFull attention (MHA) | DenseFull attention (GQA) |
| Inputs | Text | Text |
| Total parameters | 72.3B29× more | 2.52B29× less |
| Active per token | 71.0B32× more98% of the model | 2.25B32× less89% of the model |
| Experts | None (dense) | None (dense) |
| Max context (from config) | 32K tokens4.0× less | 128K tokens4.0× more |
| Layers | 801.9× more | 421.9× less |
| On disk | 145 GB29× more82 files | 5.03 GB29× less1 file |
| Precision | BF16 (100%) | BF16 (100%) |
| Quantization | Noneoriginal precision (BF16) | Noneoriginal precision (BF16) |
| Fewest GPUs | 1× NVIDIA B200a single 180 GB card · weights only | 1× RTX 4060a single 8 GB card · weights only |
| License | tongyi-qianwen-license-agreement (custom) | apache-2.0 |
| GitHub | QwenLM/Qwen | OpenBMB/MiniCPM |
Where the parameters live
Each bar is one model, split by component and drawn on the same scale.
Anatomy map
Every rectangle is one component in one layer, with area proportional to its size. When you compare two models, both maps use the same scale, so a model twice the size covers twice the area.
Layer map
The model's layers from input (left) to output (right): which kind of attention each one uses, and whether its feed-forward block is a mixture of experts or a single dense network.
One token's route
In a mixture-of-experts layer, a router picks a few experts for each token. This shows how many that is, drawn to scale: the lit cells are one token's share of a single layer, and everything else sits idle in memory. Which cells light up is a random example, not the model's real router.
Can my GPU handle this model?
At a datacenter
The fewest GPUs of each type whose combined memory can hold the weights, assuming 90% of each GPU's memory is usable. Real deployments need more memory for context (KV cache), and usually round up to 8 or 16 GPUs so the model splits evenly. The list covers NVIDIA data-center GPUs widely rentable as of September 2026, best first.
At home
Whether the weights fit on popular home GPUs, assuming 90% of the card's memory is usable. People at home usually run 4-bit versions (GGUF files for llama.cpp, Ollama or LM Studio), which are much smaller than what labs publish, so both are shown. The 4-bit size is an estimate of about 4.5 bits per parameter. "Tight" means the weights fit but leave little room for context.
Context memory
Besides its weights, a model needs memory for the text it's working on (the "KV cache"), and it grows with every token of context. Figures are for one conversation stored in 16-bit precision: each simultaneous conversation needs its own, and servers that store it in 8-bit (FP8) need half as much.