nthakur commited on
Commit
10563f1
·
verified ·
1 Parent(s): a34cc72

Align README with approved BEIR template

Browse files

Use exact shared README template; rename 'NFCorpus Data Splits' to dataset-specific '<X> Data Splits'.

Files changed (1) hide show
  1. README.md +92 -190
README.md CHANGED
@@ -1,44 +1,12 @@
1
  ---
2
- annotations_creators: []
3
- language_creators: []
4
  language:
5
  - en
6
  license:
7
  - cc-by-sa-4.0
8
  multilinguality:
9
  - monolingual
10
- size_categories:
11
- msmarco:
12
- - 1M<n<10M
13
- trec-covid:
14
- - 100k<n<1M
15
- nfcorpus:
16
- - 1K<n<10K
17
- nq:
18
- - 1M<n<10M
19
- hotpotqa:
20
- - 1M<n<10M
21
- fiqa:
22
- - 10K<n<100K
23
- arguana:
24
- - 1K<n<10K
25
- touche-2020:
26
- - 100K<n<1M
27
- cqadupstack:
28
- - 100K<n<1M
29
- quora:
30
- - 100K<n<1M
31
- dbpedia:
32
- - 1M<n<10M
33
- scidocs:
34
- - 10K<n<100K
35
- fever:
36
- - 1M<n<10M
37
- climate-fever:
38
- - 1M<n<10M
39
- scifact:
40
- - 1K<n<10K
41
- source_datasets: []
42
  task_categories:
43
  - zero-shot-classification
44
  - text-retrieval
@@ -46,8 +14,6 @@ task_ids:
46
  - document-retrieval
47
  - entity-linking-retrieval
48
  - fact-checking-retrieval
49
- paperswithcode_id: beir
50
- pretty_name: BEIR Benchmark
51
  tags:
52
  - biomedical-information-retrieval
53
  - citation-prediction-retrieval
@@ -59,45 +25,59 @@ tags:
59
  - question-answering-retrieval
60
  - duplication-question-retrieval
61
  - zero-shot-retrieval
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  ---
63
 
64
  # Dataset Card for BEIR Benchmark
65
 
66
- ## Table of Contents
67
- - [Dataset Description](#dataset-description)
68
- - [Dataset Summary](#dataset-summary)
69
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
70
- - [Languages](#languages)
71
- - [Dataset Structure](#dataset-structure)
72
- - [Data Instances](#data-instances)
73
- - [Data Fields](#data-fields)
74
- - [Data Splits](#data-splits)
75
- - [Dataset Creation](#dataset-creation)
76
- - [Curation Rationale](#curation-rationale)
77
- - [Source Data](#source-data)
78
- - [Annotations](#annotations)
79
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
80
- - [Considerations for Using the Data](#considerations-for-using-the-data)
81
- - [Social Impact of Dataset](#social-impact-of-dataset)
82
- - [Discussion of Biases](#discussion-of-biases)
83
- - [Other Known Limitations](#other-known-limitations)
84
- - [Additional Information](#additional-information)
85
- - [Dataset Curators](#dataset-curators)
86
- - [Licensing Information](#licensing-information)
87
- - [Citation Information](#citation-information)
88
- - [Contributions](#contributions)
89
-
90
  ## Dataset Description
91
 
92
- - **Homepage:** https://github.com/UKPLab/beir
93
- - **Repository:** https://github.com/UKPLab/beir
94
  - **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
95
  - **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
96
  - **Point of Contact:** nandan.thakur@uwaterloo.ca
97
 
98
  ### Dataset Summary
99
 
100
- BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets representing 9 information retrieval tasks:
101
 
102
  - Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
103
  - Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
@@ -109,18 +89,7 @@ BEIR is a heterogeneous benchmark that has been built from 18 diverse datasets r
109
  - Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
110
  - Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
111
 
112
- All these datasets have been preprocessed and can be used for your experiments.
113
-
114
-
115
- ```python
116
-
117
- ```
118
-
119
- ### Supported Tasks and Leaderboards
120
-
121
- The dataset supports a leaderboard that evaluates models against task-specific metrics such as F1 or EM, as well as their ability to retrieve supporting information from Wikipedia.
122
-
123
- The current best performing models can be found [here](https://eval.ai/web/challenges/challenge-page/689/leaderboard/).
124
 
125
  ### Languages
126
 
@@ -128,19 +97,25 @@ All tasks are in English (`en`).
128
 
129
  ## Dataset Structure
130
 
131
- All BEIR datasets must contain a corpus, queries and qrels (relevance judgments file). They must be in the following format:
132
- - `corpus` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with three fields `_id` with unique document identifier, `title` with document title (optional) and `text` with document paragraph or passage. For example: `{"_id": "doc1", "title": "Albert Einstein", "text": "Albert Einstein was a German-born...."}`
133
- - `queries` file: a `.jsonl` file (jsonlines) that contains a list of dictionaries, each with two fields `_id` with unique query identifier and `text` with query text. For example: `{"_id": "q1", "text": "Who developed the mass-energy equivalence formula?"}`
134
- - `qrels` file: a `.tsv` file (tab-seperated) that contains three columns, i.e. the `query-id`, `corpus-id` and `score` in this order. Keep 1st row as header. For example: `q1 doc1 1`
 
 
 
 
 
 
135
 
136
  ### Data Instances
137
 
138
- A high level example of any beir dataset:
139
 
140
  ```python
141
  corpus = {
142
  "doc1" : {
143
- "title": "Albert Einstein",
144
  "text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
145
  one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
146
  its influence on the philosophy of science. He is best known to the general public for his mass–energy \
@@ -167,111 +142,42 @@ qrels = {
167
  }
168
  ```
169
 
170
- ### Data Fields
171
-
172
- Examples from all configurations have the following features:
173
-
174
- ### Corpus
175
- - `corpus`: a `dict` feature representing the document title and passage text, made up of:
176
- - `_id`: a `string` feature representing the unique document id
177
- - `title`: a `string` feature, denoting the title of the document.
178
- - `text`: a `string` feature, denoting the text of the document.
179
-
180
- ### Queries
181
- - `queries`: a `dict` feature representing the query, made up of:
182
- - `_id`: a `string` feature representing the unique query id
183
- - `text`: a `string` feature, denoting the text of the query.
184
-
185
- ### Qrels
186
- - `qrels`: a `dict` feature representing the query document relevance judgements, made up of:
187
- - `_id`: a `string` feature representing the query id
188
- - `_id`: a `string` feature, denoting the document id.
189
- - `score`: a `int32` feature, denoting the relevance judgement between query and document.
190
-
191
-
192
- ### Data Splits
193
-
194
- | Dataset | Website| BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
195
- | -------- | -----| ---------| --------- | ----------- | ---------| ---------| :----------: | :------:|
196
- | MSMARCO | [Homepage](https://microsoft.github.io/msmarco/)| ``msmarco`` | ``train``<br>``dev``<br>``test``| 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | ``444067daf65d982533ea17ebd59501e4`` |
197
- | TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html)| ``trec-covid``| ``test``| 50| 171K| 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | ``ce62140cb23feb9becf6270d0d1fe6d1`` |
198
- | NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | ``nfcorpus`` | ``train``<br>``dev``<br>``test``| 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | ``a89dba18a62ef92f7d323ec890a0d38d`` |
199
- | BioASQ | [Homepage](http://bioasq.org) | ``bioasq``| ``train``<br>``test`` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
200
- | NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | ``nq``| ``train``<br>``test``| 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | ``d4d3d2e48787a744b6f6e691ff534307`` |
201
- | HotpotQA | [Homepage](https://hotpotqa.github.io) | ``hotpotqa``| ``train``<br>``dev``<br>``test``| 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | ``f412724f78b0d91183a0e86805e16114`` |
202
- | FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | ``fiqa`` | ``train``<br>``dev``<br>``test``| 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | ``17918ed23cd04fb15047f73e6c3bd9d9`` |
203
- | Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html)| ``signal1m`` | ``test``| 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
204
- | TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | ``trec-news`` | ``test``| 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
205
- | ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | ``arguana``| ``test`` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | ``8ad3e3c2a5867cdced806d6503f29b99`` |
206
- | Touche-2020| [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | ``webis-touche2020``| ``test``| 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | ``46f650ba5a527fc69e0a6521c5a23563`` |
207
- | CQADupstack| [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | ``cqadupstack``| ``test``| 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | ``4e41456d7df8ee7760a7f866133bda78`` |
208
- | Quora| [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | ``quora``| ``dev``<br>``test``| 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | ``18fb154900ba42a600f84b839c173167`` |
209
- | DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | ``dbpedia-entity``| ``dev``<br>``test``| 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | ``c2a39eb420a3164af735795df012ac2c`` |
210
- | SCIDOCS| [Homepage](https://allenai.org/data/scidocs) | ``scidocs``| ``test``| 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | ``38121350fc3a4d2f48850f6aff52e4a9`` |
211
- | FEVER | [Homepage](http://fever.ai) | ``fever``| ``train``<br>``dev``<br>``test``| 6,666 | 5.42M | 1.2| [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | ``5a818580227bfb4b35bb6fa46d9b6c03`` |
212
- | Climate-FEVER| [Homepage](http://climatefever.ai) | ``climate-fever``|``test``| 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | ``8b66f0a9126c521bae2bde127b4dc99d`` |
213
- | SciFact| [Homepage](https://github.com/allenai/scifact) | ``scifact``| ``train``<br>``test``| 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | ``5f7d1de60b170fc8027bb7898e2efca1`` |
214
- | Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | ``robust04``| ``test``| 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
215
-
216
-
217
- ## Dataset Creation
218
-
219
- ### Curation Rationale
220
-
221
- [Needs More Information]
222
-
223
- ### Source Data
224
-
225
- #### Initial Data Collection and Normalization
226
-
227
- [Needs More Information]
228
-
229
- #### Who are the source language producers?
230
-
231
- [Needs More Information]
232
-
233
- ### Annotations
234
-
235
- #### Annotation process
236
-
237
- [Needs More Information]
238
-
239
- #### Who are the annotators?
240
-
241
- [Needs More Information]
242
-
243
- ### Personal and Sensitive Information
244
-
245
- [Needs More Information]
246
-
247
- ## Considerations for Using the Data
248
-
249
- ### Social Impact of Dataset
250
-
251
- [Needs More Information]
252
-
253
- ### Discussion of Biases
254
-
255
- [Needs More Information]
256
-
257
- ### Other Known Limitations
258
-
259
- [Needs More Information]
260
-
261
- ## Additional Information
262
-
263
- ### Dataset Curators
264
-
265
- [Needs More Information]
266
-
267
- ### Licensing Information
268
-
269
- [Needs More Information]
270
-
271
- ### Citation Information
272
-
273
- Cite as:
274
- ```
275
  @inproceedings{
276
  thakur2021beir,
277
  title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
@@ -281,7 +187,3 @@ year={2021},
281
  url={https://openreview.net/forum?id=wCu6T5xFjeJ}
282
  }
283
  ```
284
-
285
- ### Contributions
286
-
287
- Thanks to [@Nthakur20](https://github.com/Nthakur20) for adding this dataset.
 
1
  ---
 
 
2
  language:
3
  - en
4
  license:
5
  - cc-by-sa-4.0
6
  multilinguality:
7
  - monolingual
8
+ paperswithcode_id: beir
9
+ pretty_name: BEIR Benchmark
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  task_categories:
11
  - zero-shot-classification
12
  - text-retrieval
 
14
  - document-retrieval
15
  - entity-linking-retrieval
16
  - fact-checking-retrieval
 
 
17
  tags:
18
  - biomedical-information-retrieval
19
  - citation-prediction-retrieval
 
25
  - question-answering-retrieval
26
  - duplication-question-retrieval
27
  - zero-shot-retrieval
28
+ configs:
29
+ - config_name: corpus
30
+ data_files:
31
+ - split: corpus
32
+ path: corpus/corpus-*
33
+ - config_name: queries
34
+ data_files:
35
+ - split: queries
36
+ path: queries/queries-*
37
+ dataset_info:
38
+ - config_name: corpus
39
+ features:
40
+ - name: _id
41
+ dtype: string
42
+ - name: title
43
+ dtype: string
44
+ - name: text
45
+ dtype: string
46
+ splits:
47
+ - name: corpus
48
+ num_bytes: 1632573546
49
+ num_examples: 8841823
50
+ download_size: 1632573546
51
+ dataset_size: 1632573546
52
+ - config_name: queries
53
+ features:
54
+ - name: _id
55
+ dtype: string
56
+ - name: title
57
+ dtype: string
58
+ - name: text
59
+ dtype: string
60
+ splits:
61
+ - name: queries
62
+ num_bytes: 15437162
63
+ num_examples: 509962
64
+ download_size: 15437162
65
+ dataset_size: 15437162
66
  ---
67
 
68
  # Dataset Card for BEIR Benchmark
69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  ## Dataset Description
71
 
72
+ - **Homepage:** https://beir.ai
73
+ - **Repository:** https://beir.ai
74
  - **Paper:** https://openreview.net/forum?id=wCu6T5xFjeJ
75
  - **Leaderboard:** https://docs.google.com/spreadsheets/d/1L8aACyPaXrL8iEelJLGqlMqXKPX2oSP_R10pZoy77Ns
76
  - **Point of Contact:** nandan.thakur@uwaterloo.ca
77
 
78
  ### Dataset Summary
79
 
80
+ BEIR is a heterogeneous benchmark built from 18 diverse datasets representing 9 information retrieval tasks.
81
 
82
  - Fact-checking: [FEVER](http://fever.ai), [Climate-FEVER](http://climatefever.ai), [SciFact](https://github.com/allenai/scifact)
83
  - Question-Answering: [NQ](https://ai.google.com/research/NaturalQuestions), [HotpotQA](https://hotpotqa.github.io), [FiQA-2018](https://sites.google.com/view/fiqa/)
 
89
  - Tweet Retrieval: [Signal-1M](https://research.signal-ai.com/datasets/signal1m-tweetir.html)
90
  - Entity Retrieval: [DBPedia](https://github.com/iai-group/DBpedia-Entity/)
91
 
92
+ > **This `msmarco` subset is the Argument Retrieval task within BEIR.**
 
 
 
 
 
 
 
 
 
 
 
93
 
94
  ### Languages
95
 
 
97
 
98
  ## Dataset Structure
99
 
100
+ This dataset uses the standard BEIR retrieval layout and includes:
101
+
102
+ - `corpus`: one row per document with `_id`, `title`, `text`
103
+ - `queries`: one row per query with `_id`, `title`, `text`
104
+
105
+ ### Data Fields
106
+
107
+ - `_id` (`string`): unique identifier
108
+ - `title` (`string`): title (empty string when unavailable)
109
+ - `text` (`string`): document/query text
110
 
111
  ### Data Instances
112
 
113
+ A high level example of any BEIR dataset:
114
 
115
  ```python
116
  corpus = {
117
  "doc1" : {
118
+ "title": "Albert Einstein",
119
  "text": "Albert Einstein was a German-born theoretical physicist. who developed the theory of relativity, \
120
  one of the two pillars of modern physics (alongside quantum mechanics). His work is also known for \
121
  its influence on the philosophy of science. He is best known to the general public for his mass–energy \
 
142
  }
143
  ```
144
 
145
+ ### Msmarco Data Splits
146
+
147
+ | Subset | Split | Rows |
148
+ | --- | --- | ---: |
149
+ | corpus | corpus | 8,841,823 |
150
+ | queries | queries | 509,962 |
151
+
152
+ ### BEIR Direct Download
153
+
154
+ You can also download BEIR datasets directly (without loading through Hugging Face datasets) using the links below.
155
+
156
+ | Dataset | Website | BEIR-Name | Type | Queries | Corpus | Rel D/Q | Down-load | md5 |
157
+ | --- | --- | --- | --- | ---: | ---: | ---: | --- | --- |
158
+ | MSMARCO | [Homepage](https://microsoft.github.io/msmarco/) | `msmarco` | `train` `dev` `test` | 6,980 | 8.84M | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/msmarco.zip) | `444067daf65d982533ea17ebd59501e4` |
159
+ | TREC-COVID | [Homepage](https://ir.nist.gov/covidSubmit/index.html) | `trec-covid` | `test` | 50 | 171K | 493.5 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/trec-covid.zip) | `ce62140cb23feb9becf6270d0d1fe6d1` |
160
+ | NFCorpus | [Homepage](https://www.cl.uni-heidelberg.de/statnlpgroup/nfcorpus/) | `nfcorpus` | `train` `dev` `test` | 323 | 3.6K | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nfcorpus.zip) | `a89dba18a62ef92f7d323ec890a0d38d` |
161
+ | BioASQ | [Homepage](http://bioasq.org) | `bioasq` | `train` `test` | 500 | 14.91M | 8.05 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#2-bioasq) |
162
+ | NQ | [Homepage](https://ai.google.com/research/NaturalQuestions) | `nq` | `train` `test` | 3,452 | 2.68M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/nq.zip) | `d4d3d2e48787a744b6f6e691ff534307` |
163
+ | HotpotQA | [Homepage](https://hotpotqa.github.io) | `hotpotqa` | `train` `dev` `test` | 7,405 | 5.23M | 2.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/hotpotqa.zip) | `f412724f78b0d91183a0e86805e16114` |
164
+ | FiQA-2018 | [Homepage](https://sites.google.com/view/fiqa/) | `fiqa` | `train` `dev` `test` | 648 | 57K | 2.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fiqa.zip) | `17918ed23cd04fb15047f73e6c3bd9d9` |
165
+ | Signal-1M(RT) | [Homepage](https://research.signal-ai.com/datasets/signal1m-tweetir.html) | `signal1m` | `test` | 97 | 2.86M | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#4-signal-1m) |
166
+ | TREC-NEWS | [Homepage](https://trec.nist.gov/data/news2019.html) | `trec-news` | `test` | 57 | 595K | 19.6 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#1-trec-news) |
167
+ | ArguAna | [Homepage](http://argumentation.bplaced.net/arguana/data) | `arguana` | `test` | 1,406 | 8.67K | 1.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/arguana.zip) | `8ad3e3c2a5867cdced806d6503f29b99` |
168
+ | Touche-2020 | [Homepage](https://webis.de/events/touche-20/shared-task-1.html) | `webis-touche2020` | `test` | 49 | 382K | 19.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/webis-touche2020.zip) | `46f650ba5a527fc69e0a6521c5a23563` |
169
+ | CQADupstack | [Homepage](http://nlp.cis.unimelb.edu.au/resources/cqadupstack/) | `cqadupstack` | `test` | 13,145 | 457K | 1.4 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/cqadupstack.zip) | `4e41456d7df8ee7760a7f866133bda78` |
170
+ | Quora | [Homepage](https://www.quora.com/q/quoradata/First-Quora-Dataset-Release-Question-Pairs) | `quora` | `dev` `test` | 10,000 | 523K | 1.6 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/quora.zip) | `18fb154900ba42a600f84b839c173167` |
171
+ | DBPedia | [Homepage](https://github.com/iai-group/DBpedia-Entity/) | `dbpedia-entity` | `dev` `test` | 400 | 4.63M | 38.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/dbpedia-entity.zip) | `c2a39eb420a3164af735795df012ac2c` |
172
+ | SCIDOCS | [Homepage](https://allenai.org/data/scidocs) | `scidocs` | `test` | 1,000 | 25K | 4.9 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scidocs.zip) | `38121350fc3a4d2f48850f6aff52e4a9` |
173
+ | FEVER | [Homepage](http://fever.ai) | `fever` | `train` `dev` `test` | 6,666 | 5.42M | 1.2 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/fever.zip) | `5a818580227bfb4b35bb6fa46d9b6c03` |
174
+ | Climate-FEVER | [Homepage](http://climatefever.ai) | `climate-fever` | `test` | 1,535 | 5.42M | 3.0 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/climate-fever.zip) | `8b66f0a9126c521bae2bde127b4dc99d` |
175
+ | SciFact | [Homepage](https://github.com/allenai/scifact) | `scifact` | `train` `test` | 300 | 5K | 1.1 | [Link](https://public.ukp.informatik.tu-darmstadt.de/thakur/BEIR/datasets/scifact.zip) | `5f7d1de60b170fc8027bb7898e2efca1` |
176
+ | Robust04 | [Homepage](https://trec.nist.gov/data/robust/04.guidelines.html) | `robust04` | `test` | 249 | 528K | 69.9 | No | [How to Reproduce?](https://github.com/UKPLab/beir/blob/main/examples/dataset#3-robust04) |
177
+
178
+ ## Citation Information
179
+
180
+ ```bibtex
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  @inproceedings{
182
  thakur2021beir,
183
  title={{BEIR}: A Heterogeneous Benchmark for Zero-shot Evaluation of Information Retrieval Models},
 
187
  url={https://openreview.net/forum?id=wCu6T5xFjeJ}
188
  }
189
  ```