wiki-ingest: 大模型相关术语和框架总结

This commit is contained in:
2026-04-16 03:49:22 +08:00
parent 997ad92e81
commit 04b7e9978c
7 changed files with 145 additions and 49 deletions

View File

@@ -1,8 +1,11 @@
# Hallucination
# Hallucination (幻觉)
## Definition
The phenomenon where an LLM generates information that appears plausible but is actually false, fabricated, or not grounded in its input or training data. The model "makes things up" with confidence, presenting fiction as fact.
In the context of Chinese documentation: 大模型总是一本正经的回答问题但其实是在胡说八道。LLM 在面对陌生领域时,只会在答案中写一个"解"字(因为 LLM 的知识局限于特定数据集),然后就开始放飞自我生成看似合理但实际错误的内容。
## Key Statistics
- If a single model hallucinates 20% of the time
- 3 models hallucinating the exact same lie: 0.8% (0.2³ = 0.008)
@@ -30,4 +33,6 @@ The phenomenon where an LLM generates information that appears plausible but is
- [[Context Drift]]
- [[Multi-Agent Consensus]]
- [[Validator]]
- [[LLM Reliability Engineering]]
- [[LLM Reliability Engineering]]
- [[RAG]] — 检索增强生成,通过外部知识检索解决幻觉问题,可将正确率从 60% 提升至 90%
- [[Embedding]] — 向量化技术,支撑 RAG 的语义检索基础