Research Papers 论文研究 8d ago Updated 7d ago 更新于 7天前 48

HC-RAG: Evidence-Centric Retrieval-Augmented Generation over Heterogeneous Financial Filings HC-RAG:面向异构金融文件的证据中心检索增强生成

HC-RAG introduces a hierarchical cross-modal RAG framework that organizes financial filings into a typed evidence graph with documents, sections, text units, table units, and metadata nodes The system retrieves evidence through structured document-section-unit paths and aligns textual and tabular evidence in a shared retrieval space Evidence is routed according to four semantic intents: calculation, trend, fact, and comparison, enabling intent-aware text-table fusion The authors introduce Multi- 提出HC-RAG框架,通过分层跨模态检索增强生成解决金融报告问答中的证据定位与多模态融合问题 构建包含文档、章节、文本单元、表格单元和元数据节点的金融证据图,实现结构化检索与意图感知路由 发布Multi-Doc-2025基准测试,包含2,327个专家验证的问答对,覆盖87家S&P 500公司179份SEC 10-K报告(2022-2024财年) HC-RAG在DocFinQA上较RAPTOR提升6.6 F1分,在Multi-Doc-2025上较GraphRAG提升10.9 F1分 性能提升主要来源于更精准的章节定位、表格锚定、跨文档证据聚合和意图感知的文本-表格路由

65
Hot 热度
75
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • HC-RAG introduces a hierarchical cross-modal RAG framework that organizes financial filings into a typed evidence graph with documents, sections, text units, table units, and metadata nodes
  • The system retrieves evidence through structured document-section-unit paths and aligns textual and tabular evidence in a shared retrieval space
  • Evidence is routed according to four semantic intents: calculation, trend, fact, and comparison, enabling intent-aware text-table fusion
  • The authors introduce Multi-Doc-2025, a benchmark of 2,327 expert-verified QA pairs from 179 SEC 10-K filings across 87 S&P 500 companies (fiscal years 2022–2024)
  • HC-RAG outperforms RAPTOR by 6.6 F1 points on DocFinQA and GraphRAG by 10.9 F1 points on Multi-Doc-2025, with gains driven by accurate section localization, table grounding, cross-document aggregation, and intent-aware routing

Why It Matters

This work addresses a critical gap in financial QA systems: the failure of existing RAG approaches to respect the typed, hierarchical structure of SEC filings and to reason over both text and tables in a query-intent-aware manner. For AI practitioners building enterprise-grade financial analysis tools, HC-RAG demonstrates that structured evidence organization and cross-modal alignment are essential for reliable, verifiable answers over complex regulatory documents.

Technical Details

  • Evidence Graph Structure: HC-RAG models filings as a typed financial evidence graph containing five node types—documents, sections, text units, table units, and metadata—enabling path-based retrieval through document-section-unit hierarchies rather than flat chunking.
  • Cross-Modal Retrieval: Textual and tabular evidence are aligned in a shared embedding space, allowing the system to jointly retrieve and fuse heterogeneous evidence types relevant to a given query.
  • Intent-Aware Routing: Four semantic intent categories (calculation, trend, fact, comparison) guide how retrieved text and table evidence are combined, replacing fixed fusion strategies with query-dependent routing.
  • Multi-Doc-2025 Benchmark: 2,327 expert-verified QA pairs drawn from 179 SEC 10-K filings of 87 S&P 500 companies across fiscal years 2022–2024, annotated with intent labels, difficulty levels, and structural evidence attributes.
  • Evaluation: HC-RAG achieves +6.6 F1 over RAPTOR on DocFinQA and +10.9 F1 over GraphRAG on Multi-Doc-2025; ablation studies isolate improvements to section localization, table grounding, cross-document evidence aggregation, and intent-aware routing.

Industry Insight

  • Financial institutions and regtech companies should prioritize structured, graph-based retrieval over naive chunking when building QA systems over annual reports, as the hierarchical organization of SEC filings is a key signal for accuracy.
  • Intent-aware cross-modal fusion is a practical design principle: routing strategies conditioned on query type (e.g., calculation vs. fact) can significantly outperform one-size-fits-all text-table merging in domain-specific RAG pipelines.
  • The Multi-Doc-2025 benchmark fills a pressing need for rigorous, multi-document financial QA evaluation and should serve as a standard for comparing future systems in this space.

TL;DR

  • 提出HC-RAG框架,通过分层跨模态检索增强生成解决金融报告问答中的证据定位与多模态融合问题
  • 构建包含文档、章节、文本单元、表格单元和元数据节点的金融证据图,实现结构化检索与意图感知路由
  • 发布Multi-Doc-2025基准测试,包含2,327个专家验证的问答对,覆盖87家S&P 500公司179份SEC 10-K报告(2022-2024财年)
  • HC-RAG在DocFinQA上较RAPTOR提升6.6 F1分,在Multi-Doc-2025上较GraphRAG提升10.9 F1分
  • 性能提升主要来源于更精准的章节定位、表格锚定、跨文档证据聚合和意图感知的文本-表格路由

为什么值得看

本文针对金融领域问答中常见的长文档、表格密集和跨文档推理场景,提出了结构化的证据检索方案,填补了金融RAG系统在证据定位和多模态融合方面的技术空白。Multi-Doc-2025基准的发布为金融QA研究提供了标准化的评估平台,对金融AI应用落地具有重要参考价值。

技术解析

HC-RAG将金融文件组织为分层金融证据图,包含文档节点、章节节点、文本单元节点、表格单元节点和元数据节点,通过文档-章节-单元路径进行结构化检索,而非传统RAG的扁平化分块方式。

系统引入意图感知机制,将查询分为四类语义意图:计算(需表格数据运算)、趋势(时间序列分析)、事实(信息提取)和比较(跨文档对比),据此动态路由文本和表格证据。

Multi-Doc-2025基准测试包含2,327个专家验证的问答对,覆盖87家S&P 500公司的179份SEC 10-K报告(2022-2024财年),标注了意图类型、难度等级和结构证据属性。

实验结果显示HC-RAG在DocFinQA上F1提升6.6分,在Multi-Doc-2025上F1提升10.9分,消融研究验证了章节定位、表格锚定、跨文档聚合和意图路由各模块的贡献。

行业启示

金融RAG系统需从"语义相似度检索"转向"结构化证据图检索",以支持金融场景对精确性、可追溯性和多模态融合的高要求。

意图感知路由机制为垂直领域RAG提供了可扩展的架构范式,可推广至法律、医疗等需要多模态证据对齐的专业领域。

Multi-Doc-2025基准的发布填补了跨文档金融QA评估的空白,建议行业采用该基准进行模型对比和系统优化。

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

RAG 检索增强生成 LLM 大模型 Finance AI 金融AI Research 科学研究 Evaluation 评测