Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
License:
Samoed commited on
Commit
8f64452
·
verified ·
1 Parent(s): c8ac596

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +39 -30
README.md CHANGED
@@ -5,6 +5,8 @@ language:
5
  - eng
6
  license: mit
7
  multilinguality: monolingual
 
 
8
  task_categories:
9
  - text-ranking
10
  task_ids: []
@@ -116,6 +118,9 @@ Measuring retrieval instruction following ability on Core17 narratives for the F
116
  | Domains | News, Written |
117
  | Reference | https://arxiv.org/abs/2403.15246 |
118
 
 
 
 
119
 
120
  ## How to evaluate on this task
121
 
@@ -124,15 +129,15 @@ You can evaluate an embedding model on this dataset using the following code:
124
  ```python
125
  import mteb
126
 
127
- task = mteb.get_tasks(["Core17InstructionRetrieval"])
128
- evaluator = mteb.MTEB(task)
129
 
130
  model = mteb.get_model(YOUR_MODEL)
131
  evaluator.run(model)
132
  ```
133
 
134
  <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
135
- To learn more about how to run models on `mteb` task check out the [GitHub repitory](https://github.com/embeddings-benchmark/mteb).
136
 
137
  ## Citation
138
 
@@ -161,7 +166,7 @@ If you use this dataset, please cite the dataset as well as [mteb](https://githu
161
  }
162
 
163
  @article{muennighoff2022mteb,
164
- author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
165
  title = {MTEB: Massive Text Embedding Benchmark},
166
  publisher = {arXiv},
167
  journal={arXiv preprint arXiv:2210.07316},
@@ -189,32 +194,36 @@ desc_stats = task.metadata.descriptive_stats
189
  {
190
  "test": {
191
  "num_samples": 19939,
192
- "number_of_characters": 44459412,
193
- "num_documents": 19899,
194
- "min_document_length": 8,
195
- "average_document_length": 2234.0329664807277,
196
- "max_document_length": 2960,
197
- "unique_documents": 19899,
198
- "num_queries": 40,
199
- "min_query_length": 55,
200
- "average_query_length": 109.75,
201
- "max_query_length": 278,
202
- "unique_queries": 40,
203
- "none_queries": 0,
204
- "num_relevant_docs": 9480,
205
- "min_relevant_docs_per_query": 135,
206
- "average_relevant_docs_per_query": 43.6,
207
- "max_relevant_docs_per_query": 379,
208
- "unique_relevant_docs": 4739,
209
- "num_instructions": 40,
210
- "min_instruction_length": 102,
211
- "average_instruction_length": 13015,
212
- "max_instruction_length": 837,
213
- "unique_instructions": 40,
214
- "num_top_ranked": null,
215
- "min_top_ranked_per_query": null,
216
- "average_top_ranked_per_query": null,
217
- "max_top_ranked_per_query": null
 
 
 
 
218
  }
219
  }
220
  ```
 
5
  - eng
6
  license: mit
7
  multilinguality: monolingual
8
+ source_datasets:
9
+ - jhu-clsp/core17-instructions-mteb
10
  task_categories:
11
  - text-ranking
12
  task_ids: []
 
118
  | Domains | News, Written |
119
  | Reference | https://arxiv.org/abs/2403.15246 |
120
 
121
+ Source datasets:
122
+ - [jhu-clsp/core17-instructions-mteb](https://huggingface.co/datasets/jhu-clsp/core17-instructions-mteb)
123
+
124
 
125
  ## How to evaluate on this task
126
 
 
129
  ```python
130
  import mteb
131
 
132
+ task = mteb.get_task("Core17InstructionRetrieval")
133
+ evaluator = mteb.MTEB([task])
134
 
135
  model = mteb.get_model(YOUR_MODEL)
136
  evaluator.run(model)
137
  ```
138
 
139
  <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
140
+ To learn more about how to run models on `mteb` task check out the [GitHub repository](https://github.com/embeddings-benchmark/mteb).
141
 
142
  ## Citation
143
 
 
166
  }
167
 
168
  @article{muennighoff2022mteb,
169
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Loïc and Reimers, Nils},
170
  title = {MTEB: Massive Text Embedding Benchmark},
171
  publisher = {arXiv},
172
  journal={arXiv preprint arXiv:2210.07316},
 
194
  {
195
  "test": {
196
  "num_samples": 19939,
197
+ "number_of_characters": 44471883,
198
+ "documents_text_statistics": {
199
+ "total_text_length": 44454438,
200
+ "min_text_length": 7,
201
+ "average_text_length": 2234.003618272275,
202
+ "max_text_length": 2960,
203
+ "unique_texts": 19143
204
+ },
205
+ "documents_image_statistics": null,
206
+ "queries_text_statistics": {
207
+ "total_text_length": 17445,
208
+ "min_text_length": 198,
209
+ "average_text_length": 436.125,
210
+ "max_text_length": 1000,
211
+ "unique_texts": 40
212
+ },
213
+ "queries_image_statistics": null,
214
+ "relevant_docs_statistics": {
215
+ "num_relevant_docs": 1744,
216
+ "min_relevant_docs_per_query": 135,
217
+ "average_relevant_docs_per_query": 43.6,
218
+ "max_relevant_docs_per_query": 379,
219
+ "unique_relevant_docs": 4739
220
+ },
221
+ "top_ranked_statistics": {
222
+ "num_top_ranked": 40000,
223
+ "min_top_ranked_per_query": 1000,
224
+ "average_top_ranked_per_query": 1000.0,
225
+ "max_top_ranked_per_query": 1000
226
+ }
227
  }
228
  }
229
  ```