File size: 2,333 Bytes
baeb76a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
license: apache-2.0
task_categories:
- text-generation
- question-answering
language:
- en
tags:
- reasoning
- chain-of-thought
- cot
- math
- logic
- chatml
- pinkpixel
size_categories:
- 10k<n<100k
---

# 🧠 Reasoning Mix 100k ✨

A high-quality, balanced reasoning dataset consisting of **99,999 samples** extracted from three reasoning datasets. This dataset is specifically formatted for models to utilize a `/think` block for step-by-step reasoning.

## 📊 Dataset Summary

The **Reasoning Mix 100k** is a curated collection of reasoning tasks, primarily focused on mathematics, logic, and general problem-solving. It combines the strengths of three high-performing datasets into a unified format optimized for **Chain-of-Thought (CoT)** training.

| Source | Samples | Format |
| :--- | :--- | :--- |
| **GLM-5.1-Reasoning-1M** | 33,333 | General/Math Reasoning |
| **OpenMathReasoning** | 33,333 | Mathematical Chain-of-Thought |
| **OpenThoughts-114k** | 33,333 | Comprehensive Reasoning |
| **Total** | **99,999** | **ChatML (Reasoning Optimized)** |

## 🛠️ Formatting
The dataset uses the **ChatML** format with a specialized system prompt and assistant response structure.

### 📝 System Prompt
> "You are a highly capable AI assistant. For every response, you must first show your step-by-step reasoning process within a /think block, followed by the final answer."

### 🤖 Assistant Responses
Every response is wrapped in a `/think` block structure:
```text
/think
[Step-by-step reasoning process...]
/think

[Final answer or solution]
```

## 📂 Dataset Structure

Each sample in the `reasoning_mix_100k.jsonl` file follows this structure:

```json
{
  "messages": [
    {
      "role": "system",
      "content": "You are a highly capable AI assistant..."
    },
    {
      "role": "user",
      "content": "Evaluate the integral..."
    },
    {
      "role": "assistant",
      "content": "/think\n[Reasoning...]\n/think\n\n[Final Answer]"
    }
  ]
}
```

## 🚀 Usage

You can load this dataset using the Hugging Face `datasets` library:

```python
from datasets import load_dataset

dataset = load_dataset("pinkpixel/reasoning-mix-100k")
print(dataset["train"][0])
```

## 📜 License

This dataset is released under the **Apache License 2.0**.

---
Made with ❤️ by **Pink Pixel**