Research Papers 论文研究 7h ago Updated 3h ago 更新于 3小时前 45

HyGRAIL: Cost-Aware and Evidence-Grounded Scientific Hypothesis Discovery over Knowledge Graphs HyGRAIL:面向知识图谱的成本感知与证据驱动的科学假设发现

HyGRAIL is a hybrid framework combining heterogeneous GNN triage with LLM-based hypothesis review for scientific hypothesis discovery over knowledge graphs GNN triage identifies a validation-calibrated ambiguous region, routing only uncertain candidate hypotheses to costly LLM review, reducing LLM calls by 54.36% on average Retrieved graph evidence (node-level associations and multi-hop relational paths) is converted into natural language via template-based or LLM-based naturalization for LLM re HyGRAIL提出了一种成本感知且证据锚定的科学假设发现框架,结合GNN初筛与LLM审查,解决科学知识图谱中缺失链接的假设发现难题 采用GNN对候选假设进行评分,识别验证校准的模糊区域,仅将图不确定的案例路由至LLM审查,平均减少54.36%的LLM调用 在MatKG数据集上取得0.429的F1分数,较最强基线提升0.242,较纯GNN基线提升0.322 检索节点级关联和多层关系路径作为证据,通过模板或LLM自然化后由LLM审查代理基于验证选择的决策标准进行判断 消融研究表明检索的图证据对可靠假设验证至关重要,且紧凑的双向证据比单纯增加检索量更有效

58
Hot 热度
72
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • HyGRAIL is a hybrid framework combining heterogeneous GNN triage with LLM-based hypothesis review for scientific hypothesis discovery over knowledge graphs
  • GNN triage identifies a validation-calibrated ambiguous region, routing only uncertain candidate hypotheses to costly LLM review, reducing LLM calls by 54.36% on average
  • Retrieved graph evidence (node-level associations and multi-hop relational paths) is converted into natural language via template-based or LLM-based naturalization for LLM review agents
  • On MatKG, HyGRAIL achieves an F1 score of 0.429, outperforming the strongest prior baseline by 0.242 and the GNN-only baseline by 0.322
  • Compact, two-sided evidence proves more effective than simply increasing retrieval quantity for reliable hypothesis verification

Why It Matters

This work addresses a critical bottleneck in scientific discovery: efficiently identifying plausible hypotheses from incomplete knowledge graphs without incurring prohibitive computational costs. By strategically combining the efficiency of GNNs with the reasoning power of LLMs, HyGRAIL offers a scalable blueprint for AI-assisted scientific discovery that practitioners can adapt to domains beyond materials science.

Technical Details

  • Architecture: HyGRAIL employs a two-stage pipeline — a GNN-based triage module scores candidate hypothesis pairs and identifies an ambiguous region calibrated on validation data, routing only uncertain cases to an LLM review agent
  • Evidence Retrieval & Naturalization: For each routed hypothesis, the system retrieves node-level associations and multi-hop relational paths from the knowledge graph, then converts structured evidence into natural language using either template-based or LLM-based naturalization approaches
  • LLM Review Agent: A dedicated LLM agent evaluates hard hypotheses using the naturalized evidence and decision criteria selected through validation, ensuring grounded and interpretable judgments
  • Benchmark & Results: Evaluated on MatKG (Materials Knowledge Graph), achieving F1=0.429; ablation studies confirm the necessity of retrieved graph evidence and the superiority of compact two-sided evidence over quantity-driven retrieval
  • Efficiency Gain: GNN triage reduces average LLM call rate by 54.36%, demonstrating significant cost savings while maintaining or improving discovery accuracy

Industry Insight

  • The hybrid GNN+LLM triage-retrieval-review paradigm presented here is broadly applicable to any domain relying on knowledge graphs for discovery, including drug discovery, bioinformatics, and legal reasoning — practitioners should consider cost-aware routing as a standard design principle
  • The finding that compact, two-sided evidence outperforms voluminous retrieval suggests that evidence curation and quality control in RAG-style systems should prioritize relevance and balance over sheer quantity
  • As scientific knowledge graphs grow in scale and complexity, frameworks like HyGRAIL that calibrate uncertainty thresholds on validation data offer a reproducible methodology for balancing discovery recall against computational cost in production AI systems

TL;DR

  • HyGRAIL提出了一种成本感知且证据锚定的科学假设发现框架,结合GNN初筛与LLM审查,解决科学知识图谱中缺失链接的假设发现难题
  • 采用GNN对候选假设进行评分,识别验证校准的模糊区域,仅将图不确定的案例路由至LLM审查,平均减少54.36%的LLM调用
  • 在MatKG数据集上取得0.429的F1分数,较最强基线提升0.242,较纯GNN基线提升0.322
  • 检索节点级关联和多层关系路径作为证据,通过模板或LLM自然化后由LLM审查代理基于验证选择的决策标准进行判断
  • 消融研究表明检索的图证据对可靠假设验证至关重要,且紧凑的双向证据比单纯增加检索量更有效

为什么值得看

本文针对科学发现中假设稀疏性这一核心挑战,提出了GNN与LLM协同的高效框架,为知识图谱补全和科学发现提供了可落地的工程范式。该工作展示了如何在保证准确性的同时显著降低大模型调用成本,对AI for Science领域具有重要参考价值。

技术解析

HyGRAIL采用两阶段架构:第一阶段使用GNN对候选假设进行快速评分,通过验证校准识别出"模糊区域"(即GNN置信度不高的案例),仅将这些案例路由至第二阶段LLM审查。

证据检索模块从知识图谱中提取节点级关联和多层关系路径,通过模板化或LLM辅助的方式将结构化证据转化为自然语言描述,为LLM审查提供可解释的依据。

LLM审查代理基于验证阶段选择的决策标准,结合自然化证据对困难假设进行最终判断,实现证据锚定的推理过程。

实验在MatKG(材料知识图谱)上进行,HyGRAIL达到0.429的F1分数,显著优于基线方法,同时GNN筛选使LLM调用率降低54.36%。

消融实验验证了图证据检索的必要性,并发现紧凑的双向证据(同时包含支持和反对证据)比单纯增加检索数量更能提升验证可靠性。

行业启示

GNN与LLM的协同架构为高成本AI应用提供了有效的成本-性能平衡方案,在保持LLM推理能力的同时通过前置筛选大幅降低调用开销,适用于需要大规模假设验证的科学计算场景。

证据锚定(Evidence-Grounded)机制增强了LLM决策的可解释性和可靠性,避免了纯LLM方法在结构化数据上的"幻觉"问题,为知识密集型领域的AI应用树立了最佳实践。

该框架展示了"验证校准"策略的价值——通过明确识别模型的不确定性区域并针对性分配计算资源,可在保证质量的前提下实现显著的成本优化,这一思路可推广至其他需要大规模候选筛选的场景。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Research 科学研究 LLM 大模型 Dataset 数据集 Benchmark 基准测试 Embedding Model 嵌入模型