DylanJHJ commited on
Commit
b7be8d8
·
1 Parent(s): 8ceccc5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -6
README.md CHANGED
@@ -1,13 +1,18 @@
 
 
1
  This checkpoint is a variant of monot5 (T5 pointwise re-ranking model).
2
  Specifically, we fuse the "P2Q (i.e. doc2query)" and "Rank (i.e. passage ranking)" to learn the **discriminative** view (Rank) and **geneartive** view (P2Q).
3
 
4
  We found that under the specific **mixing ratio** of these two task, the effectiveness of passage re-ranking improves on par with monot5-3B models.
5
  Hence, you can try to do both the task with this checkpoint by the following input format:
6
- - P2Q: Document: <here is a document or a passage> Translate Document to Query:
7
- - Rank: Query: <here is a query> Document: <here is a document or a passage> Relevant:
 
8
  which the outputs will be like:
9
- - P2Q: "<relevant query of the given text>"
10
- - Rank: "true" or "false"
11
- (Noted that we usually use the logit values of true/false tokens from T5 reranker as our query-passage relevant scores)
12
 
13
- Check our SIGIR2021 short paper: https://dl.acm.org/doi/10.1145/3404835.3463048
 
 
 
 
1
+ Check our SIGIR2021 short paper: https://dl.acm.org/doi/10.1145/3404835.3463048
2
+
3
  This checkpoint is a variant of monot5 (T5 pointwise re-ranking model).
4
  Specifically, we fuse the "P2Q (i.e. doc2query)" and "Rank (i.e. passage ranking)" to learn the **discriminative** view (Rank) and **geneartive** view (P2Q).
5
 
6
  We found that under the specific **mixing ratio** of these two task, the effectiveness of passage re-ranking improves on par with monot5-3B models.
7
  Hence, you can try to do both the task with this checkpoint by the following input format:
8
+ - P2Q: Document: *\<here is a document or a passage\>* Translate Document to Query:
9
+ - Rank: Query: *\<here is a query\>* Document: *\<here is a document or a passage\>* Relevant:
10
+
11
  which the outputs will be like:
12
+ - P2Q: *\<relevant query of the given text\>*
13
+ - Rank: *true* or *false*
 
14
 
15
+ ```
16
+ Note that we usually use the logit values of *true*/ *false* token from T5 reranker as our query-passage relevant scores
17
+ Note the above tokens are all case-sensitive.
18
+ ```