CoolFace
Datasetpublic

Tivaphraen/Qwen3.7_5k_fr60_fixed

Qwen 3.7 Max Thinking — Distilled Reasoning Dataset (FR60, cleaned) 5,000 chain-of-thought (CoT) reasoning traces, ~60% machine-translated to French, derived from the original dataset WithinUsAI/Qwen3.7_Max_Thinking_dataset_5K. Each example contains a problem, a detailed step-by-step reasoning trace (in the Qwen 3.7 Max Thinking style), and a concise final answer. Source and translation This dataset is a partial translation of the original English dataset… See the full description on the dataset page: https://huggingface.co/datasets/Tivaphraen/Qwen3.7_5k_fr60_fixed.

sourceHugging Faceunknownupdated 2mo agoView on Hugging Face
1likes64downloads
Dataset Card

Qwen 3.7 Max Thinking — Distilled Reasoning Dataset (FR60, cleaned)

5,000 chain-of-thought (CoT) reasoning traces, ~60% machine-translated to French, derived from the original dataset `WithinUsAI/Qwen3.7_Max_Thinking_dataset_5K`.

Each example contains a problem, a detailed step-by-step reasoning trace (in the Qwen 3.7 Max Thinking style), and a concise final answer.

Source and translation

This dataset is a partial translation of the original English dataset `Qwen3.7_Max_Thinking_dataset_5K` published by WithinUsAI. About 60% of the 5,000 examples were machine-translated into French, the remaining ~40% were kept as-is in the original English — hence the fr60 suffix.

The translation was performed with a script using the [tencent/Hy-MT2-1.8B-GGUF](https://huggingface.co/tencent/Hy-MT2-1.8B-GGUF) model, quantized Q6, run locally.

The original dataset was generated programmatically (generate_dataset.py) using templated generators with randomized parameters across 10 reasoning domains, then deduplicated via SHA-256 hashing (both at the entry and problem level).

Format

JSONL, one conversation per line, messages structure (chat/SFT-compatible):

json
{"messages": [
  {"role": "user", "content": "Résolvez l'équation quadratique : 2x^2 + 8x + 6 = 0"},
  {"role": "assistant", "content": "Résoudre 2x^2 + 8x + 6 = 0.\nEn utilisant la formule quadratique : x = [-b +/- sqrt(b^2 - 4ac)] / (2a)\n...\n\nx = -1, x = -3"}
]}

The response style consistently follows the same pattern: restate the problem → recall the relevant formula → step-by-step computation → self-verification → isolated final answer.

Stats

PropertyValue
Total examples5,000
FormatJSONL, messages (user/assistant)
Duplicate prompts0
Language split~60% FR / ~39% EN / ~1% mixed/unclear
Avg. prompt length~18 words
Avg. response length~50 words

Category breakdown (from the original dataset)

CategoryApprox. share
Code & algorithms (two-sum, binary search, etc.)~24%
Mathematics (algebra, quadratics, probability, stats)~24%
Scientific reasoning (physics, chemistry, biology)~17%
Number theory (primality, GCD, modular exponentiation)~12%
Data analysis (linear regression, trend estimation)~12%
Agentic multi-step planning~6%
Logic puzzles (Monty Hall, water jugs, Latin squares)~5%
Commonsense causal reasoning / Fermi estimation / other<2%

Known issue — fixed in this version

The original dataset contained a generation bug affecting ~39% of quadratic-equation examples (~104 of 267, ~2% of the full dataset): the intermediate root-computation step displayed a spurious duplicated value, e.g.

x1 = [-11 + 5] / 2 = -3 = -8
x2 = [-11 - 5] / 2 = -8 = -3

The final answer was always correct (x = -8, x = -3); only the intermediate reasoning step contained this erroneous duplication. This version has been cleaned: the spurious duplicate value has been removed from all affected examples, keeping only the mathematically correct value. No examples were dropped — all 5,000 rows are preserved.

Use cases

  • —Knowledge distillation
  • —Supervised fine-tuning (SFT) for CoT reasoning in French/English
  • —Research on structured/bilingual reasoning formats

License

The license of the original dataset is not specified by the author (WithinUsAI). Please check with the source before any commercial use, and keep the attribution below.

Citation

If you use this dataset, please cite the original dataset it is derived from:

bibtex
@misc{qwen37maxthinking5k,
  title        = {Qwen 3.7 Max Thinking --- Distilled Reasoning Dataset},
  author       = {WithinUsAI},
  year         = {2025},
  howpublished = {\url{https://huggingface.co/datasets/WithinUsAI/Qwen3.7_Max_Thinking_dataset_5K}}
}

This dataset (fr60, cleaned version) is a partial French translation and cleanup of the above original dataset. Translation performed with tencent/Hy-MT2-1.8B-GGUF (Q6 quantization). Please credit both the original dataset and this derived version if you reuse it.