【笔记】RAG外挂知识库-上 #64
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: HswOAuth/llm_course#64
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
大模型局限
RAG好处
RAG概念
检索增强生成,通过检索的方式增强大模型的生成能力
RAG流程
创建索引
- 加载文档
- 文档切片
- 文档向量化
- 存入向量数据库
进行检索
- 读取用户问题
- 问题向量化
- 相似度检索
- 检索结果与用户问题相结合
- 借助到模型进行生成
向量检索
一些概念
相似度计算
https://www.shuxuele.com/sine-cosine-tangent.html
https://www.shuxuele.com/algebra/trig-sin-cos-tan-graphs.html