CoolFace
Datasetpublic

PinkPixel/Reasoning-Mix-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โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/PinkPixel/Reasoning-Mix-100k.

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
1likes39downloads
Dataset Card

๐Ÿง  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.

SourceSamplesFormat
GLM-5.1-Reasoning-1M33,333General/Math Reasoning
OpenMathReasoning33,333Mathematical Chain-of-Thought
OpenThoughts-114k33,333Comprehensive Reasoning
Total99,999ChatML (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 โœจ