BrowseComp-PlusCM
收藏资源简介:
BrowseComp-PlusCM是由滑铁卢大学构建的智能体搜索基准数据集,它保留了BrowseComp-Plus的复杂问题,但将证据迁移至NVIDIA发布的ClimbMix语料库。该数据集包含57个通过严格验证的多跳问题,每个问题被分解为原子推理跳,并确保每个跳在ClimbMix的553M文档、400B tokens中均有确切支撑。创建过程采用自动化流水线,结合独立代理验证与人工审核,仅保留所有跳均被证实的样本。该数据集旨在解耦智能体搜索中的检索与推理能力,通过将难度转移至更大规模、更自然的语料库,暴露检索瓶颈,为评估深度研究代理提供更真实的基准。
BrowseComp-PlusCM is an agent search benchmark dataset developed by the University of Waterloo. It retains the complex problem set from BrowseComp-Plus, while migrating the supporting evidence to the ClimbMix corpus released by NVIDIA. This dataset contains 57 rigorously validated multi-hop questions, each decomposed into atomic reasoning hops, with each hop guaranteed to have exact supporting evidence in the 553 million documents and 400 billion tokens of the ClimbMix corpus. The dataset was created via an automated pipeline that combines independent agent validation and manual review, only retaining samples where all reasoning hops are fully verified. This dataset aims to decouple retrieval and reasoning capabilities in agent search: by shifting the task difficulty to a larger, more natural corpus, it exposes retrieval bottlenecks, providing a more realistic benchmark for evaluating deep research agents.
CMASS 数据集概述
基本信息
- 全称:ClimbMix Agentic Search Suite(CMASS)
- 类型:基于语料库的智能体搜索基准数据集
- 论文:https://arxiv.org/abs/2608.20317
- 数据集发布地址:https://huggingface.co/datasets/castorini/cmass
- 许可证:Apache 2.0
- Python要求:3.10 或更高版本
核心目标
CMASS 通过将现有的问答基准投影到固定的检索语料库上,构建基于语料库的智能体搜索基准。每个问题被分解为原子推理步骤,并且只有当每个步骤都能在目标语料库中被可检索文档支持时,该问题才会被保留。
数据集内容
首个版本:BrowseComp-Plus_CM
- 源语料库:ClimbMix,包含 5.53 亿篇文档,共计 4000 亿 token
- 基准规模:57 个人工验证的问题,附带问题级别的相关性判断(Qrels)
构建流程
- 投影阶段(Stage 1):包含四个操作——跳跃/线索分解、基础验证、可回答性检查、全跳跃验证
- 独立智能体验证(Stage 2):使用 PIIKA 进行独立验证
- 人工验证(Stage 3):人工审核
- Qrels 构建(Stage 4):构建相关性判断
数据过滤结果
- 初始来源问题:830 个
- 可从 ClimbMix 回答的问题:326 个
- 通过自动全跳跃验证的问题:65 个
- 人工审核后保留的问题:57 个
数据集结构
- queries.jsonl:包含混淆编码的问题和答案,需通过
canary字段解码 - qrels.jsonl:包含混淆编码的文档 ID,同样需解码
- corpus_duplicates 配置:包含 219,066,180 行重复文档关系记录(精确和近似重复)
PIIKA 评估结果
在 57 个人工验证问题上评估了三种 PIIKA 配置:
| 模型 | 语料库 | 准确率(%) | 召回率(%) | 平均工具调用次数 |
|---|---|---|---|---|
| GPT-5.6 Sol (max) | BrowseComp-Plus | 85.96 | 84.28 | 60.16 |
| GPT-5.6 Sol (max) | BrowseComp-Plus_CM | 80.70 | 21.37 | 98.26 |
| Gemma 4 31B IT | BrowseComp-Plus | 26.32 | 24.91 | 24.46 |
| Gemma 4 31B IT | BrowseComp-Plus_CM | 15.79 | 2.77 | 23.42 |
| Qwen 3.5 9B | BrowseComp-Plus | 14.04 | 19.33 | 33.44 |
| Qwen 3.5 9B | BrowseComp-Plus_CM | 12.28 | 2.64 | 37.93 |
关键发现:投影使检索难度显著增加。对于 GPT-5.6 Sol,证据召回率从 84.28% 下降到 21.37%,同时检索调用增加了 63%,而答案准确率仅下降约 5 个百分点。
仓库结构
pipelines/bcp_climbmix/:BrowseComp-Plus 到 ClimbMix 的投影实现,包含 Stage 1 的四个操作及 Stage 4 的 Qrels 构建corpus_analysis/:ClimbMix 语料库分析(token 长度分布、重复检测等)scripts/deobfuscate.py:解码 Hugging Face 发布中混淆的字段
使用方式
- 克隆仓库并安装依赖(见 README 中的 Quick Start)
- 通过 Hugging Face
datasets库加载查询和 Qrels - 使用
decode_row函数解码混淆字段 - 如需复现完整的投影流程,可参考
pipelines/bcp_climbmix/目录
引用方式
bibtex @misc{sharifymoghaddam2026projectingbrowsecompplusclimbmixrealistic, title={Projecting BrowseComp-Plus onto ClimbMix: Toward More Realistic Corpora for Agentic Search}, author={Sahel Sharifymoghaddam and Lingwei Gu and Yijun Ge and Jimmy Lin}, year={2026}, eprint={2608.20317}, archivePrefix={arXiv}, primaryClass={cs.IR}, url={https://arxiv.org/abs/2608.20317}, }





