Update README.md
Browse files
README.md
CHANGED
@@ -35,4 +35,16 @@ scores = model.get_scores(
|
|
35 |
# Scores are sorted in descending order (most relevant to least)
|
36 |
# scores -> [0, 1]
|
37 |
sorted_scores = sorted(zip(scores, docs), key=lambda x: x[0], reverse=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
```
|
|
|
35 |
# Scores are sorted in descending order (most relevant to least)
|
36 |
# scores -> [0, 1]
|
37 |
sorted_scores = sorted(zip(scores, docs), key=lambda x: x[0], reverse=True)
|
38 |
+
```
|
39 |
+
|
40 |
+
## How to Cite
|
41 |
+
```
|
42 |
+
@misc{laitz2024inranker,
|
43 |
+
title={InRanker: Distilled Rankers for Zero-shot Information Retrieval},
|
44 |
+
author={Thiago Laitz and Konstantinos Papakostas and Roberto Lotufo and Rodrigo Nogueira},
|
45 |
+
year={2024},
|
46 |
+
eprint={2401.06910},
|
47 |
+
archivePrefix={arXiv},
|
48 |
+
primaryClass={cs.IR}
|
49 |
+
}
|
50 |
```
|