File size: 492 Bytes
c8116d8 939fe9a 074dadd 0b7c289 c8116d8 0b7c289 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
---
license: mit
language:
- en
tags:
- ColBERT
---
Essentially contains ColBert V2 Repo from Huggingface along with a .ragatouille folder containing the indexed form of [Guidelines](https://huggingface.co/datasets/epfl-llm/guidelines) dataset.
https://github.com/bclavie/RAGatouille
# Usage
```py
from ragatouille import RAGPretrainedModel
RAG = RAGPretrainedModel.from_pretrained("Technoculture/guidelines-search")
results = RAG.search("Hypertension, Male, 40yo", index_name="index")
``` |