---
title: "LLM quality metrics — LLMの品質メトリクス"
source: "https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9"
wiki: "systems-analysis.info/int"
article: "LLM_quality_metrics_—_LLMの品質メトリクス"
language: "ja"
categories:
  - "Category:Japanese"
  - "Category:Large language models"
  - "Category:LLM evaluation"
  - "Category:Machine learning"
revision_id: 3659
wiki_created_at: 2026-09-06T23:24:05Z
wiki_modified_at: 2026-09-06T23:24:05Z
downloaded_at: 2026-09-07T22:58:10Z
---

# LLM quality metrics — LLMの品質メトリクス

**大規模言語モデル（LLM）の品質メトリクス**とは、言語モデルの性能の様々な側面（精度、安全性、公平性、信頼性など）を測定するための体系的なアプローチであり、標準化されたツール群です<sup>[\[1\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-perplexity-overview-1)</sup>。LLMが医療、金融、教育といった極めて重要な分野でますます広く利用されるようになるにつれて、それらを包括的かつ客観的に評価する必要性が高まっています<sup>[\[2\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-perplexity-security-2)</sup>。

メトリクスとベンチマークは、いくつかの重要な機能を果たします。それらは、異なるモデルを客観的に比較し、その開発の進捗を追跡し、弱点を特定し、研究者や実務家のために結果の透明性を確保することを可能にします<sup>[\[1\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-perplexity-overview-1)</sup>。

## メトリクスのカテゴリ

LLMを評価するためのメトリクスは、いくつかの主要なカテゴリに分類できます：自動メトリクス、人間による評価、そして安全性と信頼性を評価するための専門メトリクスです。

### 自動メトリクス

これらのメトリクスは、人間の介入なしに、迅速でスケーラブルな評価を可能にします。

#### n-gramベースのメトリクス

生成されたテキストと参照テキストとの間の語彙的な一致を測定する伝統的なメトリクスです。

- **BLEU** (Bilingual Evaluation Understudy): 元々は機械翻訳の品質を評価するために開発されました。n-gram（n個の単語の連続）の一致の精度を測定し、生成されたテキストが短すぎる場合にペナルティを課します<sup>[\[3\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-ngram-metrics-3)</sup>。
- **ROUGE** (Recall-Oriented Understudy for Gisting Evaluation): 再現率に焦点を当て、参照テキストのn-gramが生成テキストにどの程度含まれているかを測定します。特に要約タスクの評価に効果的です<sup>[\[3\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-ngram-metrics-3)</sup>。
- **METEOR**: BLEUの機能を拡張し、同義語、語幹が同じ単語、形態素のバリエーションを考慮することで、人間による評価とのより良い相関を実現します<sup>[\[3\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-ngram-metrics-3)</sup>。

#### セマンティックメトリクス

これらのメトリクスは、単なる語彙的な一致だけでなく、文脈を考慮した埋め込み表現を用いて意味的な近さを評価します。

- **BERTScore**: BERTモデルの埋め込み表現を使用して、生成テキストと参照テキストのトークン間の意味的類似性を計算します。これにより、異なる表現であっても意味的に等価であることを認識できます<sup>[\[4\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-semantic-metrics-4)</sup>。
- **MAUVE**: 機械が生成したテキストと人間が書いたテキストの分布間の、埋め込み空間における乖離を測定します。固定された参照テキストがないオープンエンドな生成タスクの評価に特に有効です<sup>[\[5\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-distribution-metrics-5)</sup>。

#### 言語モデリングの内部メトリクス

- **パープレキシティ** (Perplexity): 言語モデルがテキストのシーケンスをどれだけうまく予測するかを測定する基本的なメトリクスです。これは、次のトークンを予測する際のモデルの不確実性を反映します。パープレキシティの値が低いほど、性能が良いことを示します<sup>[\[6\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-intrinsic-metrics-6)</sup>。
- **精度とF1スコア**: 分類タスクや質問応答システムで広く使用されます。F1スコアは、適合率（precision）と再現率（recall）の調和平均であり、バランスの取れた評価を提供します<sup>[\[6\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-intrinsic-metrics-6)</sup>。

### 人間による評価

人間による評価は依然として「ゴールドスタンダード」です。なぜなら、自動メトリクスでは、一貫性、創造性、関連性といった品質の微妙な側面を捉えることができない場合が多いためです<sup>[\[7\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-human-eval-7)</sup>。

- **直接評価**: 専門家やクラウドワーカーが、流暢さや一貫性などの基準に基づき、所定の尺度（例：1から5）で生成品質を評価します。
- **比較評価**: 評価者は、2つ以上のモデルの出力を比較し、最も良いものを選択する（ペアワイズ比較）か、最良から最悪まで順位付けするよう求められます。

人間による評価の欠点は、コストの高さ、スケーリングの難しさ、そして主観性です<sup>[\[7\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-human-eval-7)</sup>。

### LLM-as-a-Judge - 判定者としてのLLM

ある（通常はより強力な）言語モデルを別のモデルの応答を評価するために使用する新しいアプローチです。例えば、GPT-4は指定された基準に基づいてモデルの出力をランク付けすることができます。この方法は人間による評価に代わるスケーラブルな手段を提供しますが、プロンプトのスタイルへの敏感さや潜在的なバイアスといった独自の問題も抱えています<sup>[\[8\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-llm-as-judge-8)</sup>。

## 専門的なメトリクスとベンチマーク

LLMの性能と信頼性の特定の側面を評価するために、専門的なメトリクスとベンチマークが使用されます。

### 事実の信頼性

モデルが真実の情報を生成し、ハルシネーション（幻覚）に陥らない能力を評価します。

- **TruthfulQA**: モデルが一般的な俗説や誤解に基づいた回答を生成する傾向を測定するために特別に設計されたベンチマークです。モデルには、単に人気のある回答ではなく、事実として正しい回答をすることが求められます<sup>[\[9\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-security-metrics-9)</sup>。

### 安全性と倫理

- **有害性の評価**: 侮辱的または有害なコンテンツの存在を測定します。このためには、専門の分類器やAPI（例：**Perspective API**）が使用されます<sup>[\[9\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-security-metrics-9)</sup>。
- **バイアスと公平性の評価**: モデルが様々な人口統計グループに対して差別的な行動を示すかどうかを評価します。研究によると、LLMは訓練データに含まれる社会的なステレオタイプを維持し、増幅する可能性があることが示されています<sup>[\[10\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-bias-metrics-10)</sup>。
- **SafetyBench**: 包括的な安全性評価ベンチマークであり、安全性に関わる7つのカテゴリにわたる多肢選択式の問題を用いてモデルを評価します<sup>[\[11\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-safety-bench-11)</sup>。

### 包括的なベンチマーク

- **MMLU** (Massive Multitask Language Understanding): 最も広く使用されているベンチマークの1つで、初等数学から国際法まで、57の科目に関する多肢選択問題が含まれています。モデルの知識の幅広さと深さを評価します<sup>[\[12\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-comprehensive-benchmarks-12)</sup>。
- **BIG-bench** (Beyond the Imitation Game): チェスから絵文字の推測まで、標準的な言語モデルの能力を超える能力を評価するために設計された204のタスクが含まれています<sup>[\[12\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-comprehensive-benchmarks-12)</sup>。

## 課題と限界

- **相関の問題**: BLEUやROUGEのような従来の自動メトリクスは、特に創造的なタスクにおいて、人間による評価との相関が低いことが多いです<sup>[\[13\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-challenges-correlation-13)</sup>。
- **データ汚染 (Data Contamination)**: ベンチマークのテストデータがモデルの訓練セットに含まれてしまったリスクがあり、これにより評価が過度に高く、信頼性の低いものになる可能性があります<sup>[\[14\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-challenges-contamination-14)</sup>。
- **多言語評価**: 既存のメトリクスとベンチマークのほとんどは英語に焦点を当てており、LLMの多言語能力を評価する上での適用性を制限しています<sup>[\[15\]](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_note-challenges-multilingual-15)</sup>。

## 外部リンク

- <a href="https://www.ibm.com/think/topics/llm-benchmarks" class="external text" rel="nofollow">What Are LLM Benchmarks?</a> — IBMによる概説記事
- <a href="https://www.evidentlyai.com/llm-guide/llm-benchmarks" class="external text" rel="nofollow">20 LLM evaluation benchmarks and how they work</a> — Evidently AIによるベンチマークガイド

## 参考文献

- Papineni, K. et al. (2002). *Bleu: a Method for Automatic Evaluation of Machine Translation*. <a href="https://aclanthology.org/P02-1040/" class="external text" rel="nofollow">ACL:P02-1040</a>.
- Lin, C.-Y. (2004). *ROUGE: A Package for Automatic Evaluation of Summaries*. <a href="https://aclanthology.org/W04-1013/" class="external text" rel="nofollow">ACL:W04-1013</a>.
- Banerjee, S.; Lavie, A. (2005). *METEOR: An Automatic Metric for MT Evaluation with Improved Correlation with Human Judgments*. <a href="https://aclanthology.org/W05-0909/" class="external text" rel="nofollow">ACL:W05-0909</a>.
- Zhang, T. et al. (2019). *BERTScore: Evaluating Text Generation with BERT*. <a href="https://arxiv.org/abs/1904.09675" class="external text" rel="nofollow">arXiv:1904.09675</a>.
- Pillutla, K. et al. (2021). *MAUVE: Measuring the Gap Between Neural Text and Human Text using Divergence Frontiers*. <a href="https://arxiv.org/abs/2102.01454" class="external text" rel="nofollow">arXiv:2102.01454</a>.
- Lin, S. et al. (2021). *TruthfulQA: Measuring How Models Mimic Human Falsehoods*. <a href="https://arxiv.org/abs/2109.07958" class="external text" rel="nofollow">arXiv:2109.07958</a>.
- Parrish, A. et al. (2021). *BBQ: A Hand-Built Bias Benchmark for Question Answering*. <a href="https://arxiv.org/abs/2110.08193" class="external text" rel="nofollow">arXiv:2110.08193</a>.
- Dhamala, J. et al. (2021). *BOLD: Dataset and Metrics for Measuring Biases in Open-Ended Language Generation*. <a href="https://arxiv.org/abs/2101.11718" class="external text" rel="nofollow">arXiv:2101.11718</a>.
- Hendrycks, D. et al. (2020). *Measuring Massive Multitask Language Understanding*. <a href="https://arxiv.org/abs/2009.03300" class="external text" rel="nofollow">arXiv:2009.03300</a>.
- Srivastava, A. et al. (2022). *Beyond the Imitation Game: Quantifying and Extrapolating the Capabilities of Language Models*. <a href="https://arxiv.org/abs/2206.04615" class="external text" rel="nofollow">arXiv:2206.04615</a>.
- Zhang, Z. et al. (2023). *SafetyBench: Evaluating the Safety of Large Language Models*. <a href="https://arxiv.org/abs/2309.07045" class="external text" rel="nofollow">arXiv:2309.07045</a>.
- Huang, H. et al. (2024). *An Empirical Study of LLM-as-a-Judge for LLM Evaluation: Fine-Tuned Judge Model is not a General Substitute for GPT-4*. <a href="https://arxiv.org/abs/2403.02839" class="external text" rel="nofollow">arXiv:2403.02839</a>.
- Chiang, W.-L. et al. (2024). *Chatbot Arena: An Open Platform for Evaluating LLMs by Human Preference*. <a href="https://arxiv.org/abs/2403.04132" class="external text" rel="nofollow">arXiv:2403.04132</a>.
- Gu, J. et al. (2024). *A Survey on LLM-as-a-Judge*. <a href="https://arxiv.org/abs/2411.15594" class="external text" rel="nofollow">arXiv:2411.15594</a>.
- Li, S. et al. (2025). *LLMs Cannot Reliably Judge (Yet?): A Comprehensive Assessment on the Robustness of LLM-as-a-Judge*. <a href="https://arxiv.org/abs/2506.09443" class="external text" rel="nofollow">arXiv:2506.09443</a>.

## 脚注

1.  <span id="cite_note-perplexity-overview-1">↑ <sup>[1.0](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-perplexity-overview_1-0)</sup> <sup>[1.1](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-perplexity-overview_1-1)</sup> 「LLMの品質メトリクス」。 *Perplexity AI*。</span>
2.  <span id="cite_note-perplexity-security-2">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-perplexity-security_2-0) 「専門的なセキュリティメトリクス」。 *Perplexity AI*。</span>
3.  <span id="cite_note-ngram-metrics-3">↑ <sup>[3.0](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-ngram-metrics_3-0)</sup> <sup>[3.1](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-ngram-metrics_3-1)</sup> <sup>[3.2](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-ngram-metrics_3-2)</sup> 「伝統的なテキスト評価メトリクス」。 *Perplexity AI*。</span>
4.  <span id="cite_note-semantic-metrics-4">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-semantic-metrics_4-0) 「セマンティックメトリクス」。 *Perplexity AI*。</span>
5.  <span id="cite_note-distribution-metrics-5">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-distribution-metrics_5-0) 「分布ベースのメトリクス」。 *Perplexity AI*。</span>
6.  <span id="cite_note-intrinsic-metrics-6">↑ <sup>[6.0](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-intrinsic-metrics_6-0)</sup> <sup>[6.1](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-intrinsic-metrics_6-1)</sup> 「内部メトリクス」。 *Perplexity AI*。</span>
7.  <span id="cite_note-human-eval-7">↑ <sup>[7.0](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-human-eval_7-0)</sup> <sup>[7.1](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-human-eval_7-1)</sup> 「人間による評価」。 *Perplexity AI*。</span>
8.  <span id="cite_note-llm-as-judge-8">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-llm-as-judge_8-0) 「LLM-as-a-Judge」。 *Perplexity AI*。</span>
9.  <span id="cite_note-security-metrics-9">↑ <sup>[9.0](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-security-metrics_9-0)</sup> <sup>[9.1](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-security-metrics_9-1)</sup> 「専門的なセキュリティメトリクス」。 *Perplexity AI*。</span>
10. <span id="cite_note-bias-metrics-10">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-bias-metrics_10-0) 「バイアスと公平性」。 *Perplexity AI*。</span>
11. <span id="cite_note-safety-bench-11">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-safety-bench_11-0) 「セキュリティベンチマーク」。 *Perplexity AI*。</span>
12. <span id="cite_note-comprehensive-benchmarks-12">↑ <sup>[12.0](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-comprehensive-benchmarks_12-0)</sup> <sup>[12.1](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-comprehensive-benchmarks_12-1)</sup> 「包括的な評価」。 *Perplexity AI*。</span>
13. <span id="cite_note-challenges-correlation-13">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-challenges-correlation_13-0) 「相関の問題」。 *Perplexity AI*。</span>
14. <span id="cite_note-challenges-contamination-14">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-challenges-contamination_14-0) 「データ汚染」。 *Perplexity AI*。</span>
15. <span id="cite_note-challenges-multilingual-15">[↑](https://systems-analysis.info/int/LLM_quality_metrics_%E2%80%94_LLM%E3%81%AE%E5%93%81%E8%B3%AA%E3%83%A1%E3%83%88%E3%83%AA%E3%82%AF%E3%82%B9#cite_ref-challenges-multilingual_15-0) 「多言語評価」。 *Perplexity AI*。</span>
