---
title: "Hypothetical Document Embeddings (HyDE) — 仮説的文書拡張"
source: "https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5"
wiki: "systems-analysis.info/int"
article: "Hypothetical_Document_Embeddings_(HyDE)_—_仮説的文書拡張"
language: "ja"
categories:
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:Prompt engineering"
revision_id: 3129
wiki_created_at: 2026-09-06T23:16:08Z
wiki_modified_at: 2026-09-06T23:16:08Z
downloaded_at: 2026-09-07T22:55:22Z
---

# Hypothetical Document Embeddings (HyDE) — 仮説的文書拡張

**Hypothetical Document Expansion (HyDE)** — ベクトル検索と検索拡張生成（RAG）を改善するための手法であり、大規模言語モデル（LLM）が元のクエリに基づいて「仮説的文書」を生成します。その後、このテキストがエンコーダによってベクトル化され、得られたベクトルとの近さに基づいて実際の文書の中から検索が行われます。このアプローチにより、LLMにエンコードされた「関連性パターン」を利用し、密な埋め込み（dense embeddings）を用いてそれらをコーパスに「グラウンディング」することができます<sup>[\[1\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-1)</sup>。

## 定義と直感的理解

HyDEは検索タスクを2つのステップに分解します：

\(1\) LLMがクエリに対して「関連する回答の例」（*hypothetical document*）を作成し、それによって関連性の特徴をモデル化します。

\(2\) 対照学習エンコーダ（例：Contriever）がこのテキストをベクトルに変換し、そのベクトルに基づいてインデックスから実際の文書を検索します。生成されたテキストには事実誤認が含まれる可能性がありますが、重要なのはエンコーダが捉えるテーマや専門用語のパターンです<sup>[\[2\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-2)</sup>。

## 歴史と背景

合成テキストによる検索拡張のアイデアは、クエリ拡張や疑似適合性フィードバック（PRF）の研究、具体的にはロッキオのアルゴリズムや関連性言語モデルに遡ります<sup>[\[3\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-3)[\[4\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-4)</sup>。密な検索（dense retrieval）には、対照学習されたエンコーダ（Contriever）<sup>[\[5\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-5)</sup>やDense Passage Retrieval（DPR）<sup>[\[6\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-6)</sup>が用いられてきました。BEIRベンチマークは、ゼロショット評価を標準化しました<sup>[\[7\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-7)</sup>。このような背景のもと、エンコーダのファインチューニングなしでLLMを通じて関連性の知識をゼロショット設定に「持ち込む」方法としてHyDEが提案されました<sup>[\[8\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-8)</sup>。

## 手法と定式化

文書コーパスを $\mathcal{D} = \{ d_{1},\ldots,d_{N}\}$、テキストエンコーダを $E:\text{text} \rightarrow {\mathbb{R}}^{n}$ とすると、文書のベクトル表現は $\mathbf{v}_{d} = E(d)$ となります。近さの尺度には、コサイン類似度または内積が用いられます。重要な注意点として、\*\*内積がコサイン類似度と一致するのは、両方のベクトルのL2ノルムが1の場合のみ\*\*です（$\|\mathbf{u}\| = \|\mathbf{v}\| = 1$）<sup>[\[9\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-9)</sup>。

HyDEは、LLMによって生成された「仮説的文書」を通じてクエリ表現を再定義します。形式的には以下の通りです：

$$
\begin{matrix}
 & \text{(1) 仮説的文書の生成:} & & {\overset{\sim}{d}\; = \; G\!\left( q;\,{inst} \right),} \\
 & \text{(2) 仮説的文書の埋め込み:} & & {\mathbf{v}_{h}\; = \; E(\overset{\sim}{d}),} \\
 & \text{(3) 最近傍探索:} & & {\mathcal{R}_{k}(q)\; = \;{TopK}_{\, d \in \mathcal{D}}\; S\!\left( \mathbf{v}_{h},\mathbf{v}_{d} \right),}
\end{matrix}
$$

ここで、$G$ はインストラクション $inst$（例：「質問に答える段落を書いてください…」）を持つLLM、$S$ は類似度尺度（コサインまたは正規化された内積）、$\mathcal{R}_{k}(q)$ は類似度が最も高い $k$ 個の文書の集合です<sup>[\[10\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-10)[\[11\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-11)</sup>。

実務では、\*\*複数\*\*の仮説的文書を生成し、それらの表現を集約することが多く、これにより安定性が向上します：

$$
{\overset{\sim}{d}}^{(j)} = G\!\left( q;\,{inst},\xi_{j} \right),\quad\mathbf{v}_{h}\; = \;\frac{1}{m}\sum\limits_{j = 1}^{m}E\!\left( {\overset{\sim}{d}}^{(j)} \right),
$$

ここで、$\xi_{j}$ はデコーディングの確率的なパラメータ（例：temperature/top‑p）です。このようなアンサンブル化は、レイテンシの緩やかな増加と引き換えにRecallを向上させます<sup>[\[12\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-12)</sup>。

### 基本的なHyDEのパイプライン

    # 1) prompt(query) -> hypothetical_doc (仮説的文書)
    # 2) embed(hypothetical_doc) -> v_h (仮説的文書を埋め込み)
    # 3) retrieve(index, v_h, k) -> candidates (候補を検索)
    # 4) (任意) rerank(query, candidates) -> topN (候補を再ランキング)
    # 5) (RAGの場合) stuff / map-reduce / refine を topN に適用

### 他の手法との関連 (QE, doc2query, PRF)

- **QE (クエリ拡張)** はクエリに用語を追加しますが、HyDEはその代わりに「擬似的な文書」全体を生成するため、密なエンコーダとの相性が良いです<sup>[\[13\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-13)</sup>。
- **doc2query / docTTTTTquery** は、インデックス作成前に合成クエリで**文書**を拡張します<sup>[\[14\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-14)[\[15\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-15)</sup>。HyDEは**クエリ**を実行時に拡張するため、再インデックス化が不要です。
- **PRF** (ロッキオ、関連性LM) は、検索結果の上位文書に基づいてクエリベクトルを更新します。HyDEはLLMから直接「関連性パターン」を抽出し、それをコーパスに対する検索によって「グラウンディング」します<sup>[\[16\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-16)</sup>。

## RAGへの統合と再ランキング

RAGにおいて、HyDEは検索の第一段階として適用されます：仮説的文書 → 埋め込み → k個の候補文書。次に、再ランキングが使用されます：BERT系のクロスエンコーダ<sup>[\[17\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-17)</sup>や、ColBERTのような遅延相互作用モデル<sup>[\[18\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-18)</sup>です。リストをマージする場合（例：BM25とベクトル検索のハイブリッド）、一般的にRRF（*reciprocal rank fusion*）が用いられます： $\operatorname{RRF}(d) = \sum\limits_{r \in \mathcal{R}}\frac{1}{k + \operatorname{rank}_{r}(d)},\qquad k \approx 60.$ RRFは、統合されたランキングの全体的な品質を安定して向上させる手法です<sup>[\[19\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-19)</sup>。

## ベンチマークによる評価 (BEIRなど)

原論文では、TREC DL’19/20（Web検索）およびBEIRコレクションのサブセット（Scifact, ArguAna, TREC‑COVID, FiQA, DBPedia, TREC‑NEWS, Climate‑FEVER）におけるゼロショット設定でHyDEを評価しています。以下は結果の一部です（*2023年7月時点*）：

| 手法                      | DL19                   | DL20                   | 出典                                                                                                                                                                                  |
|---------------------------|------------------------|------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| BM25                      | 30.1 / 50.6 / 75.0     | 28.6 / 48.0 / 78.6     | <sup>[\[20\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-20)</sup> |
| Contriever (unsup.)       | 24.0 / 44.5 / 74.6     | 24.0 / 42.1 / 75.4     | <sup>[\[21\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-21)</sup> |
| **HyDE** (Contriever+LLM) | **41.8 / 61.3 / 88.0** | **38.2 / 57.9 / 84.4** | <sup>[\[22\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-22)</sup> |
| DPR (ft)                  | 36.5 / 62.2 / 76.9     | 41.8 / 65.3 / 81.4     | <sup>[\[23\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-23)</sup> |
| ANCE (ft)                 | 37.1 / 64.5 / 75.5     | 40.8 / 64.6 / 77.6     | <sup>[\[24\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-24)</sup> |

*TREC DL19/20 (Web検索)* — mAP / nDCG@10 / Recall@1k

| 手法       | Scifact         | ArguAna         | TREC‑COVID      | FiQA        | DBPedia     | TREC‑NEWS       | Climate‑FEVER   | 出典                                                                                                                                                                                  |
|------------|-----------------|-----------------|-----------------|-------------|-------------|-----------------|-----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| BM25       | 67.9 / 92.5     | 39.7 / 93.2     | **59.5 / 49.8** | 23.6 / 54.0 | 31.8 / 46.8 | 39.5 / 44.7     | 16.5 / 42.5     | <sup>[\[25\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-25)</sup> |
| Contriever | 64.9 / 92.6     | 37.9 / 90.1     | 27.3 / 17.2     | 24.5 / 56.2 | 29.2 / 45.3 | 34.8 / 42.3     | 15.5 / 44.1     | <sup>[\[26\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-26)</sup> |
| **HyDE**   | **69.1 / 96.4** | **46.6 / 97.9** | 59.3 / 41.4     | 27.3 / 62.1 | 36.8 / 47.2 | **44.0 / 50.9** | **22.3 / 53.0** | <sup>[\[27\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-27)</sup> |

*BEIR (データセット抜粋)* — nDCG@10 / Recall@100

HyDEはまた、多言語データセットMr.TyDi（sw/ko/ja/bn）において、mContrieverと比較してMRR@100を改善します<sup>[\[28\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-28)</sup>。

## 実践的な推奨事項

HyDEを適用すべき場合

- ゼロショット/転移学習の設定（適合性ラベルがない、または訓練コーパスとドメインが異なる場合）<sup>[\[29\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-29)</sup>。
- 許容可能な精度でRecall@kを向上させたい場合 — HyDEはしばしばベクトル空間内の関連領域を「発見」します<sup>[\[30\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-30)</sup>。

典型的な設定

- **LLMとプロンプト**: 「質問に答える段落を書いてください…」といった指示。中程度の確率性（例：*temperature*≈0.7）<sup>[\[31\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-31)</sup>。
- **仮説的文書の数**: 1〜5個。埋め込みを平均化することで安定性が向上します<sup>[\[32\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-32)</sup>。
- **埋め込みモデル**: ファインチューニングなしの(m)Contriever。ファインチューニング済みのエンコーダを使用することも可能（HyDEの効果は維持される）<sup>[\[33\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-33)</sup>。
- **埋め込みの正規化**: L2正規化。内積はコサイン類似度と等価です<sup>[\[34\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-34)</sup>。
- **ハイブリッド検索**: BM25+ベクトル検索、その後に再ランキング<sup>[\[35\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-35)</sup>。
- **再ランキングモデル**: Cross-Encoder (BERT re-ranker)<sup>[\[36\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-36)</sup> または ColBERT<sup>[\[37\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-37)</sup>。
- **結果のマージ**: RRF (*k*≈60)<sup>[\[38\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-38)</sup>。

品質とコストのモニタリング

- 検索：nDCG@k, Recall@k, MRR。エンドツーエンドRAG：EM/F1または*groundedness*メトリクス (RAGAS/TruLens)<sup>[\[39\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-39)[\[40\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-40)</sup>。
- コスト/レイテンシ：LLMによる生成と（もしあれば）再ランキングが支配的。「仮説的文書」の数と応答の長さによって最適化されます<sup>[\[41\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-41)</sup>。

## 限界と今後の課題

- **仮説的文書のハルシネーション**: LLMは事実誤認を生成する可能性があります。エンコーダとコーパスによる「グラウンディング」でリスクは低減されますが、完全にはなくなりません<sup>[\[42\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-42)</sup>。
- **ドメイン/言語の制約**: HyDEの利点は、高度に専門化されたドメインや低リソース言語では減少します<sup>[\[43\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-43)</sup>。
- **レイテンシとコスト**: LLMによる生成は遅延とトークンコストを追加します。これはオンラインシナリオや長い「仮説的文書」ではクリティカルな問題となります<sup>[\[44\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-44)</sup>。
- **倫理とバイアス**: 安全性の高いLLMを使用し、フィルタリングを適用することが望ましいです<sup>[\[45\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-45)</sup>。

## 手法の比較表

| 手法                      | 分類                   | テキスト生成場所                     | エンコーダ/インデックス | 再ランキング（第2段階）      | 典型的なメトリクス（例）                           | コスト/レイテンシ                        | 出典                                                                                                                                                                                                                                                                                                                                                            |
|---------------------------|------------------------|--------------------------------------|-------------------------|------------------------------|----------------------------------------------------|------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **HyDE**                  | Query→*hypo‑doc*       | クエリ側（LLM → 段落）               | (m)Contriever; ANN      | BERT re‑rank / ColBERT / RRF | DL19 nDCG@10≈61.3; DL20≈57.9; ArguAna nDCG@10≈46.6 | \+ LLM生成; + 再ランキング（任意）       | <sup>[\[46\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-46)</sup>                                                                                                                                                                           |
| BM25                      | 字句ベース             | —                                    | 転置インデックス        | 任意                         | 上記の表を参照                                     | 低い（字句処理）                         | <sup>[\[47\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-47)</sup>                                                                                                                                                                           |
| DPR / ANCE                | 密（ft）               | —                                    | Bi‑encoder; ANN         | 任意                         | DL19 nDCG@10≈62–65                                 | 中程度（LLMなし）                        | <sup>[\[48\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-48)[\[49\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-49)</sup> |
| doc2query / docTTTTTquery | 文書拡張               | コレクション側（インデックス作成前） | BM25/sparse+expanded    | 任意                         | MS MARCOでのBM25の改善                             | 高いオフライン生成; 高速なオンライン処理 | <sup>[\[50\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-50)[\[51\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-51)</sup> |
| PRF (Rocchio, RLM)        | フィードバックによるQE | クエリ（上位結果に基づく）           | 任意                    | 任意                         | Recall向上/ドリフトのリスク                        | \+ 追加の検索パス                        | <sup>[\[52\]](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_note-52)</sup>                                                                                                                                                                           |

HyDEと関連アプローチの比較

## 関連項目

- BM25
- ベクトル表現検索
- RAG
- 疑似適合性フィードバック
- BEIR

## 外部リンク

- HyDEリポジトリ: <a href="https://github.com/texttron/hyde" class="external text" rel="nofollow">github.com/texttron/hyde</a>.
- ドキュメント: Haystack — HyDE: <a href="https://docs.haystack.deepset.ai/docs/hypothetical-document-embeddings-hyde" class="external text" rel="nofollow">docs.haystack.deepset.ai</a>.
- ドキュメント: LangChain — HyDE Retriever: <a href="https://docs.langchain.com/oss/javascript/integrations/retrievers/hyde" class="external text" rel="nofollow">docs.langchain.com</a>.

## 参考文献

- Manning, C. D.; Raghavan, P.; Schütze, H. (2008). *Introduction to Information Retrieval*. Cambridge University Press. ISBN 978‑0521865715.
- Robertson, S.; Zaragoza, H. (2009). *The Probabilistic Relevance Framework: BM25 and Beyond*. Foundations and Trends in IR, 3(4), 333–389. DOI:10.1561/1500000019.

## 脚注

1.  <span id="cite_note-1">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-1) Gao, L.; Ma, X.; Lin, J.; Callan, J. (2023). ‘‘Precise Zero‑Shot Dense Retrieval without Relevance Labels (HyDE)’’. ACL 2023. pp. 1762–1777. DOI:10.18653/v1/2023.acl-long.99. <a href="https://arxiv.org/abs/2212.10496" class="external text" rel="nofollow">arXiv:2212.10496</a></span>
2.  <span id="cite_note-2">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-2) Gao, L. et al. (2023). ACL 2023, §3.2. DOI:10.18653/v1/2023.acl-long.99.</span>
3.  <span id="cite_note-3">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-3) Rocchio, J. (1971). ‘‘Relevance Feedback in Information Retrieval’’. In: Salton, G. (ed.) *The SMART Retrieval System*. Prentice‑Hall, pp. 313–323. ISBN 978‑0138145255.</span>
4.  <span id="cite_note-4">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-4) Lavrenko, V.; Croft, W. B. (2001). ‘‘Relevance‑Based Language Models’’. SIGIR. DOI:10.1145/383952.383972.</span>
5.  <span id="cite_note-5">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-5) Izacard, G. et al. (2021/2022). ‘‘Unsupervised Dense Information Retrieval with Contrastive Learning’’. <a href="https://arxiv.org/abs/2112.09118" class="external text" rel="nofollow">arXiv:2112.09118</a>.</span>
6.  <span id="cite_note-6">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-6) Karpukhin, V. et al. (2020). ‘‘Dense Passage Retrieval for Open‑Domain QA’’. EMNLP. DOI:10.18653/v1/2020.emnlp-main.550.</span>
7.  <span id="cite_note-7">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-7) Thakur, N. et al. (2021). ‘‘BEIR: A Heterogeneous Benchmark for Zero‑shot Evaluation of Information Retrieval Models’’. NeurIPS Datasets Track. <a href="https://arxiv.org/abs/2104.08663" class="external text" rel="nofollow">arXiv:2104.08663</a>.</span>
8.  <span id="cite_note-8">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-8) Gao, L. et al. (2023). DOI:10.18653/v1/2023.acl-long.99.</span>
9.  <span id="cite_note-9">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-9) Milvus Docs. ‘‘Similarity Metrics’’ — L2正規化されたベクトルの場合、内積はコサイン類似度と等価。URL: <a href="https://milvus.io/docs/v2.2.x/metric.md" class="external free" rel="nofollow">https://milvus.io/docs/v2.2.x/metric.md</a></span>
10. <span id="cite_note-10">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-10) Gao, L.; Ma, X.; Lin, J.; Callan, J. (2023). ‘‘Precise Zero‑Shot Dense Retrieval without Relevance Labels (HyDE)’’. ACL 2023, §3–4. arXiv:2212.10496. DOI:10.18653/v1/2023.acl-long.99.</span>
11. <span id="cite_note-11">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-11) Izacard, G. et al. (2021/2022). ‘‘Unsupervised Dense Information Retrieval with Contrastive Learning (Contriever)’’. arXiv:2112.09118.</span>
12. <span id="cite_note-12">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-12) Gao, L. et al. (2023). 補遺 (ablation): 仮説的文書の数と生成パラメータの影響。arXiv:2212.10496.</span>
13. <span id="cite_note-13">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-13) Gao, L. et al. (2023). DOI:10.18653/v1/2023.acl-long.99.</span>
14. <span id="cite_note-14">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-14) Nogueira, R. et al. (2019). ‘‘Document Expansion by Query Prediction’’ (doc2query). <a href="https://arxiv.org/abs/1904.08375" class="external text" rel="nofollow">arXiv:1904.08375</a>.</span>
15. <span id="cite_note-15">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-15) Nogueira, R.; Lin, J. (2019). ‘‘From doc2query to docTTTTTquery’’ (tech report). <a href="https://cs.uwaterloo.ca/~jimmylin/publications/Nogueira_Lin_2019_docTTTTTquery-v2.pdf" class="external text" rel="nofollow">PDF</a></span>
16. <span id="cite_note-16">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-16) Rocchio, J. (1971); Lavrenko & Croft (2001), 上記参照。</span>
17. <span id="cite_note-17">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-17) Nogueira, R.; Cho, K. (2019). ‘‘Passage Re‑ranking with BERT’’. <a href="https://arxiv.org/abs/1901.04085" class="external text" rel="nofollow">arXiv:1901.04085</a>.</span>
18. <span id="cite_note-18">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-18) Khattab, O.; Zaharia, M. (2020). ‘‘ColBERT: Efficient and Effective Passage Search via Contextualized Late Interaction over BERT’’. SIGIR. DOI:10.1145/3397271.3401075; <a href="https://arxiv.org/abs/2004.12832" class="external text" rel="nofollow">arXiv:2004.12832</a>.</span>
19. <span id="cite_note-19">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-19) Cormack, G. V.; Clarke, C. L. A.; Büttcher, S. (2009). ‘‘Reciprocal Rank Fusion Outperforms Condorcet and Nearly Optimally Combines Rankings’’. SIGIR. DOI:10.1145/1571941.1572114.</span>
20. <span id="cite_note-20">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-20) Gao, L. et al. (2023). 表1. DOI:10.18653/v1/2023.acl-long.99.</span>
21. <span id="cite_note-21">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-21) Izacard, G. et al. (2022); 統合メトリクス — Gao et al., 2023, 表1. arXiv:2112.09118.</span>
22. <span id="cite_note-22">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-22) Gao, L. et al. (2023). 表1.</span>
23. <span id="cite_note-23">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-23) Karpukhin, V. et al. (2020); 統合 — Gao et al., 2023.</span>
24. <span id="cite_note-24">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-24) Xiong, L. et al. (2021). ICLR. <a href="https://arxiv.org/abs/2007.00808" class="external text" rel="nofollow">arXiv:2007.00808</a>.</span>
25. <span id="cite_note-25">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-25) Thakur, N. et al. (2021); 統合 — Gao et al., 2023, 表2. arXiv:2104.08663.</span>
26. <span id="cite_note-26">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-26) Izacard, G. et al. (2022); 統合 — Gao et al., 2023, 表2.</span>
27. <span id="cite_note-27">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-27) Gao, L. et al. (2023). 表2.</span>
28. <span id="cite_note-28">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-28) Gao, L. et al. (2023). 表3. DOI:10.18653/v1/2023.acl-long.99.</span>
29. <span id="cite_note-29">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-29) Gao, L. et al. (2023). §4–5.</span>
30. <span id="cite_note-30">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-30) Gao, L. et al. (2023). §4.2–4.3.</span>
31. <span id="cite_note-31">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-31) Gao, L. et al. (2023). §4.1.</span>
32. <span id="cite_note-32">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-32) Haystack Docs. ‘‘Hypothetical Document Embeddings (HyDE)’’ (技術リファレンス). <a href="https://docs.haystack.deepset.ai/docs/hypothetical-document-embeddings-hyde" class="external text" rel="nofollow">docs.haystack.deepset.ai</a></span>
33. <span id="cite_note-33">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-33) Gao, L. et al. (2023). 表6.</span>
34. <span id="cite_note-34">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-34) Milvus Docs. ‘‘Similarity Metrics’’.</span>
35. <span id="cite_note-35">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-35) Haystack × Milvus Integration (公式ドキュメント). <a href="https://haystack.deepset.ai/integrations/milvus-document-store" class="external text" rel="nofollow">haystack.deepset.ai</a></span>
36. <span id="cite_note-36">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-36) Nogueira, R.; Cho, K. (2019). arXiv:1901.04085.</span>
37. <span id="cite_note-37">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-37) Khattab, O.; Zaharia, M. (2020). DOI:10.1145/3397271.3401075.</span>
38. <span id="cite_note-38">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-38) Cormack, G. V. et al. (2009). DOI:10.1145/1571941.1572114.</span>
39. <span id="cite_note-39">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-39) Manning, C. D.; Raghavan, P.; Schütze, H. (2008). *Introduction to Information Retrieval*. Cambridge Univ. Press. ISBN 978‑0521865715.</span>
40. <span id="cite_note-40">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-40) 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>
41. <span id="cite_note-41">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-41) Gao, L. et al. (2023). §5.</span>
42. <span id="cite_note-42">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-42) Gao, L. et al. (2023). §3.2; §4.1. DOI:10.18653/v1/2023.acl-long.99.</span>
43. <span id="cite_note-43">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-43) Gao, L. et al. (2023). 表3; §4.4.</span>
44. <span id="cite_note-44">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-44) Gao, L. et al. (2023). §4–5.</span>
45. <span id="cite_note-45">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-45) Ouyang, L. et al. (2022). ‘‘Training language models to follow instructions with human feedback (InstructGPT)’’. NeurIPS. <a href="https://arxiv.org/abs/2203.02155" class="external text" rel="nofollow">arXiv:2203.02155</a>.</span>
46. <span id="cite_note-46">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-46) Gao, L. et al. (2023). 表1–2.</span>
47. <span id="cite_note-47">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-47) Robertson, S.; Zaragoza, H. (2009). ‘‘The Probabilistic Relevance Framework: BM25 and Beyond’’. Found. Trends IR. DOI:10.1561/1500000019.</span>
48. <span id="cite_note-48">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-48) Karpukhin, V. et al. (2020). DOI:10.18653/v1/2020.emnlp-main.550.</span>
49. <span id="cite_note-49">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-49) Xiong, L. et al. (2021). <a href="https://arxiv.org/abs/2007.00808" class="external text" rel="nofollow">arXiv:2007.00808</a>.</span>
50. <span id="cite_note-50">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-50) Nogueira, R. et al. (2019). arXiv:1904.08375.</span>
51. <span id="cite_note-51">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-51) Nogueira, R.; Lin, J. (2019). tech report.</span>
52. <span id="cite_note-52">[↑](https://systems-analysis.info/int/Hypothetical_Document_Embeddings_(HyDE)_%E2%80%94_%E4%BB%AE%E8%AA%AC%E7%9A%84%E6%96%87%E6%9B%B8%E6%8B%A1%E5%BC%B5#cite_ref-52) Rocchio, J. (1971). SMART; Lavrenko & Croft (2001) SIGIR.</span>
