AI Infra Interviews logo
Practice tests · 35 questions

Open-Weights Models & Serving Engines: the practice test

Running the 2026 open-weights frontier: GLM-5.3, Kimi K3 and DeepSeek V4. Reading config.json to size a model you have never run, latent attention and sparse indexers, vLLM and SGLang configuration, expert parallelism and all-to-all backends, weight formats, and the benchmarks that do not lie. This test drills exactly that: 11 easy, 14 medium and 10 hard questions, every one explained, every explanation linking into the worked material.

Set up your test
Topic
How confident are you feeling?
Questions
11 in this pool · about 7 min
Reveal answers
Sign in to startFree account · your questions rotate between takes

Sample questions, answered

easy · sample
Which four numbers should you read about a new open-weights model before sizing a deployment?
Benchmark scores, licence, release date and download count
Parameter count alone, since everything else follows from it
Total, active, attention design, released format
Context length, vocabulary size, tokenizer type and layer count

Total parameters set the memory footprint because every expert must be resident somewhere. Active parameters bound decode speed because only the selected experts are read per token. The attention design sets KV per token, which now varies by more than an order of magnitude between models of similar size. And the released format decides bytes per parameter, which changes the first number by two to four times.

easy · sample
A config lists kv_lora_rank 512 and qk_rope_head_dim 64 over 78 layers. What is the KV cache per token in bf16?
About 87.75 KB
About 3.66 MB
About 320 KB
About 1.1 MB

Those fields mean latent attention, so the cache holds one compressed vector plus the rotary part per layer rather than keys and values per head. That is (512 + 64) times 2 bytes times 78 layers, which is 89,856 bytes. Computing it from head count and head dimension instead gives about 3.66 MB, an overestimate of roughly 41.7 times, and that mistake turns a workable plan into an absurd one.

Go deeper than the quiz

A practice test measures recall. The material it draws from teaches the reasoning: