Skip to content

Commit d638780

Browse files
mina-parhamKennethEnevoldsenMina Parham
authored andcommitted
fix: Add climate fever v2 (embeddings-benchmark#1873)
* Updated ClimateFEVER dataset with new version * Adds Fill in the empty metadata. * Updates the date tuple * Update class name Co-authored-by: Kenneth Enevoldsen <[email protected]> * Update domains Co-authored-by: Kenneth Enevoldsen <[email protected]> * Update task_subtypes * Update annotations_creators for the first version * Update date Co-authored-by: Kenneth Enevoldsen <[email protected]> * Update task subtypes * Update path * Update description --------- Co-authored-by: Kenneth Enevoldsen <[email protected]> Co-authored-by: Mina Parham <[email protected]>
1 parent 4385db6 commit d638780

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

mteb/models/lens_models.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from mteb.model_meta import ModelMeta
44
from mteb.models.bge_models import bge_full_data
55

6+
67
lens_d4000 = ModelMeta(
78
loader=None, # TODO: implement this in the future
89
name="yibinlei/LENS-d4000",

mteb/tasks/Retrieval/eng/ClimateFEVERRetrieval.py

+38-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ClimateFEVER(AbsTaskRetrieval):
2020
eval_splits=["test"],
2121
eval_langs=["eng-Latn"],
2222
main_score="ndcg_at_10",
23-
date=None,
23+
date=("2001-01-01", "2020-12-31"), # launch of wiki -> paper publication
2424
domains=["Encyclopaedic", "Written"],
2525
task_subtypes=["Claim verification"],
2626
license="cc-by-sa-4.0",
@@ -56,7 +56,7 @@ class ClimateFEVERHardNegatives(AbsTaskRetrieval):
5656
eval_splits=["test"],
5757
eval_langs=["eng-Latn"],
5858
main_score="ndcg_at_10",
59-
date=None,
59+
date=("2001-01-01", "2020-12-31"), # launch of wiki -> paper publication
6060
domains=["Encyclopaedic", "Written"],
6161
task_subtypes=["Claim verification"],
6262
license="cc-by-sa-4.0",
@@ -72,3 +72,39 @@ class ClimateFEVERHardNegatives(AbsTaskRetrieval):
7272
primaryClass={cs.CL}
7373
}""",
7474
)
75+
76+
77+
class ClimateFEVERRetrievalv2(AbsTaskRetrieval):
78+
metadata = TaskMetadata(
79+
name="ClimateFEVER.v2",
80+
description="CLIMATE-FEVER is a dataset following the FEVER methodology, containing 1,535 real-world climate change claims. This updated version addresses corpus mismatches and qrel inconsistencies in MTEB, restoring labels while refining corpus-query alignment for better accuracy. ",
81+
reference="https://www.sustainablefinance.uzh.ch/en/research/climate-fever.html",
82+
dataset={
83+
"path": "mteb/climate-fever-v2",
84+
"revision": "e438c9586767800aeb10dbe8a245c41dbea4e5f4",
85+
},
86+
type="Retrieval",
87+
category="s2p",
88+
modalities=["text"],
89+
eval_splits=["test"],
90+
eval_langs=["eng-Latn"],
91+
main_score="ndcg_at_10",
92+
date=("2001-01-01", "2020-12-31"), # launch of wiki -> paper publication
93+
domains=["Academic", "Written"],
94+
task_subtypes=["Claim verification"],
95+
license="cc-by-sa-4.0",
96+
annotations_creators="human-annotated",
97+
dialect=[],
98+
sample_creation="found",
99+
bibtex_citation="""@misc{diggelmann2021climatefever,
100+
title={CLIMATE-FEVER: A Dataset for Verification of Real-World Climate Claims},
101+
author={Thomas Diggelmann and Jordan Boyd-Graber and Jannis Bulian and Massimiliano Ciaramita and Markus Leippold},
102+
year={2021},
103+
eprint={2012.00614},
104+
archivePrefix={arXiv},
105+
primaryClass={cs.CL}
106+
}""",
107+
prompt={
108+
"query": "Given a claim about climate change, retrieve documents that support or refute the claim"
109+
},
110+
)

0 commit comments

Comments
 (0)