Auto-sync: update nexus workspace

This commit is contained in:
2026-04-28 07:26:52 +08:00
parent b83b4e3105
commit 3224ec4787
436 changed files with 17107 additions and 15920 deletions

View File

@@ -1,28 +1,27 @@
---
title: "Large Language Model"
type: concept
tags: [llm, ai, nlp]
last_updated: 2026-04-25
---
## Definition
大语言模型Large Language ModelLLM是基于大规模预训练的深度学习模型能够理解和生成人类语言在推理与生成方面表现出色。
## Core Characteristics
- **知识截止日期**LLM 的知识基于训练数据,存在固定的时间节点,无法自动获取最新信息
- **推理能力强**:能够进行复杂推理、代码生成、文本创作等任务
- **幻觉问题**:可能生成看似合理但实际错误的内容(幻觉
## Role in AI System Architecture
- **思考层**LLM 作为 AI 系统的"天才大脑",负责逻辑推理和内容生成
- [[RAG]] 配合获取实时信息
- 与 [[AI Agent]] 配合实现自主行动
## Related Concepts
- [[RAG]] — 补充实时知识,降低幻觉
- [[AI Agent]] — 提供行动能力
- [[ReAct Pattern]] — 推理-行动协同模式
## Sources
- [[llms-rag-ai-agent-三个到底什么区别]]
- [[大模型相关术语和框架总结llm-mcp-prompt-rag-vllm-token-数据蒸馏]]
---
title: "Large Language Model"
type: concept
tags: [llm, nlp, deep-learning]
aliases: [LLM, 大语言模型, Large Language Model]
last_updated: 2025-12-20
---
## Definition
Large Language Model大语言模型。行业通常以参数规模和训练数据/算力来衡量是否称为"大模型",语言模型常在 ≥1B 参数开始被称为"大模型"。
## Key Facts
- 1B = Billion = 10亿参数
- 常见大模型示例GPT-21.5B、GPT-3175B、GPT-4参数量未公开
- 参数规模是衡量模型能力的重要指标之一
## Connections
- [[Agent]] ← 构建于 ← [[Large Language Model]]
- [[Prompt]] ← 输入给 ← [[Large Language Model]]
- [[Model Context Protocol]] ← 连接 ← [[Large Language Model]]
- [[RAG]] ← 增强 ← [[Large Language Model]]
- [[vLLM]] ← 加速推理 ← [[Large Language Model]]
- [[Hallucination]] ← 问题 ← [[Large Language Model]]
- [[Data Distillation]] ← 蒸馏对象 ← [[Large Language Model]]
## Sources
- [[大模型相关术语和框架总结llm-mcp-prompt-rag-vllm-token-数据蒸馏]]