neurographdb-results
收藏资源简介:
NeuroGraphDB 实验结果数据集包含了针对多跳问答的图检索方法(无需 LLM 调用构建图)的完整实验原始结果。每个 JSON 文件存储一次运行的聚合指标(如检索准确率)、McNemar 统计检验结果以及运行配置(池大小、随机种子、嵌入模型、LLM 及超参数)。实验覆盖多个类别:基线(dense/BM25/RRF 混合检索)、图检索核心实验(种子-稀疏度扫描)、端到端问答(使用 Qwen2.5-7B 和 72B 模型)、HippoRAG 2 在相同条件下的复现、查询门控机制(三个种子重复)、以及被拒绝的预注册机制(Hebbian、传播、别名、扇出等,共九个中七个失败,并保留了运行前的机制预测记录)。数据集还提供了检索性能对比表(HotpotQA、2WikiMultihopQA、MuSiQue 上所有支持段落出现在前 10 中的问题比例),以及索引时间对比(4,943 个段落,本方法零 LLM 调用耗时秒级,HippoRAG 2 每段落两次 LLM 调用共 74 分钟)。该数据集主要用于复现实验、分析图检索方法在多跳问答中的表现,并验证预注册机制的假设。注意:作者不声称更高的答案准确率,在端到端问答中本方法未显著优于 HippoRAG 2,且在 MuSiQue 上被 HippoRAG 2 超越。
The NeuroGraphDB experimental results dataset contains complete raw experimental results for graph retrieval methods for multi-hop question answering that do not require LLM calls to construct graphs. Each JSON file stores the aggregated metrics (e.g., retrieval accuracy) from one run, the results of McNemar's statistical test, and the run configuration including pool size, random seed, embedding model, LLM and hyperparameters. The experiments cover multiple categories: baseline methods (dense/BM25/RRF hybrid retrieval), core graph retrieval experiments (seed-sparsity scan), end-to-end question answering using Qwen2.5-7B and 72B models, replication of HippoRAG 2 under identical conditions, query gating mechanism (three seed repetitions), and rejected pre-registered mechanisms (Hebbian, propagation, alias, fan-out, etc., 7 out of 9 failed, with pre-run mechanism prediction records retained). The dataset also provides retrieval performance comparison tables (the proportion of questions where all supporting paragraphs appear in the top 10 results on HotpotQA, 2WikiMultihopQA, and MuSiQue), as well as indexing time comparisons: for 4,943 paragraphs, the proposed method with zero LLM calls takes seconds, while HippoRAG 2 requires two LLM calls per paragraph, totaling 74 minutes. This dataset is primarily used to reproduce experiments, analyze the performance of graph retrieval methods in multi-hop question answering, and validate the hypotheses of pre-registered mechanisms. Note: The authors do not claim higher answer accuracy; this method does not significantly outperform HippoRAG 2 in end-to-end question answering, and is outperformed by HippoRAG 2 on MuSiQue.
NeuroGraphDB 实验结果数据集概述
该数据集存储了 NeuroGraphDB 项目的全部实验结果原始文件。NeuroGraphDB 是一项关于多跳问答(multi-hop QA)中图检索(graph retrieval)方法的研究,其核心特点是在构建图的过程中完全不调用任何大语言模型(LLM)。
数据集遵循 MIT 许可证,使用英文,主要标签包括检索(retrieval)、图 RAG(graph-rag)、多跳问答(multi-hop-qa)和可复现性(reproducibility)。
数据集内容结构
每个 JSON 文件记录一次实验运行的完整信息,包括:
- 聚合指标(aggregate metrics)
- McNemar 统计检验结果
- 运行配置(池大小、随机种子、嵌入器、LLM、超参数)
项目 README 中的每个数据均可追溯到本数据集中的对应文件。
实验分类
数据集按前缀组织,涵盖以下实验类别:
| 前缀 | 实验内容 |
|---|---|
baseline_* |
Dense / BM25 / RRF 混合基线 |
graph_* |
种子稀疏度扫描(核心发现) |
qa_*、compare3_* |
端到端问答,使用 Qwen2.5-7B 和 72B |
hipporag_* |
在相同条件下运行 HippoRAG 2 及其排名 |
gate_* |
查询门控,跨三个随机种子重复实验 |
hebbian_*、prop_*、alias_*、fan_* |
预注册但被否决的机制 |
rematch_* |
启用门控后与 MuSiQue 的正面对比 |
值得注意的是,被否决的实验被有意保留在数据集中——九个预注册机制中有七个失败,每条记录都包含了实验前写下的机制预测。
核心结果
检索性能(top-10 内包含全部支持段落的问题比例,n=500,池、问题、嵌入器、LLM 均相同):
| 数据集 | Dense | 本方法 | HippoRAG 2 |
|---|---|---|---|
| HotpotQA | 0.874 | 0.940 | 0.934 |
| 2WikiMultihopQA | 0.534 | 0.920 | 0.796 |
| MuSiQue | 0.330 | 0.394 | 0.454 |
索引效率对比(4,943 个段落):
- HippoRAG 2:74 分钟,每个段落需 2 次 LLM 调用
- 本方法:仅需数秒,零 LLM 调用
明确声明: 该方法不声称更高的答案准确率——在端到端问答中从未显著超越 HippoRAG 2,且在 MuSiQue 上被 HippoRAG 2 反超。




