ScholarQuest
收藏资源简介:
ScholarQuest是由中国科学技术大学认知智能国家重点实验室构建的大规模、分类学引导的学术论文搜索基准数据集。该数据集覆盖超过1000个计算机科学主题,包含1111个高质量查询,涵盖方法导向、设置锚定、比较基础和范围控制四种研究意图类型,旨在为智能代理在开放文献环境中的学术搜索提供系统性评估。其数据来源于对arXiv数据库的整合与扩展,通过结合初始检索、引文网络扩展和多阶段相关性过滤的自动化流程构建高质量答案集,并配套了百万级规模的标准化检索后端ScholarBase。该数据集主要应用于评估基于大语言模型的智能学术搜索代理的性能,旨在解决现有基准在查询多样性、答案集可扩展性以及可复现评估环境方面的不足,推动更高效、精准的文献探索工具的发展。
ScholarQuest is a large-scale, taxonomy-guided academic paper search benchmark dataset developed by the State Key Laboratory of Cognitive Intelligence, University of Science and Technology of China. It covers over 1000 computer science topics and includes 1111 high-quality queries, which fall into four research intent categories: method-oriented, setup-anchored, comparison-based, and scope-constrained. This dataset aims to provide systematic evaluation for academic search conducted by AI Agents in open literature environments. The dataset is constructed based on the integration and expansion of the arXiv database, with high-quality answer sets built through an automated workflow combining initial retrieval, citation network expansion, and multi-stage relevance filtering. It is also equipped with a million-scale standardized search backend named ScholarBase. This benchmark is primarily used to evaluate the performance of academic search AI Agents powered by Large Language Models (LLMs). It addresses the limitations of existing benchmarks in terms of query diversity, answer set scalability, and reproducible evaluation environments, and seeks to advance the development of more efficient and precise literature exploration tools.
数据集概述
ScholarQuest 是一个用于评估论文搜索智能体的基准测试数据集。该基准要求系统根据真实的学术搜索查询检索出相关的 arXiv 论文集合,而非回答单一的事实性问题。
数据集文件
datasets/ScholarQuest.jsonl
- 内容:最终的基准测试数据集,包含 1111 个基准查询。
- 格式:每行是一个评估实例。
- 主要字段:
query_id:稳定的查询标识符(例如BQ_000001)。final_query:面向用户的论文搜索查询。answer_arxiv_ids:相关 arXiv ID 列表。final_answer_count:相关答案的数量。source_dir:最终答案集的来源。
- 约束:仅保留最终答案数量在 5 到 200 之间的查询。
datasets/query_metadata.jsonl
- 内容:最终答案过滤前的查询元数据池,包含 13097 条生成并去重后的查询记录。
- 主要字段:
query_idfinal_querytopic_seeddomaincategoryconstraint_kindconstraint_valuerationalerisk_flags- 生成元数据(如
llm_model、token 计数、源批次信息)。
- 查询类别(共四类):
method_capabilitysetting_anchorclaim_comparisonscope_control
基准构建流程
所有构建代码位于 BenchmarkConstruction/ 目录下,整体流程如下:
-
种子生成
- 路径:
BenchmarkConstruction/SeedGeneration/ - 方法:从 ACM/arXiv 分类资源构建主题种子。
- 路径:
-
查询生成
- 路径:
BenchmarkConstruction/QueryGeneration/ - 方法:将主题种子扩展为 ScholarQuest 风格的论文检索查询,使用四种受控类别并存储元数据。
- 路径:
-
答案查找
- 路径:
BenchmarkConstruction/AnswerFinding/和BenchmarkConstruction/AnswerFinding_v2/ - 方法:使用论文搜索工具和 Lewen API 为每个查询收集候选相关论文。
- 路径:
-
答案过滤
- 路径:
BenchmarkConstruction/AnswerFilters/ - 方法:应用更严格的跨模型过滤以生成更干净的答案集。
- 路径:
-
基准选择与分析
- 路径:
BenchmarkConstruction/benchmark/ - 内容:存储基准快照及用于查询级分析的脚本。
- 路径:
可复用的管道代码位于 BenchmarkConstruction/src/paperbench/,一些关键的入口点包括:
python scripts/run_pipeline.pypython QueryGeneration/generate_pasa_queries.pypython QueryGeneration/validate_pasa_queries.pypython AnswerFinding/run_pasa_answer_finding.pypython AnswerFilters/run_strict_cross_filter.py
Lewen API
Lewen-API/ 是构建流程所使用的学术论文搜索后端。它提供以下功能:
- 语义论文搜索
- 标题和元数据查找
- 论文详情检索
- 引用和参考文献查询
该 API 在本地部署中覆盖了约 300 万 篇 arXiv 论文。示例端点:
http://<host>:4000/paper/search?query=transformer+attention&limit=5http://<host>:4000/paper/2309.06180?fields=*http://<host>:4000/paper/1706.03762/citations?limit=10
详细 API 信息请参见 Lewen-API/README.md 和 Lewen-API/docs/。
推荐阅读顺序
为快速了解该仓库,建议按以下顺序阅读:
datasets/ScholarQuest.jsonldatasets/query_metadata.jsonlBenchmarkConstruction/QueryGeneration/README_pasa_generation.mdBenchmarkConstruction/AnswerFilters/README.mdLewen-API/README.md
注意事项
- 本仓库专注于基准构建和已发布数据,不涉及模型推理。
- 生成的缓存、大型原始语料库和中间输出目录已被有意省略或最小化。
- JSONL 文件是行分隔的 JSON:每个非空行即为一条记录。

- 1ScholarQuest: A Taxonomy-Guided Benchmark for Agentic Academic Paper Search in Open Literature Environments中国科学技术大学·认知智能国家重点实验室 · 2026年



