Complete-FABLE.5-traces-2M
收藏资源简介:
Complete FABLE.5 Traces 2M 是一个经过整理和去重的汇编数据集,包含了在 Hugging Face 上可用的所有 FABLE.5 和 Mythos 轨迹数据。该数据集在 Fable 和 Mythos 项目关闭后创建,旨在提供一个完整、干净的语料库快照。数据集的核心内容是大规模语言模型(特别是 Claude Code)生成的智能体交互轨迹,涉及思维链推理、工具使用和编码任务。数据集包含 2,006,487 条经过清理的数据行,移除了 604 条包含会话限制助手答案模式的行,总数据量约为 1.94 GiB。数据以两种格式提供:便于查看和处理的 Parquet 文件以及保留完整原始 JSON 和来源信息的 Gzip 压缩 JSONL 文件。数据模式设计注重来源追踪和去重,包含关键字段如 row_hash(用于去重的 SHA256 哈希值)、first_source_dataset(首次来源数据集)等。数据集整合了来自 17 个不同 Hugging Face 数据源的轨迹数据,主要来源包括 attentionAllYouNeed/Vibe-Coding-Claude-Fable-5 和 Poumrm/Mythos-5-and-Fabel-5-Class-Model-Outputs 等。每个数据行都可以通过 first_source_* 字段追溯其原始出处。该数据集适用于文本生成和语言建模任务,特别是与智能体轨迹分析、思维链推理、工具调用模拟、编码智能体训练以及合成数据生成相关的研究和开发。作为 FABLE.5/Mythos 生态系统的综合汇编,它为研究大规模语言模型的推理和行为模式提供了高质量、去重且来源可追溯的数据资源。
Complete FABLE.5 Traces 2M is a curated and deduplicated compiled dataset containing all FABLE.5 and Mythos trace data available on Hugging Face. This dataset was created after the shutdown of the Fable and Mythos projects, aiming to provide a complete and clean snapshot of the corpus. The core content of this dataset consists of agent interaction traces generated by large language models (especially Claude Code), covering chain-of-thought reasoning, tool usage, and coding tasks. The dataset contains 2,006,487 cleaned data rows, with 604 rows containing session-restricted assistant answer patterns removed, and the total data volume is approximately 1.94 GiB. The data is provided in two formats: Parquet files for easy viewing and processing, and Gzip-compressed JSONL files that retain complete original JSON and source information. The data schema is designed with a focus on source tracing and deduplication, including key fields such as row_hash (SHA256 hash value for deduplication), first_source_dataset (the first source dataset), and others. The dataset integrates trace data from 17 distinct Hugging Face data sources, with major sources including attentionAllYouNeed/Vibe-Coding-Claude-Fable-5 and Poumrm/Mythos-5-and-Fabel-5-Class-Model-Outputs, among others. Each data row can trace its original provenance via the first_source_* fields. This dataset is suitable for text generation and language modeling tasks, particularly research and development related to agent trajectory analysis, chain-of-thought reasoning, tool invocation simulation, coding agent training, and synthetic data generation. As a comprehensive compilation of the FABLE.5/Mythos ecosystem, it provides high-quality, deduplicated, and source-traceable data resources for researching the reasoning and behavioral patterns of large language models.
数据集概述
- 数据集名称: Complete FABLE.5 Traces 2M
- 许可证: MIT
- 语言: 英文
- 规模: 1M < n < 10M(实际包含约200万行)
- 任务类型: 文本生成(语言建模)
- 标签: 智能体轨迹、Claude Code、链式思考、工具使用、编码智能体、合成数据、去重
数据集描述
该数据集是FABLE.5 / Mythos轨迹数据集的完整后关闭编译版本,在Fable和Mythos关闭后,从Hugging Face上所有可用的相关数据集整理而成。数据在规范化行级别进行去重,并保留了行级来源信息(首次来源数据集、配置、拆分和行索引)。已移除包含会话限制助手回答模式的行。
数据统计
| 指标 | 数值 |
|---|---|
| 清洗后行数 | 2,006,487 |
| 移除行数 | 604 |
| 托管数据量 | 1.94 GiB |
数据文件
| 文件 | 行数 | 用途 |
|---|---|---|
data/train.parquet |
2,006,487 | 面向查看器的规范Parquet拆分 |
raw/fable5_mythos_dedup.jsonl.gz |
2,006,487 | Gzip压缩的规范JSONL镜像,包含来源字段和原始行JSON |
数据模式
| 列名 | 类型 | 描述 |
|---|---|---|
row_hash |
string | 规范化原始行JSON的SHA256哈希值 |
first_source_dataset |
string | 首次观察到该规范行的数据集 |
first_source_config |
string | 首次观察到的配置或加载接口 |
first_source_split |
string | 首次观察到的拆分、文件或本地提取标签 |
first_source_row_index |
int64 | 在首次观察到的来源中的行索引 |
seen_count |
int64 | 该规范行在整理过程中出现的次数 |
row_json |
string | 保留的原始行规范JSON,解析后可获取来源特定字段 |
来源数据集
数据集从17个Hugging Face数据集中整理,按引用行数排序的主要来源包括:
attentionAllYouNeed/Vibe-Coding-Claude-Fable-5:1,100,000 行Poumrm/Mythos-5-and-Fabel-5-Class-Model-Outputs:776,496 行BerkayBB/MythosAi:40,215 行ansulev/claude_mythos_distilled_25k:25,000 行1EYE4ALL/Fable-5-traces:22,904 行- 其他12个较小来源合计数十万行
加载方式
可使用以下Python代码加载数据集:
python from datasets import load_dataset
ds = load_dataset("Crownelius/Complete-FABLE.5-traces-2M", split="train")




