Shrideep commited on
Commit
2b89a5e
1 Parent(s): 288d21e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -6
README.md CHANGED
@@ -9,9 +9,8 @@ tags:
9
  - llama-index
10
  ---
11
  # Summary:
12
- Retrieval Augmented Generation (RAG) is a technique to specialize a language model with a specific knowledge domain by feeding in relevant data so that it can give better answers.
13
- # Implemeting RAG(in a nutshell):
14
- ### 1. Ready/ Preprocess your input data:
15
- Language Models see all the data as tokens and vectors. So we want to convert the data to be fed into the same format.
16
- ### 2. Feed the processed data to the Language Model.
17
- ### 3. Indexing the stored data that matches the context of the query.
 
9
  - llama-index
10
  ---
11
  # Summary:
12
+ Retrieval Augmented Generation (RAG) is a technique to specialize a language model with a specific knowledge domain by feeding in relevant data so that it can give better answers.
13
+ # How does RAG works?
14
+ 1. Ready/ Preprocess your input data i.e. tokenization & vectorization
15
+ 2. Feed the processed data to the Language Model.
16
+ 3. Indexing the stored data that matches the context of the query.