CoolFace
Modelpublic

lightonai/Qwen3-8B-DE-Pivot-EN

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
0likes9downloads
Model Card

Qwen3-8B-DE-Pivot-EN

Qwen3-8B-DE-Pivot-EN is an English-pivoted reasoning model fine-tuned from `Qwen/Qwen3-8B-Base` on German questions and answers. This model receives questions in German, produces its entire reasoning trace in English, then delivers the final answer in German.

It is released alongside the paper **Rethinking the Multilingual Reasoning Gap with Layer Swap**.

Model details

  • —Base model: Qwen/Qwen3-8B-Base
  • —Language: German (Q&A) with English CoT
  • —Training: Full SFT, ~10B tokens, 2 epochs
  • —Context length: 32,768 tokens
  • —Dataset: `lightonai/Dolci-Think-SFT-32B-Multilingual` (German Q&A with English CoT).
[!NOTE] The model was trained on data derived from allenai/Dolci-Think-SFT-32B, released under the ODC-BY-1.0 license.

Related models

This model is part of a German specialist trio designed to study the native reasoning gap:

ModelCoT languageDescription
`lightonai/Qwen3-8B-DE`GermanNative reasoning specialist
`lightonai/Qwen3-8B-DE-Swap`GermanLayer Swap: middle layers (L13–L22) of Qwen3-8B-EN transplanted into Qwen3-8B-DE
`lightonai/Qwen3-8B-DE-Pivot-EN`EnglishSame German Q&A pairs, but CoT in English
`lightonai/Qwen3-8B-EN`EnglishEnglish specialist

Evaluation

All scores are mean accuracy (%) on the German version of each benchmark, with sample standard deviation across runs. AIME 24/25 is averaged over 30 runs; the others over 10 runs, using the recommended generation parameters.

ModelMGSM-Rev2Global-MMLU-LiteGPQA-DiamondAIME 24/25HumanEvalPlusAverage
Qwen3-8B-DE93.1275.1555.2054.5684.9472.59
Qwen3-8B-DE-Swap<u>96.96</u>77.3556.1658.28<u>87.00</u>75.15
Qwen3-8B-DE-Pivot-EN93.76<u>78.05</u><u>57.68</u><u>62.06</u>86.81<u>75.67</u>
Qwen3-8B-EN95.8875.8055.4557.9482.5673.53

Benchmarks used:

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "lightonai/Qwen3-8B-DE-Pivot-EN"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")

messages = [{"role": "user", "content": "Löse: 24 × 17 = ?"}]
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True).to(model.device)

outputs = model.generate(inputs, max_new_tokens=32768, temperature=1.0, top_p=0.95, top_k=20)
print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))

Recommended sampling: temperature=1.0, top_p=0.95, top_k=20, min_p=0.

Citation

If you find our work helpful, feel free to give us a cite.

bibtex
@misc{lasbordes2026rethinking,
  title        = {Rethinking the Multilingual Reasoning Gap with Layer Swap},
  author       = {Lasbordes, Maxence and Chatelain, Amélie and Seddah, Djamé},
  year         = {2026},
  eprint       = {2605.26735},
  archivePrefix= {arXiv},
  primaryClass = {cs.CL}
}