FogGen (Qwen3-1.7B): cross-scale R14 endpoint

The 1.7B-parameter scale-up of issai/foggen. Same 14-round self-evolving recipe, same cloud teacher, same seven MCQ domains; the edge backbone is the only change.

This checkpoint exists to test whether the FogGen recipe transfers across model size. The canonical 0.6B endpoint lives at issai/foggen and is the deployment model. This 1.7B variant trades cost for raw and system accuracy: same recipe, larger backbone, ~3× the per-query compute.

For background on the system overview, training pipeline, and routing protocol, see the issai/foggen model card; only the differences are documented here.

Recipe

Everything is held identical to issai/foggen:

  • Cloud teacher: Qwen3-30B-A3B-Instruct-2507
  • 7 domain rotation: finance, science, coding, law, math, Kazakh culture, medical
  • 14 sequential SFT rounds (R0 → R14)
  • LoRA r=16, α=32, all-linear, bf16, 2 epochs, lr=5e-5
  • Same confidence buckets (0.0, 0.25, 0.5, 0.75, 1.0) and same FogGen output format
  • For R0 the 1,800-question calibration buffer is re-labeled from scratch with the raw Qwen3-1.7B base (N=8 at T=0.7)

The only change is the edge backbone (Qwen/Qwen3-1.7B in place of Qwen/Qwen3-0.6B).

Performance

System accuracy at τ=0.5 on the seven MCQ domains (full test sets, ~16,200 queries). Cloud baseline is Qwen3-30B-A3B-Instruct-2507.

Domain Cloud only R14 raw Random @ τ=0.5 FogGen @ τ=0.5 Cloud routed
Finance 69.5% 66.0% 66.7% 71.0% 20.1%
Science 72.7% 64.0% 66.1% 70.7% 23.2%
Coding 74.2% 68.9% 69.9% 73.7% 18.3%
Law 70.7% 62.1% 64.7% 69.5% 29.8%
Math 60.1% 47.2% 51.8% 56.7% 35.6%
Kazakh culture 95.8% 90.7% 91.1% 92.5% 8.2%
Medical 74.0% 62.0% 65.7% 72.1% 30.9%
Mean 73.9% 65.8% 68.0% 72.3% 23.7%

Mean lift over Random at τ=0.5: +4.3.

Quick demo

from transformers import AutoTokenizer, AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("issai/foggen-qwen3-1.7b", torch_dtype="bfloat16", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("issai/foggen-qwen3-1.7b")

SYSTEM = """You are a self-aware multiple-choice assistant.

Rules:
- Do not output <think> tags.
- First, assess your confidence in solving this question.
- Then give your answer.
- Output format:
  Confidence: <0.0|0.25|0.5|0.75|1.0>
  Final answer: <OPTION_LETTER>"""

messages = [
    {"role": "system", "content": SYSTEM},
    {"role": "user", "content": "<your MCQ here>"},
]
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True,
                                       enable_thinking=False).to(model.device)
outputs = model.generate(inputs, max_new_tokens=64, do_sample=False)
print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))

The routing decision (route_query helper, threshold τ) is identical to the issai/foggen card.

Comparison to issai/foggen

issai/foggen (0.6B) issai/foggen-qwen3-1.7b (this)
Edge backbone Qwen3-0.6B Qwen3-1.7B
Per-query inference cost ~3×
Mean R14 raw acc 59.6% 65.8%
Mean system acc @ τ=0.5 67.8% 72.3%
Cloud-routing rate @ τ=0.5 21.9% 23.7%

Citation

Paper coming soon.

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

Model tree for issai/foggen-qwen3-1.7b

Finetuned
Qwen/Qwen3-1.7B
Finetuned
(781)
this model
Quantizations
1 model

Datasets used to train issai/foggen-qwen3-1.7b

Collection including issai/foggen-qwen3-1.7b