Datasets:
Tasks:
Text Retrieval
Modalities:
Tabular
Formats:
csv
Sub-tasks:
document-retrieval
Size:
1M - 10M
ArXiv:
License:
Sebastian Hofstätter
commited on
Commit
·
bd2f5ed
1
Parent(s):
9ba7005
add links
Browse files
README.md
CHANGED
@@ -1,8 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# TripClick Baselines with Improved Training Data
|
2 |
|
3 |
*Establishing Strong Baselines for TripClick Health Retrieval* Sebastian Hofstätter, Sophia Althammer, Mete Sertkan and Allan Hanbury
|
4 |
|
5 |
-
https://arxiv.org/abs/
|
6 |
|
7 |
**tl;dr** We create strong re-ranking and dense retrieval baselines (BERT<sub>CAT</sub>, BERT<sub>DOT</sub>, ColBERT, and TK) for TripClick (health ad-hoc retrieval). We improve the – originally too noisy – training data with a simple negative sampling policy. We achieve large gains over BM25 in the re-ranking and retrieval setting on TripClick, which were not achieved with the original baselines. We publish the improved training files for everyone to use.
|
8 |
|
@@ -10,11 +32,22 @@ If you have any questions, suggestions, or want to collaborate please don't hesi
|
|
10 |
|
11 |
**Please cite our work as:**
|
12 |
````
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
````
|
15 |
|
16 |
## Published Training Files
|
17 |
|
18 |
-
We publish the improved training files without the text content instead using the ids from TripClick (with permission from the TripClick owners); for the text content please get the full TripClick dataset from [the TripClick Github page](https://github.com/
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- other
|
4 |
+
- clicks
|
5 |
+
language_creators:
|
6 |
+
- other
|
7 |
+
languages:
|
8 |
+
- en-US
|
9 |
+
licenses:
|
10 |
+
- apache-2.0
|
11 |
+
multilinguality:
|
12 |
+
- monolingual
|
13 |
+
pretty_name: tripclick-training
|
14 |
+
size_categories:
|
15 |
+
- unknown
|
16 |
+
source_datasets: [tripclick]
|
17 |
+
task_categories:
|
18 |
+
- text-retrieval
|
19 |
+
task_ids:
|
20 |
+
- document-retrieval
|
21 |
+
---
|
22 |
+
|
23 |
# TripClick Baselines with Improved Training Data
|
24 |
|
25 |
*Establishing Strong Baselines for TripClick Health Retrieval* Sebastian Hofstätter, Sophia Althammer, Mete Sertkan and Allan Hanbury
|
26 |
|
27 |
+
https://arxiv.org/abs/2201.00365
|
28 |
|
29 |
**tl;dr** We create strong re-ranking and dense retrieval baselines (BERT<sub>CAT</sub>, BERT<sub>DOT</sub>, ColBERT, and TK) for TripClick (health ad-hoc retrieval). We improve the – originally too noisy – training data with a simple negative sampling policy. We achieve large gains over BM25 in the re-ranking and retrieval setting on TripClick, which were not achieved with the original baselines. We publish the improved training files for everyone to use.
|
30 |
|
|
|
32 |
|
33 |
**Please cite our work as:**
|
34 |
````
|
35 |
+
@misc{hofstaetter2022tripclick,
|
36 |
+
title={Establishing Strong Baselines for TripClick Health Retrieval},
|
37 |
+
author={Sebastian Hofst{\"a}tter and Sophia Althammer and Mete Sertkan and Allan Hanbury},
|
38 |
+
year={2022},
|
39 |
+
eprint={2201.00365},
|
40 |
+
archivePrefix={arXiv},
|
41 |
+
primaryClass={cs.IR}
|
42 |
+
}
|
43 |
````
|
44 |
|
45 |
## Published Training Files
|
46 |
|
47 |
+
We publish the improved training files without the text content instead using the ids from TripClick (with permission from the TripClick owners); for the text content please get the full TripClick dataset from [the TripClick Github page](https://github.com/tripdatabase/tripclick).
|
48 |
+
|
49 |
+
Our training file **improved_tripclick_train_triple-ids.tsv** has the format ``query_id pos_passage_id neg_passage_id`` (with tab separation).
|
50 |
+
|
51 |
+
----
|
52 |
|
53 |
+
For more information on how to use the training files see: https://github.com/sebastian-hofstaetter/tripclick
|