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
120
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
RAGとは(超概要)
RAGとはをざっくりまとめました。
RAGと聞くと手法の言葉なのにアプリをそのまま指したりするから
最初のうちは混乱する。。。
dassimen
May 06, 2025
More Decks by dassimen
See All by dassimen
LLMとは(超概要)
dassimen001
0
140
LangChain × Ollamaで学ぶLLM & RAG超入門
dassimen001
1
380
まるでChatGTP!?
dassimen001
0
67
LLMローカル動作方法(NvidiaGPU使用)
dassimen001
0
120
🎭Playwright 超入門
dassimen001
0
76
LLMローカル動作方法
dassimen001
1
97
ベクトル変換について
dassimen001
1
68
Featured
See All Featured
sira's awesome portfolio website redesign presentation
elsirapls
0
320
Building Applications with DynamoDB
mza
96
7.2k
Navigating Weather and Climate Data
rabernat
0
460
The Limits of Empathy - UXLibs8
cassininazir
1
590
Build your cross-platform service in a week with App Engine
jlugia
234
19k
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
490
Building the Perfect Custom Keyboard
takai
2
830
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
How to Talk to Developers About Accessibility
jct
2
490
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
3
1.1k
How to build a perfect <img>
jonoalderson
1
5.9k
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
330
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