Qwen3-VL-4B-Instruct vs Swift-Qwen3.8-27B-GGUF
Qwen3-VL-4B-Instruct has 4.44B parameters (4.02B active per token) and takes 8.88 GB on disk; Swift-Qwen3.8-27B-GGUF has 27.3B (25.6B active) and takes 18.0 GB. Compare them layer by layer.
At a glance
| Qwen/Qwen3-VL-4B-Instruct | ukisai/Swift-Qwen3.8-27B-GGUF | |
|---|---|---|
| Repo created | Oct 11, 2025updated Oct 15, 2025 | Sep 11, 2026updated Sep 16, 2026 |
| Model type | DenseFull attention (GQA) | DenseHybrid attention: 48 linear + 17 full (GQA) |
| Inputs | Text + images415M vision encoder | Text + imagesvision encoder in a separate mmproj file, not counted here |
| Total parameters | 4.44B6.2× less | 27.3B6.2× more |
| Active per token | 4.02B6.4× less91% of the model | 25.6B6.4× more94% of the model |
| Experts | None (dense) | None (dense) |
| Max context (from config) | 256K tokenssame | 256K tokenssame |
| Layers | 361.8× less | 641.8× more48 linear + 17 full attention · plus 1 extra prediction layer |
| On disk | 8.88 GB2.0× less2 files | 18.0 GB2.0× more1 file |
| Precision | BF16 (100%) | Q4_K (54%), Q6_K (45%), other (0.89%) |
| Quantization | Noneoriginal precision (BF16) | Q4_K_M (GGUF)mix of Q4_K, Q6_K · blocks of 256 · 100% of parameters |
| Fewest GPUs | 1× RTX 3060 12 GBa single 12 GB card · weights only | 1× RTX 4090a single 24 GB card · weights only |
| License | apache-2.0 | swift-open-license-1.0 (custom) |
| GitHub | Not linked | Not linked |
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.