DualBlind
收藏资源简介:
DualBlind 推理与偏好数据集是一个合成生成的双盲AI竞技场基准共识数据集,旨在提供高质量的监督微调(SFT)推理轨迹和直接偏好优化(DPO)偏好对。该数据集将双盲竞技场中获胜的推理路径与错误的备选方案进行对比,从而训练和校准模型在已验证的底层逻辑上。数据集包含两个部分:SFT推理轨迹文件(data/sft_reasoning_train.jsonl,共996条),每条记录是经过验证的逐步推理证明,适用于教授模型结构化逻辑、代码合成和分析推理;DPO偏好对文件(data/dpo_preferences_train.jsonl,共995条),每条记录包含一个较优逻辑(chosen)和一个有缺陷、低效或错误的推理尝试(rejected),适用于使用Hugging Face TRL、Unsloth或Axolotl进行对齐训练。数据格式为JSONL,可通过Hugging Face datasets库直接加载。
DualBlind Reasoning and Preference Dataset is a synthetically generated double-blind AI arena benchmark consensus dataset designed to provide high-quality supervised fine-tuning (SFT) reasoning traces and direct preference optimization (DPO) preference pairs. The dataset contrasts winning reasoning paths from the double-blind arena with erroneous alternatives, thereby training and calibrating models on verified underlying logic. The dataset consists of two parts: an SFT reasoning trace file (data/sft_reasoning_train.jsonl, 996 entries), each record is a verified step-by-step reasoning proof, suitable for teaching models structured logic, code synthesis, and analytical reasoning; a DPO preference pair file (data/dpo_preferences_train.jsonl, 995 entries), each record contains a superior logic (chosen) and a flawed, inefficient, or erroneous reasoning attempt (rejected), suitable for alignment training using Hugging Face TRL, Unsloth, or Axolotl. The data format is JSONL and can be loaded directly via the Hugging Face datasets library.
GlimmaryKarl/DualBlind 数据集概述
数据集简介
GlimmaryKarl/DualBlind 是一个通过双盲多智能体竞技场(DualBlind AI Benchmark Arena)生成的精选前沿推理与直接偏好优化(DPO)数据集。在该竞技场中,两个独立的 Frontier AI 模型进行多轮双盲对话,共同解决高难度基准问题,相互验证对方的证明、提出反例并达成数学共识。
质量门槛
- 严格的质量控制:仅收录通过自动化验证、达到 100% 准确率且与标准答案完全一致的试验样本。
- 总竞技场试验数:1832 个
- 已验证 100% 准确的合格样本:1573 个(通过率 85.9%)
- 被过滤的不合格样本(<100% 或被反驳):259 个
- 质量政策:对未经验证或不完美的推测零容忍,每个样本均提供经数学与算法验证的标准解答。
数据子集
sft_reasoning(1428 个样本):监督微调记录,包含高密度的逐步思维链推理过程,最终导向 100% 验证的正确解答。dpo_preferences(1427 对):直接偏好优化数据对(prompt、chosen、rejected),将 100% 验证的共识性证明作为chosen,将存在缺陷的同行推测或被反驳的假设作为rejected。
覆盖的基准套件
| 基准 | 运行次数 |
|---|---|
| GPQA Diamond | 192 |
| MMLU-Pro | 164 |
| Game Theory | 264 |
| ARC Challenge | 215 |
| IFEval | 142 |
| MATH / AIME | 74 |
| SWE-bench | 197 |
| FrontierMath | 62 |
| Humanitys Last Exam | 63 |
| Formal Logic | 177 |
| General Benchmark | 23 |
涉及的代表性模型
数据集涵盖了超过 45 个模型,包括但不限于:
- Gemini 系列:
gemini-2.5-flash、gemini-2.0-flash、gemini-3.7-flash、gemini-1.5-flash、google-gemini-3.7-flash - DeepSeek 系列:
deepseek/deepseek-r1:free、deepseek/deepseek-r1-distill-llama-70b:free、deepseek-r1、deepseek-deepseek-v3、deepseek/deepseek-chat:free - Llama 系列:
meta-llama/llama-3.1-8b-instruct:free、meta-llama/llama-3.3-70b-instruct:free、meta-llama/llama-3.2-3b-instruct:free、meta-llama/llama-3.1-70b-instruct - Qwen 系列:
qwen/qwen-2.5-72b-instruct:free、qwen/qwq-32b:free、qwen/qwen-2.5-coder-32b-instruct:free - OpenAI 系列:
openai/gpt-3.5-turbo、openai/gpt-4o-mini、o3-mini、gpt-4.5-preview、gpt-4o - 其他模型:
claude-3-7-sonnet-20250219、anthropic-claude-3-haiku、mistralai/mistral-small-24b-instruct-2501:free、microsoft/phi-3-mini-128k-instruct:free、google/gemma-2-9b-it:free等
数据集配置与使用
- config 名称:
sft_reasoning(默认)和dpo_preferences - 语言:英语
- 任务类型:文本生成、问答
- 数据规模:1K < n < 10K
- 许可证:Apache 2.0,可免费用于商业、研究和教育用途
可通过 Hugging Face datasets 库加载:
python from datasets import load_dataset
加载 SFT 推理子集
sft_ds = load_dataset("GlimmaryKarl/DualBlind", "sft_reasoning", split="train")
加载 DPO 偏好子集
dpo_ds = load_dataset("GlimmaryKarl/DualBlind", "dpo_preferences", split="train")
数据集特点总结
- 推理数据均经过双盲多智能体验证,质量要求严格(100% 准确率)
- 同时支持**监督微调(SFT)和直接偏好优化(DPO)**两种训练范式
- 覆盖从数学推理、代码到逻辑等广泛的高难度基准任务
- 合成数据中包含了多个前沿模型的多轮交互推理轨迹,适合用于提升模型在复杂推理任务上的表现




