Complete-FABLE.5-traces-2M
收藏资源简介:
Complete FABLE.5 Traces 2M 是一个汇编数据集,在 Fable 和 Mythos 项目关闭后,从 Hugging Face 平台收集并整合了所有可用的 FABLE.5 和 Mythos 轨迹数据。数据集经过规范化行级别的去重处理,并移除了包含会话限制助手答案模式的数据行,最终包含 2,006,487 条清理后的数据行,总数据量约为 1.94 GiB。它提供两种格式:便于查看的规范 Parquet 文件(data/train.parquet)和保留完整原始 JSON 及来源信息的 Gzip 压缩 JSONL 文件(raw/fable5_mythos_dedup.jsonl.gz)。数据模式包含关键字段,如 `row_hash`(原始行 JSON 的 SHA256 哈希)、`first_source_dataset`(首次观察到该规范行的源数据集)、`first_source_config`(首次观察到的配置或加载器表面)、`first_source_split`(首次观察到的分割、文件或本地提取标签)、`first_source_row_index`(在首次观察到的源表面中的行索引)、`seen_count`(在整理过程中该规范行被观察到的次数)以及 `row_json`(保留的原始行规范 JSON,用于解析源特定字段)。数据集支持行级溯源,每一行都可以追溯到首次观察到它的源数据集,并附有包含 17 个 Hugging Face 源数据集的详细引用索引。该数据集适用于文本生成、语言建模任务,尤其与智能体轨迹、思维链推理、工具使用、编码智能体以及合成数据生成等场景相关。
Complete FABLE.5 Traces 2M is a compiled dataset that collects and integrates all available FABLE.5 and Mythos trajectory data from the Hugging Face platform after the closure of the Fable and Mythos projects. The dataset has been deduplicated at the normalized row level and rows containing session-limited assistant answer patterns have been removed, resulting in 2,006,487 cleaned data rows with a total data volume of approximately 1.94 GiB. It is provided in two formats: a standardized Parquet file for easy viewing (data/train.parquet) and a Gzipped JSONL file that retains complete original JSON and source information (raw/fable5_mythos_dedup.jsonl.gz). The data schema includes key fields such as `row_hash` (SHA256 hash of the original row JSON), `first_source_dataset` (the source dataset where the normalized row was first observed), `first_source_config` (the configuration or loader surface where it was first observed), `first_source_split` (the split, file, or local extraction label where it was first observed), `first_source_row_index` (the row index in the first observed source surface), `seen_count` (the number of times this normalized row was observed during consolidation), and `row_json` (the retained original row normalized JSON for parsing source-specific fields). The dataset supports row-level traceability, allowing each row to be traced back to the source dataset where it was first observed, with a detailed citation index including 17 Hugging Face source datasets. It is suitable for text generation, language modeling tasks, and particularly relevant for scenarios such as agent trajectories, chain-of-thought reasoning, tool usage, coding agents, and synthetic data generation.
数据集概述
- 数据集名称:Complete FABLE.5 Traces 2M
- 数据集地址:https://huggingface.co/datasets/Glint-Research/Complete-FABLE.5-traces-2M
- 许可协议:MIT
核心描述
- 该数据集是 FABLE.5 和 Mythos 轨迹数据集的完整后关闭编译版本,在 Fable 和 Mythos 关闭后,从 Hugging Face 上收集到的所有可用轨迹数据集经整理而成。
- 在规范化行级别进行了去重,并通过
first_source_dataset、first_source_config、first_source_split和first_source_row_index字段保留了行级来源信息。 - 删除了包含会话限制(session-limit)助手回答模式的行,恢复了完整的语料库导出。
数据集规模
- 清洁行数:2,006,487 行
- 被移除行数:604 行
- 托管有效载荷:1.94 GiB
数据文件
| 文件 | 行数 | 用途 |
|---|---|---|
data/train.parquet |
2,006,487 | 面向查看器的规范 Parquet 格式数据,便于浏览。 |
raw/fable5_mythos_dedup.jsonl.gz |
2,006,487 | 与 Parquet 架构一致的 Gzip 压缩 JSONL 格式原始导出数据,包含来源字段和原始行 JSON。 |
数据模式(Schema)
| 列名 | 类型 | 描述 |
|---|---|---|
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 行)
标签与任务
- 语言:英语(单语)
- 任务类别:文本生成
- 任务 ID:语言建模
- 标签:agent-traces、traces、claude-code、fable-5、mythos、chain-of-thought、tool-use、coding-agents、synthetic-data、deduplicated、llm-traces、data-curation、parquet、json
数据集配置
- 配置名称:default
- 数据文件分割:仅
train分割,文件路径为data/train.parquet
加载方法
使用 Hugging Face datasets 库加载:
python
ds = load_dataset("Glint-Research/Complete-FABLE.5-traces-2M", split="train")




