orionweller commited on
Commit
ba43979
·
1 Parent(s): 032b79d
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +5 -0
  2. paths.json +0 -0
  3. remove_ablations.py +18 -0
  4. results.py +353 -0
  5. results/Baichuan-text-embedding/AFQMC.json +20 -0
  6. results/Baichuan-text-embedding/ATEC.json +20 -0
  7. results/Baichuan-text-embedding/AmazonReviewsClassification.json +25 -0
  8. results/Baichuan-text-embedding/BQ.json +20 -0
  9. results/Baichuan-text-embedding/CLSClusteringP2P.json +10 -0
  10. results/Baichuan-text-embedding/CLSClusteringS2S.json +10 -0
  11. results/Baichuan-text-embedding/CMedQAv1.json +10 -0
  12. results/Baichuan-text-embedding/CMedQAv2.json +10 -0
  13. results/Baichuan-text-embedding/CmedqaRetrieval.json +38 -0
  14. results/Baichuan-text-embedding/Cmnli.json +49 -0
  15. results/Baichuan-text-embedding/CovidRetrieval.json +38 -0
  16. results/Baichuan-text-embedding/DuRetrieval.json +38 -0
  17. results/Baichuan-text-embedding/EcomRetrieval.json +38 -0
  18. results/Baichuan-text-embedding/IFlyTek.json +13 -0
  19. results/Baichuan-text-embedding/JDReview.json +15 -0
  20. results/Baichuan-text-embedding/LCQMC.json +20 -0
  21. results/Baichuan-text-embedding/MMarcoReranking.json +10 -0
  22. results/Baichuan-text-embedding/MMarcoRetrieval.json +38 -0
  23. results/Baichuan-text-embedding/MassiveIntentClassification.json +25 -0
  24. results/Baichuan-text-embedding/MassiveScenarioClassification.json +25 -0
  25. results/Baichuan-text-embedding/MedicalRetrieval.json +38 -0
  26. results/Baichuan-text-embedding/MultilingualSentiment.json +13 -0
  27. results/Baichuan-text-embedding/Ocnli.json +49 -0
  28. results/Baichuan-text-embedding/OnlineShopping.json +15 -0
  29. results/Baichuan-text-embedding/PAWSX.json +20 -0
  30. results/Baichuan-text-embedding/QBQTC.json +20 -0
  31. results/Baichuan-text-embedding/STS22.json +22 -0
  32. results/Baichuan-text-embedding/STSB.json +20 -0
  33. results/Baichuan-text-embedding/T2Reranking.json +10 -0
  34. results/Baichuan-text-embedding/T2Retrieval.json +38 -0
  35. results/Baichuan-text-embedding/TNews.json +13 -0
  36. results/Baichuan-text-embedding/ThuNewsClusteringP2P.json +10 -0
  37. results/Baichuan-text-embedding/ThuNewsClusteringS2S.json +10 -0
  38. results/Baichuan-text-embedding/VideoRetrieval.json +38 -0
  39. results/Baichuan-text-embedding/Waimai.json +15 -0
  40. results/Cohere-embed-english-v3.0/AILACasedocs.json +1 -0
  41. results/Cohere-embed-english-v3.0/AILAStatutes.json +1 -0
  42. results/Cohere-embed-english-v3.0/Core17InstructionRetrieval.json +9 -0
  43. results/Cohere-embed-english-v3.0/GerDaLIRSmall.json +1 -0
  44. results/Cohere-embed-english-v3.0/LeCaRDv2.json +1 -0
  45. results/Cohere-embed-english-v3.0/LegalBenchConsumerContractsQA.json +1 -0
  46. results/Cohere-embed-english-v3.0/LegalBenchCorporateLobbying.json +1 -0
  47. results/Cohere-embed-english-v3.0/LegalQuAD.json +1 -0
  48. results/Cohere-embed-english-v3.0/LegalSummarization.json +1 -0
  49. results/Cohere-embed-english-v3.0/News21InstructionRetrieval.json +9 -0
  50. results/Cohere-embed-english-v3.0/Robust04InstructionRetrieval.json +9 -0
README.md ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ ---
2
+ benchmark: mteb
3
+ type: evaluation
4
+ submission_name: MTEB
5
+ ---
paths.json ADDED
The diff for this file is too large to render. See raw diff
 
remove_ablations.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import glob
2
+ import os
3
+ import json
4
+ import tqdm
5
+
6
+
7
+ for file in tqdm.tqdm(glob.glob("results/*/*.json")):
8
+ print(file)
9
+ if "Instruction" not in file:
10
+ continue
11
+ with open(file, "r") as fin:
12
+ data = json.load(fin)
13
+ if "individual" in data["test"]:
14
+ del data["test"]["individual"]
15
+
16
+ with open(file, "w") as fout:
17
+ json.dump(data, fout, indent=2)
18
+
results.py ADDED
@@ -0,0 +1,353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """MTEB Results"""
2
+
3
+ import json
4
+
5
+ import datasets
6
+
7
+
8
+ logger = datasets.logging.get_logger(__name__)
9
+
10
+
11
+ _CITATION = """@article{muennighoff2022mteb,
12
+ doi = {10.48550/ARXIV.2210.07316},
13
+ url = {https://arxiv.org/abs/2210.07316},
14
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
15
+ title = {MTEB: Massive Text Embedding Benchmark},
16
+ publisher = {arXiv},
17
+ journal={arXiv preprint arXiv:2210.07316},
18
+ year = {2022}
19
+ }
20
+ """
21
+
22
+ _DESCRIPTION = """Results on MTEB"""
23
+
24
+ URL = "https://huggingface.co/datasets/mteb/results/resolve/main/paths.json"
25
+ VERSION = datasets.Version("1.0.1")
26
+ EVAL_LANGS = ['af', 'afr-eng', 'am', "amh", 'amh-eng', 'ang-eng', 'ar', 'ar-ar', 'ara-eng', 'arq-eng', 'arz-eng', 'ast-eng', 'awa-eng', 'az', 'aze-eng', 'bel-eng', 'ben-eng', 'ber-eng', 'bn', 'bos-eng', 'bre-eng', 'bul-eng', 'cat-eng', 'cbk-eng', 'ceb-eng', 'ces-eng', 'cha-eng', 'cmn-eng', 'cor-eng', 'csb-eng', 'cy', 'cym-eng', 'da', 'dan-eng', 'de', 'de-fr', 'de-pl', 'deu-eng', 'dsb-eng', 'dtp-eng', 'el', 'ell-eng', 'en', 'en-ar', 'en-de', 'en-en', 'en-tr', 'eng', 'epo-eng', 'es', 'es-en', 'es-es', 'es-it', 'est-eng', 'eus-eng', 'fa', 'fao-eng', 'fi', 'fin-eng', 'fr', 'fr-en', 'fr-pl', 'fra', 'fra-eng', 'fry-eng', 'gla-eng', 'gle-eng', 'glg-eng', 'gsw-eng', 'hau', 'he', 'heb-eng', 'hi', 'hin-eng', 'hrv-eng', 'hsb-eng', 'hu', 'hun-eng', 'hy', 'hye-eng', 'ibo', 'id', 'ido-eng', 'ile-eng', 'ina-eng', 'ind-eng', 'is', 'isl-eng', 'it', 'it-en', 'ita-eng', 'ja', 'jav-eng', 'jpn-eng', 'jv', 'ka', 'kab-eng', 'kat-eng', 'kaz-eng', 'khm-eng', 'km', 'kn', 'ko', 'ko-ko', 'kor-eng', 'kur-eng', 'kzj-eng', 'lat-eng', 'lfn-eng', 'lit-eng', 'lin', 'lug', 'lv', 'lvs-eng', 'mal-eng', 'mar-eng', 'max-eng', 'mhr-eng', 'mkd-eng', 'ml', 'mn', 'mon-eng', 'ms', 'my', 'nb', 'nds-eng', 'nl', 'nl-ende-en', 'nld-eng', 'nno-eng', 'nob-eng', 'nov-eng', 'oci-eng', 'orm', 'orv-eng', 'pam-eng', 'pcm', 'pes-eng', 'pl', 'pl-en', 'pms-eng', 'pol-eng', 'por-eng', 'pt', 'ro', 'ron-eng', 'ru', 'run', 'rus-eng', 'sl', 'slk-eng', 'slv-eng', 'spa-eng', 'sna', 'som', 'sq', 'sqi-eng', 'srp-eng', 'sv', 'sw', 'swa', 'swe-eng', 'swg-eng', 'swh-eng', 'ta', 'tam-eng', 'tat-eng', 'te', 'tel-eng', 'tgl-eng', 'th', 'tha-eng', 'tir', 'tl', 'tr', 'tuk-eng', 'tur-eng', 'tzl-eng', 'uig-eng', 'ukr-eng', 'ur', 'urd-eng', 'uzb-eng', 'vi', 'vie-eng', 'war-eng', 'wuu-eng', 'xho', 'xho-eng', 'yid-eng', 'yor', 'yue-eng', 'zh', 'zh-CN', 'zh-TW', 'zh-en', 'zsm-eng']
27
+
28
+ # v_measures key is somehow present in voyage-2-law results and is a list
29
+ SKIP_KEYS = ["std", "evaluation_time", "main_score", "threshold", "v_measures"]
30
+
31
+ # Use "train" split instead
32
+ TRAIN_SPLIT = ["DanishPoliticalCommentsClassification"]
33
+ # Use "validation" split instead
34
+ VALIDATION_SPLIT = ["AFQMC", "Cmnli", "IFlyTek", "LEMBSummScreenFDRetrieval", "MSMARCO", "MSMARCO-PL", "MultilingualSentiment", "Ocnli", "TNews"]
35
+ # Use "dev" split instead
36
+ DEV_SPLIT = ["CmedqaRetrieval", "CovidRetrieval", "DuRetrieval", "EcomRetrieval", "MedicalRetrieval", "MMarcoReranking", "MMarcoRetrieval", "MSMARCO", "MSMARCO-PL", "T2Reranking", "T2Retrieval", "VideoRetrieval"]
37
+ # Use "test.full" split
38
+ TESTFULL_SPLIT = ["OpusparcusPC"]
39
+
40
+ TEST_AVG_SPLIT = {
41
+ "LEMBNeedleRetrieval": ["test_256", "test_512", "test_1024", "test_2048", "test_4096", "test_8192", "test_16384", "test_32768"],
42
+ "LEMBPasskeyRetrieval": ["test_256", "test_512", "test_1024", "test_2048", "test_4096", "test_8192", "test_16384", "test_32768"],
43
+ }
44
+
45
+ MODELS = [
46
+ "Baichuan-text-embedding",
47
+ "Cohere-embed-english-v3.0",
48
+ "Cohere-embed-multilingual-light-v3.0",
49
+ "Cohere-embed-multilingual-v3.0",
50
+ "DanskBERT",
51
+ "FollowIR-7B",
52
+ "GritLM-7B",
53
+ "LASER2",
54
+ "LLM2Vec-Llama-2-supervised",
55
+ "LLM2Vec-Llama-2-unsupervised",
56
+ "LLM2Vec-Meta-Llama-3-supervised",
57
+ "LLM2Vec-Meta-Llama-3-unsupervised",
58
+ "LLM2Vec-Mistral-supervised",
59
+ "LLM2Vec-Mistral-unsupervised",
60
+ "LLM2Vec-Sheared-Llama-supervised",
61
+ "LLM2Vec-Sheared-Llama-unsupervised",
62
+ "LaBSE",
63
+ "OpenSearch-text-hybrid",
64
+ "all-MiniLM-L12-v2",
65
+ "all-MiniLM-L6-v2",
66
+ "all-mpnet-base-v2",
67
+ "allenai-specter",
68
+ "bert-base-10lang-cased",
69
+ "bert-base-15lang-cased",
70
+ "bert-base-25lang-cased",
71
+ "bert-base-multilingual-cased",
72
+ "bert-base-multilingual-uncased",
73
+ "bert-base-swedish-cased",
74
+ "bert-base-uncased",
75
+ "bge-base-en",
76
+ "bge-base-zh",
77
+ "bge-base-zh-v1.5",
78
+ "bge-large-en",
79
+ "bge-large-en-v1.5",
80
+ "bge-large-zh",
81
+ "bge-large-zh-noinstruct",
82
+ "bge-large-zh-v1.5",
83
+ "bge-m3",
84
+ "bge-small-zh",
85
+ "bge-small-zh-v1.5",
86
+ "bm25",
87
+ "camembert-base",
88
+ "camembert-large",
89
+ "contriever-base-msmarco",
90
+ "cross-en-de-roberta-sentence-transformer",
91
+ "dfm-encoder-large-v1",
92
+ "dfm-sentence-encoder-large-1",
93
+ "distilbert-base-25lang-cased",
94
+ "distilbert-base-en-fr-cased",
95
+ "distilbert-base-en-fr-es-pt-it-cased",
96
+ "distilbert-base-fr-cased",
97
+ "distilbert-base-uncased",
98
+ "distiluse-base-multilingual-cased-v2",
99
+ "e5-base",
100
+ "e5-base-4k",
101
+ "e5-base-v2",
102
+ "e5-large",
103
+ "e5-large-v2",
104
+ "e5-mistral-7b-instruct",
105
+ "e5-small",
106
+ "electra-small-nordic",
107
+ "electra-small-swedish-cased-discriminator",
108
+ "elser-v2",
109
+ "embedder-100p",
110
+ "facebook-dpr-ctx_encoder-multiset-base",
111
+ "flan-t5-base",
112
+ "flan-t5-large",
113
+ "flaubert_base_cased",
114
+ "flaubert_base_uncased",
115
+ "flaubert_large_cased",
116
+ "gbert-base",
117
+ "gbert-large",
118
+ "gelectra-base",
119
+ "gelectra-large",
120
+ "glove.6B.300d",
121
+ "google-gecko-256.text-embedding-preview-0409",
122
+ "google-gecko.text-embedding-preview-0409",
123
+ "gottbert-base",
124
+ "gte-Qwen1.5-7B-instruct",
125
+ "gtr-t5-base",
126
+ "gtr-t5-large",
127
+ "gtr-t5-xl",
128
+ "gtr-t5-xxl",
129
+ "herbert-base-retrieval-v2",
130
+ "instructor-base",
131
+ "instructor-xl",
132
+ "jina-embeddings-v2-base-en",
133
+ "komninos",
134
+ "llama-2-7b-chat",
135
+ "luotuo-bert-medium",
136
+ "m3e-base",
137
+ "m3e-large",
138
+ "mistral-7b-instruct-v0.2",
139
+ "mistral-embed",
140
+ "monobert-large-msmarco",
141
+ "monot5-3b-msmarco-10k",
142
+ "monot5-base-msmarco-10k",
143
+ "msmarco-bert-co-condensor",
144
+ "multi-qa-MiniLM-L6-cos-v1",
145
+ "multilingual-e5-base",
146
+ "multilingual-e5-large",
147
+ "multilingual-e5-small",
148
+ "nb-bert-base",
149
+ "nb-bert-large",
150
+ "nomic-embed-text-v1",
151
+ "nomic-embed-text-v1.5-128",
152
+ "nomic-embed-text-v1.5-256",
153
+ "nomic-embed-text-v1.5-512",
154
+ "nomic-embed-text-v1.5-64",
155
+ "norbert3-base",
156
+ "norbert3-large",
157
+ "paraphrase-multilingual-MiniLM-L12-v2",
158
+ "paraphrase-multilingual-mpnet-base-v2",
159
+ "sentence-bert-swedish-cased",
160
+ "sentence-camembert-base",
161
+ "sentence-camembert-large",
162
+ "sentence-croissant-llm-base",
163
+ "sentence-t5-base",
164
+ "sentence-t5-large",
165
+ "sentence-t5-xl",
166
+ "sentence-t5-xxl",
167
+ "sgpt-bloom-1b7-nli",
168
+ "sgpt-bloom-7b1-msmarco",
169
+ "silver-retriever-base-v1",
170
+ "st-polish-paraphrase-from-distilroberta",
171
+ "st-polish-paraphrase-from-mpnet",
172
+ "sup-simcse-bert-base-uncased",
173
+ "tart-dual-contriever-msmarco",
174
+ "tart-full-flan-t5-xl",
175
+ "text-embedding-3-large",
176
+ "text-embedding-3-large-256",
177
+ "text-embedding-3-small",
178
+ "text-embedding-ada-002",
179
+ "text-search-ada-001",
180
+ "text-search-ada-doc-001",
181
+ "text-search-babbage-001",
182
+ "text-search-curie-001",
183
+ "text-search-davinci-001",
184
+ "text-similarity-ada-001",
185
+ "text-similarity-babbage-001",
186
+ "text-similarity-curie-001",
187
+ "text-similarity-davinci-001",
188
+ "text2vec-base-chinese",
189
+ "text2vec-base-multilingual",
190
+ "text2vec-large-chinese",
191
+ "titan-embed-text-v1",
192
+ "udever-bloom-1b1",
193
+ "udever-bloom-560m",
194
+ "universal-sentence-encoder-multilingual-3",
195
+ "universal-sentence-encoder-multilingual-large-3",
196
+ "unsup-simcse-bert-base-uncased",
197
+ "use-cmlm-multilingual",
198
+ "voyage-2",
199
+ "voyage-code-2",
200
+ "voyage-large-2-instruct",
201
+ "voyage-law-2",
202
+ "voyage-lite-01-instruct",
203
+ "voyage-lite-02-instruct",
204
+ "voyage-multilingual-2",
205
+ "xlm-roberta-base",
206
+ "xlm-roberta-large",
207
+ ]
208
+
209
+
210
+ # Needs to be run whenever new files are added
211
+ def get_paths():
212
+ import collections, json, os
213
+ files = collections.defaultdict(list)
214
+ for model_dir in os.listdir("results"):
215
+ results_model_dir = os.path.join("results", model_dir)
216
+ if not os.path.isdir(results_model_dir):
217
+ print(f"Skipping {results_model_dir}")
218
+ continue
219
+ for res_file in os.listdir(results_model_dir):
220
+ if (res_file.endswith(".json")) and not(res_file.endswith("overall_results.json")):
221
+ results_model_file = os.path.join(results_model_dir, res_file)
222
+ files[model_dir].append(results_model_file)
223
+ with open("paths.json", "w") as f:
224
+ json.dump(files, f)
225
+ return files
226
+
227
+
228
+ class MTEBResults(datasets.GeneratorBasedBuilder):
229
+ """MTEBResults"""
230
+
231
+ BUILDER_CONFIGS = [
232
+ datasets.BuilderConfig(
233
+ name=model,
234
+ description=f"{model} MTEB results",
235
+ version=VERSION,
236
+ )
237
+ for model in MODELS
238
+ ]
239
+
240
+ def _info(self):
241
+ return datasets.DatasetInfo(
242
+ description=_DESCRIPTION,
243
+ features=datasets.Features(
244
+ {
245
+ "mteb_dataset_name": datasets.Value("string"),
246
+ "eval_language": datasets.Value("string"),
247
+ "metric": datasets.Value("string"),
248
+ "score": datasets.Value("float"),
249
+ }
250
+ ),
251
+ supervised_keys=None,
252
+ citation=_CITATION,
253
+ )
254
+
255
+ def _split_generators(self, dl_manager):
256
+ path_file = dl_manager.download_and_extract(URL)
257
+ with open(path_file) as f:
258
+ files = json.load(f)
259
+
260
+ downloaded_files = dl_manager.download_and_extract(files[self.config.name])
261
+ return [
262
+ datasets.SplitGenerator(
263
+ name=datasets.Split.TEST,
264
+ gen_kwargs={'filepath': downloaded_files}
265
+ )
266
+ ]
267
+
268
+ def _generate_examples(self, filepath):
269
+ """This function returns the examples in the raw (text) form."""
270
+ logger.info(f"Generating examples from {filepath}")
271
+ out = []
272
+
273
+ for path in filepath:
274
+ with open(path, encoding="utf-8") as f:
275
+ res_dict = json.load(f)
276
+ # Naming changed from mteb_dataset_name to task_name
277
+ ds_name = res_dict.get("mteb_dataset_name", res_dict.get("task_name"))
278
+ # New MTEB format uses scores
279
+ res_dict = res_dict.get("scores", res_dict)
280
+
281
+ split = "test"
282
+ if (ds_name in TRAIN_SPLIT) and ("train" in res_dict):
283
+ split = "train"
284
+ elif (ds_name in VALIDATION_SPLIT) and ("validation" in res_dict):
285
+ split = "validation"
286
+ elif (ds_name in DEV_SPLIT) and ("dev" in res_dict):
287
+ split = "dev"
288
+ elif (ds_name in TESTFULL_SPLIT) and ("test.full" in res_dict):
289
+ split = "test.full"
290
+ elif (ds_name in TEST_AVG_SPLIT):
291
+ # Average splits
292
+ res_dict["test_avg"] = {}
293
+ for split in TEST_AVG_SPLIT[ds_name]:
294
+ # Old MTEB format
295
+ if isinstance(res_dict.get(split), dict):
296
+ for k, v in res_dict.get(split, {}).items():
297
+ v /= len(TEST_AVG_SPLIT[ds_name])
298
+ if k not in res_dict["test_avg"]:
299
+ res_dict["test_avg"][k] = v
300
+ else:
301
+ res_dict["test_avg"][k] += v
302
+ # New MTEB format
303
+ elif isinstance(res_dict.get(split), list):
304
+ assert len(res_dict[split]) == 1, "Only single-lists supported for now"
305
+ for k, v in res_dict[split][0].items():
306
+ if not isinstance(v, float): continue
307
+ v /= len(TEST_AVG_SPLIT[ds_name])
308
+ if k not in res_dict["test_avg"]:
309
+ res_dict["test_avg"][k] = v
310
+ else:
311
+ res_dict["test_avg"][k] += v
312
+ split = "test_avg"
313
+ elif "test" not in res_dict:
314
+ print(f"Skipping {ds_name} as split {split} not present.")
315
+ continue
316
+ res_dict = res_dict.get(split)
317
+
318
+ ### New MTEB format ###
319
+ if isinstance(res_dict, list):
320
+ for res in res_dict:
321
+ lang = res.get("languages", [""])
322
+ assert len(lang) == 1, "Only single-languages supported for now"
323
+ lang = lang[0].replace("eng-Latn", "")
324
+ for metric, score in res.items():
325
+ if metric in SKIP_KEYS: continue
326
+ out.append({
327
+ "mteb_dataset_name": ds_name,
328
+ "eval_language": lang,
329
+ "metric": metric,
330
+ "score": score * 100,
331
+ })
332
+
333
+ ### Old MTEB format ###
334
+ else:
335
+ is_multilingual = any(x in res_dict for x in EVAL_LANGS)
336
+ langs = res_dict.keys() if is_multilingual else ["en"]
337
+ for lang in langs:
338
+ if lang in SKIP_KEYS: continue
339
+ test_result_lang = res_dict.get(lang) if is_multilingual else res_dict
340
+ for metric, score in test_result_lang.items():
341
+ if not isinstance(score, dict):
342
+ score = {metric: score}
343
+ for sub_metric, sub_score in score.items():
344
+ if any(x in sub_metric for x in SKIP_KEYS): continue
345
+ if isinstance(sub_score, dict): continue
346
+ out.append({
347
+ "mteb_dataset_name": ds_name,
348
+ "eval_language": lang if is_multilingual else "",
349
+ "metric": f"{metric}_{sub_metric}" if metric != sub_metric else metric,
350
+ "score": sub_score * 100,
351
+ })
352
+ for idx, row in enumerate(sorted(out, key=lambda x: x["mteb_dataset_name"])):
353
+ yield idx, row
results/Baichuan-text-embedding/AFQMC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "AFQMC",
4
+ "mteb_version": "1.1.0",
5
+ "validation": {
6
+ "cos_sim": {
7
+ "pearson": 0.4829609272631085,
8
+ "spearman": 0.5080031098340034
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.48915888167383914,
12
+ "spearman": 0.508003310876931
13
+ },
14
+ "evaluation_time": 5.52,
15
+ "manhattan": {
16
+ "pearson": 0.4883913003371612,
17
+ "spearman": 0.507119124081868
18
+ }
19
+ }
20
+ }
results/Baichuan-text-embedding/ATEC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "ATEC",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.5108024865980523,
8
+ "spearman": 0.5322524599077678
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.5495649374475876,
12
+ "spearman": 0.5322525387159475
13
+ },
14
+ "evaluation_time": 23.5,
15
+ "manhattan": {
16
+ "pearson": 0.5490069145550858,
17
+ "spearman": 0.5318577305140235
18
+ }
19
+ }
20
+ }
results/Baichuan-text-embedding/AmazonReviewsClassification.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "AmazonReviewsClassification",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 37.19,
7
+ "zh": {
8
+ "accuracy": 0.48301999999999995,
9
+ "accuracy_stderr": 0.015009983344427814,
10
+ "f1": 0.4358151996593711,
11
+ "f1_stderr": 0.021935952504451846,
12
+ "main_score": 0.48301999999999995
13
+ }
14
+ },
15
+ "validation": {
16
+ "evaluation_time": 44.97,
17
+ "zh": {
18
+ "accuracy": 0.47596,
19
+ "accuracy_stderr": 0.013457131938121147,
20
+ "f1": 0.4297519925445886,
21
+ "f1_stderr": 0.022271859166647427,
22
+ "main_score": 0.47596
23
+ }
24
+ }
25
+ }
results/Baichuan-text-embedding/BQ.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "BQ",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.6382205659368678,
8
+ "spearman": 0.664875868977765
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.6469068710733963,
12
+ "spearman": 0.6648758689697865
13
+ },
14
+ "evaluation_time": 11.53,
15
+ "manhattan": {
16
+ "pearson": 0.6465254698872425,
17
+ "spearman": 0.664768204689053
18
+ }
19
+ }
20
+ }
results/Baichuan-text-embedding/CLSClusteringP2P.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CLSClusteringP2P",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 842.9,
7
+ "v_measure": 0.6036843826092417,
8
+ "v_measure_std": 0.011663855200498223
9
+ }
10
+ }
results/Baichuan-text-embedding/CLSClusteringS2S.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CLSClusteringS2S",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 99.78,
7
+ "v_measure": 0.5108781005084964,
8
+ "v_measure_std": 0.01733772998995446
9
+ }
10
+ }
results/Baichuan-text-embedding/CMedQAv1.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CMedQAv1",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 245.66,
7
+ "map": 0.8806336186199681,
8
+ "mrr": 0.9029142857142856
9
+ }
10
+ }
results/Baichuan-text-embedding/CMedQAv2.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CMedQAv2",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 255.0,
7
+ "map": 0.8845694611153427,
8
+ "mrr": 0.9049976190476191
9
+ }
10
+ }
results/Baichuan-text-embedding/CmedqaRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 293.85,
5
+ "map_at_1": 0.27486,
6
+ "map_at_10": 0.40762,
7
+ "map_at_100": 0.42651,
8
+ "map_at_1000": 0.42753,
9
+ "map_at_3": 0.36423,
10
+ "map_at_5": 0.38844,
11
+ "mrr_at_1": 0.41935,
12
+ "mrr_at_10": 0.50255,
13
+ "mrr_at_100": 0.51194,
14
+ "mrr_at_1000": 0.51233,
15
+ "mrr_at_3": 0.47633,
16
+ "mrr_at_5": 0.49123,
17
+ "ndcg_at_1": 0.41935,
18
+ "ndcg_at_10": 0.47637,
19
+ "ndcg_at_100": 0.54772,
20
+ "ndcg_at_1000": 0.56477,
21
+ "ndcg_at_3": 0.42216,
22
+ "ndcg_at_5": 0.44463,
23
+ "precision_at_1": 0.41935,
24
+ "precision_at_10": 0.10463,
25
+ "precision_at_100": 0.01626,
26
+ "precision_at_1000": 0.00184,
27
+ "precision_at_3": 0.23731,
28
+ "precision_at_5": 0.17129,
29
+ "recall_at_1": 0.27486,
30
+ "recall_at_10": 0.58517,
31
+ "recall_at_100": 0.87758,
32
+ "recall_at_1000": 0.99031,
33
+ "recall_at_3": 0.42086,
34
+ "recall_at_5": 0.49157
35
+ },
36
+ "mteb_dataset_name": "CmedqaRetrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/Cmnli.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "Cmnli",
4
+ "mteb_version": "1.1.0",
5
+ "validation": {
6
+ "cos_sim": {
7
+ "accuracy": 0.7672880336740829,
8
+ "accuracy_threshold": 0.5732834339141846,
9
+ "ap": 0.853143557144231,
10
+ "f1": 0.7844515441959531,
11
+ "f1_threshold": 0.5262686014175415,
12
+ "precision": 0.7203207510267945,
13
+ "recall": 0.8611176057984569
14
+ },
15
+ "dot": {
16
+ "accuracy": 0.7672880336740829,
17
+ "accuracy_threshold": 0.5732833743095398,
18
+ "ap": 0.8530751882614949,
19
+ "f1": 0.7844515441959531,
20
+ "f1_threshold": 0.5262686610221863,
21
+ "precision": 0.7203207510267945,
22
+ "recall": 0.8611176057984569
23
+ },
24
+ "euclidean": {
25
+ "accuracy": 0.7672880336740829,
26
+ "accuracy_threshold": 0.9238144755363464,
27
+ "ap": 0.8531435417467815,
28
+ "f1": 0.7844515441959531,
29
+ "f1_threshold": 0.9733769297599792,
30
+ "precision": 0.7203207510267945,
31
+ "recall": 0.8611176057984569
32
+ },
33
+ "evaluation_time": 20.61,
34
+ "manhattan": {
35
+ "accuracy": 0.7683704149128082,
36
+ "accuracy_threshold": 23.47174644470215,
37
+ "ap": 0.853344222480869,
38
+ "f1": 0.784551963549577,
39
+ "f1_threshold": 24.62630844116211,
40
+ "precision": 0.7318356607974095,
41
+ "recall": 0.845452419920505
42
+ },
43
+ "max": {
44
+ "accuracy": 0.7683704149128082,
45
+ "ap": 0.853344222480869,
46
+ "f1": 0.784551963549577
47
+ }
48
+ }
49
+ }
results/Baichuan-text-embedding/CovidRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 321.42,
5
+ "map_at_1": 0.75395,
6
+ "map_at_10": 0.83498,
7
+ "map_at_100": 0.83664,
8
+ "map_at_1000": 0.83666,
9
+ "map_at_3": 0.82183,
10
+ "map_at_5": 0.83043,
11
+ "mrr_at_1": 0.75553,
12
+ "mrr_at_10": 0.83455,
13
+ "mrr_at_100": 0.83613,
14
+ "mrr_at_1000": 0.83614,
15
+ "mrr_at_3": 0.82122,
16
+ "mrr_at_5": 0.8307,
17
+ "ndcg_at_1": 0.75553,
18
+ "ndcg_at_10": 0.86865,
19
+ "ndcg_at_100": 0.87511,
20
+ "ndcg_at_1000": 0.8754,
21
+ "ndcg_at_3": 0.84324,
22
+ "ndcg_at_5": 0.85864,
23
+ "precision_at_1": 0.75553,
24
+ "precision_at_10": 0.0981,
25
+ "precision_at_100": 0.01008,
26
+ "precision_at_1000": 0.00101,
27
+ "precision_at_3": 0.30313,
28
+ "precision_at_5": 0.18967,
29
+ "recall_at_1": 0.75395,
30
+ "recall_at_10": 0.97102,
31
+ "recall_at_100": 0.99789,
32
+ "recall_at_1000": 1.0,
33
+ "recall_at_3": 0.90516,
34
+ "recall_at_5": 0.94152
35
+ },
36
+ "mteb_dataset_name": "CovidRetrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/DuRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 331.03,
5
+ "map_at_1": 0.26579,
6
+ "map_at_10": 0.81391,
7
+ "map_at_100": 0.84156,
8
+ "map_at_1000": 0.84195,
9
+ "map_at_3": 0.56806,
10
+ "map_at_5": 0.71469,
11
+ "mrr_at_1": 0.9155,
12
+ "mrr_at_10": 0.94169,
13
+ "mrr_at_100": 0.94218,
14
+ "mrr_at_1000": 0.94221,
15
+ "mrr_at_3": 0.93908,
16
+ "mrr_at_5": 0.94081,
17
+ "ndcg_at_1": 0.9155,
18
+ "ndcg_at_10": 0.88427,
19
+ "ndcg_at_100": 0.90951,
20
+ "ndcg_at_1000": 0.91299,
21
+ "ndcg_at_3": 0.87826,
22
+ "ndcg_at_5": 0.86583,
23
+ "precision_at_1": 0.9155,
24
+ "precision_at_10": 0.4218,
25
+ "precision_at_100": 0.04808,
26
+ "precision_at_1000": 0.00489,
27
+ "precision_at_3": 0.7865,
28
+ "precision_at_5": 0.6624,
29
+ "recall_at_1": 0.26579,
30
+ "recall_at_10": 0.89204,
31
+ "recall_at_100": 0.97596,
32
+ "recall_at_1000": 0.99417,
33
+ "recall_at_3": 0.58946,
34
+ "recall_at_5": 0.7584
35
+ },
36
+ "mteb_dataset_name": "DuRetrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/EcomRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 52.09,
5
+ "map_at_1": 0.515,
6
+ "map_at_10": 0.6134,
7
+ "map_at_100": 0.61896,
8
+ "map_at_1000": 0.61911,
9
+ "map_at_3": 0.58683,
10
+ "map_at_5": 0.60308,
11
+ "mrr_at_1": 0.515,
12
+ "mrr_at_10": 0.6134,
13
+ "mrr_at_100": 0.61896,
14
+ "mrr_at_1000": 0.61911,
15
+ "mrr_at_3": 0.58683,
16
+ "mrr_at_5": 0.60308,
17
+ "ndcg_at_1": 0.515,
18
+ "ndcg_at_10": 0.66393,
19
+ "ndcg_at_100": 0.68905,
20
+ "ndcg_at_1000": 0.6928,
21
+ "ndcg_at_3": 0.61049,
22
+ "ndcg_at_5": 0.63975,
23
+ "precision_at_1": 0.515,
24
+ "precision_at_10": 0.0823,
25
+ "precision_at_100": 0.00936,
26
+ "precision_at_1000": 0.00097,
27
+ "precision_at_3": 0.22633,
28
+ "precision_at_5": 0.15,
29
+ "recall_at_1": 0.515,
30
+ "recall_at_10": 0.823,
31
+ "recall_at_100": 0.936,
32
+ "recall_at_1000": 0.965,
33
+ "recall_at_3": 0.679,
34
+ "recall_at_5": 0.75
35
+ },
36
+ "mteb_dataset_name": "EcomRetrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/IFlyTek.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "IFlyTek",
4
+ "mteb_version": "1.1.0",
5
+ "validation": {
6
+ "accuracy": 0.5075028857252789,
7
+ "accuracy_stderr": 0.003609400353846422,
8
+ "evaluation_time": 177.43,
9
+ "f1": 0.3640576261699708,
10
+ "f1_stderr": 0.007935818070069649,
11
+ "main_score": 0.5075028857252789
12
+ }
13
+ }
results/Baichuan-text-embedding/JDReview.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "JDReview",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "accuracy": 0.876923076923077,
7
+ "accuracy_stderr": 0.015543951352501298,
8
+ "ap": 0.5771137523616632,
9
+ "ap_stderr": 0.027052492390223098,
10
+ "evaluation_time": 13.72,
11
+ "f1": 0.8269262506868096,
12
+ "f1_stderr": 0.01643864510374752,
13
+ "main_score": 0.876923076923077
14
+ }
15
+ }
results/Baichuan-text-embedding/LCQMC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "LCQMC",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.7329402204344446,
8
+ "spearman": 0.7659571213941639
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.7536085128119648,
12
+ "spearman": 0.7659571213847517
13
+ },
14
+ "evaluation_time": 10.5,
15
+ "manhattan": {
16
+ "pearson": 0.7532685583893368,
17
+ "spearman": 0.7656404415349796
18
+ }
19
+ }
20
+ }
results/Baichuan-text-embedding/MMarcoReranking.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "MMarcoReranking",
4
+ "mteb_version": "1.1.0",
5
+ "dev": {
6
+ "evaluation_time": 353.06,
7
+ "map": 0.34300784663135503,
8
+ "mrr": 0.3397539682539683
9
+ }
10
+ }
results/Baichuan-text-embedding/MMarcoRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 164.09,
5
+ "map_at_1": 0.67579,
6
+ "map_at_10": 0.76596,
7
+ "map_at_100": 0.76885,
8
+ "map_at_1000": 0.76895,
9
+ "map_at_3": 0.74784,
10
+ "map_at_5": 0.75943,
11
+ "mrr_at_1": 0.69814,
12
+ "mrr_at_10": 0.77122,
13
+ "mrr_at_100": 0.77379,
14
+ "mrr_at_1000": 0.77388,
15
+ "mrr_at_3": 0.75583,
16
+ "mrr_at_5": 0.76558,
17
+ "ndcg_at_1": 0.69814,
18
+ "ndcg_at_10": 0.80173,
19
+ "ndcg_at_100": 0.81457,
20
+ "ndcg_at_1000": 0.81738,
21
+ "ndcg_at_3": 0.76788,
22
+ "ndcg_at_5": 0.78716,
23
+ "precision_at_1": 0.69814,
24
+ "precision_at_10": 0.09642,
25
+ "precision_at_100": 0.01027,
26
+ "precision_at_1000": 0.00105,
27
+ "precision_at_3": 0.28806,
28
+ "precision_at_5": 0.18318,
29
+ "recall_at_1": 0.67579,
30
+ "recall_at_10": 0.90635,
31
+ "recall_at_100": 0.96408,
32
+ "recall_at_1000": 0.98619,
33
+ "recall_at_3": 0.81756,
34
+ "recall_at_5": 0.86314
35
+ },
36
+ "mteb_dataset_name": "MMarcoRetrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/MassiveIntentClassification.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "MassiveIntentClassification",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 21.27,
7
+ "zh-CN": {
8
+ "accuracy": 0.749058507061197,
9
+ "accuracy_stderr": 0.011884386350506135,
10
+ "f1": 0.7161970536275908,
11
+ "f1_stderr": 0.016191767473599423,
12
+ "main_score": 0.749058507061197
13
+ }
14
+ },
15
+ "validation": {
16
+ "evaluation_time": 19.95,
17
+ "zh-CN": {
18
+ "accuracy": 0.7576487948844074,
19
+ "accuracy_stderr": 0.01332642347320569,
20
+ "f1": 0.7118884143366013,
21
+ "f1_stderr": 0.015415315352111523,
22
+ "main_score": 0.7576487948844074
23
+ }
24
+ }
25
+ }
results/Baichuan-text-embedding/MassiveScenarioClassification.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "MassiveScenarioClassification",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 13.92,
7
+ "zh-CN": {
8
+ "accuracy": 0.8128110289172831,
9
+ "accuracy_stderr": 0.010581970443298772,
10
+ "f1": 0.7981971014179347,
11
+ "f1_stderr": 0.013781985332394563,
12
+ "main_score": 0.8128110289172831
13
+ }
14
+ },
15
+ "validation": {
16
+ "evaluation_time": 16.58,
17
+ "zh-CN": {
18
+ "accuracy": 0.8044269552385638,
19
+ "accuracy_stderr": 0.01384668511219742,
20
+ "f1": 0.7893222744509287,
21
+ "f1_stderr": 0.01724155206070888,
22
+ "main_score": 0.8044269552385638
23
+ }
24
+ }
25
+ }
results/Baichuan-text-embedding/MedicalRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 142.23,
5
+ "map_at_1": 0.523,
6
+ "map_at_10": 0.583,
7
+ "map_at_100": 0.5883,
8
+ "map_at_1000": 0.58884,
9
+ "map_at_3": 0.572,
10
+ "map_at_5": 0.57715,
11
+ "mrr_at_1": 0.524,
12
+ "mrr_at_10": 0.58355,
13
+ "mrr_at_100": 0.58885,
14
+ "mrr_at_1000": 0.58939,
15
+ "mrr_at_3": 0.5725,
16
+ "mrr_at_5": 0.5777,
17
+ "ndcg_at_1": 0.523,
18
+ "ndcg_at_10": 0.61098,
19
+ "ndcg_at_100": 0.63829,
20
+ "ndcg_at_1000": 0.65398,
21
+ "ndcg_at_3": 0.58721,
22
+ "ndcg_at_5": 0.59659,
23
+ "precision_at_1": 0.523,
24
+ "precision_at_10": 0.0699,
25
+ "precision_at_100": 0.0083,
26
+ "precision_at_1000": 0.00096,
27
+ "precision_at_3": 0.21033,
28
+ "precision_at_5": 0.1308,
29
+ "recall_at_1": 0.523,
30
+ "recall_at_10": 0.699,
31
+ "recall_at_100": 0.83,
32
+ "recall_at_1000": 0.956,
33
+ "recall_at_3": 0.631,
34
+ "recall_at_5": 0.654
35
+ },
36
+ "mteb_dataset_name": "MedicalRetrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/MultilingualSentiment.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "MultilingualSentiment",
4
+ "mteb_version": "1.1.0",
5
+ "validation": {
6
+ "accuracy": 0.7683333333333333,
7
+ "accuracy_stderr": 0.002808716591058785,
8
+ "evaluation_time": 35.42,
9
+ "f1": 0.7634474528405593,
10
+ "f1_stderr": 0.004128334463667356,
11
+ "main_score": 0.7683333333333333
12
+ }
13
+ }
results/Baichuan-text-embedding/Ocnli.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "Ocnli",
4
+ "mteb_version": "1.1.0",
5
+ "validation": {
6
+ "cos_sim": {
7
+ "accuracy": 0.7552788305360043,
8
+ "accuracy_threshold": 0.5918081402778625,
9
+ "ap": 0.7933459144431134,
10
+ "f1": 0.7710033605376861,
11
+ "f1_threshold": 0.5680263042449951,
12
+ "precision": 0.7068661971830986,
13
+ "recall": 0.8479408658922915
14
+ },
15
+ "dot": {
16
+ "accuracy": 0.7552788305360043,
17
+ "accuracy_threshold": 0.5918081402778625,
18
+ "ap": 0.7933459144431134,
19
+ "f1": 0.7710033605376861,
20
+ "f1_threshold": 0.5680263042449951,
21
+ "precision": 0.7068661971830986,
22
+ "recall": 0.8479408658922915
23
+ },
24
+ "euclidean": {
25
+ "accuracy": 0.7552788305360043,
26
+ "accuracy_threshold": 0.9035395383834839,
27
+ "ap": 0.7933459144431134,
28
+ "f1": 0.7710033605376861,
29
+ "f1_threshold": 0.9294876456260681,
30
+ "precision": 0.7068661971830986,
31
+ "recall": 0.8479408658922915
32
+ },
33
+ "evaluation_time": 2.86,
34
+ "manhattan": {
35
+ "accuracy": 0.7531131564699513,
36
+ "accuracy_threshold": 22.5145263671875,
37
+ "ap": 0.7936757512903327,
38
+ "f1": 0.7693023255813953,
39
+ "f1_threshold": 24.065532684326172,
40
+ "precision": 0.6874480465502909,
41
+ "recall": 0.8732840549102429
42
+ },
43
+ "max": {
44
+ "accuracy": 0.7552788305360043,
45
+ "ap": 0.7936757512903327,
46
+ "f1": 0.7710033605376861
47
+ }
48
+ }
49
+ }
results/Baichuan-text-embedding/OnlineShopping.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "OnlineShopping",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "accuracy": 0.9441999999999998,
7
+ "accuracy_stderr": 0.0028913664589601948,
8
+ "ap": 0.9253177971136661,
9
+ "ap_stderr": 0.004435733302762033,
10
+ "evaluation_time": 15.57,
11
+ "f1": 0.9440757676006394,
12
+ "f1_stderr": 0.0028698839591287813,
13
+ "main_score": 0.9441999999999998
14
+ }
15
+ }
results/Baichuan-text-embedding/PAWSX.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "PAWSX",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.4440187963946336,
8
+ "spearman": 0.47560337376825085
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.47582142557969154,
12
+ "spearman": 0.47560337376825085
13
+ },
14
+ "evaluation_time": 2.49,
15
+ "manhattan": {
16
+ "pearson": 0.4752151199528625,
17
+ "spearman": 0.47509647784531567
18
+ }
19
+ }
20
+ }
results/Baichuan-text-embedding/QBQTC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "QBQTC",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.3862883070440486,
8
+ "spearman": 0.39955352213272627
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.3786832501667679,
12
+ "spearman": 0.3995535221519048
13
+ },
14
+ "evaluation_time": 5.97,
15
+ "manhattan": {
16
+ "pearson": 0.3783822070118956,
17
+ "spearman": 0.3990713604918495
18
+ }
19
+ }
20
+ }
results/Baichuan-text-embedding/STS22.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": "6d1ba47164174a496b7fa5d3569dae26a6813b80",
3
+ "mteb_dataset_name": "STS22",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 7.61,
7
+ "zh": {
8
+ "cos_sim": {
9
+ "pearson": 0.6082900117033369,
10
+ "spearman": 0.657843998948187
11
+ },
12
+ "euclidean": {
13
+ "pearson": 0.6276823760827268,
14
+ "spearman": 0.657843998948187
15
+ },
16
+ "manhattan": {
17
+ "pearson": 0.6312607312720664,
18
+ "spearman": 0.6575028602582914
19
+ }
20
+ }
21
+ }
22
+ }
results/Baichuan-text-embedding/STSB.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "STSB",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.8067336246251158,
8
+ "spearman": 0.8014220624121933
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.7903263059130334,
12
+ "spearman": 0.8014220624121933
13
+ },
14
+ "evaluation_time": 2.16,
15
+ "manhattan": {
16
+ "pearson": 0.789560236524975,
17
+ "spearman": 0.7997430607737568
18
+ }
19
+ }
20
+ }
results/Baichuan-text-embedding/T2Reranking.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "T2Reranking",
4
+ "mteb_version": "1.1.0",
5
+ "dev": {
6
+ "evaluation_time": 767.43,
7
+ "map": 0.6784944108203279,
8
+ "mrr": 0.7791862795671192
9
+ }
10
+ }
results/Baichuan-text-embedding/T2Retrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 626.32,
5
+ "map_at_1": 0.25021,
6
+ "map_at_10": 0.71544,
7
+ "map_at_100": 0.75456,
8
+ "map_at_1000": 0.75537,
9
+ "map_at_3": 0.49671,
10
+ "map_at_5": 0.61299,
11
+ "mrr_at_1": 0.85534,
12
+ "mrr_at_10": 0.89019,
13
+ "mrr_at_100": 0.89152,
14
+ "mrr_at_1000": 0.89158,
15
+ "mrr_at_3": 0.88413,
16
+ "mrr_at_5": 0.8879,
17
+ "ndcg_at_1": 0.85534,
18
+ "ndcg_at_10": 0.8011,
19
+ "ndcg_at_100": 0.84517,
20
+ "ndcg_at_1000": 0.85311,
21
+ "ndcg_at_3": 0.81212,
22
+ "ndcg_at_5": 0.79782,
23
+ "precision_at_1": 0.85534,
24
+ "precision_at_10": 0.40517,
25
+ "precision_at_100": 0.04961,
26
+ "precision_at_1000": 0.00514,
27
+ "precision_at_3": 0.71484,
28
+ "precision_at_5": 0.60081,
29
+ "recall_at_1": 0.25021,
30
+ "recall_at_10": 0.79721,
31
+ "recall_at_100": 0.93976,
32
+ "recall_at_1000": 0.98037,
33
+ "recall_at_3": 0.51869,
34
+ "recall_at_5": 0.65616
35
+ },
36
+ "mteb_dataset_name": "T2Retrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/TNews.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "TNews",
4
+ "mteb_version": "1.1.0",
5
+ "validation": {
6
+ "accuracy": 0.5261899999999999,
7
+ "accuracy_stderr": 0.005332813516334514,
8
+ "evaluation_time": 80.03,
9
+ "f1": 0.5088699308193914,
10
+ "f1_stderr": 0.005808330018430932,
11
+ "main_score": 0.5261899999999999
12
+ }
13
+ }
results/Baichuan-text-embedding/ThuNewsClusteringP2P.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "ThuNewsClusteringP2P",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 684.88,
7
+ "v_measure": 0.582283860392516,
8
+ "v_measure_std": 0.02478622759991042
9
+ }
10
+ }
results/Baichuan-text-embedding/ThuNewsClusteringS2S.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "ThuNewsClusteringS2S",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "evaluation_time": 71.89,
7
+ "v_measure": 0.5782974132365385,
8
+ "v_measure_std": 0.013022585576314076
9
+ }
10
+ }
results/Baichuan-text-embedding/VideoRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 56.91,
5
+ "map_at_1": 0.606,
6
+ "map_at_10": 0.70041,
7
+ "map_at_100": 0.70481,
8
+ "map_at_1000": 0.70494,
9
+ "map_at_3": 0.682,
10
+ "map_at_5": 0.6925,
11
+ "mrr_at_1": 0.606,
12
+ "mrr_at_10": 0.70041,
13
+ "mrr_at_100": 0.70481,
14
+ "mrr_at_1000": 0.70494,
15
+ "mrr_at_3": 0.682,
16
+ "mrr_at_5": 0.6925,
17
+ "ndcg_at_1": 0.606,
18
+ "ndcg_at_10": 0.74282,
19
+ "ndcg_at_100": 0.7629,
20
+ "ndcg_at_1000": 0.76595,
21
+ "ndcg_at_3": 0.70476,
22
+ "ndcg_at_5": 0.72369,
23
+ "precision_at_1": 0.606,
24
+ "precision_at_10": 0.0875,
25
+ "precision_at_100": 0.00966,
26
+ "precision_at_1000": 0.00099,
27
+ "precision_at_3": 0.25667,
28
+ "precision_at_5": 0.1632,
29
+ "recall_at_1": 0.606,
30
+ "recall_at_10": 0.875,
31
+ "recall_at_100": 0.966,
32
+ "recall_at_1000": 0.989,
33
+ "recall_at_3": 0.77,
34
+ "recall_at_5": 0.816
35
+ },
36
+ "mteb_dataset_name": "VideoRetrieval",
37
+ "mteb_version": "1.1.0"
38
+ }
results/Baichuan-text-embedding/Waimai.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "Waimai",
4
+ "mteb_version": "1.1.0",
5
+ "test": {
6
+ "accuracy": 0.8877,
7
+ "accuracy_stderr": 0.005478138369920941,
8
+ "ap": 0.7410049925615304,
9
+ "ap_stderr": 0.01151741307800683,
10
+ "evaluation_time": 13.59,
11
+ "f1": 0.8718799117513892,
12
+ "f1_stderr": 0.005127107574743738,
13
+ "main_score": 0.8877
14
+ }
15
+ }
results/Cohere-embed-english-v3.0/AILACasedocs.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.31543}, "mteb_dataset_name": "AILACasedocs"}
results/Cohere-embed-english-v3.0/AILAStatutes.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.27152}, "mteb_dataset_name": "AILAStatutes"}
results/Cohere-embed-english-v3.0/Core17InstructionRetrieval.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": "e39ff896cf3efbbdeeb950e6bd7c79f266995b07",
3
+ "mteb_dataset_name": "Core17InstructionRetrieval",
4
+ "mteb_version": "1.7.32",
5
+ "test": {
6
+ "evaluation_time": 746.94,
7
+ "p-MRR": 0.028043926455402175
8
+ }
9
+ }
results/Cohere-embed-english-v3.0/GerDaLIRSmall.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.06047}, "mteb_dataset_name": "GerDaLIRSmall"}
results/Cohere-embed-english-v3.0/LeCaRDv2.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.21017}, "mteb_dataset_name": "LeCaRDv2"}
results/Cohere-embed-english-v3.0/LegalBenchConsumerContractsQA.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.7712}, "mteb_dataset_name": "LegalBenchConsumerContractsQA"}
results/Cohere-embed-english-v3.0/LegalBenchCorporateLobbying.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.93681}, "mteb_dataset_name": "LegalBenchCorporateLobbying"}
results/Cohere-embed-english-v3.0/LegalQuAD.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.26075}, "mteb_dataset_name": "LegalQuAD"}
results/Cohere-embed-english-v3.0/LegalSummarization.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"test": {"ndcg_at_10": 0.61697}, "mteb_dataset_name": "LegalSummarization"}
results/Cohere-embed-english-v3.0/News21InstructionRetrieval.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": "e0144086b45fe31ac125e9ac1a83b6a409bb6ca6",
3
+ "mteb_dataset_name": "News21InstructionRetrieval",
4
+ "mteb_version": "1.7.32",
5
+ "test": {
6
+ "evaluation_time": 1439.26,
7
+ "p-MRR": 0.002004465362643827
8
+ }
9
+ }
results/Cohere-embed-english-v3.0/Robust04InstructionRetrieval.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": "a5a1c4fe2bc528ac12e83f8cdf82178da85d2f1d",
3
+ "mteb_dataset_name": "Robust04InstructionRetrieval",
4
+ "mteb_version": "1.7.32",
5
+ "test": {
6
+ "evaluation_time": 2142.32,
7
+ "p-MRR": -0.036304526527805095
8
+ }
9
+ }