Add dataset card
Browse files
README.md
CHANGED
@@ -1,4 +1,17 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
- config_name: corpus
|
4 |
features:
|
@@ -53,4 +66,141 @@ configs:
|
|
53 |
data_files:
|
54 |
- split: train
|
55 |
path: queries/train-*
|
|
|
|
|
|
|
56 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
annotations_creators:
|
3 |
+
- expert-annotated
|
4 |
+
language:
|
5 |
+
- eng
|
6 |
+
license: cc-by-4.0
|
7 |
+
multilinguality: monolingual
|
8 |
+
source_datasets:
|
9 |
+
- mteb/fever
|
10 |
+
task_categories:
|
11 |
+
- text-retrieval
|
12 |
+
task_ids:
|
13 |
+
- fact-checking
|
14 |
+
- fact-checking-retrieval
|
15 |
dataset_info:
|
16 |
- config_name: corpus
|
17 |
features:
|
|
|
66 |
data_files:
|
67 |
- split: train
|
68 |
path: queries/train-*
|
69 |
+
tags:
|
70 |
+
- mteb
|
71 |
+
- text
|
72 |
---
|
73 |
+
<!-- adapted from https://github.com/huggingface/huggingface_hub/blob/v0.30.2/src/huggingface_hub/templates/datasetcard_template.md -->
|
74 |
+
|
75 |
+
<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;">
|
76 |
+
<h1 style="font-size: 3.5rem; color: #1a1a1a; margin: 0 0 20px 0; letter-spacing: 2px; font-weight: 700;">NanoFEVERRetrieval</h1>
|
77 |
+
<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>
|
78 |
+
<div style="font-size: 0.9rem; color: #2c5282; margin-top: 10px;">Massive Text Embedding Benchmark</div>
|
79 |
+
</div>
|
80 |
+
|
81 |
+
NanoFEVER is a smaller version of FEVER (Fact Extraction and VERification), which consists of 185,445 claims generated by altering sentences extracted from Wikipedia and subsequently verified without knowledge of the sentence they were derived from.
|
82 |
+
|
83 |
+
| | |
|
84 |
+
|---------------|---------------------------------------------|
|
85 |
+
| Task category | t2t |
|
86 |
+
| Domains | Academic, Encyclopaedic |
|
87 |
+
| Reference | https://fever.ai/ |
|
88 |
+
|
89 |
+
|
90 |
+
## How to evaluate on this task
|
91 |
+
|
92 |
+
You can evaluate an embedding model on this dataset using the following code:
|
93 |
+
|
94 |
+
```python
|
95 |
+
import mteb
|
96 |
+
|
97 |
+
task = mteb.get_tasks(["NanoFEVERRetrieval"])
|
98 |
+
evaluator = mteb.MTEB(task)
|
99 |
+
|
100 |
+
model = mteb.get_model(YOUR_MODEL)
|
101 |
+
evaluator.run(model)
|
102 |
+
```
|
103 |
+
|
104 |
+
<!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
|
105 |
+
To learn more about how to run models on `mteb` task check out the [GitHub repitory](https://github.com/embeddings-benchmark/mteb).
|
106 |
+
|
107 |
+
## Citation
|
108 |
+
|
109 |
+
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).
|
110 |
+
|
111 |
+
```bibtex
|
112 |
+
|
113 |
+
@inproceedings{thorne-etal-2018-fever,
|
114 |
+
abstract = {In this paper we introduce a new publicly available dataset for verification against textual sources, FEVER: Fact Extraction and VERification. It consists of 185,445 claims generated by altering sentences extracted from Wikipedia and subsequently verified without knowledge of the sentence they were derived from. The claims are classified as Supported, Refuted or NotEnoughInfo by annotators achieving 0.6841 in Fleiss kappa. For the first two classes, the annotators also recorded the sentence(s) forming the necessary evidence for their judgment. To characterize the challenge of the dataset presented, we develop a pipeline approach and compare it to suitably designed oracles. The best accuracy we achieve on labeling a claim accompanied by the correct evidence is 31.87{\%}, while if we ignore the evidence we achieve 50.91{\%}. Thus we believe that FEVER is a challenging testbed that will help stimulate progress on claim verification against textual sources.},
|
115 |
+
address = {New Orleans, Louisiana},
|
116 |
+
author = {Thorne, James and
|
117 |
+
Vlachos, Andreas and
|
118 |
+
Christodoulopoulos, Christos and
|
119 |
+
Mittal, Arpit},
|
120 |
+
booktitle = {Proceedings of the 2018 Conference of the North {A}merican Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers)},
|
121 |
+
doi = {10.18653/v1/N18-1074},
|
122 |
+
editor = {Walker, Marilyn and
|
123 |
+
Ji, Heng and
|
124 |
+
Stent, Amanda},
|
125 |
+
month = jun,
|
126 |
+
pages = {809--819},
|
127 |
+
publisher = {Association for Computational Linguistics},
|
128 |
+
title = {{FEVER}: a Large-scale Dataset for Fact Extraction and {VER}ification},
|
129 |
+
url = {https://aclanthology.org/N18-1074},
|
130 |
+
year = {2018},
|
131 |
+
}
|
132 |
+
|
133 |
+
|
134 |
+
@article{enevoldsen2025mmtebmassivemultilingualtext,
|
135 |
+
title={MMTEB: Massive Multilingual Text Embedding Benchmark},
|
136 |
+
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},
|
137 |
+
publisher = {arXiv},
|
138 |
+
journal={arXiv preprint arXiv:2502.13595},
|
139 |
+
year={2025},
|
140 |
+
url={https://arxiv.org/abs/2502.13595},
|
141 |
+
doi = {10.48550/arXiv.2502.13595},
|
142 |
+
}
|
143 |
+
|
144 |
+
@article{muennighoff2022mteb,
|
145 |
+
author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
|
146 |
+
title = {MTEB: Massive Text Embedding Benchmark},
|
147 |
+
publisher = {arXiv},
|
148 |
+
journal={arXiv preprint arXiv:2210.07316},
|
149 |
+
year = {2022}
|
150 |
+
url = {https://arxiv.org/abs/2210.07316},
|
151 |
+
doi = {10.48550/ARXIV.2210.07316},
|
152 |
+
}
|
153 |
+
```
|
154 |
+
|
155 |
+
# Dataset Statistics
|
156 |
+
<details>
|
157 |
+
<summary> Dataset Statistics</summary>
|
158 |
+
|
159 |
+
The following code contains the descriptive statistics from the task. These can also be obtained using:
|
160 |
+
|
161 |
+
```python
|
162 |
+
import mteb
|
163 |
+
|
164 |
+
task = mteb.get_task("NanoFEVERRetrieval")
|
165 |
+
|
166 |
+
desc_stats = task.metadata.descriptive_stats
|
167 |
+
```
|
168 |
+
|
169 |
+
```json
|
170 |
+
{
|
171 |
+
"train": {
|
172 |
+
"num_samples": 5046,
|
173 |
+
"number_of_characters": 6140916,
|
174 |
+
"num_documents": 4996,
|
175 |
+
"min_document_length": 25,
|
176 |
+
"average_document_length": 1228.7119695756605,
|
177 |
+
"max_document_length": 8491,
|
178 |
+
"unique_documents": 4996,
|
179 |
+
"num_queries": 50,
|
180 |
+
"min_query_length": 17,
|
181 |
+
"average_query_length": 45.42,
|
182 |
+
"max_query_length": 83,
|
183 |
+
"unique_queries": 50,
|
184 |
+
"none_queries": 0,
|
185 |
+
"num_relevant_docs": 57,
|
186 |
+
"min_relevant_docs_per_query": 1,
|
187 |
+
"average_relevant_docs_per_query": 1.14,
|
188 |
+
"max_relevant_docs_per_query": 3,
|
189 |
+
"unique_relevant_docs": 57,
|
190 |
+
"num_instructions": null,
|
191 |
+
"min_instruction_length": null,
|
192 |
+
"average_instruction_length": null,
|
193 |
+
"max_instruction_length": null,
|
194 |
+
"unique_instructions": null,
|
195 |
+
"num_top_ranked": null,
|
196 |
+
"min_top_ranked_per_query": null,
|
197 |
+
"average_top_ranked_per_query": null,
|
198 |
+
"max_top_ranked_per_query": null
|
199 |
+
}
|
200 |
+
}
|
201 |
+
```
|
202 |
+
|
203 |
+
</details>
|
204 |
+
|
205 |
+
---
|
206 |
+
*This dataset card was automatically generated using [MTEB](https://github.com/embeddings-benchmark/mteb)*
|