---
title: "MM-RAG (Multimodal RAG) — マルチモーダルRAG"
source: "https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG"
wiki: "systems-analysis.info/int"
article: "MM-RAG_(Multimodal_RAG)_—_マルチモーダルRAG"
language: "ja"
categories:
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:Prompt engineering"
revision_id: 4065
wiki_created_at: 2026-09-06T23:29:59Z
wiki_modified_at: 2026-09-06T23:29:59Z
downloaded_at: 2026-09-07T23:00:41Z
---

# MM-RAG (Multimodal RAG) — マルチモーダルRAG

**MM-RAG**（英語: *Multimodal Retrieval-Augmented Generation*）は、古典的なRAGパラダイムの拡張であり、LLMが回答を生成するためにテキストだけでなく、視覚データ（画像、図、表、グラフ）も利用するものです。マルチモーダル検索は、様々な表現形式の証拠を発見し、関連付けることを可能にし、ページの断片や領域（*bounding boxes*）に正確に紐付けられた外部ソースに依拠することで、ハルシネーションのリスクを低減します<sup>[\[1\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-lewis2020-1)[\[2\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-visrag2024-2)</sup>。

MM-RAGは、意味の大部分が非テキスト形式（ページのレイアウト、図、表の構造など）で表現されている文書で特に有用です。このような場合、古典的なテキストベースのRAGはしばしば重要なコンテキスト要素を失います<sup>[\[3\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-docvqa2021-3)[\[4\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-textvqa2019-4)</sup>。

## 背景と解決されるべき問題

古典的なRAGはテキストのパッセージを操作対象とし、視覚的な構造（要素の配置、図のキャプション、グラフの軸など）を認識しません。MM-RAGはこれらのギャップを埋めるものです。構造化された要素（テキスト、表、座標付きの画像）を抽出し、それらをベクトル空間にインデックス化し、異なるモダリティからの証拠を組み合わせます<sup>[\[5\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-layoutlm2020-5)[\[6\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-clip2021-6)</sup>。

## MM-RAGのアーキテクチャ

MM-RAGのパイプラインは、古典的なRAGに視覚データの処理とモダリティのアライメントの段階を追加します：**インジェスト → インデックス化 → マルチモーダル検索 → マージとリランキング → トレーサビリティ付き生成**。

1.  **インジェストと前処理 (Ingestion)** PDF/スキャン/画像が入力されます。OCRとページの**レイアウト分析**が実行され、段落、見出し、表、画像とその座標などの領域が特定されます。典型的なツールにはLayoutLMファミリーのモデルやLayoutParserライブラリがあり、検証と学習はしばしばPubLayNetやDocLayNetデータセットに依存します<sup>[\[7\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-publaynet2019-7)[\[8\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-doclaynet2022-8)[\[9\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-layoutparser2021-9)</sup>。
2.  **領域へのセグメンテーション** 視覚的オブジェクト（図、表、イラスト、キャプション）が抽出されます。より高い堅牢性のために、OCRフリーモデル（例：Donut）や、OCR+VLMの組み合わせパイプラインが使用されます<sup>[\[10\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-donut2021-10)</sup>。
3.  **インデックス化 (Vector Index)** テキストチャンクと視覚要素（画像またはその説明）はベクトル表現に変換され、ベクトルデータベースに格納されます。*text↔image*の統合空間にはCLIPやSigLIPが使用され、本番環境ではマルチモーダル/マルチベクトルインデックス（1つのオブジェクトに複数のベクトル）が便利です<sup>[\[6\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-clip2021-6)[\[11\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-siglip2023-11)[\[12\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-milvus-mv-12)</sup>。
4.  **マルチモーダル検索とリランキング** テキスト検索と視覚検索が組み合わされ、候補（段落、表、画像/領域）が統合され、より「重い」モデル（クロスエンコーダ/LLMリランカー）によってリランキングされ、精度が向上します<sup>[\[13\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-cohere-rerank-13)</sup>。
5.  **コンテキストのパッケージングと生成** 選択されたフラグメントがLLM/VLMに供給されます。モデルがマルチモーダル（例：GPT-4V/4o）である場合、画像は直接入力できます。テキストベースのLLMの場合、画像は事前に詳細な説明に変換されます<sup>[\[14\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-gpt4v-14)[\[15\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-gpt4o-15)</sup>。
6.  **トレーサビリティと引用** 回答には、文書/ページだけでなく、領域（座標）にも紐付けられたクリック可能な引用が付随します。これにより、*grounding*のレベルが向上し、ユーザーの信頼が高まります<sup>[\[2\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-visrag2024-2)</sup>。

## 品質評価とメトリクス

MM-RAGの有効性は、抽出、検索、生成の各レベルで評価されます。

- **視覚データ抽出の品質** OCRの精度（WER/CER）、DocLayNet/PubLayNetデータセットでのレイアウト分析の品質（mAP/Precision/Recall）<sup>[\[8\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-doclaynet2022-8)[\[7\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-publaynet2019-7)</sup>。
- **検索の品質** 情報検索の標準的なメトリクス：Recall@K, Precision@K, MRR。マルチモーダリティの場合は、モダリティごとおよび統合後の評価が行われます。
- **回答の品質 (end‑to‑end)** 自動評価メトリクス（*faithfulness*/*groundedness*）と人間による評価。実際には、RAGAS/TruLens/DeepEvalなどのフレームワークが使用されます<sup>[\[16\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-ragas-16)</sup>。
- **ベンチマーク**
  - **DocVQA**: 文書画像に関する質問<sup>[\[3\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-docvqa2021-3)</sup>。
  - **TextVQA**: 画像上のテキストを読む必要がある質問<sup>[\[4\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-textvqa2019-4)</sup>。
  - **InfographicVQA**: インフォグラフィックに関する質問<sup>[\[17\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-infographicvqa2021-17)</sup>。
  - **ChartQA**: 論理的推論を必要とする図に関する質問<sup>[\[18\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-chartqa2022-18)</sup>。
  - **MMDocRAG**: DocQAのためのマルチモーダルRAGベンチマーク（複数ページの文書、クロスモーダルな証拠連鎖）<sup>[\[19\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-mmdocrag2025-19)</sup>。

## コンポーネントの比較表

| コンポーネント          | 実装の選択肢                                                            | 長所                                                                                           | 短所 / リスク                                                        | 選択基準                                                                      |
|-------------------------|-------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|----------------------------------------------------------------------|-------------------------------------------------------------------------------|
| OCR                     | Tesseract / PaddleOCR / クラウドAPI                                     | ローカルはプライバシーと制御を確保。クラウドは「すぐに使える」高い精度を提供。                 | 複雑なレイアウトでのエラー。APIはコストとコンプライアンス要件あり。  | プライベートデータならローカルOCR。最高の精度が必要で許容されるならクラウド。 |
| レイアウト分析          | ルールベース / MLモデル (LayoutLM, LayoutParser)                        | ルールは同じタイプのテンプレートに単純。MLは多様性に強い。                                     | ルールは新しいレイアウトで破綻。MLはリソース/データが必要。          | 同じタイプのフォームならルール。多様なコーパスならML。                        |
| ベクトル化 (画像)       | CLIP / SigLIP / OCRフリー記述 (Donut/Pix2Struct)                        | *text↔image*の共通潜在空間 (CLIP/SigLIP)。OCRフリーはOCRへの依存を解消。                       | CLIPは画像内のテキストを読み取らない。記述が意味を歪める可能性あり。 | CLIP/SigLIPは基本的なマルチモーダル検索に。OCRフリーは品質の低いスキャンに。  |
| 結果のマージ            | スコアによるソート / モダリティごとのクォータ / LLMリランカー           | リランカーはコンテキスト選択の精度を大幅に向上させる。                                         | 遅延とコストの増加。                                                 | 高精度が求められるシナリオ。PoCにはシンプルな手法で十分。                     |
| ストレージ/インデックス | 単一ベクトル / マルチベクトル (text+image) / ハイブリッド (BM25+vector) | マルチベクトルは1つのオブジェクトの異なる表現をカバー。ハイブリッドはキーワード/コードを救う。 | スキーマと更新の複雑化。                                             | 混合データと厳しいSLAを持つ本番システム。                                     |

MM-RAGにおける主要コンポーネントとアプローチの比較

## 実践的な注意点

- **ハイブリッド検索**（BM25 + ベクトル）は、特定の専門用語やコードに対する再現率と精度を向上させるための事実上の標準です<sup>[\[20\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-weaviate-hybrid-20)</sup>。
- クロスエンコーダ/LLMによる**リランキング**は、生成前に「ノイズ」となる候補を除外することで、トークンを節約します<sup>[\[13\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-cohere-rerank-13)</sup>。
- **現代のVLMリトリーバー**（例：ColPali）は、ページ画像を直接インデックス化することにより、視覚的にリッチな文書で優位性を示します<sup>[\[21\]](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_note-colpali2024-21)</sup>。

## 関連項目

- 検索拡張生成
- ベクトルデータベース
- Embedding
- GraphRAG

## 参考文献

- Lewis, P. et al. (2020). *Retrieval‑Augmented Generation for Knowledge‑Intensive NLP Tasks*. NeurIPS. <a href="https://arxiv.org/abs/2005.11401" class="external text" rel="nofollow">arXiv:2005.11401</a>.
- Gao, L. et al. (2023). *Precise Zero‑Shot Dense Retrieval without Relevance Labels (HyDE)*. ACL 2023. <a href="https://arxiv.org/abs/2212.10496" class="external text" rel="nofollow">arXiv:2212.10496</a>.
- Mei, L., Mo, S., Yang, Z., Chen, C. (2025). *A Survey of Multimodal Retrieval‑Augmented Generation*. <a href="https://arxiv.org/abs/2504.08748" class="external text" rel="nofollow">arXiv:2504.08748</a>.
- Abootorabi, M.M. et al. (2025). *Ask in Any Modality: A Comprehensive Survey on Multimodal Retrieval‑Augmented Generation*. Findings of ACL 2025. <a href="https://aclanthology.org/2025.findings-acl.861/" class="external text" rel="nofollow">ACL Anthology</a>.
- Yu, S. et al. (2024). *VisRAG: Vision‑based Retrieval‑augmented Generation on Multi‑modality Documents*. <a href="https://arxiv.org/abs/2410.10594" class="external text" rel="nofollow">arXiv:2410.10594</a>.
- Cho, J. et al. (2024). *M3DocRAG: Multi‑modal Retrieval is What You Need for Multi‑document QA*. <a href="https://arxiv.org/abs/2411.04952" class="external text" rel="nofollow">arXiv:2411.04952</a>.
- Tanaka, R. et al. (2025). *VDocRAG: Retrieval‑Augmented Generation over Visually‑Rich Documents*. CVPR 2025. <a href="https://arxiv.org/abs/2504.09795" class="external text" rel="nofollow">arXiv:2504.09795</a> • <a href="https://openaccess.thecvf.com/content/CVPR2025/papers/Tanaka_VDocRAG_Retrieval-Augmented_Generation_over_Visually-Rich_Documents_CVPR_2025_paper.pdf" class="external text" rel="nofollow">CVF Open Access</a>.
- Dong, K. et al. (2025). *MMDocRAG: Benchmarking Retrieval‑Augmented Multimodal Generation for Document Question Answering*. <a href="https://arxiv.org/abs/2505.16470" class="external text" rel="nofollow">arXiv:2505.16470</a>.
- Wasserman, N. et al. (2025). *REAL‑MM‑RAG: A Real‑World Multi‑Modal Retrieval Benchmark*. <a href="https://arxiv.org/abs/2502.12342" class="external text" rel="nofollow">arXiv:2502.12342</a>.
- Faysse, M. et al. (2024). *ColPali: Efficient Document Retrieval with Vision Language Models*. <a href="https://arxiv.org/abs/2407.01449" class="external text" rel="nofollow">arXiv:2407.01449</a>.
- Radford, A. et al. (2021). *Learning Transferable Visual Models From Natural Language Supervision (CLIP)*. ICML 2021. <a href="https://arxiv.org/abs/2103.00020" class="external text" rel="nofollow">arXiv:2103.00020</a>.
- Tschannen, M. et al. (2025). *SigLIP 2: Multilingual Vision‑Language Encoders with Improved Semantic Understanding, Localization, and Dense Features*. <a href="https://arxiv.org/abs/2502.14786" class="external text" rel="nofollow">arXiv:2502.14786</a>.
- Xu, Y. et al. (2020). *LayoutLM: Pre‑training of Text and Layout for Document Image Understanding*. KDD 2020. <a href="https://dl.acm.org/doi/10.1145/3394486.3403172" class="external text" rel="nofollow">DOI</a> • <a href="https://arxiv.org/abs/1912.13318" class="external text" rel="nofollow">arXiv:1912.13318</a>.
- Huang, Y. et al. (2022). *LayoutLMv3: Pre‑training for Document AI with Unified Text and Image Masking*. <a href="https://arxiv.org/abs/2204.08387" class="external text" rel="nofollow">arXiv:2204.08387</a>.
- Zhong, X., Tang, J., Jimeno‑Yepes, A.J. (2019). *PubLayNet: Largest Dataset Ever for Document Layout Analysis*. <a href="https://arxiv.org/abs/1908.07836" class="external text" rel="nofollow">arXiv:1908.07836</a>.
- Pfitzmann, B. et al. (2022). *DocLayNet: A Large Human‑Annotated Dataset for Document‑Layout Analysis*. <a href="https://arxiv.org/abs/2206.01062" class="external text" rel="nofollow">arXiv:2206.01062</a>.
- Kim, G. et al. (2021). *OCR‑free Document Understanding Transformer (Donut)*. <a href="https://arxiv.org/abs/2111.15664" class="external text" rel="nofollow">arXiv:2111.15664</a>.
- Shen, Z. et al. (2021). *LayoutParser: A Unified Toolkit for Deep Learning Based Document Image Analysis*. <a href="https://arxiv.org/abs/2103.15348" class="external text" rel="nofollow">arXiv:2103.15348</a>.
- Singh, A. et al. (2019). *Towards VQA Models That Can Read (TextVQA)*. CVPR 2019. <a href="https://arxiv.org/abs/1904.08920" class="external text" rel="nofollow">arXiv:1904.08920</a>.
- Mathew, M. et al. (2021/2022). *DocVQA / InfographicVQA: Datasets for VQA on Document Images and Infographics*. WACV 2021 / WACV 2022. <a href="https://openaccess.thecvf.com/content/WACV2021/html/Mathew_DocVQA_A_Dataset_for_VQA_on_Document_Images_WACV_2021_paper.html" class="external text" rel="nofollow">CVF</a> • <a href="https://arxiv.org/abs/2104.12756" class="external text" rel="nofollow">arXiv:2104.12756</a>.
- Masry, A. et al. (2022). *ChartQA: A Benchmark for Question Answering about Charts with Visual and Logical Reasoning*. Findings of ACL 2022. <a href="https://aclanthology.org/2022.findings-acl.177/" class="external text" rel="nofollow">ACL</a> • <a href="https://arxiv.org/abs/2203.10244" class="external text" rel="nofollow">arXiv:2203.10244</a>.
- Liu, F. et al. (2022). *DePlot: One‑shot Visual Language Reasoning by Plot‑to‑Table Translation*. <a href="https://arxiv.org/abs/2212.10505" class="external text" rel="nofollow">arXiv:2212.10505</a>.
- Wang, P. et al. (2024). *Qwen2‑VL: Enhancing Vision‑Language Model’s Capabilities in OCR and Chart QA*. <a href="https://arxiv.org/abs/2409.12191" class="external text" rel="nofollow">arXiv:2409.12191</a>.
- Es, S. et al. (2023). *RAGAS: Automated Evaluation of Retrieval‑Augmented Generation*. <a href="https://arxiv.org/abs/2309.15217" class="external text" rel="nofollow">arXiv:2309.15217</a>.

## 脚注

1.  <span id="cite_note-lewis2020-1">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-lewis2020_1-0) Lewis, P., Perez, E., et al. (2020). *Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks*. NeurIPS. <a href="https://arxiv.org/abs/2005.11401" class="external text" rel="nofollow">arXiv:2005.11401</a>.</span>
2.  <span id="cite_note-visrag2024-2">↑ <sup>[2.0](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-visrag2024_2-0)</sup> <sup>[2.1](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-visrag2024_2-1)</sup> Yu, S. et al. (2024). *VisRAG: Vision-based Retrieval-Augmented Generation on Multi-modality Documents*. <a href="https://arxiv.org/abs/2407.06437" class="external text" rel="nofollow">arXiv:2407.06437</a>.</span>
3.  <span id="cite_note-docvqa2021-3">↑ <sup>[3.0](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-docvqa2021_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-docvqa2021_3-1)</sup> Mathew, M. et al. (2021). *DocVQA: A Dataset for VQA on Document Images*. WACV. <a href="https://arxiv.org/abs/2007.00398" class="external text" rel="nofollow">arXiv:2007.00398</a>.</span>
4.  <span id="cite_note-textvqa2019-4">↑ <sup>[4.0](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-textvqa2019_4-0)</sup> <sup>[4.1](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-textvqa2019_4-1)</sup> Singh, A. et al. (2019). *TextVQA: Towards VQA Models That Can Read*. CVPR. <a href="https://arxiv.org/abs/1904.08920" class="external text" rel="nofollow">arXiv:1904.08920</a>.</span>
5.  <span id="cite_note-layoutlm2020-5">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-layoutlm2020_5-0) Xu, Y. et al. (2020). *LayoutLM: Pre-training of Text and Layout for Document Image Understanding*. KDD. <a href="https://dl.acm.org/doi/10.1145/3394486.3403172" class="external text" rel="nofollow">DOI</a>.</span>
6.  <span id="cite_note-clip2021-6">↑ <sup>[6.0](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-clip2021_6-0)</sup> <sup>[6.1](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-clip2021_6-1)</sup> Radford, A. et al. (2021). *Learning Transferable Visual Models From Natural Language Supervision (CLIP)*. ICML. <a href="https://arxiv.org/abs/2103.00020" class="external text" rel="nofollow">arXiv:2103.00020</a>.</span>
7.  <span id="cite_note-publaynet2019-7">↑ <sup>[7.0](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-publaynet2019_7-0)</sup> <sup>[7.1](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-publaynet2019_7-1)</sup> Zhong, X., Tang, J., Yepes, A. J. (2019). *PubLayNet: Largest Dataset for Document Layout Analysis*. ICDAR. <a href="https://arxiv.org/abs/1908.07836" class="external text" rel="nofollow">arXiv:1908.07836</a>.</span>
8.  <span id="cite_note-doclaynet2022-8">↑ <sup>[8.0](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-doclaynet2022_8-0)</sup> <sup>[8.1](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-doclaynet2022_8-1)</sup> Pfitzmann, B. et al. (2022). *DocLayNet: A Large Human‑Annotated Dataset for Document‑Layout Analysis*. KDD. <a href="https://dl.acm.org/doi/10.1145/3534678.3539043" class="external text" rel="nofollow">DOI</a> / <a href="https://arxiv.org/abs/2206.01062" class="external text" rel="nofollow">arXiv:2206.01062</a>.</span>
9.  <span id="cite_note-layoutparser2021-9">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-layoutparser2021_9-0) Shen, Z. et al. (2021). *LayoutParser: A Unified Toolkit for DL‑based Document Image Analysis*. <a href="https://arxiv.org/abs/2103.15348" class="external text" rel="nofollow">arXiv:2103.15348</a>.</span>
10. <span id="cite_note-donut2021-10">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-donut2021_10-0) Kim, G. et al. (2021). *Donut: OCR‑free Document Understanding Transformer*. <a href="https://arxiv.org/abs/2111.15664" class="external text" rel="nofollow">arXiv:2111.15664</a>.</span>
11. <span id="cite_note-siglip2023-11">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-siglip2023_11-0) Zhai, X. et al. (2023). *Sigmoid Loss for Language‑Image Pre‑Training (SigLIP)*. ICCV. <a href="https://arxiv.org/abs/2303.15343" class="external text" rel="nofollow">arXiv:2303.15343</a>.</span>
12. <span id="cite_note-milvus-mv-12">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-milvus-mv_12-0) Milvus Docs. *Multi‑Vector Hybrid Search*. <a href="https://milvus.io/docs/multi-vector-search.md" class="external text" rel="nofollow">milvus.io/docs/multi-vector-search.md</a>.</span>
13. <span id="cite_note-cohere-rerank-13">↑ <sup>[13.0](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-cohere-rerank_13-0)</sup> <sup>[13.1](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-cohere-rerank_13-1)</sup> Cohere Docs. *Rerank API*. <a href="https://docs.cohere.com/reference/rerank" class="external text" rel="nofollow">docs.cohere.com/reference/rerank</a>.</span>
14. <span id="cite_note-gpt4v-14">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-gpt4v_14-0) OpenAI. *GPT‑4V(ision) System Card*. (2023). <a href="https://cdn.openai.com/papers/GPTV_System_Card.pdf" class="external text" rel="nofollow">PDF</a>.</span>
15. <span id="cite_note-gpt4o-15">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-gpt4o_15-0) OpenAI. *Hello GPT‑4o*. (2024). <a href="https://openai.com/index/hello-gpt-4o/" class="external text" rel="nofollow">openai.com/index/hello-gpt-4o/</a>.</span>
16. <span id="cite_note-ragas-16">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-ragas_16-0) Es, S. et al. (2023). *RAGAS: Automated Evaluation of Retrieval Augmented Generation*. <a href="https://arxiv.org/abs/2309.15217" class="external text" rel="nofollow">arXiv:2309.15217</a>.</span>
17. <span id="cite_note-infographicvqa2021-17">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-infographicvqa2021_17-0) Mathew, M. et al. (2021). *InfographicVQA: Understanding Infographics via Question Answering*. ICDAR. <a href="https://arxiv.org/abs/2104.12756" class="external text" rel="nofollow">arXiv:2104.12756</a>.</span>
18. <span id="cite_note-chartqa2022-18">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-chartqa2022_18-0) Masry, A. et al. (2022). *ChartQA: A Benchmark for Question Answering about Charts*. ACL (Findings). <a href="https://arxiv.org/abs/2103.16435" class="external text" rel="nofollow">arXiv:2103.16435</a>.</span>
19. <span id="cite_note-mmdocrag2025-19">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-mmdocrag2025_19-0) Dong, K. et al. (2025). *Benchmarking Retrieval‑Augmented Multimodal Generation for Document QA (MMDocRAG)*. <a href="https://arxiv.org/abs/2505.16470" class="external text" rel="nofollow">arXiv:2505.16470</a>.</span>
20. <span id="cite_note-weaviate-hybrid-20">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-weaviate-hybrid_20-0) Weaviate Docs. *Hybrid search*. <a href="https://docs.weaviate.io/weaviate/concepts/search/hybrid-search" class="external text" rel="nofollow">docs.weaviate.io/.../hybrid-search</a>.</span>
21. <span id="cite_note-colpali2024-21">[↑](https://systems-analysis.info/int/MM-RAG_(Multimodal_RAG)_%E2%80%94_%E3%83%9E%E3%83%AB%E3%83%81%E3%83%A2%E3%83%BC%E3%83%80%E3%83%ABRAG#cite_ref-colpali2024_21-0) Faysse, M. et al. (2024). *ColPali: Efficient Document Retrieval with Vision‑Language Models*. <a href="https://arxiv.org/abs/2407.01449" class="external text" rel="nofollow">arXiv:2407.01449</a>.</span>
