Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mteb/benchmarks/benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def load_results(
base_results = load_results()
return base_results.select_tasks(self.tasks)


Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: no-op, maybe can remove?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's the linter 😅

MTEB_MAIN_EN = Benchmark(
name="MTEB(eng)",
tasks=get_tasks(
Expand Down
14 changes: 6 additions & 8 deletions mteb/tasks/Clustering/multilingual/MLSUMClusteringP2P.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ class MLSUMClusteringP2P(AbsTaskClustering, MultilingualTask):
metadata = TaskMetadata(
name="MLSUMClusteringP2P",
description="Clustering of newspaper article contents and titles from MLSUM dataset. Clustering of 10 sets on the newpaper article topics.",
reference="https://huggingface.co/datasets/reciTAL/mlsum",
reference="https://huggingface.co/datasets/mteb/mlsum",
dataset={
"path": "reciTAL/mlsum",
"revision": "b5d54f8f3b61ae17845046286940f03c6bc79bc7",
"trust_remote_code": True,
"path": "mteb/mlsum",
"revision": "b4efe498c4d0b9d7bdd2905f6fff4e22ae251d00",
},
type="Clustering",
category="p2p",
Expand Down Expand Up @@ -101,11 +100,10 @@ class MLSUMClusteringP2PFast(AbsTaskClusteringFast, MultilingualTask):
metadata = TaskMetadata(
name="MLSUMClusteringP2P.v2",
description="Clustering of newspaper article contents and titles from MLSUM dataset. Clustering of 10 sets on the newpaper article topics.",
reference="https://huggingface.co/datasets/mlsum",
reference="https://huggingface.co/datasets/mteb/mlsum",
dataset={
"path": "reciTAL/mlsum",
"revision": "b5d54f8f3b61ae17845046286940f03c6bc79bc7",
"trust_remote_code": True,
"path": "mteb/mlsum",
"revision": "b4efe498c4d0b9d7bdd2905f6fff4e22ae251d00",
},
type="Clustering",
category="p2p",
Expand Down
14 changes: 6 additions & 8 deletions mteb/tasks/Clustering/multilingual/MLSUMClusteringS2S.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ class MLSUMClusteringS2S(AbsTaskClustering, MultilingualTask):
metadata = TaskMetadata(
name="MLSUMClusteringS2S",
description="Clustering of newspaper article contents and titles from MLSUM dataset. Clustering of 10 sets on the newpaper article topics.",
reference="https://huggingface.co/datasets/reciTAL/mlsum",
reference="https://huggingface.co/datasets/mteb/mlsum",
dataset={
"path": "reciTAL/mlsum",
"revision": "b5d54f8f3b61ae17845046286940f03c6bc79bc7",
"trust_remote_code": True,
"path": "mteb/mlsum",
"revision": "b4efe498c4d0b9d7bdd2905f6fff4e22ae251d00",
},
type="Clustering",
category="s2s",
Expand Down Expand Up @@ -96,11 +95,10 @@ class MLSUMClusteringS2SFast(AbsTaskClusteringFast, MultilingualTask):
metadata = TaskMetadata(
name="MLSUMClusteringS2S.v2",
description="Clustering of newspaper article contents and titles from MLSUM dataset. Clustering of 10 sets on the newpaper article topics.",
reference="https://huggingface.co/datasets/mlsum",
reference="https://huggingface.co/datasets/mteb/mlsum",
dataset={
"path": "reciTAL/mlsum",
"revision": "b5d54f8f3b61ae17845046286940f03c6bc79bc7",
"trust_remote_code": True,
"path": "mteb/mlsum",
"revision": "b4efe498c4d0b9d7bdd2905f6fff4e22ae251d00",
},
type="Clustering",
category="s2s",
Expand Down