言語AIガイド

検索品質

Retrieval quality measures whether a search system returns useful evidence for a query and places it where a reader or downstream model can use it.

2分の読書最終更新日 Part of the Building with AI Systems learning path

概要

Relevance, coverage, freshness, and authorization all matter. A high similarity score alone does not prove that a passage answers the question.

主なポイント

  • Define relevance for the question being answered.
  • Report cutoffs and labeling rules.
  • Test freshness, permissions, and missing evidence.

ディープダイブ

Define relevance with the intended task in mind. A document about a product may be topically related but fail to answer a specific question about a version or date. Label examples of fully supporting evidence, partial evidence, and irrelevant material. Measure the candidate set and ranking separately. Recall at a chosen cutoff asks how much relevant material was retrieved; precision asks how much of the retrieved material is relevant. Rank-aware metrics assess whether the best evidence appears early. State the cutoff and labeling method with every score. Inspect failure patterns: exact identifiers missed by semantic search, synonyms missed by keyword search, outdated documents ranked above current ones, or passages cut away from their qualifications. Hybrid retrieval and reranking can help some cases, but must be evaluated on the same fixed examples. Include access restrictions and unanswerable queries in the test set. A system should not improve apparent relevance by returning unauthorized documents. When no adequate evidence exists, measure whether the application communicates that limitation instead of producing an unsupported answer.

技術的な洞察

Similarity and relevance are different concepts. The vector nearest to a query can still be a poor answer because the embedding captures topic rather than the required fact.

Compute retrieval precision and recall

  1. In a constructed collection, four passages answer a question. A search returns five passages, of which three are relevant.
  2. Precision at five is 3/5 = 60%; recall at five is 3/4 = 75%.
  3. Inspect the missing relevant passage and the two irrelevant results before choosing a tuning change.

These invented counts show two different retrieval properties; neither alone measures final answer correctness.

戦略的影響

速度とスケール

言語ワークフローは、一貫性を犠牲にすることなく、より高速に移行できます。

アクセスと到達範囲

言語やコミュニケーション スタイルを超えてアクセスが拡張されます。

より明確な判決

自動化が繰り返しを処理する間、チームは判断により多くの時間を費やすことができます。

現実世界の実装

Test retrieval of an exact order code and a paraphrased support question.

Check whether current policy versions outrank archived ones.

リスクとガードレール

幻覚のような事実が、レポート、サポート フロー、または研究結果に静かに組み込まれる可能性があります。

迅速な対応により、同様のリクエスト間で一貫性のない結果が生じる可能性があります。

アクセス制御が弱いと、機密テキスト データが漏洩する可能性があります。

実装ロードマップ

1

展開する前に、出力形式、トーン、品質基準を定義します。

2

正確さが重要な場合は常に、信頼できる情報源を使って地上対応を行ってください。

3

一か八かの成果物については人間によるレビュー チェックポイントを維持します。

4

失敗パターンを追跡し、プロンプトやワークフローを定期的に再トレーニングします。

出典とさらなる参考文献

探検を続けましょう

Free newsletter

Get the daily AI briefing

Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.

One email each weekday. Unsubscribe in one click. We never sell or share your address.

Test yourself

Take the Retrieval Quality quiz

Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.

クイズを開始する

Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation

Next in Building with AI Systems

ベクトルデータベース

よくある質問

Should I always retrieve more passages?

No. More passages may improve coverage but also add irrelevant or conflicting context. Measure the tradeoff in the complete application.