Imagine you're packing for a backpacking trip and you have to fit everything — tent, stove, food, water filter — into a 30-liter daypack instead of the usual 65-liter behemoth. You can't just leave things out; you have to find smaller versions of each piece that still work. That's what Mizar does for audio-language models: it stuffs audio perception, language reasoning, and multi-choice question answering into 159.3 million parameters — roughly 1/50th the size of models like Qwen-Audio — and still beats every other sub-200M ALM on three community benchmarks. The committed claim: a three-stage training recipe (alignment, fine-tuning, post-training skill repair) applied to a CED-Small encoder + SmolLM2-135M decoder connected by a frequency-merging mapper produces a model that tops the sub-200M leaderboard on MMAU (52.92%), MMAR (42.42%), and ADQA-clean (36.02%), averaged across five random seeds. This is a recipe paper, not a single architectural novelty — the contribution is the combination. On the ladder, the baselines are honest but the field is young. The paper names Audio Flamingo (1B), Qwen-Audio (8.4B), and GAMA (7B) as larger models that Mizar does not beat on absolute accuracy. Within the sub-200M class, it surpasses previous work, but the absolute numbers — 52.9% on MMAU, where random guessing on 4-choice MCQ gives 25% — show this is still early-stage capability. The gap between tiny and full-size ALMs remains wide. Architecturally, Mizar lives in the encoder-mapper-decoder family that dominates vision-language and audio-language work. CED-Small handles audio spectrogram encoding, a learned frequency-merging mapper compresses the encoder output, and SmolLM2-135M (a small causal language model) generates text. The frequency-merging mapper is the interesting structural choice: it reduces sequence length by merging along the frequency axis rather than using simple pooling, which preserves spectral structure. The three-stage curriculum — freeze decoder and train mapper (Stage 1), unfreeze audio encoder (Stage 2), targeted post-training to fix weak skills without catastrophic forgetting (Stage 3) — is the load-bearing engineering. Integrity is decent for a short workshop paper. Three public benchmarks (MMAU, MMAR, ADQA-clean) are used, results are averaged over five seeds with standard deviations reported, and code plus checkpoints are released. The weaknesses: no pre-registration, no independent replication yet, and the training data (ReasonAQA, AudioMCQ, AVQA) is curated by the authors — so there's some circularity in how the skill-repair post-training stage was designed. The 1.09-second CPU latency claim is concrete and testable. The milestone question is where to push next. At 52.9% on MMAU, Mizar is roughly halfway between random chance and perfect. The natural next target is 65-70% accuracy on MMAU within the sub-200M class — that would signal genuine audio understanding rather than sophisticated pattern matching. The gap to large ALMs (which score in the 60-80% range depending on the benchmark) is roughly 15-25 percentage points. Closing half that gap at this parameter count would be a meaningful step toward deployable on-device audio understanding. The obvious experiment not run: scaling the language backbone from 135M to ~350-500M while keeping the total model under 500M parameters, or testing on truly out-of-distribution audio (environmental sounds, non-English speech, degraded audio). The authors likely ran out of compute budget — this reads as a focused workshop submission with a clean story, not a paper that left embarrassing results on the cutting room floor. The post-training skill-repair stage is the most novel piece and the one most likely to generalize; expect a follow-up paper that isolates its contribution more carefully.