update readme
Browse files- README.md +2 -2
- model-performance.png +0 -0
README.md
CHANGED
@@ -8,7 +8,7 @@ This is the out-of-context detection model from our work:
|
|
8 |
|
9 |
[**RAGulator: Lightweight Out-of-Context Detectors for Grounded Text Generation**](https://arxiv.org/abs/2411.03920)
|
10 |
|
11 |
-
This repository contains model files for the deberta-v3-large variant of RAGulator. Code can be found [here]().
|
12 |
|
13 |
## Key Points
|
14 |
* RAGulator predicts whether a sentence is out-of-context (OOC) from retrieved text documents in a RAG setting.
|
@@ -92,7 +92,7 @@ pip install "ragulator @ git+https://github.com/ipoeyke/RAGulator.git@main"
|
|
92 |
from ragulator import RAGulator
|
93 |
|
94 |
model = RAGulator(
|
95 |
-
|
96 |
batch_size=32,
|
97 |
device='cpu'
|
98 |
)
|
|
|
8 |
|
9 |
[**RAGulator: Lightweight Out-of-Context Detectors for Grounded Text Generation**](https://arxiv.org/abs/2411.03920)
|
10 |
|
11 |
+
This repository contains model files for the deberta-v3-large variant of RAGulator. Code can be found [here](https://github.com/ipoeyke/RAGulator).
|
12 |
|
13 |
## Key Points
|
14 |
* RAGulator predicts whether a sentence is out-of-context (OOC) from retrieved text documents in a RAG setting.
|
|
|
92 |
from ragulator import RAGulator
|
93 |
|
94 |
model = RAGulator(
|
95 |
+
model_name='deberta-v3-large', # only value supported for now
|
96 |
batch_size=32,
|
97 |
device='cpu'
|
98 |
)
|
model-performance.png
ADDED
![]() |