mirror of
https://github.com/FlagOpen/FlagEmbedding.git
synced 2025-06-27 02:39:58 +00:00
70 lines
2.2 KiB
Python
70 lines
2.2 KiB
Python
from mteb import AbsTaskClustering
|
|
|
|
|
|
class CLSClusteringS2S(AbsTaskClustering):
|
|
@property
|
|
def description(self):
|
|
return {
|
|
"name": "CLSClusteringS2S",
|
|
"hf_hub_name": "C-MTEB/CLSClusteringS2S",
|
|
"description": (
|
|
"Clustering of titles from CLS dataset. Clustering of 13 sets, based on the main category."
|
|
),
|
|
"reference": "https://arxiv.org/abs/2209.05034",
|
|
"type": "Clustering",
|
|
"category": "s2s",
|
|
"eval_splits": ["test"],
|
|
"eval_langs": ["zh"],
|
|
"main_score": "v_measure",
|
|
}
|
|
|
|
|
|
class CLSClusteringP2P(AbsTaskClustering):
|
|
@property
|
|
def description(self):
|
|
return {
|
|
"name": "CLSClusteringP2P",
|
|
"hf_hub_name": "C-MTEB/CLSClusteringP2P",
|
|
"description": (
|
|
"Clustering of titles + abstract from CLS dataset. Clustering of 13 sets, based on the main category."
|
|
),
|
|
"reference": "https://arxiv.org/abs/2209.05034",
|
|
"type": "Clustering",
|
|
"category": "p2p",
|
|
"eval_splits": ["test"],
|
|
"eval_langs": ["zh"],
|
|
"main_score": "v_measure",
|
|
}
|
|
|
|
|
|
class ThuNewsClusteringS2S(AbsTaskClustering):
|
|
@property
|
|
def description(self):
|
|
return {
|
|
'name': 'ThuNewsClusteringS2S',
|
|
'hf_hub_name': 'C-MTEB/ThuNewsClusteringS2S',
|
|
'description': 'Clustering of titles from the THUCNews dataset',
|
|
"reference": "http://thuctc.thunlp.org/",
|
|
"type": "Clustering",
|
|
"category": "s2s",
|
|
"eval_splits": ["test"],
|
|
"eval_langs": ["zh"],
|
|
"main_score": "v_measure",
|
|
}
|
|
|
|
|
|
class ThuNewsClusteringP2P(AbsTaskClustering):
|
|
@property
|
|
def description(self):
|
|
return {
|
|
'name': 'ThuNewsClusteringP2P',
|
|
'hf_hub_name': 'C-MTEB/ThuNewsClusteringP2P',
|
|
'description': 'Clustering of titles + abstracts from the THUCNews dataset',
|
|
"reference": "http://thuctc.thunlp.org/",
|
|
"type": "Clustering",
|
|
"category": "p2p",
|
|
"eval_splits": ["test"],
|
|
"eval_langs": ["zh"],
|
|
"main_score": "v_measure",
|
|
}
|