Update README with Enhanced RAG system instructions
Browse files
README.md
CHANGED
|
@@ -32,8 +32,8 @@ This is a custom state-of-the-art sentence embedding model trained specifically
|
|
| 32 |
```bash
|
| 33 |
pip install torch sentencepiece scikit-learn matplotlib
|
| 34 |
git lfs install
|
| 35 |
-
git clone https://huggingface.co/DeepMostInnovations/hindi-embedding-foundational-model
|
| 36 |
-
cd hindi-embedding-foundational-model
|
| 37 |
```
|
| 38 |
|
| 39 |
### Enhanced RAG System
|
|
@@ -63,7 +63,7 @@ python hindi-rag-system.py --model_dir /path/to/your/model --tokenizer_dir /path
|
|
| 63 |
from hindi_embeddings import HindiEmbedder
|
| 64 |
|
| 65 |
# Initialize the embedder
|
| 66 |
-
model = HindiEmbedder("path/to/hindi-embedding-foundational-model")
|
| 67 |
|
| 68 |
# Encode sentences to embeddings
|
| 69 |
sentences = [
|
|
@@ -139,6 +139,6 @@ If you use this model in your research or application, please cite us:
|
|
| 139 |
title = {Hindi Sentence Embeddings Model},
|
| 140 |
year = {2025},
|
| 141 |
publisher = {Hugging Face},
|
| 142 |
-
howpublished = {\url{https://huggingface.co/DeepMostInnovations/hindi-embedding-foundational-model}}
|
| 143 |
}
|
| 144 |
```
|
|
|
|
| 32 |
```bash
|
| 33 |
pip install torch sentencepiece scikit-learn matplotlib
|
| 34 |
git lfs install
|
| 35 |
+
git clone https://huggingface.co/DeepMostInnovations/hindi-embedding-foundational-model-10B
|
| 36 |
+
cd hindi-embedding-foundational-model-10B
|
| 37 |
```
|
| 38 |
|
| 39 |
### Enhanced RAG System
|
|
|
|
| 63 |
from hindi_embeddings import HindiEmbedder
|
| 64 |
|
| 65 |
# Initialize the embedder
|
| 66 |
+
model = HindiEmbedder("path/to/hindi-embedding-foundational-model-10B")
|
| 67 |
|
| 68 |
# Encode sentences to embeddings
|
| 69 |
sentences = [
|
|
|
|
| 139 |
title = {Hindi Sentence Embeddings Model},
|
| 140 |
year = {2025},
|
| 141 |
publisher = {Hugging Face},
|
| 142 |
+
howpublished = {\url{https://huggingface.co/DeepMostInnovations/hindi-embedding-foundational-model-10B}}
|
| 143 |
}
|
| 144 |
```
|