Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
RAGとは(超概要)
Search
dassimen
May 06, 2025
0
75
RAGとは(超概要)
RAGとはをざっくりまとめました。
RAGと聞くと手法の言葉なのにアプリをそのまま指したりするから
最初のうちは混乱する。。。
dassimen
May 06, 2025
Tweet
Share
More Decks by dassimen
See All by dassimen
LLMとは(超概要)
dassimen001
0
95
LangChain × Ollamaで学ぶLLM & RAG超入門
dassimen001
1
270
まるでChatGTP!?
dassimen001
0
44
LLMローカル動作方法(NvidiaGPU使用)
dassimen001
0
99
🎭Playwright 超入門
dassimen001
0
55
LLMローカル動作方法
dassimen001
1
87
ベクトル変換について
dassimen001
1
56
Featured
See All Featured
Rebuilding a faster, lazier Slack
samanthasiow
85
9.4k
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
290
Faster Mobile Websites
deanohume
310
31k
The Art of Programming - Codeland 2020
erikaheidi
57
14k
jQuery: Nuts, Bolts and Bling
dougneiner
65
8.4k
Skip the Path - Find Your Career Trail
mkilby
1
72
Marketing Yourself as an Engineer | Alaka | Gurzu
gurzu
0
140
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.1k
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
280
How to audit for AI Accessibility on your Front & Back End
davetheseo
0
200
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.6k
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.1k
Transcript
RAG (Retrieval-Augmented Generation) 超概要 RAG (Retrieval-Augmented Generation) 超概要 © 2025
1
RAG とは? Retrieval-Augmented Generation Large Language Model (LLM) に外部知識を検索(Retrieval )で追加し、より正確で
最新の回答を生成(Generation )する手法 LLM 単体では学習時点の知識しか持たない -> RAG でドキュメントやデータベース を参照して補強 RAG を行うアプリケーション自体をRAG と呼ぶこともある RAG (Retrieval-Augmented Generation) 超概要 © 2025 2
仕組み(2 ステップ) 1. Retrieval 質問をEmbedding( ベクトル化) してベクターストアへ検索 関連ドキュメントを取得 2. Generation
取得したドキュメントをプロンプト( ユーザの質問) に結合 LLM が引用元を踏まえた回答を生成 RAG (Retrieval-Augmented Generation) 超概要 © 2025 3
主な構成要素 Embedding( 埋め込み) モデル: 文書をベクトル化 ベクターストア: Chroma, FAISS など Retriever:
類似度検索ロジック LLM: GPT-4o, Gemma など RAG (Retrieval-Augmented Generation) 超概要 © 2025 4
RAG のメリット 最新情報を取り込める 業務特化データに基づく高精度回答 モデルを再学習せず低コストでカスタマイズ RAG (Retrieval-Augmented Generation) 超概要 ©
2025 5
まとめ RAG とは、 「検索」 + 「生成」のこと ざっくり流れ:質問 → 検索 →
ドキュメント付きプロンプト → LLM RAG (Retrieval-Augmented Generation) 超概要 © 2025 6