Luth-0.6B-Instruct
Luth-0.6B-Instruct is a French fine-tuned version of Qwen3-0.6B, trained on the Luth-SFT dataset. The model has drastically improved its French capabilities in instruction following, math, and general knowledge. Additionally, its English capabilities have remained stable and have even increased in some areas.
Our Evaluation, training and data scripts are available on GitHub, along with the Blog we wrote.
Model Details
Luth was trained using full fine-tuning on the Luth-SFT dataset with Axolotl. The resulting model was then merged with the base Qwen3-0.6B model. This process successfully retained the model's English capabilities while improving its performance on nearly all selected benchmarks in both French and English.
Benchmark Results
We used LightEval for evaluation, with custom tasks for the French benchmarks. The models were evaluated with a temperature=0
.
Evaluation Visualizations
French Evaluation:
English Evaluation:
French Benchmark Scores
Benchmark | Qwen3-0.6B | Qwen2.5-0.5B-Instruct | Luth-0.6B-Instruct |
---|---|---|---|
ifeval-fr | 44.45 | 22.18 | 48.24 |
gpqa-diamond-fr | 28.93 | 23.86 | 33.50 |
mmlu-fr | 27.16 | 35.04 | 40.23 |
math-500-fr | 29.20 | 10.00 | 43.00 |
arc-chall-fr | 31.31 | 28.23 | 33.88 |
hellaswag-fr | 25.11 | 51.45 | 45.70 |
English Benchmark Scores
Benchmark | Qwen3-0.6B | Qwen2.5-0.5B-Instruct | Luth-0.6B-Instruct |
---|---|---|---|
ifeval-en | 57.86 | 29.21 | 53.97 |
gpqa-diamond-en | 29.80 | 26.77 | 28.28 |
mmlu-en | 36.85 | 43.80 | 48.10 |
math-500-en | 45.00 | 31.80 | 47.80 |
arc-chall-en | 33.62 | 32.17 | 35.92 |
hellaswag-en | 42.91 | 49.56 | 46.96 |
Code Example
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("kurakurai/Luth-0.6B-Instruct")
model = AutoModelForCausalLM.from_pretrained("kurakurai/Luth-0.6B-Instruct")
messages = [
{"role": "user", "content": "Quelle est la capitale de la France?"},
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=100)
print(
tokenizer.decode(
outputs[0][inputs["input_ids"].shape[-1] :], skip_special_tokens=True
)
)
Citation
@misc{luth2025kurakurai,
title = {Luth-0.6B-Instruct},
author = {Kurakura AI Team},
year = {2025},
howpublished = {\url{https://huggingface.co/kurakurai/Luth-0.6B}},
note = {Qwen3-0.6B fine-tuned on French datasets}
}
- Downloads last month
- 47
Model tree for kurakurai/Luth-0.6B-Instruct
Base model
Qwen/Qwen3-0.6B-Base