Update README.md
Browse files
README.md
CHANGED
@@ -10,7 +10,7 @@ size_categories:
|
|
10 |
# T2Ranking
|
11 |
|
12 |
## Introduction
|
13 |
-
T2Ranking is a large-scale Chinese benchmark for passage ranking. The details about T2Ranking are elaborated in [this paper](https://
|
14 |
|
15 |
|
16 |
Passage ranking are important and challenging topics for both academics and industries in the area of Information Retrieval (IR). The goal of passage ranking is to compile a search result list ordered in terms of relevance to the query from a large passage collection. Typically, Passage ranking involves two stages: passage retrieval and passage re-ranking.
|
@@ -21,7 +21,7 @@ To support the passage ranking research, various benchmark datasets are construc
|
|
21 |
To address this problem, we introduce T2Ranking, a large-scale Chinese benchmark for passage ranking. T2Ranking comprises more than 300K queries and over 2M unique passages from real- world search engines. Specifically, we sample question-based search queries from user logs of the Sogou search engine, a popular search system in China. For each query, we extract the content of corresponding documents from different search engines. After model-based passage segmentation and clustering-based passage de-duplication, a large-scale passage corpus is obtained. For a given query and its corresponding passages, we hire expert annotators to provide 4-level relevance judgments of each query-passage pair.
|
22 |
|
23 |
|
24 |
-
<div align=center><img width="600" height="200" src="
|
25 |
<div align=center>Table 1: The data statistics of datasets commonly used in passage ranking. FR(SR): First (Second)- stage of passage ranking, i.e., passage Retrieval (Re-ranking).</div>
|
26 |
|
27 |
|
@@ -107,14 +107,17 @@ python src/convert2trec.py output/res.step-20 && python src/msmarco_eval.py data
|
|
107 |
## License
|
108 |
The dataset is licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).
|
109 |
|
|
|
110 |
## Citation
|
111 |
If you use this dataset in your research, please cite our paper:
|
112 |
```
|
113 |
-
@
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
|
|
|
|
118 |
}
|
119 |
```
|
120 |
|
|
|
10 |
# T2Ranking
|
11 |
|
12 |
## Introduction
|
13 |
+
T2Ranking is a large-scale Chinese benchmark for passage ranking. The details about T2Ranking are elaborated in [this paper](https://arxiv.org/abs/2304.03679#).
|
14 |
|
15 |
|
16 |
Passage ranking are important and challenging topics for both academics and industries in the area of Information Retrieval (IR). The goal of passage ranking is to compile a search result list ordered in terms of relevance to the query from a large passage collection. Typically, Passage ranking involves two stages: passage retrieval and passage re-ranking.
|
|
|
21 |
To address this problem, we introduce T2Ranking, a large-scale Chinese benchmark for passage ranking. T2Ranking comprises more than 300K queries and over 2M unique passages from real- world search engines. Specifically, we sample question-based search queries from user logs of the Sogou search engine, a popular search system in China. For each query, we extract the content of corresponding documents from different search engines. After model-based passage segmentation and clustering-based passage de-duplication, a large-scale passage corpus is obtained. For a given query and its corresponding passages, we hire expert annotators to provide 4-level relevance judgments of each query-passage pair.
|
22 |
|
23 |
|
24 |
+
<div align=center><img width="600" height="200" src="pic/stat.png"/></div>
|
25 |
<div align=center>Table 1: The data statistics of datasets commonly used in passage ranking. FR(SR): First (Second)- stage of passage ranking, i.e., passage Retrieval (Re-ranking).</div>
|
26 |
|
27 |
|
|
|
107 |
## License
|
108 |
The dataset is licensed under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0.html).
|
109 |
|
110 |
+
|
111 |
## Citation
|
112 |
If you use this dataset in your research, please cite our paper:
|
113 |
```
|
114 |
+
@misc{xie2023t2ranking,
|
115 |
+
title={T2Ranking: A large-scale Chinese Benchmark for Passage Ranking},
|
116 |
+
author={Xiaohui Xie and Qian Dong and Bingning Wang and Feiyang Lv and Ting Yao and Weinan Gan and Zhijing Wu and Xiangsheng Li and Haitao Li and Yiqun Liu and Jin Ma},
|
117 |
+
year={2023},
|
118 |
+
eprint={2304.03679},
|
119 |
+
archivePrefix={arXiv},
|
120 |
+
primaryClass={cs.IR}
|
121 |
}
|
122 |
```
|
123 |
|