Muennighoff commited on
Commit
fe2792c
1 Parent(s): bd9354c
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. paths.json +0 -0
  2. results.py +12 -8
  3. results/luotuo-bert-medium/JDReview.json +1 -1
  4. results/luotuo-bert-medium/OnlineShopping.json +1 -1
  5. results/luotuo-bert-medium/Waimai.json +1 -1
  6. results/m3e-base/JDReview.json +1 -1
  7. results/m3e-base/OnlineShopping.json +1 -1
  8. results/m3e-base/Waimai.json +1 -1
  9. results/m3e-large/JDReview.json +1 -1
  10. results/m3e-large/OnlineShopping.json +1 -1
  11. results/m3e-large/Waimai.json +1 -1
  12. results/multilingual-e5-large/AFQMC.json +20 -0
  13. results/multilingual-e5-large/ATEC.json +20 -0
  14. results/multilingual-e5-large/BQ.json +20 -0
  15. results/multilingual-e5-large/CLSClusteringP2P.json +10 -0
  16. results/multilingual-e5-large/CLSClusteringS2S.json +10 -0
  17. results/multilingual-e5-large/CMedQAv1.json +10 -0
  18. results/multilingual-e5-large/CMedQAv2.json +10 -0
  19. results/multilingual-e5-large/CmedqaRetrieval.json +38 -0
  20. results/multilingual-e5-large/Cmnli.json +49 -0
  21. results/multilingual-e5-large/CovidRetrieval.json +38 -0
  22. results/multilingual-e5-large/DuRetrieval.json +38 -0
  23. results/multilingual-e5-large/EcomRetrieval.json +38 -0
  24. results/multilingual-e5-large/IFlyTek.json +13 -0
  25. results/multilingual-e5-large/JDReview.json +15 -0
  26. results/multilingual-e5-large/LCQMC.json +20 -0
  27. results/multilingual-e5-large/MMarcoReranking.json +10 -0
  28. results/multilingual-e5-large/MMarcoRetrieval.json +38 -0
  29. results/multilingual-e5-large/MedicalRetrieval.json +38 -0
  30. results/multilingual-e5-large/MultilingualSentiment.json +13 -0
  31. results/multilingual-e5-large/Ocnli.json +49 -0
  32. results/multilingual-e5-large/OnlineShopping.json +15 -0
  33. results/multilingual-e5-large/PAWSX.json +20 -0
  34. results/multilingual-e5-large/QBQTC.json +20 -0
  35. results/multilingual-e5-large/STSB.json +20 -0
  36. results/multilingual-e5-large/T2Reranking.json +10 -0
  37. results/multilingual-e5-large/T2Retrieval.json +38 -0
  38. results/multilingual-e5-large/TNews.json +13 -0
  39. results/multilingual-e5-large/ThuNewsClusteringP2P.json +10 -0
  40. results/multilingual-e5-large/ThuNewsClusteringS2S.json +10 -0
  41. results/multilingual-e5-large/VideoRetrieval.json +38 -0
  42. results/multilingual-e5-large/Waimai.json +15 -0
  43. results/multilingual-e5-small/AFQMC.json +20 -0
  44. results/multilingual-e5-small/ATEC.json +20 -0
  45. results/multilingual-e5-small/BQ.json +20 -0
  46. results/multilingual-e5-small/CLSClusteringP2P.json +10 -0
  47. results/multilingual-e5-small/CLSClusteringS2S.json +10 -0
  48. results/multilingual-e5-small/CMedQAv1.json +10 -0
  49. results/multilingual-e5-small/CMedQAv2.json +10 -0
  50. results/multilingual-e5-small/CmedqaRetrieval.json +38 -0
paths.json CHANGED
The diff for this file is too large to render. See raw diff
 
results.py CHANGED
@@ -27,6 +27,13 @@ EVAL_LANGS = ['af', 'afr-eng', 'am', 'amh-eng', 'ang-eng', 'ar', 'ar-ar', 'ara-e
27
 
28
  SKIP_KEYS = ["std", "evaluation_time", "main_score", "threshold"]
29
 
 
 
 
 
 
 
 
30
  MODELS = [
31
  "all-MiniLM-L12-v2",
32
  "all-MiniLM-L6-v2",
@@ -173,15 +180,12 @@ class MTEBResults(datasets.GeneratorBasedBuilder):
173
  res_dict = json.load(f)
174
  ds_name = res_dict["mteb_dataset_name"]
175
  split = "test"
176
- if ds_name in ["AFQMC", "CmedqaRetrieval", "Cmnli", "CovidRetrieval", "DuRetrieval", "EcomRetrieval", "IFlyTek", "JDReview", "MedicalRetrieval", "MultilingualSentiment", "MMarcoReranking", "MMarcoRetrieval", "MSMARCO", "Ocnli", "OnlineShopping", "T2Reranking", "T2Retrieval", "TNews", "VideoRetrieval", "Waimai",]:
177
- if "test" in res_dict:
178
- split = "test"
179
- elif "dev" in res_dict:
180
- split = "dev"
181
- elif "validation" in res_dict:
182
- split = "validation"
183
- elif ds_name in ["DanishPoliticalCommentsClassification"]:
184
  split = "train"
 
 
 
 
185
  if split not in res_dict:
186
  print(f"Skipping {ds_name} as split {split} not present.")
187
  continue
 
27
 
28
  SKIP_KEYS = ["std", "evaluation_time", "main_score", "threshold"]
29
 
30
+ # Use "train" split instead
31
+ TRAIN_SPLIT = ["DanishPoliticalCommentsClassification"]
32
+ # Use "validation" split instead
33
+ VALIDATION_SPLIT = ["AFQMC", "Cmnli", "IFlyTek", "TNews", "MultilingualSentiment", "Ocnli"]
34
+ # Use "dev" split instead
35
+ DEV_SPLIT = ["CmedqaRetrieval", "CovidRetrieval", "DuRetrieval", "EcomRetrieval", "MedicalRetrieval", "MMarcoReranking", "MMarcoRetrieval", "MSMARCO", "T2Reranking", "T2Retrieval", "VideoRetrieval"]
36
+
37
  MODELS = [
38
  "all-MiniLM-L12-v2",
39
  "all-MiniLM-L6-v2",
 
180
  res_dict = json.load(f)
181
  ds_name = res_dict["mteb_dataset_name"]
182
  split = "test"
183
+ if ds_name in TRAIN_SPLIT:
 
 
 
 
 
 
 
184
  split = "train"
185
+ elif ds_name in VALIDATION_SPLIT:
186
+ split = "validation"
187
+ elif ds_name in DEV_SPLIT:
188
+ split = "dev"
189
  if split not in res_dict:
190
  print(f"Skipping {ds_name} as split {split} not present.")
191
  continue
results/luotuo-bert-medium/JDReview.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "JDReview",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.7968105065666041,
7
  "accuracy_stderr": 0.013556564277298419,
8
  "ap": 0.4273453175940383,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "JDReview",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.7968105065666041,
7
  "accuracy_stderr": 0.013556564277298419,
8
  "ap": 0.4273453175940383,
results/luotuo-bert-medium/OnlineShopping.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "OnlineShopping",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.843,
7
  "accuracy_stderr": 0.019544820285692058,
8
  "ap": 0.7987414729110291,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "OnlineShopping",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.843,
7
  "accuracy_stderr": 0.019544820285692058,
8
  "ap": 0.7987414729110291,
results/luotuo-bert-medium/Waimai.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "Waimai",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.7957,
7
  "accuracy_stderr": 0.03848908936309093,
8
  "ap": 0.5868772679908123,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "Waimai",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.7957,
7
  "accuracy_stderr": 0.03848908936309093,
8
  "ap": 0.5868772679908123,
results/m3e-base/JDReview.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "JDReview",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.8532833020637899,
7
  "accuracy_stderr": 0.0174352872877883,
8
  "ap": 0.5352464864512989,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "JDReview",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.8532833020637899,
7
  "accuracy_stderr": 0.0174352872877883,
8
  "ap": 0.5352464864512989,
results/m3e-base/OnlineShopping.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "OnlineShopping",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.8776999999999999,
7
  "accuracy_stderr": 0.023311156127485418,
8
  "ap": 0.8446574974349321,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "OnlineShopping",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.8776999999999999,
7
  "accuracy_stderr": 0.023311156127485418,
8
  "ap": 0.8446574974349321,
results/m3e-base/Waimai.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "Waimai",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.8399000000000001,
7
  "accuracy_stderr": 0.040704913708298165,
8
  "ap": 0.659398567279327,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "Waimai",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.8399000000000001,
7
  "accuracy_stderr": 0.040704913708298165,
8
  "ap": 0.659398567279327,
results/m3e-large/JDReview.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "JDReview",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.8692307692307694,
7
  "accuracy_stderr": 0.018152394175514827,
8
  "ap": 0.5591323728346198,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "JDReview",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.8692307692307694,
7
  "accuracy_stderr": 0.018152394175514827,
8
  "ap": 0.5591323728346198,
results/m3e-large/OnlineShopping.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "OnlineShopping",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.8958999999999999,
7
  "accuracy_stderr": 0.03008803749000592,
8
  "ap": 0.8597603713701234,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "OnlineShopping",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.8958999999999999,
7
  "accuracy_stderr": 0.03008803749000592,
8
  "ap": 0.8597603713701234,
results/m3e-large/Waimai.json CHANGED
@@ -2,7 +2,7 @@
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "Waimai",
4
  "mteb_version": "1.0.2",
5
- "validation": {
6
  "accuracy": 0.8608,
7
  "accuracy_stderr": 0.039866778149230966,
8
  "ap": 0.6963624485137558,
 
2
  "dataset_revision": null,
3
  "mteb_dataset_name": "Waimai",
4
  "mteb_version": "1.0.2",
5
+ "test": {
6
  "accuracy": 0.8608,
7
  "accuracy_stderr": 0.039866778149230966,
8
  "ap": 0.6963624485137558,
results/multilingual-e5-large/AFQMC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "AFQMC",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": NaN,
8
+ "spearman": NaN
9
+ },
10
+ "euclidean": {
11
+ "pearson": NaN,
12
+ "spearman": NaN
13
+ },
14
+ "evaluation_time": 12.98,
15
+ "manhattan": {
16
+ "pearson": NaN,
17
+ "spearman": NaN
18
+ }
19
+ }
20
+ }
results/multilingual-e5-large/ATEC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "ATEC",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.3983763552325925,
8
+ "spearman": 0.39806451817039423
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.42765851116048414,
12
+ "spearman": 0.39836623957443473
13
+ },
14
+ "evaluation_time": 64.8,
15
+ "manhattan": {
16
+ "pearson": 0.42690996785182767,
17
+ "spearman": 0.3976499284462967
18
+ }
19
+ }
20
+ }
results/multilingual-e5-large/BQ.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "BQ",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.4652568155265502,
8
+ "spearman": 0.4643969799177083
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.4645282487186092,
12
+ "spearman": 0.4665529328159168
13
+ },
14
+ "evaluation_time": 35.01,
15
+ "manhattan": {
16
+ "pearson": 0.4643877921228927,
17
+ "spearman": 0.46653013902577517
18
+ }
19
+ }
20
+ }
results/multilingual-e5-large/CLSClusteringP2P.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CLSClusteringP2P",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 2922.58,
7
+ "v_measure": 0.4067707332914356,
8
+ "v_measure_std": 0.011685238492202503
9
+ }
10
+ }
results/multilingual-e5-large/CLSClusteringS2S.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CLSClusteringS2S",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 178.61,
7
+ "v_measure": 0.3858513162813319,
8
+ "v_measure_std": 0.012304449594239878
9
+ }
10
+ }
results/multilingual-e5-large/CMedQAv1.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CMedQAv1",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 996.59,
7
+ "map": 0.6825080623643341,
8
+ "mrr": 0.7280083333333334
9
+ }
10
+ }
results/multilingual-e5-large/CMedQAv2.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CMedQAv2",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 959.3,
7
+ "map": 0.6855542210791,
8
+ "mrr": 0.7355956349206348
9
+ }
10
+ }
results/multilingual-e5-large/CmedqaRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 1480.34,
5
+ "map_at_1": 0.16722,
6
+ "map_at_10": 0.23915,
7
+ "map_at_100": 0.25055,
8
+ "map_at_1000": 0.25225,
9
+ "map_at_3": 0.21594,
10
+ "map_at_5": 0.22813,
11
+ "mrr_at_1": 0.26107,
12
+ "mrr_at_10": 0.31983,
13
+ "mrr_at_100": 0.32773,
14
+ "mrr_at_1000": 0.32864,
15
+ "mrr_at_3": 0.30145,
16
+ "mrr_at_5": 0.31148,
17
+ "ndcg_at_1": 0.26107,
18
+ "ndcg_at_10": 0.28675,
19
+ "ndcg_at_100": 0.33977,
20
+ "ndcg_at_1000": 0.38014,
21
+ "ndcg_at_3": 0.25581,
22
+ "ndcg_at_5": 0.26701,
23
+ "precision_at_1": 0.26107,
24
+ "precision_at_10": 0.06262,
25
+ "precision_at_100": 0.01061,
26
+ "precision_at_1000": 0.0016,
27
+ "precision_at_3": 0.14404,
28
+ "precision_at_5": 0.10223,
29
+ "recall_at_1": 0.16722,
30
+ "recall_at_10": 0.35017,
31
+ "recall_at_100": 0.57938,
32
+ "recall_at_1000": 0.8636,
33
+ "recall_at_3": 0.25176,
34
+ "recall_at_5": 0.29109
35
+ },
36
+ "mteb_dataset_name": "CmedqaRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/Cmnli.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "Cmnli",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "validation": {
6
+ "cos_sim": {
7
+ "accuracy": 0.6992182802164763,
8
+ "accuracy_threshold": 0.9131839275360107,
9
+ "ap": 0.7818052754133149,
10
+ "f1": 0.7268312424119788,
11
+ "f1_threshold": 0.8896820545196533,
12
+ "precision": 0.6406277866952024,
13
+ "recall": 0.839841010053776
14
+ },
15
+ "dot": {
16
+ "accuracy": 0.682501503307276,
17
+ "accuracy_threshold": 782.92724609375,
18
+ "ap": 0.7682398009516549,
19
+ "f1": 0.7143704289385253,
20
+ "f1_threshold": 757.307861328125,
21
+ "precision": 0.6187296695771272,
22
+ "recall": 0.8449848024316109
23
+ },
24
+ "euclidean": {
25
+ "accuracy": 0.6986169573060733,
26
+ "accuracy_threshold": 11.942947387695312,
27
+ "ap": 0.7816462841949386,
28
+ "f1": 0.7278070531009324,
29
+ "f1_threshold": 13.729618072509766,
30
+ "precision": 0.6422822393131818,
31
+ "recall": 0.839607201309329
32
+ },
33
+ "evaluation_time": 35.43,
34
+ "manhattan": {
35
+ "accuracy": 0.6976548406494287,
36
+ "accuracy_threshold": 304.1970520019531,
37
+ "ap": 0.7800362740011941,
38
+ "f1": 0.7258270344556789,
39
+ "f1_threshold": 355.74713134765625,
40
+ "precision": 0.6255499153976312,
41
+ "recall": 0.8643909282207155
42
+ },
43
+ "max": {
44
+ "accuracy": 0.6992182802164763,
45
+ "ap": 0.7818052754133149,
46
+ "f1": 0.7278070531009324
47
+ }
48
+ }
49
+ }
results/multilingual-e5-large/CovidRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 1516.96,
5
+ "map_at_1": 0.63646,
6
+ "map_at_10": 0.71702,
7
+ "map_at_100": 0.72167,
8
+ "map_at_1000": 0.72177,
9
+ "map_at_3": 0.69758,
10
+ "map_at_5": 0.71075,
11
+ "mrr_at_1": 0.63857,
12
+ "mrr_at_10": 0.71767,
13
+ "mrr_at_100": 0.72222,
14
+ "mrr_at_1000": 0.72232,
15
+ "mrr_at_3": 0.69898,
16
+ "mrr_at_5": 0.71178,
17
+ "ndcg_at_1": 0.63751,
18
+ "ndcg_at_10": 0.75511,
19
+ "ndcg_at_100": 0.77655,
20
+ "ndcg_at_1000": 0.77935,
21
+ "ndcg_at_3": 0.71738,
22
+ "ndcg_at_5": 0.74069,
23
+ "precision_at_1": 0.63751,
24
+ "precision_at_10": 0.0882,
25
+ "precision_at_100": 0.00981,
26
+ "precision_at_1000": 0.001,
27
+ "precision_at_3": 0.25922,
28
+ "precision_at_5": 0.16712,
29
+ "recall_at_1": 0.63646,
30
+ "recall_at_10": 0.87302,
31
+ "recall_at_100": 0.9705,
32
+ "recall_at_1000": 0.99262,
33
+ "recall_at_3": 0.77371,
34
+ "recall_at_5": 0.82929
35
+ },
36
+ "mteb_dataset_name": "CovidRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/DuRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 1455.2,
5
+ "map_at_1": 0.25325,
6
+ "map_at_10": 0.77463,
7
+ "map_at_100": 0.80241,
8
+ "map_at_1000": 0.80293,
9
+ "map_at_3": 0.53178,
10
+ "map_at_5": 0.67405,
11
+ "mrr_at_1": 0.8825,
12
+ "mrr_at_10": 0.91869,
13
+ "mrr_at_100": 0.91967,
14
+ "mrr_at_1000": 0.91969,
15
+ "mrr_at_3": 0.915,
16
+ "mrr_at_5": 0.91702,
17
+ "ndcg_at_1": 0.8825,
18
+ "ndcg_at_10": 0.85315,
19
+ "ndcg_at_100": 0.88361,
20
+ "ndcg_at_1000": 0.88807,
21
+ "ndcg_at_3": 0.83433,
22
+ "ndcg_at_5": 0.82617,
23
+ "precision_at_1": 0.8825,
24
+ "precision_at_10": 0.4098,
25
+ "precision_at_100": 0.04753,
26
+ "precision_at_1000": 0.00487,
27
+ "precision_at_3": 0.74683,
28
+ "precision_at_5": 0.6344,
29
+ "recall_at_1": 0.25325,
30
+ "recall_at_10": 0.86993,
31
+ "recall_at_100": 0.9687,
32
+ "recall_at_1000": 0.99048,
33
+ "recall_at_3": 0.55495,
34
+ "recall_at_5": 0.7236
35
+ },
36
+ "mteb_dataset_name": "DuRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/EcomRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 197.55,
5
+ "map_at_1": 0.406,
6
+ "map_at_10": 0.49863,
7
+ "map_at_100": 0.50623,
8
+ "map_at_1000": 0.50659,
9
+ "map_at_3": 0.4745,
10
+ "map_at_5": 0.48765,
11
+ "mrr_at_1": 0.406,
12
+ "mrr_at_10": 0.49863,
13
+ "mrr_at_100": 0.50623,
14
+ "mrr_at_1000": 0.50659,
15
+ "mrr_at_3": 0.4745,
16
+ "mrr_at_5": 0.48765,
17
+ "ndcg_at_1": 0.406,
18
+ "ndcg_at_10": 0.54752,
19
+ "ndcg_at_100": 0.58413,
20
+ "ndcg_at_1000": 0.59405,
21
+ "ndcg_at_3": 0.4972,
22
+ "ndcg_at_5": 0.52078,
23
+ "precision_at_1": 0.406,
24
+ "precision_at_10": 0.0703,
25
+ "precision_at_100": 0.00873,
26
+ "precision_at_1000": 0.00095,
27
+ "precision_at_3": 0.18767,
28
+ "precision_at_5": 0.124,
29
+ "recall_at_1": 0.406,
30
+ "recall_at_10": 0.703,
31
+ "recall_at_100": 0.873,
32
+ "recall_at_1000": 0.952,
33
+ "recall_at_3": 0.563,
34
+ "recall_at_5": 0.62
35
+ },
36
+ "mteb_dataset_name": "EcomRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/IFlyTek.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "IFlyTek",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "validation": {
6
+ "accuracy": 0.45471335128895723,
7
+ "accuracy_stderr": 0.006300727815454779,
8
+ "evaluation_time": 667.02,
9
+ "f1": 0.36107188100754545,
10
+ "f1_stderr": 0.0068309298994353,
11
+ "main_score": 0.45471335128895723
12
+ }
13
+ }
results/multilingual-e5-large/JDReview.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "JDReview",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "accuracy": 0.8099437148217635,
7
+ "accuracy_stderr": 0.012218191486052491,
8
+ "ap": 0.4421880721936421,
9
+ "ap_stderr": 0.018723857756824166,
10
+ "evaluation_time": 35.29,
11
+ "f1": 0.7461897753963085,
12
+ "f1_stderr": 0.011752315951514757,
13
+ "main_score": 0.8099437148217635
14
+ }
15
+ }
results/multilingual-e5-large/LCQMC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "LCQMC",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.7018418429994273,
8
+ "spearman": 0.7594509514272902
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.7498739410411632,
12
+ "spearman": 0.7591583040424544
13
+ },
14
+ "evaluation_time": 27.05,
15
+ "manhattan": {
16
+ "pearson": 0.7491074257202046,
17
+ "spearman": 0.7584743518217304
18
+ }
19
+ }
20
+ }
results/multilingual-e5-large/MMarcoReranking.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 1026.96,
5
+ "map": 0.21342936474912233,
6
+ "mrr": 0.19907539682539682
7
+ },
8
+ "mteb_dataset_name": "MMarcoReranking",
9
+ "mteb_version": "1.1.1.dev0"
10
+ }
results/multilingual-e5-large/MMarcoRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 585.71,
5
+ "map_at_1": 0.66655,
6
+ "map_at_10": 0.75578,
7
+ "map_at_100": 0.75903,
8
+ "map_at_1000": 0.75912,
9
+ "map_at_3": 0.737,
10
+ "map_at_5": 0.74947,
11
+ "mrr_at_1": 0.68868,
12
+ "mrr_at_10": 0.76123,
13
+ "mrr_at_100": 0.76405,
14
+ "mrr_at_1000": 0.76414,
15
+ "mrr_at_3": 0.74487,
16
+ "mrr_at_5": 0.75565,
17
+ "ndcg_at_1": 0.68868,
18
+ "ndcg_at_10": 0.792,
19
+ "ndcg_at_100": 0.80636,
20
+ "ndcg_at_1000": 0.80902,
21
+ "ndcg_at_3": 0.75674,
22
+ "ndcg_at_5": 0.77778,
23
+ "precision_at_1": 0.68868,
24
+ "precision_at_10": 0.09547,
25
+ "precision_at_100": 0.01026,
26
+ "precision_at_1000": 0.00105,
27
+ "precision_at_3": 0.284,
28
+ "precision_at_5": 0.18146,
29
+ "recall_at_1": 0.66655,
30
+ "recall_at_10": 0.89808,
31
+ "recall_at_100": 0.96277,
32
+ "recall_at_1000": 0.98397,
33
+ "recall_at_3": 0.80562,
34
+ "recall_at_5": 0.85574
35
+ },
36
+ "mteb_dataset_name": "MMarcoRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/MedicalRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 614.02,
5
+ "map_at_1": 0.436,
6
+ "map_at_10": 0.48871,
7
+ "map_at_100": 0.49256,
8
+ "map_at_1000": 0.49311,
9
+ "map_at_3": 0.47667,
10
+ "map_at_5": 0.48337,
11
+ "mrr_at_1": 0.437,
12
+ "mrr_at_10": 0.48921,
13
+ "mrr_at_100": 0.49306,
14
+ "mrr_at_1000": 0.49361,
15
+ "mrr_at_3": 0.47717,
16
+ "mrr_at_5": 0.48387,
17
+ "ndcg_at_1": 0.436,
18
+ "ndcg_at_10": 0.51438,
19
+ "ndcg_at_100": 0.53683,
20
+ "ndcg_at_1000": 0.55349,
21
+ "ndcg_at_3": 0.48962,
22
+ "ndcg_at_5": 0.50163,
23
+ "precision_at_1": 0.436,
24
+ "precision_at_10": 0.0595,
25
+ "precision_at_100": 0.00709,
26
+ "precision_at_1000": 0.00085,
27
+ "precision_at_3": 0.17567,
28
+ "precision_at_5": 0.1112,
29
+ "recall_at_1": 0.436,
30
+ "recall_at_10": 0.595,
31
+ "recall_at_100": 0.709,
32
+ "recall_at_1000": 0.845,
33
+ "recall_at_3": 0.527,
34
+ "recall_at_5": 0.556
35
+ },
36
+ "mteb_dataset_name": "MedicalRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/MultilingualSentiment.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "MultilingualSentiment",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "validation": {
6
+ "accuracy": 0.6857666666666666,
7
+ "accuracy_stderr": 0.013697566693881554,
8
+ "evaluation_time": 54.34,
9
+ "f1": 0.6849424229016962,
10
+ "f1_stderr": 0.014150575813079026,
11
+ "main_score": 0.6857666666666666
12
+ }
13
+ }
results/multilingual-e5-large/Ocnli.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "Ocnli",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "validation": {
6
+ "cos_sim": {
7
+ "accuracy": 0.5896047644829453,
8
+ "accuracy_threshold": 0.9055497050285339,
9
+ "ap": 0.6159824345164865,
10
+ "f1": 0.6826347305389221,
11
+ "f1_threshold": 0.8476399779319763,
12
+ "precision": 0.528695652173913,
13
+ "recall": 0.9630411826821542
14
+ },
15
+ "dot": {
16
+ "accuracy": 0.5885219274499188,
17
+ "accuracy_threshold": 770.436767578125,
18
+ "ap": 0.6141160883022679,
19
+ "f1": 0.6815728604471858,
20
+ "f1_threshold": 732.9644775390625,
21
+ "precision": 0.5367334547662417,
22
+ "recall": 0.9334741288278775
23
+ },
24
+ "euclidean": {
25
+ "accuracy": 0.5906876015159719,
26
+ "accuracy_threshold": 12.772321701049805,
27
+ "ap": 0.615698752268663,
28
+ "f1": 0.680914885639295,
29
+ "f1_threshold": 16.11760902404785,
30
+ "precision": 0.5279069767441861,
31
+ "recall": 0.9588173178458289
32
+ },
33
+ "evaluation_time": 6.6,
34
+ "manhattan": {
35
+ "accuracy": 0.5912290200324851,
36
+ "accuracy_threshold": 323.2278137207031,
37
+ "ap": 0.6136895600509378,
38
+ "f1": 0.6806754221388368,
39
+ "f1_threshold": 408.21881103515625,
40
+ "precision": 0.5279394644935972,
41
+ "recall": 0.9577613516367476
42
+ },
43
+ "max": {
44
+ "accuracy": 0.5912290200324851,
45
+ "ap": 0.6159824345164865,
46
+ "f1": 0.6826347305389221
47
+ }
48
+ }
49
+ }
results/multilingual-e5-large/OnlineShopping.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "OnlineShopping",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "accuracy": 0.9081000000000001,
7
+ "accuracy_stderr": 0.011121600604229601,
8
+ "ap": 0.8881408124736975,
9
+ "ap_stderr": 0.013924768485984734,
10
+ "evaluation_time": 28.59,
11
+ "f1": 0.9080044881149518,
12
+ "f1_stderr": 0.011137749752371393,
13
+ "main_score": 0.9081000000000001
14
+ }
15
+ }
results/multilingual-e5-large/PAWSX.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "PAWSX",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.13556803425468136,
8
+ "spearman": 0.14628896619235537
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.16948195050896703,
12
+ "spearman": 0.14595626143502374
13
+ },
14
+ "evaluation_time": 12.17,
15
+ "manhattan": {
16
+ "pearson": 0.1698707908855108,
17
+ "spearman": 0.14629419169863672
18
+ }
19
+ }
20
+ }
results/multilingual-e5-large/QBQTC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "QBQTC",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.2782980363856517,
8
+ "spearman": 0.29772615402821423
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.27814413402789645,
12
+ "spearman": 0.2971862091034082
13
+ },
14
+ "evaluation_time": 21.84,
15
+ "manhattan": {
16
+ "pearson": 0.2777907131863503,
17
+ "spearman": 0.2966887417839818
18
+ }
19
+ }
20
+ }
results/multilingual-e5-large/STSB.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "STSB",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.8086691420836032,
8
+ "spearman": 0.81084447684131
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.807210645341927,
12
+ "spearman": 0.811148171306705
13
+ },
14
+ "evaluation_time": 5.61,
15
+ "manhattan": {
16
+ "pearson": 0.8065137474008732,
17
+ "spearman": 0.81031121673854
18
+ }
19
+ }
20
+ }
results/multilingual-e5-large/T2Reranking.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 3205.43,
5
+ "map": 0.658342326296287,
6
+ "mrr": 0.7414078032476814
7
+ },
8
+ "mteb_dataset_name": "T2Reranking",
9
+ "mteb_version": "1.1.1.dev0"
10
+ }
results/multilingual-e5-large/T2Retrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 1019.55,
5
+ "map_at_1": 0.24266,
6
+ "map_at_10": 0.66863,
7
+ "map_at_100": 0.70762,
8
+ "map_at_1000": 0.70883,
9
+ "map_at_3": 0.47191,
10
+ "map_at_5": 0.57768,
11
+ "mrr_at_1": 0.83276,
12
+ "mrr_at_10": 0.8711,
13
+ "mrr_at_100": 0.87268,
14
+ "mrr_at_1000": 0.87275,
15
+ "mrr_at_3": 0.86412,
16
+ "mrr_at_5": 0.86865,
17
+ "ndcg_at_1": 0.83276,
18
+ "ndcg_at_10": 0.7611,
19
+ "ndcg_at_100": 0.80999,
20
+ "ndcg_at_1000": 0.82231,
21
+ "ndcg_at_3": 0.77955,
22
+ "ndcg_at_5": 0.76144,
23
+ "precision_at_1": 0.83276,
24
+ "precision_at_10": 0.38055,
25
+ "precision_at_100": 0.04795,
26
+ "precision_at_1000": 0.00509,
27
+ "precision_at_3": 0.68296,
28
+ "precision_at_5": 0.56918,
29
+ "recall_at_1": 0.24266,
30
+ "recall_at_10": 0.7524,
31
+ "recall_at_100": 0.90813,
32
+ "recall_at_1000": 0.96965,
33
+ "recall_at_3": 0.4939,
34
+ "recall_at_5": 0.622
35
+ },
36
+ "mteb_dataset_name": "T2Retrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/TNews.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "TNews",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "validation": {
6
+ "accuracy": 0.48377,
7
+ "accuracy_stderr": 0.005926558866661158,
8
+ "evaluation_time": 46.18,
9
+ "f1": 0.46929890503710336,
10
+ "f1_stderr": 0.0056521672279418655,
11
+ "main_score": 0.48377
12
+ }
13
+ }
results/multilingual-e5-large/ThuNewsClusteringP2P.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "ThuNewsClusteringP2P",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 1289.16,
7
+ "v_measure": 0.5805361935553204,
8
+ "v_measure_std": 0.01789362331890681
9
+ }
10
+ }
results/multilingual-e5-large/ThuNewsClusteringS2S.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "ThuNewsClusteringS2S",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 156.6,
7
+ "v_measure": 0.555851710161304,
8
+ "v_measure_std": 0.013055585604640913
9
+ }
10
+ }
results/multilingual-e5-large/VideoRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 199.74,
5
+ "map_at_1": 0.435,
6
+ "map_at_10": 0.5346,
7
+ "map_at_100": 0.54154,
8
+ "map_at_1000": 0.54184,
9
+ "map_at_3": 0.51017,
10
+ "map_at_5": 0.52532,
11
+ "mrr_at_1": 0.435,
12
+ "mrr_at_10": 0.5346,
13
+ "mrr_at_100": 0.54154,
14
+ "mrr_at_1000": 0.54184,
15
+ "mrr_at_3": 0.51017,
16
+ "mrr_at_5": 0.52532,
17
+ "ndcg_at_1": 0.435,
18
+ "ndcg_at_10": 0.58247,
19
+ "ndcg_at_100": 0.61576,
20
+ "ndcg_at_1000": 0.62402,
21
+ "ndcg_at_3": 0.53263,
22
+ "ndcg_at_5": 0.56008,
23
+ "precision_at_1": 0.435,
24
+ "precision_at_10": 0.0733,
25
+ "precision_at_100": 0.00888,
26
+ "precision_at_1000": 0.00095,
27
+ "precision_at_3": 0.199,
28
+ "precision_at_5": 0.1328,
29
+ "recall_at_1": 0.435,
30
+ "recall_at_10": 0.733,
31
+ "recall_at_100": 0.888,
32
+ "recall_at_1000": 0.953,
33
+ "recall_at_3": 0.597,
34
+ "recall_at_5": 0.664
35
+ },
36
+ "mteb_dataset_name": "VideoRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }
results/multilingual-e5-large/Waimai.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "Waimai",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "accuracy": 0.8501999999999998,
7
+ "accuracy_stderr": 0.01356318546654879,
8
+ "ap": 0.6701127572356897,
9
+ "ap_stderr": 0.02395065680986631,
10
+ "evaluation_time": 12.6,
11
+ "f1": 0.8330190784640543,
12
+ "f1_stderr": 0.013702169924102673,
13
+ "main_score": 0.8501999999999998
14
+ }
15
+ }
results/multilingual-e5-small/AFQMC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "AFQMC",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": NaN,
8
+ "spearman": NaN
9
+ },
10
+ "euclidean": {
11
+ "pearson": NaN,
12
+ "spearman": NaN
13
+ },
14
+ "evaluation_time": 2.42,
15
+ "manhattan": {
16
+ "pearson": NaN,
17
+ "spearman": NaN
18
+ }
19
+ }
20
+ }
results/multilingual-e5-small/ATEC.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "ATEC",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.35637998002096916,
8
+ "spearman": 0.35137235436810005
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.38039624162925567,
12
+ "spearman": 0.3506555478392775
13
+ },
14
+ "evaluation_time": 12.74,
15
+ "manhattan": {
16
+ "pearson": 0.37822466458955323,
17
+ "spearman": 0.3486532813079574
18
+ }
19
+ }
20
+ }
results/multilingual-e5-small/BQ.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "BQ",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "cos_sim": {
7
+ "pearson": 0.43339101576303374,
8
+ "spearman": 0.432745171520664
9
+ },
10
+ "euclidean": {
11
+ "pearson": 0.43070620657823255,
12
+ "spearman": 0.4345819074675038
13
+ },
14
+ "evaluation_time": 6.84,
15
+ "manhattan": {
16
+ "pearson": 0.4273799927065368,
17
+ "spearman": 0.43107547451300227
18
+ }
19
+ }
20
+ }
results/multilingual-e5-small/CLSClusteringP2P.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CLSClusteringP2P",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 616.27,
7
+ "v_measure": 0.39139579198979646,
8
+ "v_measure_std": 0.011783131343169039
9
+ }
10
+ }
results/multilingual-e5-small/CLSClusteringS2S.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CLSClusteringS2S",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 33.91,
7
+ "v_measure": 0.37794431109429594,
8
+ "v_measure_std": 0.011469015351116682
9
+ }
10
+ }
results/multilingual-e5-small/CMedQAv1.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CMedQAv1",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 188.32,
7
+ "map": 0.6343782399577538,
8
+ "mrr": 0.6908428571428572
9
+ }
10
+ }
results/multilingual-e5-small/CMedQAv2.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "mteb_dataset_name": "CMedQAv2",
4
+ "mteb_version": "1.1.1.dev0",
5
+ "test": {
6
+ "evaluation_time": 178.66,
7
+ "map": 0.6241065561577064,
8
+ "mrr": 0.6778468253968254
9
+ }
10
+ }
results/multilingual-e5-small/CmedqaRetrieval.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_revision": null,
3
+ "dev": {
4
+ "evaluation_time": 306.15,
5
+ "map_at_1": 0.14171,
6
+ "map_at_10": 0.20159,
7
+ "map_at_100": 0.21327,
8
+ "map_at_1000": 0.21498,
9
+ "map_at_3": 0.18069,
10
+ "map_at_5": 0.19206,
11
+ "mrr_at_1": 0.22106,
12
+ "mrr_at_10": 0.27364,
13
+ "mrr_at_100": 0.28271,
14
+ "mrr_at_1000": 0.28365,
15
+ "mrr_at_3": 0.25606,
16
+ "mrr_at_5": 0.26569,
17
+ "ndcg_at_1": 0.22106,
18
+ "ndcg_at_10": 0.24383,
19
+ "ndcg_at_100": 0.30062,
20
+ "ndcg_at_1000": 0.34152,
21
+ "ndcg_at_3": 0.21475,
22
+ "ndcg_at_5": 0.2263,
23
+ "precision_at_1": 0.22106,
24
+ "precision_at_10": 0.05441,
25
+ "precision_at_100": 0.01008,
26
+ "precision_at_1000": 0.00155,
27
+ "precision_at_3": 0.12003,
28
+ "precision_at_5": 0.08737,
29
+ "recall_at_1": 0.14171,
30
+ "recall_at_10": 0.29919,
31
+ "recall_at_100": 0.54504,
32
+ "recall_at_1000": 0.83373,
33
+ "recall_at_3": 0.20994,
34
+ "recall_at_5": 0.24692
35
+ },
36
+ "mteb_dataset_name": "CmedqaRetrieval",
37
+ "mteb_version": "1.1.1.dev0"
38
+ }