Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
Samoed commited on
Commit
ebb5e89
·
verified ·
1 Parent(s): ffa5e48

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +172 -0
README.md CHANGED
@@ -1,4 +1,14 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  - config_name: corpus
4
  features:
@@ -68,4 +78,166 @@ configs:
68
  path: queries/dev-*
69
  - split: test
70
  path: queries/test-*
 
 
 
71
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - human-annotated
4
+ language:
5
+ - eng
6
+ license: cc-by-nc-sa-4.0
7
+ multilinguality: monolingual
8
+ task_categories:
9
+ - text-retrieval
10
+ task_ids:
11
+ - multiple-choice-qa
12
  dataset_info:
13
  - config_name: corpus
14
  features:
 
78
  path: queries/dev-*
79
  - split: test
80
  path: queries/test-*
81
+ tags:
82
+ - mteb
83
+ - text
84
  ---
85
+ <!-- adapted from https://github.com/huggingface/huggingface_hub/blob/v0.30.2/src/huggingface_hub/templates/datasetcard_template.md -->
86
+
87
+ <div align="center" style="padding: 40px 20px; background-color: white; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); max-width: 600px; margin: 0 auto;">
88
+ <h1 style="font-size: 3.5rem; color: #1a1a1a; margin: 0 0 20px 0; letter-spacing: 2px; font-weight: 700;">MLQuestions</h1>
89
+ <div style="font-size: 1.5rem; color: #4a4a4a; margin-bottom: 5px; font-weight: 300;">An <a href="https://github.com/embeddings-benchmark/mteb" style="color: #2c5282; font-weight: 600; text-decoration: none;" onmouseover="this.style.textDecoration='underline'" onmouseout="this.style.textDecoration='none'">MTEB</a> dataset</div>
90
+ <div style="font-size: 0.9rem; color: #2c5282; margin-top: 10px;">Massive Text Embedding Benchmark</div>
91
+ </div>
92
+
93
+ MLQuestions is a domain adaptation dataset for the machine learning domainIt consists of ML questions along with passages from Wikipedia machine learning pages (https://en.wikipedia.org/wiki/Category:Machine_learning)
94
+
95
+ | | |
96
+ |---------------|---------------------------------------------|
97
+ | Task category | t2t |
98
+ | Domains | Encyclopaedic, Academic, Written |
99
+ | Reference | https://github.com/McGill-NLP/MLQuestions |
100
+
101
+
102
+ ## How to evaluate on this task
103
+
104
+ You can evaluate an embedding model on this dataset using the following code:
105
+
106
+ ```python
107
+ import mteb
108
+
109
+ task = mteb.get_tasks(["MLQuestions"])
110
+ evaluator = mteb.MTEB(task)
111
+
112
+ model = mteb.get_model(YOUR_MODEL)
113
+ evaluator.run(model)
114
+ ```
115
+
116
+ <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
117
+ To learn more about how to run models on `mteb` task check out the [GitHub repitory](https://github.com/embeddings-benchmark/mteb).
118
+
119
+ ## Citation
120
+
121
+ If you use this dataset, please cite the dataset as well as [mteb](https://github.com/embeddings-benchmark/mteb), as this dataset likely includes additional processing as a part of the [MMTEB Contribution](https://github.com/embeddings-benchmark/mteb/tree/main/docs/mmteb).
122
+
123
+ ```bibtex
124
+
125
+ @inproceedings{kulshreshtha-etal-2021-back,
126
+ abstract = {In this work, we introduce back-training, an alternative to self-training for unsupervised domain adaptation (UDA). While self-training generates synthetic training data where natural inputs are aligned with noisy outputs, back-training results in natural outputs aligned with noisy inputs. This significantly reduces the gap between target domain and synthetic data distribution, and reduces model overfitting to source domain. We run UDA experiments on question generation and passage retrieval from the Natural Questions domain to machine learning and biomedical domains. We find that back-training vastly outperforms self-training by a mean improvement of 7.8 BLEU-4 points on generation, and 17.6{\%} top-20 retrieval accuracy across both domains. We further propose consistency filters to remove low-quality synthetic data before training. We also release a new domain-adaptation dataset - MLQuestions containing 35K unaligned questions, 50K unaligned passages, and 3K aligned question-passage pairs.},
127
+ address = {Online and Punta Cana, Dominican Republic},
128
+ author = {Kulshreshtha, Devang and
129
+ Belfer, Robert and
130
+ Serban, Iulian Vlad and
131
+ Reddy, Siva},
132
+ booktitle = {Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing},
133
+ month = nov,
134
+ pages = {7064--7078},
135
+ publisher = {Association for Computational Linguistics},
136
+ title = {Back-Training excels Self-Training at Unsupervised Domain Adaptation of Question Generation and Passage Retrieval},
137
+ url = {https://aclanthology.org/2021.emnlp-main.566},
138
+ year = {2021},
139
+ }
140
+
141
+
142
+ @article{enevoldsen2025mmtebmassivemultilingualtext,
143
+ title={MMTEB: Massive Multilingual Text Embedding Benchmark},
144
+ author={Kenneth Enevoldsen and Isaac Chung and Imene Kerboua and Márton Kardos and Ashwin Mathur and David Stap and Jay Gala and Wissam Siblini and Dominik Krzemiński and Genta Indra Winata and Saba Sturua and Saiteja Utpala and Mathieu Ciancone and Marion Schaeffer and Gabriel Sequeira and Diganta Misra and Shreeya Dhakal and Jonathan Rystrøm and Roman Solomatin and Ömer Çağatan and Akash Kundu and Martin Bernstorff and Shitao Xiao and Akshita Sukhlecha and Bhavish Pahwa and Rafał Poświata and Kranthi Kiran GV and Shawon Ashraf and Daniel Auras and Björn Plüster and Jan Philipp Harries and Loïc Magne and Isabelle Mohr and Mariya Hendriksen and Dawei Zhu and Hippolyte Gisserot-Boukhlef and Tom Aarsen and Jan Kostkan and Konrad Wojtasik and Taemin Lee and Marek Šuppa and Crystina Zhang and Roberta Rocca and Mohammed Hamdy and Andrianos Michail and John Yang and Manuel Faysse and Aleksei Vatolin and Nandan Thakur and Manan Dey and Dipam Vasani and Pranjal Chitale and Simone Tedeschi and Nguyen Tai and Artem Snegirev and Michael Günther and Mengzhou Xia and Weijia Shi and Xing Han Lù and Jordan Clive and Gayatri Krishnakumar and Anna Maksimova and Silvan Wehrli and Maria Tikhonova and Henil Panchal and Aleksandr Abramov and Malte Ostendorff and Zheng Liu and Simon Clematide and Lester James Miranda and Alena Fenogenova and Guangyu Song and Ruqiya Bin Safi and Wen-Ding Li and Alessia Borghini and Federico Cassano and Hongjin Su and Jimmy Lin and Howard Yen and Lasse Hansen and Sara Hooker and Chenghao Xiao and Vaibhav Adlakha and Orion Weller and Siva Reddy and Niklas Muennighoff},
145
+ publisher = {arXiv},
146
+ journal={arXiv preprint arXiv:2502.13595},
147
+ year={2025},
148
+ url={https://arxiv.org/abs/2502.13595},
149
+ doi = {10.48550/arXiv.2502.13595},
150
+ }
151
+
152
+ @article{muennighoff2022mteb,
153
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
154
+ title = {MTEB: Massive Text Embedding Benchmark},
155
+ publisher = {arXiv},
156
+ journal={arXiv preprint arXiv:2210.07316},
157
+ year = {2022}
158
+ url = {https://arxiv.org/abs/2210.07316},
159
+ doi = {10.48550/ARXIV.2210.07316},
160
+ }
161
+ ```
162
+
163
+ # Dataset Statistics
164
+ <details>
165
+ <summary> Dataset Statistics</summary>
166
+
167
+ The following code contains the descriptive statistics from the task. These can also be obtained using:
168
+
169
+ ```python
170
+ import mteb
171
+
172
+ task = mteb.get_task("MLQuestions")
173
+
174
+ desc_stats = task.metadata.descriptive_stats
175
+ ```
176
+
177
+ ```json
178
+ {
179
+ "dev": {
180
+ "num_samples": 12500,
181
+ "number_of_characters": 2915233,
182
+ "num_documents": 11000,
183
+ "min_document_length": 3,
184
+ "average_document_length": 258.8772727272727,
185
+ "max_document_length": 395,
186
+ "unique_documents": 11000,
187
+ "num_queries": 1500,
188
+ "min_query_length": 14,
189
+ "average_query_length": 45.05533333333333,
190
+ "max_query_length": 160,
191
+ "unique_queries": 1500,
192
+ "none_queries": 0,
193
+ "num_relevant_docs": 1500,
194
+ "min_relevant_docs_per_query": 1,
195
+ "average_relevant_docs_per_query": 1.0,
196
+ "max_relevant_docs_per_query": 1,
197
+ "unique_relevant_docs": 1500,
198
+ "num_instructions": null,
199
+ "min_instruction_length": null,
200
+ "average_instruction_length": null,
201
+ "max_instruction_length": null,
202
+ "unique_instructions": null,
203
+ "num_top_ranked": null,
204
+ "min_top_ranked_per_query": null,
205
+ "average_top_ranked_per_query": null,
206
+ "max_top_ranked_per_query": null
207
+ },
208
+ "test": {
209
+ "num_samples": 12500,
210
+ "number_of_characters": 2916280,
211
+ "num_documents": 11000,
212
+ "min_document_length": 3,
213
+ "average_document_length": 258.8772727272727,
214
+ "max_document_length": 395,
215
+ "unique_documents": 11000,
216
+ "num_queries": 1500,
217
+ "min_query_length": 12,
218
+ "average_query_length": 45.75333333333333,
219
+ "max_query_length": 165,
220
+ "unique_queries": 1500,
221
+ "none_queries": 0,
222
+ "num_relevant_docs": 1500,
223
+ "min_relevant_docs_per_query": 1,
224
+ "average_relevant_docs_per_query": 1.0,
225
+ "max_relevant_docs_per_query": 1,
226
+ "unique_relevant_docs": 1499,
227
+ "num_instructions": null,
228
+ "min_instruction_length": null,
229
+ "average_instruction_length": null,
230
+ "max_instruction_length": null,
231
+ "unique_instructions": null,
232
+ "num_top_ranked": null,
233
+ "min_top_ranked_per_query": null,
234
+ "average_top_ranked_per_query": null,
235
+ "max_top_ranked_per_query": null
236
+ }
237
+ }
238
+ ```
239
+
240
+ </details>
241
+
242
+ ---
243
+ *This dataset card was automatically generated using [MTEB](https://github.com/embeddings-benchmark/mteb)*