Update README.md
Browse files
README.md
CHANGED
|
@@ -56,4 +56,21 @@ with torch.no_grad():
|
|
| 56 |
logits = model(**inputs).logits
|
| 57 |
prediction = torch.argmax(logits, dim=-1)
|
| 58 |
|
| 59 |
-
print("Correct" if prediction.item() == 1 else "Incorrect")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
logits = model(**inputs).logits
|
| 57 |
prediction = torch.argmax(logits, dim=-1)
|
| 58 |
|
| 59 |
+
print("Correct" if prediction.item() == 1 else "Incorrect")
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
## Citation
|
| 63 |
+
|
| 64 |
+
If you find this model useful for you research, please consider citing:
|
| 65 |
+
|
| 66 |
+
```
|
| 67 |
+
@article{gisserotboukhlef2026bertasajudgerobustalternativelexical,
|
| 68 |
+
title={BERT-as-a-Judge: A Robust Alternative to Lexical Methods for Efficient Reference-Based LLM Evaluation},
|
| 69 |
+
author={Gisserot-Boukhlef, Hippolyte and Boizard, Nicolas and Malherbe, Emmanuel and Hudelot, C{\'e}line and Colombo, Pierre},
|
| 70 |
+
year={2026},
|
| 71 |
+
eprint={2604.09497},
|
| 72 |
+
archivePrefix={arXiv},
|
| 73 |
+
primaryClass={cs.CL},
|
| 74 |
+
url={https://arxiv.org/abs/2604.09497}
|
| 75 |
+
}
|
| 76 |
+
```
|