From fc1c6014de08fdb3db98c814bded65a341a99e13 Mon Sep 17 00:00:00 2001 From: Yongbin Choi Date: Sun, 21 Sep 2025 13:03:52 +0900 Subject: [PATCH] fix: Correct metadata for ArguAna dataset --- mteb/tasks/Retrieval/eng/ArguAnaRetrieval.py | 26 ++++++++----------- .../Retrieval/eng/NanoArguAnaRetrieval.py | 18 +++++-------- 2 files changed, 18 insertions(+), 26 deletions(-) diff --git a/mteb/tasks/Retrieval/eng/ArguAnaRetrieval.py b/mteb/tasks/Retrieval/eng/ArguAnaRetrieval.py index a3e7e93a75..b78c4b9680 100644 --- a/mteb/tasks/Retrieval/eng/ArguAnaRetrieval.py +++ b/mteb/tasks/Retrieval/eng/ArguAnaRetrieval.py @@ -10,7 +10,7 @@ class ArguAna(AbsTaskRetrieval): metadata = TaskMetadata( name="ArguAna", - description="NFCorpus: A Full-Text Learning to Rank Dataset for Medical Information Retrieval", + description="ArguAna: Retrieval of the Best Counterargument without Prior Topic Knowledge", reference="http://argumentation.bplaced.net/arguana/data", dataset={ "path": "mteb/arguana", @@ -22,23 +22,19 @@ class ArguAna(AbsTaskRetrieval): eval_splits=["test"], eval_langs=["eng-Latn"], main_score="ndcg_at_10", - date=None, - domains=["Medical", "Written"], - task_subtypes=None, + date=["2018-01-01", "2018-07-01"], # best guess: based on publication date + domains=["Social", "Web", "Written"], + task_subtypes=["Discourse coherence"], license="cc-by-sa-4.0", - annotations_creators=None, + annotations_creators="derived", dialect=[], - sample_creation=None, + sample_creation="found", bibtex_citation=r""" -@inproceedings{boteva2016, - author = {Boteva, Vera and Gholipour, Demian and Sokolov, Artem and Riezler, Stefan}, - city = {Padova}, - country = {Italy}, - journal = {Proceedings of the 38th European Conference on Information Retrieval}, - journal-abbrev = {ECIR}, - title = {A Full-Text Learning to Rank Dataset for Medical Information Retrieval}, - url = {http://www.cl.uni-heidelberg.de/~riezler/publications/papers/ECIR2016.pdf}, - year = {2016}, +@inproceedings{wachsmuth2018retrieval, + author = {Wachsmuth, Henning and Syed, Shahbaz and Stein, Benno}, + booktitle = {ACL}, + title = {Retrieval of the Best Counterargument without Prior Topic Knowledge}, + year = {2018}, } """, prompt={"query": "Given a claim, find documents that refute the claim"}, diff --git a/mteb/tasks/Retrieval/eng/NanoArguAnaRetrieval.py b/mteb/tasks/Retrieval/eng/NanoArguAnaRetrieval.py index 190a9810fa..685b90a881 100644 --- a/mteb/tasks/Retrieval/eng/NanoArguAnaRetrieval.py +++ b/mteb/tasks/Retrieval/eng/NanoArguAnaRetrieval.py @@ -24,22 +24,18 @@ class NanoArguAnaRetrieval(AbsTaskRetrieval): eval_langs=["eng-Latn"], main_score="ndcg_at_10", date=["2020-01-01", "2020-12-31"], - domains=["Medical", "Written"], + domains=["Social", "Web", "Written"], task_subtypes=["Discourse coherence"], license="cc-by-4.0", - annotations_creators="expert-annotated", + annotations_creators="derived", dialect=[], sample_creation="found", bibtex_citation=r""" -@inproceedings{boteva2016, - author = {Boteva, Vera and Gholipour, Demian and Sokolov, Artem and Riezler, Stefan}, - city = {Padova}, - country = {Italy}, - journal = {Proceedings of the 38th European Conference on Information Retrieval}, - journal-abbrev = {ECIR}, - title = {A Full-Text Learning to Rank Dataset for Medical Information Retrieval}, - url = {http://www.cl.uni-heidelberg.de/~riezler/publications/papers/ECIR2016.pdf}, - year = {2016}, +@inproceedings{wachsmuth2018retrieval, + author = {Wachsmuth, Henning and Syed, Shahbaz and Stein, Benno}, + booktitle = {ACL}, + title = {Retrieval of the Best Counterargument without Prior Topic Knowledge}, + year = {2018}, } """, prompt={"query": "Given a claim, find documents that refute the claim"},