fern

A 4B decision model with a Jev-compatible API. Send a state and up to 50 questions (choice / score / noul); get probability distributions back from a single forward pass — no text generation, ~30 ms per request on one GPU.

Distilled from DeepSeek-V4-Flash (2-bit GGUF teacher on one 96 GB GPU) into Qwen3.5-4B by matching the teacher's next-token distribution over the answer options.

Code and serving: https://github.com/reoring/fern

fern demo — 300 tickets × 4 decisions in 9 s

300 multilingual support tickets, each routed to a team with severity, urgency and sentiment — 1,200 decisions in 9 s on one GPU (scripts/demo.py in the repo, asciinema).

Usage

uv sync
uv run hf download reoring/fern --local-dir runs/fern
uv run fern serve runs/fern          # POST http://127.0.0.1:8000/v1/systemone
curl -sS http://127.0.0.1:8000/v1/systemone -H 'Content-Type: application/json' -d '{
  "state": "Help! My payouts have been failing for 3 days.",
  "questions": {
    "team":     {"type": "choice", "instructions": "Which team should handle this?",
                 "criteria": {"billing": "Payments, invoicing, refunds", "technical": "Bugs, outages, integrations", "sales": "Pricing, upgrades"}},
    "severity": {"type": "score", "instructions": "How severe is this?", "criteria": ["Low", "Medium", "High", "Critical"]},
    "urgent":   {"type": "noul", "instructions": "Does this need a reply today?"}
  }
}'
# → team: billing (0.93), severity: 2.5 of 0..3, urgent: 0.97

The checkpoint is a plain Qwen3_5ForCausalLM; the API reads the logits of the option codes (A–Z / 0–9 / yes,no) at the answer position. See the repo for the prompt template (fern.prompting.render) if you want to call it without the server.

Limits

  • Max 26 options per choice, 10 levels per score, 1–50 questions per request.
  • Prompts over 1,024 tokens are left-truncated (the start of state is dropped); the server reports usage.truncated: true.
  • Best on short states with clear criteria (routing, triage, labeling, safety flags). Multi-step reasoning and long documents are out of range: MMLU-Pro accuracy is 0.42.
  • Training is mostly English. Non-English inputs work (XNLI in 10 languages and ~25k synthetic requests in ja/zh/de/es/fr/ko were in the mix) with lower agreement.

Evaluation

Agreement = argmax matches the teacher's argmax on held-out label files.

v3b
Held-out training distribution (7.7k) 0.94
Thinking teacher, MMLU-Pro (2k, 10-way) 0.49
MMLU-Pro accuracy (2k) 0.42
11–26-way choice (920) 0.85
XNLI, 10 languages (740) 0.84
Synthetic requests, 6 non-English languages (1.5k) 0.78
Synthetic requests, English (1.9k, in-distribution) 0.90
Latency, 1 / 10 questions (p50, RTX PRO 6000, bf16) 28 / 48 ms

Training

  • Teacher: DeepSeek-V4-Flash UD-IQ2_M via llama-server, prefill only (n_probs), thinking budget 512 tokens for knowledge sources, none elsewhere.
  • Student: full fine-tune, bf16, AdamW lr 1e-5 cosine, batch 64, 2 epochs + 1 continued epoch at lr 5e-6, max_len 1,024, loss KL(p_teacher ‖ p_student) over the option codes. 379k rows (after weighting), 17.6 h + 8.8 h.
  • Sources: HellaSwag, MNLI, XNLI, Yelp reviews, CommonsenseQA, BoolQ, ARC, TweetEval, MMLU (+ auxiliary_train), OpenBookQA, SciQ, GSM8K (multiple-choice form), 11–26-way variants padded with same-source distractors, ~40k synthetic Jev-style requests in 7 languages written by the teacher.

License and attribution

Apache-2.0. Derived from Qwen3.5-4B (Apache-2.0) with soft labels from DeepSeek-V4-Flash (MIT). Training data includes Yelp reviews, whose dataset terms are non-commercial; check them before commercial use of the weights. "Jev" refers to the API shape this model is compatible with; this is an independent project.

Downloads last month
8
Safetensors
Model size
4B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for reoring/fern

Finetuned
Qwen/Qwen3.5-4B
Finetuned
(784)
this model