CoolFace
Datasetpublic

saidutta69/claude-mythos-distilled-25k-clean

๐Ÿง  Claude Mythos Distilled โ€” Clean A deduplicated, split-ready Claude Mythos distillation corpus of 5,315 unique (prompt, response) pairs โ€” the original "25K" was a combinatorial expansion of just ~135 prompts ร— 214 responses. Priorities: Quality > Cleanliness > Signal Clean derivative of WithinUsAI/claude_mythos_distilled_25k. Apache-2.0 inherited. ๐Ÿ” The Duplication Finding The original 25,000 rows contain only: ~135 unique user prompts 214 uniqueโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/saidutta69/claude-mythos-distilled-25k-clean.

sourceHugging Faceapache-2.0updated 14d agoView on Hugging Face
1likes221downloads
Dataset Card

๐Ÿง  Claude Mythos Distilled โ€” Clean

<div align="center"> <img src="https://photu.kashyalabanavli.site/racer-is-op.png" alt="RACER IS OP" width="100%"> </div>

<br>

A deduplicated, split-ready Claude Mythos distillation corpus of 5,315 unique (prompt, response) pairs โ€” the original "25K" was a combinatorial expansion of just ~135 prompts ร— 214 responses.

Priorities: Quality > Cleanliness > Signal

Clean derivative of WithinUsAI/claude_mythos_distilled_25k. Apache-2.0 inherited.

๐Ÿ” The Duplication Finding

The original 25,000 rows contain only:

  • โ€”~135 unique user prompts
  • โ€”214 unique assistant responses
  • โ€”5,315 unique (prompt, response) pairs
  • โ€”19,685 rows (78.7%) are exact template duplicates

Training on the raw file means massively over-weighting ~200 texts. This clean version keeps every unique pair exactly once.

๐Ÿ“Š Dataset Overview

PropertyValue
Unique Records5,315
Removed Duplicates19,685 (78.7%)
Train Split4,790 (90.0%, hash-seeded deterministic)
Validation Split271 (5.0%)
Test Split254 (5.0%)
FormatOpenAI messages JSON
LicenseApache-2.0 โœ… commercially usable

๐Ÿ—๏ธ Category Composition (unique pairs)

CategoryUnique Rows
advanced_coding2,652
cybersecurity1,809
mathematical_reasoning494
scientific_analysis216
agentic_planning90
generalexpertqa54

Length: mean 1,931 chars ยท median 1,950 ยท max 2,387 โ€” uniform, no truncation or refusals detected.

๐ŸŽฏ Usage

python
from datasets import load_dataset
import json

ds = load_dataset("saidutta69/claude-mythos-distilled-25k-clean", split="train")
msgs = json.loads(ds[0]["messages"])

Works with TRL, Axolotl, LLaMA-Factory, Unsloth via standard chat templates.

โš ๏ธ Notes

  • โ€”Responses carry a recurring Mythos-style disclaimer footer ("This response was generated to exemplify the distilled Mythos reasoning style..."). Consider stripping if you want cleaner targets โ€” kept here for fidelity to source.
  • โ€”Synthetic teacher outputs; treat as stylistic SFT signal, not verified factual content.

๐Ÿ“œ Citation

bibtex
@dataset{mythos-25k-clean,
  title={Claude Mythos Distilled 25K Clean (Deduplicated)},
  author={Sai Dutta Abhishek Dash (clean); original by WithinUsAI},
  year={2026},
  publisher={Hugging Face},
  url={https://huggingface.co/datasets/saidutta69/claude-mythos-distilled-25k-clean}
}