· 3 min read

The Language of Surrender: Larger Model Measurements

Three models one size class up — Qwen3-14B, Phi-4, and Mistral-Small-24B at Q4_K_M quantization — measured on the same 1,505-sentence limitation gold set, same prompt, same harness as the earlier six-model comparison. Qwen3-14B scores F1 0.8272 as a single model, above the previous two-model union (0.8143) and the published rule-system reference (0.800). VRAM at load: 10.6 GB of 16.3 GB. Every number is a full-split measurement.

This measurement extends the earlier model-selection article. That work compared six models of 7–9B parameters on a fixed gold set and deployed the best pair. This work adds three models one size class up, under identical conditions, and reports what changed.

Conditions

  • Gold set: the Kilicoglu limitation test split — 1,505 human-labeled sentences, 303 positive (Dryad doi:10.5061/dryad.06ds7). Frozen; identical to the earlier article.
  • Prompt: identical few-shot classification prompt, one-word POS/NEG output.
  • Harness: identical serving stack — llama.cpp behind a FastAPI agent on one RTX 5070 Ti (16,303 MiB); models hot-swapped by config call; Q4_K_M quantization throughout.
  • Candidates: Qwen3-14B (9,001,753,632 bytes), Phi-4 14B (9,053,114,816 bytes), Mistral-Small-24B-Instruct-2501 (14,333,908,672 bytes).

Results

Figure 1. F1 on the 1,505-sentence test split for every model measured, ordered by score, with the published rule-system reference at 0.800 marked

modelparametersprecisionrecallF1run time
Qwen3-14B14B0.87780.78220.8272320 s
Mistral-Small-24B24B0.97600.53800.6936390 s
Phi-414B0.95240.52810.6794758 s
Qwen3-8B (prior best single)8B0.88750.70300.7845248 s
Qwen3-8B ∨ Gemma-2-9B (prior best pair)8B+9B0.8870.7530.8143
published rule system (reference)0.7580.8480.800

Confusion counts: Qwen3-14B 237/33/66 (tp/fp/fn); Mistral-Small-24B 163/4/140; Phi-4 160/8/143. Mistral-Small-24B’s 4 false positives in 1,505 sentences is the lowest false-positive count of any model measured in either article.

Memory fit

modelfile sizeVRAM at loadcard capacity
Qwen3-14B9.0 GB10,587 MiB16,303 MiB
Phi-49.1 GB11,007 MiB16,303 MiB
Mistral-Small-24B14.3 GB15,689 MiB16,303 MiB

Measurement status notes

  • The Qwen3-8B figure is the mean of three identical runs (identical confusion matrices; zero run-to-run variance at serving temperature). The 14B figures are single runs; the triplicate protocol applies before any deployment number is treated as final.
  • Pair combinations were computed from the retained per-sentence outputs after the single-model runs; see the pair table below.
  • All figures above are against clinical-register gold. Per-register and estate-scale performance are separate measurements; estate-scale accuracy is unmeasurable until human-labeled estate gold exists.

Pair combinations

Computed from per-sentence outputs on the same split.

combinationprecisionrecallF1
Qwen3-14B ∨ Gemma-2-9B0.87140.80530.8370
Qwen3-14B ∨ Qwen3-8B0.84690.82180.8342
Qwen3-14B ∨ Mistral-Small-24B0.87910.79210.8333
Qwen3-14B ∧ Gemma-2-9B0.95210.59080.7291
Qwen3-14B ∧ Mistral-Small-24B0.97560.52810.6852

Production state

The serving rule in effect: the best-measured model on the frozen gold stays loaded. As of this measurement that is Qwen3-14B. The pair configuration with the highest measured union F1 is Qwen3-14B with Gemma-2-9B (0.8370). Mistral-Small-24B is retained for the agreement gate (precision 0.9756). All earlier models remain staged; a swap is one configuration call.

Reproduction

Data, prompt, and harness are unchanged from the earlier article’s reproduction section. The added artifacts: the three Q4_K_M files named above from their bartowski HuggingFace repositories, and a parameterized measurement runner that swaps a named model, waits for load, runs the full split, and writes a JSON result. Per-sentence outputs are retained for every run.

References

  1. Kilicoglu, H., Rosemblat, G., Malički, M., & ter Riet, G. (2018). Automatic recognition of self-acknowledged limitations in clinical research literature. JAMIA 25(7), 855–861. doi:10.1093/jamia/ocy038
  2. Kilicoglu, H., et al. (2018). Dataset. Dryad. doi:10.5061/dryad.06ds7
  3. Qwen3-14B, Phi-4, Mistral-Small-24B-Instruct-2501 — Q4_K_M GGUF quantizations, bartowski, HuggingFace.
  4. The earlier measurement article: The Language of Surrender: Model Selection Observations.