thiagolaitz commited on
Commit
19c7558
1 Parent(s): 8662f76

Update README.md

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