mteb 2.6.4__py3-none-any.whl → 2.6.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. mteb/abstasks/classification.py +2 -3
  2. mteb/abstasks/multilabel_classification.py +3 -3
  3. mteb/abstasks/regression.py +1 -1
  4. mteb/abstasks/retrieval.py +1 -1
  5. mteb/abstasks/task_metadata.py +9 -14
  6. mteb/descriptive_stats/Retrieval/NanoClimateFEVER-VN.json +30 -0
  7. mteb/descriptive_stats/Retrieval/NanoDBPedia-VN.json +30 -0
  8. mteb/descriptive_stats/Retrieval/NanoFEVER-VN.json +30 -0
  9. mteb/descriptive_stats/Retrieval/NanoHotpotQA-VN.json +30 -0
  10. mteb/descriptive_stats/Retrieval/NanoMSMARCO-VN.json +30 -0
  11. mteb/descriptive_stats/Retrieval/NanoNQ-VN.json +30 -0
  12. mteb/descriptive_stats/Retrieval/TVPLRetrieval.json +30 -0
  13. mteb/models/model_implementations/align_models.py +1 -1
  14. mteb/models/model_implementations/andersborges.py +2 -2
  15. mteb/models/model_implementations/ara_models.py +1 -1
  16. mteb/models/model_implementations/arctic_models.py +8 -8
  17. mteb/models/model_implementations/b1ade_models.py +1 -1
  18. mteb/models/model_implementations/bge_models.py +45 -21
  19. mteb/models/model_implementations/bica_model.py +3 -3
  20. mteb/models/model_implementations/blip2_models.py +2 -2
  21. mteb/models/model_implementations/blip_models.py +8 -8
  22. mteb/models/model_implementations/bmretriever_models.py +4 -4
  23. mteb/models/model_implementations/cadet_models.py +1 -1
  24. mteb/models/model_implementations/cde_models.py +2 -2
  25. mteb/models/model_implementations/clip_models.py +3 -3
  26. mteb/models/model_implementations/clips_models.py +3 -3
  27. mteb/models/model_implementations/codefuse_models.py +5 -5
  28. mteb/models/model_implementations/codesage_models.py +3 -3
  29. mteb/models/model_implementations/cohere_models.py +4 -4
  30. mteb/models/model_implementations/colpali_models.py +3 -3
  31. mteb/models/model_implementations/colqwen_models.py +8 -8
  32. mteb/models/model_implementations/colsmol_models.py +2 -2
  33. mteb/models/model_implementations/conan_models.py +1 -1
  34. mteb/models/model_implementations/dino_models.py +19 -19
  35. mteb/models/model_implementations/e5_instruct.py +23 -4
  36. mteb/models/model_implementations/e5_models.py +9 -9
  37. mteb/models/model_implementations/e5_v.py +1 -1
  38. mteb/models/model_implementations/eagerworks_models.py +1 -1
  39. mteb/models/model_implementations/emillykkejensen_models.py +3 -3
  40. mteb/models/model_implementations/en_code_retriever.py +1 -1
  41. mteb/models/model_implementations/euler_models.py +2 -2
  42. mteb/models/model_implementations/fa_models.py +9 -9
  43. mteb/models/model_implementations/facebookai.py +14 -2
  44. mteb/models/model_implementations/geogpt_models.py +1 -1
  45. mteb/models/model_implementations/gme_v_models.py +2 -2
  46. mteb/models/model_implementations/google_models.py +1 -1
  47. mteb/models/model_implementations/granite_vision_embedding_models.py +1 -1
  48. mteb/models/model_implementations/gritlm_models.py +2 -2
  49. mteb/models/model_implementations/gte_models.py +25 -13
  50. mteb/models/model_implementations/hinvec_models.py +1 -1
  51. mteb/models/model_implementations/ibm_granite_models.py +30 -6
  52. mteb/models/model_implementations/inf_models.py +2 -2
  53. mteb/models/model_implementations/jasper_models.py +2 -2
  54. mteb/models/model_implementations/jina_clip.py +1 -1
  55. mteb/models/model_implementations/jina_models.py +11 -5
  56. mteb/models/model_implementations/kblab.py +12 -6
  57. mteb/models/model_implementations/kennethenevoldsen_models.py +2 -2
  58. mteb/models/model_implementations/kfst.py +1 -1
  59. mteb/models/model_implementations/kowshik24_models.py +1 -1
  60. mteb/models/model_implementations/lgai_embedding_models.py +1 -1
  61. mteb/models/model_implementations/linq_models.py +1 -1
  62. mteb/models/model_implementations/listconranker.py +1 -1
  63. mteb/models/model_implementations/llm2clip_models.py +3 -3
  64. mteb/models/model_implementations/llm2vec_models.py +8 -8
  65. mteb/models/model_implementations/mdbr_models.py +14 -2
  66. mteb/models/model_implementations/misc_models.py +68 -68
  67. mteb/models/model_implementations/mme5_models.py +1 -1
  68. mteb/models/model_implementations/moco_models.py +2 -2
  69. mteb/models/model_implementations/mod_models.py +1 -1
  70. mteb/models/model_implementations/model2vec_models.py +13 -13
  71. mteb/models/model_implementations/moka_models.py +1 -1
  72. mteb/models/model_implementations/mxbai_models.py +16 -3
  73. mteb/models/model_implementations/nbailab.py +3 -3
  74. mteb/models/model_implementations/no_instruct_sentence_models.py +1 -1
  75. mteb/models/model_implementations/nomic_models.py +18 -6
  76. mteb/models/model_implementations/nomic_models_vision.py +1 -1
  77. mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py +2 -2
  78. mteb/models/model_implementations/nvidia_models.py +3 -3
  79. mteb/models/model_implementations/octen_models.py +3 -3
  80. mteb/models/model_implementations/openclip_models.py +6 -6
  81. mteb/models/model_implementations/opensearch_neural_sparse_models.py +5 -5
  82. mteb/models/model_implementations/ops_moa_models.py +1 -1
  83. mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py +1 -1
  84. mteb/models/model_implementations/pawan_models.py +1 -1
  85. mteb/models/model_implementations/piccolo_models.py +1 -1
  86. mteb/models/model_implementations/promptriever_models.py +4 -4
  87. mteb/models/model_implementations/pylate_models.py +5 -5
  88. mteb/models/model_implementations/qodo_models.py +2 -2
  89. mteb/models/model_implementations/qtack_models.py +1 -1
  90. mteb/models/model_implementations/qwen3_models.py +3 -3
  91. mteb/models/model_implementations/qzhou_models.py +2 -2
  92. mteb/models/model_implementations/rasgaard_models.py +1 -1
  93. mteb/models/model_implementations/reasonir_model.py +1 -1
  94. mteb/models/model_implementations/repllama_models.py +1 -1
  95. mteb/models/model_implementations/rerankers_custom.py +9 -3
  96. mteb/models/model_implementations/rerankers_monot5_based.py +14 -14
  97. mteb/models/model_implementations/richinfoai_models.py +1 -1
  98. mteb/models/model_implementations/ru_sentence_models.py +20 -20
  99. mteb/models/model_implementations/ruri_models.py +10 -10
  100. mteb/models/model_implementations/salesforce_models.py +3 -3
  101. mteb/models/model_implementations/samilpwc_models.py +1 -1
  102. mteb/models/model_implementations/sarashina_embedding_models.py +2 -2
  103. mteb/models/model_implementations/searchmap_models.py +1 -1
  104. mteb/models/model_implementations/sentence_transformers_models.py +58 -22
  105. mteb/models/model_implementations/shuu_model.py +1 -1
  106. mteb/models/model_implementations/siglip_models.py +10 -10
  107. mteb/models/model_implementations/slm_models.py +416 -0
  108. mteb/models/model_implementations/spartan8806_atles_champion.py +1 -1
  109. mteb/models/model_implementations/stella_models.py +17 -4
  110. mteb/models/model_implementations/tarka_models.py +2 -2
  111. mteb/models/model_implementations/text2vec_models.py +9 -3
  112. mteb/models/model_implementations/ua_sentence_models.py +1 -1
  113. mteb/models/model_implementations/uae_models.py +7 -1
  114. mteb/models/model_implementations/vdr_models.py +1 -1
  115. mteb/models/model_implementations/vi_vn_models.py +6 -6
  116. mteb/models/model_implementations/vlm2vec_models.py +2 -2
  117. mteb/models/model_implementations/youtu_models.py +1 -1
  118. mteb/models/model_implementations/yuan_models.py +1 -1
  119. mteb/models/model_implementations/yuan_models_en.py +1 -1
  120. mteb/models/model_meta.py +46 -17
  121. mteb/results/benchmark_results.py +2 -2
  122. mteb/tasks/classification/kur/kurdish_sentiment_classification.py +2 -2
  123. mteb/tasks/clustering/eng/hume_wiki_cities_clustering.py +1 -1
  124. mteb/tasks/clustering/eng/wiki_cities_clustering.py +1 -1
  125. mteb/tasks/clustering/zho/cmteb_clustering.py +2 -2
  126. mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py +1 -1
  127. mteb/tasks/retrieval/eng/cub200_i2i_retrieval.py +1 -1
  128. mteb/tasks/retrieval/vie/__init__.py +14 -6
  129. mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py +39 -0
  130. mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py +39 -0
  131. mteb/tasks/retrieval/vie/fevervn_retrieval.py +39 -0
  132. mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py +39 -0
  133. mteb/tasks/retrieval/vie/msmarcovn_retrieval.py +48 -0
  134. mteb/tasks/retrieval/vie/nqvn_retrieval.py +39 -0
  135. mteb/tasks/retrieval/vie/tvpl_retrieval.py +42 -0
  136. mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py +15 -1
  137. {mteb-2.6.4.dist-info → mteb-2.6.6.dist-info}/METADATA +3 -3
  138. {mteb-2.6.4.dist-info → mteb-2.6.6.dist-info}/RECORD +142 -133
  139. {mteb-2.6.4.dist-info → mteb-2.6.6.dist-info}/WHEEL +0 -0
  140. {mteb-2.6.4.dist-info → mteb-2.6.6.dist-info}/entry_points.txt +0 -0
  141. {mteb-2.6.4.dist-info → mteb-2.6.6.dist-info}/licenses/LICENSE +0 -0
  142. {mteb-2.6.4.dist-info → mteb-2.6.6.dist-info}/top_level.txt +0 -0
@@ -35,17 +35,17 @@ mteb/abstasks/_stratification.py,sha256=GnqYRtkFYsB-412EvMR2iMqIinFr98NCSmxHeCXc
35
35
  mteb/abstasks/abstask.py,sha256=0q6o6y_F5fe9l8V-DyQT7oJkGJHD0pjuWXxgAj-6CPc,25535
36
36
  mteb/abstasks/aggregate_task_metadata.py,sha256=nDkXU-_mxPdf_YK8d4P-fPGAzX3jBfwA19P7ZOgn0Fc,5646
37
37
  mteb/abstasks/aggregated_task.py,sha256=l7Qbr6sVKzRizlXd8Hio9LMrI545Www4fZafjylsrN0,6056
38
- mteb/abstasks/classification.py,sha256=g_Ie6poDDA6CjkeLMYYi6g1nKoq-f7rNwC6rYmksOxM,13690
38
+ mteb/abstasks/classification.py,sha256=8MyQqGBqknPaaNgsfO9wnhgPc2nI-sggZpPFA4znUNc,13570
39
39
  mteb/abstasks/clustering.py,sha256=q8EBZJGvNSXMO4YghnGjI294jSGWyxe5PEpnYYURCDo,14612
40
40
  mteb/abstasks/clustering_legacy.py,sha256=OFBmHwLIOTpzwgGLuxhmSyp13vBJog9-ZCq0Ambo6eU,8853
41
41
  mteb/abstasks/dataset_card_template.md,sha256=aD6l8qc3_jxwoIGJNYLzse-jpRa8hu92AxpnUtNgges,5122
42
- mteb/abstasks/multilabel_classification.py,sha256=uRUPGRig5K-_Lex79X2tnWOwIgC0_noezMUIBKv7B5A,9538
42
+ mteb/abstasks/multilabel_classification.py,sha256=4HWIZY2zXv_1gbcmMj04G5yEKSErS6m97KpuWXcRJyg,9528
43
43
  mteb/abstasks/pair_classification.py,sha256=vp8gJXlr11kwdg6wdgkIgouAdSKMAczVjdG8VQw-y5U,13755
44
- mteb/abstasks/regression.py,sha256=-t57ZfZzNIa8iKQgJHCs7uZcKkX-RwdBZm7bUjintas,8880
45
- mteb/abstasks/retrieval.py,sha256=dwQZcqNOD1T8k4kYdTTMCTlEuB0fFRDkzbNm45asTXw,26542
44
+ mteb/abstasks/regression.py,sha256=sROjvfasLS89KRPUTsc1ONFsBTzfoqlpxLQfIkKBQXs,8763
45
+ mteb/abstasks/retrieval.py,sha256=NirMpZYVM4jPUfpBiqlO2icwKPLN3QbBpfv0_oBrvKg,26547
46
46
  mteb/abstasks/retrieval_dataset_loaders.py,sha256=WukcFAn54rUpXULCG43eysHozXHAxo2CaPhQyL_2Yg8,9401
47
47
  mteb/abstasks/sts.py,sha256=61hb19uZnmM0-NtaMLhVjo-5kvRW2nzA3PrEafIjhJA,9233
48
- mteb/abstasks/task_metadata.py,sha256=11bkcVzINK1nX18kiugGP5kfQHc8YqPaCeYh4HckJng,27061
48
+ mteb/abstasks/task_metadata.py,sha256=7TM_ls5bzYA1dHFq3VQgeioiyLrvMQz4i3hmWIsnD4M,27029
49
49
  mteb/abstasks/zeroshot_classification.py,sha256=JeRSqEj2wILM5AziKw02-0iwzCp7g7X5ALh4LX7mhU8,6024
50
50
  mteb/abstasks/_data_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
51
  mteb/abstasks/_data_filter/filters.py,sha256=znU7pjA7GYbChxUVyPGgCIdp7OvFeawBvksXki5LMcg,4611
@@ -1254,13 +1254,19 @@ mteb/descriptive_stats/Retrieval/NQ-VN.json,sha256=lz7Jb865vUqLOxZhd8StxxAmlyNg-
1254
1254
  mteb/descriptive_stats/Retrieval/NQ.json,sha256=ylIFn-uHev-jkcua8SUmiDCRanM9uCkvRElU-kIGIJg,1014
1255
1255
  mteb/descriptive_stats/Retrieval/NQHardNegatives.json,sha256=uPcQxhFQ9R7HGcEu8c9U4K1a5yYntN-mVK4anaRHtNo,986
1256
1256
  mteb/descriptive_stats/Retrieval/NanoArguAnaRetrieval.json,sha256=Qv5QaFK0wXUec-9rv6K71oTgwdeOWxPpGEA-gu0-BkI,976
1257
+ mteb/descriptive_stats/Retrieval/NanoClimateFEVER-VN.json,sha256=8isr2BOTbbFU4_Ivwof3-MTdxngG2SMl_GYrD_vbg3Q,1010
1257
1258
  mteb/descriptive_stats/Retrieval/NanoClimateFeverRetrieval.json,sha256=CdBXQhfQhtKG9_64I6AXDV4giSRppmLZDB3S8M28TOA,973
1259
+ mteb/descriptive_stats/Retrieval/NanoDBPedia-VN.json,sha256=xhNOXfcG-shzlptKuHBu9dkRXQAbmlknQqu8vhxKb6g,1012
1258
1260
  mteb/descriptive_stats/Retrieval/NanoDBPediaRetrieval.json,sha256=eAZJSH9WPk6AVkonlshmX9RHqq-b6iLTPmzO3yJFesk,974
1261
+ mteb/descriptive_stats/Retrieval/NanoFEVER-VN.json,sha256=vb5rzqP3SHVo3R85xRaS-nXUfH0b6KQMAbFSmK6U--o,1010
1259
1262
  mteb/descriptive_stats/Retrieval/NanoFEVERRetrieval.json,sha256=ac505XP13F5NRmCaQPwKdH-v9JTESsieu-K1IEa4j-I,971
1260
1263
  mteb/descriptive_stats/Retrieval/NanoFiQA2018Retrieval.json,sha256=eB00Q60zKfJmIY6HO083-eWIKo1STY8z4WdzRrKMI4I,973
1264
+ mteb/descriptive_stats/Retrieval/NanoHotpotQA-VN.json,sha256=JVJUfPow4rwxuUuMNJ_ygusaYDm1s7tBJX5IzUSfXLQ,998
1261
1265
  mteb/descriptive_stats/Retrieval/NanoHotpotQARetrieval.json,sha256=mAgjR7ekGKqk0QtiZxK-iuPWJIFWi9yvAO6j9liz-iQ,972
1266
+ mteb/descriptive_stats/Retrieval/NanoMSMARCO-VN.json,sha256=InXDVB08Q11Pb9IU2H2s7rZT_DXnbdpcs2duj66EdHI,1008
1262
1267
  mteb/descriptive_stats/Retrieval/NanoMSMARCORetrieval.json,sha256=_2ap0Bglk-hVK2rYJy3E4ECVm6Kf3yqhvWYQ99ZXruM,970
1263
1268
  mteb/descriptive_stats/Retrieval/NanoNFCorpusRetrieval.json,sha256=BjRdljofdnrJqn8BQdRpoxoanU5-XdeSn48085N2o4Q,977
1269
+ mteb/descriptive_stats/Retrieval/NanoNQ-VN.json,sha256=l_49qFdL8DtxaZ9i9lX5dJcxG1KnjvaOO-eyuVWsUAM,1010
1264
1270
  mteb/descriptive_stats/Retrieval/NanoNQRetrieval.json,sha256=q9TBcEqGV8fmoK4_32a-yDLhGN6FAj049XuN95Hhiiw,969
1265
1271
  mteb/descriptive_stats/Retrieval/NanoQuoraRetrieval.json,sha256=sG9ZgROl8kqDk3n2Rmb7zMgUmu0S8LqILZvjdevf-rQ,967
1266
1272
  mteb/descriptive_stats/Retrieval/NanoSCIDOCSRetrieval.json,sha256=J0a84pa1TupKlHC5Oi9zqhOkmKz2TqlcxPPXt58zuBU,973
@@ -1346,6 +1352,7 @@ mteb/descriptive_stats/Retrieval/TRECCOVID.json,sha256=VMICXZ2lA7GfiUyudOxYGRnMm
1346
1352
  mteb/descriptive_stats/Retrieval/TRECDL2019.json,sha256=6BOe9qATrKaRz8_cCMbqwXiu-ZiZq--Cm37uwTqSvJs,1013
1347
1353
  mteb/descriptive_stats/Retrieval/TRECDL2020.json,sha256=0WFbaPL2dyp5FZ1Wf0yAOVhndUfxP11sep562RHMplA,1014
1348
1354
  mteb/descriptive_stats/Retrieval/TV2Nordretrieval.json,sha256=_oDN_OfptM5ak-d4OXA-RU0hrtjvfg18jhir8CckxZ0,985
1355
+ mteb/descriptive_stats/Retrieval/TVPLRetrieval.json,sha256=m-t90SylbkuUUyu-MprOpB27h8xkoqjA2ebhvq5Vl98,1007
1349
1356
  mteb/descriptive_stats/Retrieval/TempReasonL1.json,sha256=-MpwGucuNT0aKOMWwGld9POo_vkSnjpnih8xIFnN5d4,975
1350
1357
  mteb/descriptive_stats/Retrieval/TempReasonL2Context.json,sha256=Gd2cVFAsdF1RHHWIbKI9hZLWgrbFzp8p0xoa6NU1uGM,996
1351
1358
  mteb/descriptive_stats/Retrieval/TempReasonL2Fact.json,sha256=om5WmIGXJLeMI-b0Tp7-odKRH-S9kx6OHXlnAD62rLk,992
@@ -1448,7 +1455,7 @@ mteb/models/__init__.py,sha256=ABTuoqiBjBtBWW3LYY7ItBHdylR6jWoy06HH0g6j6fU,910
1448
1455
  mteb/models/abs_encoder.py,sha256=HSJTjvcPYJRsKhhZeK2r6YP241EqpovwBcAuX1NevKE,16553
1449
1456
  mteb/models/get_model_meta.py,sha256=wVh2FaWevJ10hJlbm-FQtTQazLMfnkEV3IK7PUyBPOQ,6082
1450
1457
  mteb/models/instruct_wrapper.py,sha256=PjgDKFnc160QP9jcPkxdI3OtcljyUdapuOcKZNGkNHo,9661
1451
- mteb/models/model_meta.py,sha256=TrcE_Wwf_jQaKFU6K1oypEnEIBgdhHLDYLmvFwc2Xcg,30494
1458
+ mteb/models/model_meta.py,sha256=x8EuA8Zpc4DqhK_50v5TAZ7n2J2yhHqf5U0ldCpPnw0,31101
1452
1459
  mteb/models/models_protocols.py,sha256=LvHS14Rv22AsfY-391yau_cPAQwoKXRsvyYWCBy6VVQ,9165
1453
1460
  mteb/models/search_wrappers.py,sha256=yu3BnXLqE5JbOD14cF2mhyjvlF5LRKPfgk8uUuDhbjI,20939
1454
1461
  mteb/models/sentence_transformer_wrapper.py,sha256=KLleEFx31773zPT-5mqHGBOT5Km6fVkwwxtMYuepeZY,12829
@@ -1460,137 +1467,138 @@ mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=CeewRAwKr2RhFB7V
1460
1467
  mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=oAm5Ca7iR0AE1ivSvOF3Nbbtb_jhfCwp8O1Ck4vSk3s,3828
1461
1468
  mteb/models/cache_wrappers/cache_backends/numpy_cache.py,sha256=V275IY-0lyh2REqZjIZOgJJ7SY05yiWdHNF2kiSdRfo,8071
1462
1469
  mteb/models/model_implementations/__init__.py,sha256=BZDdde6ajKv-yroy9mqE2YS3Hw1KBdKoxBPg8aPTZEs,1164
1463
- mteb/models/model_implementations/align_models.py,sha256=hKnheWaRqpAcPo1SJa_c2vBbB1ayrKjWmSjbZ5bwGAw,4544
1470
+ mteb/models/model_implementations/align_models.py,sha256=nR-sxBHV7t-x35aihSQwzSXe09iRZutpqwFqmAnTZGA,4560
1464
1471
  mteb/models/model_implementations/amazon_models.py,sha256=a9bLYQ1ZGWDo4RdyaPNsBqadMrBm550fLIFr1Zfp2Nk,720
1465
- mteb/models/model_implementations/andersborges.py,sha256=RCLv31Bj8FzktPWnWpBoWAi1oOr-mAQibgzp83l5ABQ,2381
1466
- mteb/models/model_implementations/ara_models.py,sha256=UUTvLOZyKlF0-pTDniwQ-ItDONdH2JsyJKUdwtZ6aZI,1447
1467
- mteb/models/model_implementations/arctic_models.py,sha256=Ca4OzC89F0kKb5CRd-r2Wo65MF2dsS5GiB6bCWnjfQY,10558
1468
- mteb/models/model_implementations/b1ade_models.py,sha256=voOc0gTpqE31UxzaMZq_8AnWULJZwQBiFzViVx-m2Lk,1635
1472
+ mteb/models/model_implementations/andersborges.py,sha256=TkZFz55hn3A8qBBKW4SChOMAiVRVhUdzF1gSaiv4icc,2411
1473
+ mteb/models/model_implementations/ara_models.py,sha256=pE1aW6a4AdP2H0p6-YCyMi6kBGpDUsI7xi8qDtRVD_k,1478
1474
+ mteb/models/model_implementations/arctic_models.py,sha256=G03_fOm_pgYbT9rgMruVlI0sEN_B8fB9HAt5nzRbbRs,10750
1475
+ mteb/models/model_implementations/b1ade_models.py,sha256=oyUmA83CjiAqh51nl3c4k5NuzB-SBySyMSXsbEU--hU,1666
1469
1476
  mteb/models/model_implementations/bedrock_models.py,sha256=KKs_0_Cl6f0nzzmxmmKJ1vR2r3B7xRKMbNehov4EGjQ,8813
1470
- mteb/models/model_implementations/bge_models.py,sha256=L98iw0GkSY5BDBVC3LELf2MYwjNG_sANlVwKxObD2xY,24528
1471
- mteb/models/model_implementations/bica_model.py,sha256=Q2dg0w_lrcBhnOUjI4ej9ec9U82aWUyzNx7ezRv81vQ,1253
1472
- mteb/models/model_implementations/blip2_models.py,sha256=F55NYHrK-rprWblIfkKg3GRsOuTqBNZlOY1R33UnLms,7687
1473
- mteb/models/model_implementations/blip_models.py,sha256=LZrk5tn_9gokuZTfuv-DasJqx3UTgZsAEFmlJpQ-9xc,11596
1477
+ mteb/models/model_implementations/bge_models.py,sha256=YMatt2zsOx3EVA7DQp6m6NgnTgsVU-JxWD6iEA4-IFU,25171
1478
+ mteb/models/model_implementations/bica_model.py,sha256=vfScW0FBqWG00C7-lb9krWzWnAS7pTzDvBsqMPjeJAM,1266
1479
+ mteb/models/model_implementations/blip2_models.py,sha256=mNnWANEeQoPfgx1I3lDP4jzb3KgejohUMOQz9_KYKWM,7749
1480
+ mteb/models/model_implementations/blip_models.py,sha256=Tfsk0mEo7brFQ9paDTtGri8axZUHzNqAUK7WHEqOfWM,11754
1474
1481
  mteb/models/model_implementations/bm25.py,sha256=nSDtTXu5a5EkjuaF6V4iParwpxlnXKVNDFntp6uj1Q8,4846
1475
- mteb/models/model_implementations/bmretriever_models.py,sha256=Z4lbE0ggAp9dnHKZCrFAuClM5_ie_wirfwhU9R_ddiA,6721
1476
- mteb/models/model_implementations/cadet_models.py,sha256=wzbPmhsvBogFAEukubUir8EItlcmjcmfIGNMhtj-p7Y,2251
1477
- mteb/models/model_implementations/cde_models.py,sha256=u3G-BEWFpL1tsiONs3iaz9BJ_IEcNN0366fCQMMWr2A,9209
1478
- mteb/models/model_implementations/clip_models.py,sha256=snF74_5ISfrRYJwB4yHslO5SEF1cXYa6XIlNaplEqX0,6137
1479
- mteb/models/model_implementations/clips_models.py,sha256=QV9fIoyP2dKrra9aS04TE6rveUecVggr3jfXwNeSAOw,3488
1480
- mteb/models/model_implementations/codefuse_models.py,sha256=NXkFqb1Pdp-HLWkzhh0ZzjVxd45fP0cQgGZ1KvXBk_s,14053
1481
- mteb/models/model_implementations/codesage_models.py,sha256=ZPr2475aZI0vPbbLbetH2kDEY-1yNeO7OjzEfvykvg8,3076
1482
- mteb/models/model_implementations/cohere_models.py,sha256=vAN11i_YaVK_ZwTRE46AG7i1YlSlmVIlw_G6dUWvaBM,13920
1482
+ mteb/models/model_implementations/bmretriever_models.py,sha256=UMvSNK7ZgC0SfHp9nGjvdBSwDB2M-ZqpGlSIaieSl3Y,6845
1483
+ mteb/models/model_implementations/cadet_models.py,sha256=CtY4ioYb7W8LcIYRCO5dh6-Nr1QDp6UYvTUR6FGwTik,2266
1484
+ mteb/models/model_implementations/cde_models.py,sha256=rPyvpd1rEK0F_wwHoJ1GGXWEKZmoNJyR7Km7AOUT5BM,9271
1485
+ mteb/models/model_implementations/clip_models.py,sha256=fDIY9xAh2mtUgnWOlPGR98HmPNLN7-qB0wH8_9ZO_Rk,6200
1486
+ mteb/models/model_implementations/clips_models.py,sha256=RJUMc9q8ZA4HRtcUDa063Rb0GvXl_cIrjU93Xv4epys,3581
1487
+ mteb/models/model_implementations/codefuse_models.py,sha256=dwlHFA0p1oO7vX9NCFmjRa9hgp1_2EnpPCbKN6xfMAc,14208
1488
+ mteb/models/model_implementations/codesage_models.py,sha256=HQqkwv6IuhNkUfrKBa9mnwWozoRKnmYRWOdwluBYjZA,3124
1489
+ mteb/models/model_implementations/cohere_models.py,sha256=nXe2Lizql4N_FmlzyMhgMx2dBYV8EN_4lzi0Y_Z1Afo,13984
1483
1490
  mteb/models/model_implementations/cohere_v.py,sha256=bDrvREsuL1Ea3ZGCGsvXTWQ4nMJND3T0dYqOKAl1vls,15858
1484
- mteb/models/model_implementations/colpali_models.py,sha256=9SooeNDU12nsisM6RIT9B9TOe56qX5vnL1rOctA4Wrc,9219
1485
- mteb/models/model_implementations/colqwen_models.py,sha256=JOhrLlGBF1VEq-KqU6F8wAw80U96RWrGvXl3Ue6rBak,15886
1486
- mteb/models/model_implementations/colsmol_models.py,sha256=TCxNsllRkI6DIb-JLtBlD5s9SrJhVLraP-DT1CNy0EQ,3041
1487
- mteb/models/model_implementations/conan_models.py,sha256=AJJ8_Mv4QR1kQoKamjoZqgjLsosLb3AzNWNuWwvoNq4,6528
1488
- mteb/models/model_implementations/dino_models.py,sha256=P2f_iOFYK4bdDDiYmNgmtWFBaQbyE-0DHUdBAeMI2LE,25429
1489
- mteb/models/model_implementations/e5_instruct.py,sha256=6bQLMC8Nea59qSu8RSqZp9n8XuQokBJHoxfZb2l6BQM,7780
1490
- mteb/models/model_implementations/e5_models.py,sha256=18--kpfMSKxgflGjB3GvyDHOjzOpuooc3iSVe-no2U0,9607
1491
- mteb/models/model_implementations/e5_v.py,sha256=_EGSMU38BrqshKUqZfjDlXvUfrUXMZXiybQP_xpSSOQ,6769
1492
- mteb/models/model_implementations/eagerworks_models.py,sha256=7bSInJGHOUqc9N-yzq0KUAtJZDX0zZkmEkzbCG_Pz0c,5770
1493
- mteb/models/model_implementations/emillykkejensen_models.py,sha256=8TY70wiyDfjqN3BdAD9DJMnIXObTczCRYk4hYWmQOjE,3695
1494
- mteb/models/model_implementations/en_code_retriever.py,sha256=6sSJ7l8Zrf71fYlcGaWAdF0vcZ9OAFeC1IsVtM2W_i8,1069
1495
- mteb/models/model_implementations/euler_models.py,sha256=ftNTnLJ42cjvcUCuM5VyYcm3cQBHk6la5Gezj67_gt8,1132
1491
+ mteb/models/model_implementations/colpali_models.py,sha256=gTGPjk9l-AFDumrO-KdWiP_kOKUNGwmTiDSr7Z2-z_s,9264
1492
+ mteb/models/model_implementations/colqwen_models.py,sha256=lmLBnlGgpMftj1yOzE6eJ2CHfNvqWo70oTxnc_V0Uzk,16038
1493
+ mteb/models/model_implementations/colsmol_models.py,sha256=7JjepKLNIqtQVFzvFlYmx_5Sp4yYPtg48loezhRqmuw,3071
1494
+ mteb/models/model_implementations/conan_models.py,sha256=KmdhZ4l3euYPmGE_2T4F6EQctpcNdwXIHrxpmcdkAMo,6569
1495
+ mteb/models/model_implementations/dino_models.py,sha256=7ok5GpfeXtyPL2XRnPIHXnft2PiO6RPB3uTRPFp1NEI,26018
1496
+ mteb/models/model_implementations/e5_instruct.py,sha256=86Y-MeUOQeAxNhUmqtP-4bFASQSZkDLyhyP3-lzU0yc,8061
1497
+ mteb/models/model_implementations/e5_models.py,sha256=iczmJdoqfoH8dvxwmgd0xGTGR-H9XRbIhQbVqImoAb4,9798
1498
+ mteb/models/model_implementations/e5_v.py,sha256=uTvD61jTrtBdGB5MY83JnIdFi3WXs4xq08nilg1_Ujk,6800
1499
+ mteb/models/model_implementations/eagerworks_models.py,sha256=bk-Vy_BqD-Qn_rpsW4lLaBDza-KRVtfDBVHcXKaqNMQ,5785
1500
+ mteb/models/model_implementations/emillykkejensen_models.py,sha256=Qqzze2MXWioSalQ1cCdXIHRZRUfMN9IxtSU74IwkDb4,3740
1501
+ mteb/models/model_implementations/en_code_retriever.py,sha256=UTOmjnCCDOhqoMyYXKCGDPNOqR5XMmNuE9drpgMzMqs,1084
1502
+ mteb/models/model_implementations/euler_models.py,sha256=6EdpMJFFGVHGgPC44jRrsc7ywunoWN5fku-zBaa88rA,1162
1496
1503
  mteb/models/model_implementations/evaclip_models.py,sha256=oEoHnKQ4W09EQUCnNwpEd1ieDZGbth4j6lXfC-9jVBc,8104
1497
- mteb/models/model_implementations/fa_models.py,sha256=Hnw2E2D1ahleS15kkC0aGDIKW1Y-0wIMOlXtqEG6Bks,9818
1498
- mteb/models/model_implementations/facebookai.py,sha256=0x2c8LmvIFg6kGXtmDa9cbJeTmG3tia12vyr7lgycI0,4886
1499
- mteb/models/model_implementations/geogpt_models.py,sha256=X85_jeFzBZMjNRsyqwFbIQBgXXP7rZAr5PI-wbuy828,1949
1500
- mteb/models/model_implementations/gme_v_models.py,sha256=c5OAMnMsNamnjrSiOR9nAav7hXYLUWbe7mEksPJvL48,13748
1501
- mteb/models/model_implementations/google_models.py,sha256=lEpk1pOkp30kg6xljw8Gtkf-QGXAe8oJVp7JZhzWlik,11143
1502
- mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=A9yWcQezu_2yVxSm3pv0Da76Hl_uNUfrDVtPK1uqYFo,7341
1503
- mteb/models/model_implementations/gritlm_models.py,sha256=FKz9AHPaelomNMZP282F5vwsMjEBV3C2IuL3XTxXKCA,3057
1504
- mteb/models/model_implementations/gte_models.py,sha256=-4uVx1PuqmgYWo-puMcDiFPGhjyRwNTmlMSD6QiWwDo,13895
1505
- mteb/models/model_implementations/hinvec_models.py,sha256=r1ChD3cpcllHO9ZsVyV29vnjobq4Q7hAKioidbX4D4g,1601
1504
+ mteb/models/model_implementations/fa_models.py,sha256=vwEzH1EIzw0gb0cwmgoz81oYWwowVix-G47y0SiL1PQ,9988
1505
+ mteb/models/model_implementations/facebookai.py,sha256=YxJRjMtdvqCHfh3dTwxrLsr19v0N658O1cTx7GilO94,5058
1506
+ mteb/models/model_implementations/geogpt_models.py,sha256=FmvRKWmSBf6gXQ1b0VbHdSP02ZAEP68IzIq4726kync,1980
1507
+ mteb/models/model_implementations/gme_v_models.py,sha256=aPDW_NZTMGXDvIPJgp-8aMEP33cGRDmDr766QPiC_Rs,13860
1508
+ mteb/models/model_implementations/google_models.py,sha256=TtHu-RhFq72jIX4jkq3M9gIOjp5RKgUB1pX2EtgUCLM,11158
1509
+ mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=_H0pphKd7CZwTmZyccYwc8VRCBuADb-2Y1NqjLyLqYg,7372
1510
+ mteb/models/model_implementations/gritlm_models.py,sha256=XmKNIyIAJUpmfT5r_cqm7DjacbLFeGygX9IIe3k3dfw,3119
1511
+ mteb/models/model_implementations/gte_models.py,sha256=A9woaY4doCb89b5dxFpJcbwmHMXiG9NnseznoWFU-Qg,14232
1512
+ mteb/models/model_implementations/hinvec_models.py,sha256=PL2lJPf8r6u4duE6B0pIYDCyX1JJuQspXBi1YXRVPOk,1632
1506
1513
  mteb/models/model_implementations/human.py,sha256=EtYa8G7Dc8fDcelBVw0xTpxGGx1YKKuprVgksY5ZOcE,558
1507
- mteb/models/model_implementations/ibm_granite_models.py,sha256=--8N-8Nk2V5TZqGUAo9B-qoDeVTbKIU_jy03ccotmbM,8058
1508
- mteb/models/model_implementations/inf_models.py,sha256=IBC3TaEkOxrUDXkhXaVnxerjWOZZv1v1eEqhweGWKMY,2958
1509
- mteb/models/model_implementations/jasper_models.py,sha256=K2DC0JfMVG8Fa822-xemKNhtuL2fZgiKYTTpXp2yBGg,16263
1510
- mteb/models/model_implementations/jina_clip.py,sha256=xV1R5xyHqZHyzlpx7O0Pg1SwTagGEwt_kw3wWoshgNM,5128
1511
- mteb/models/model_implementations/jina_models.py,sha256=gdTGC2abKhne2nTbfX1K4S-xr3MlFJT99Iu5ynIFI7w,35004
1514
+ mteb/models/model_implementations/ibm_granite_models.py,sha256=ljHjuPuBkIwJvp5WZ3csjTOIb14nLh1h3OYkW-CEeHY,8464
1515
+ mteb/models/model_implementations/inf_models.py,sha256=SXXs3s9PWo08fzrxG_WOXGc_gvbpmkt-Blt7YoGcPRo,3020
1516
+ mteb/models/model_implementations/jasper_models.py,sha256=buJgllGIeyi7LsxDJY3UYJs_YzdDBkU3QpuQyU6VoTc,16293
1517
+ mteb/models/model_implementations/jina_clip.py,sha256=QZUe7fm0otnnPHAIYnxcRwE1VHpNt3Xs-FGlUV6Itwc,5167
1518
+ mteb/models/model_implementations/jina_models.py,sha256=kFmkAWUFoJpq_1tRQIspk54lsik2vIoQcy5DS7YKgQ0,35198
1512
1519
  mteb/models/model_implementations/kalm_models.py,sha256=SHqkw5p7HzmQrb_bIFjRp1rsuv2v531nXIk390h_ojY,62115
1513
- mteb/models/model_implementations/kblab.py,sha256=n6sMGorSIBQlRHipPC3j2UiKA3r7avriwPvw0wuQKe4,1161
1514
- mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=KvOhXDuhCtsTBGHg3ukCrQ45oz_hFylH7XjX3yjg1Ys,3013
1515
- mteb/models/model_implementations/kfst.py,sha256=sqlEUfAl84EPw1WjTZdlB4ps6GgkY3dCk3n8U9_YtV0,918
1516
- mteb/models/model_implementations/kowshik24_models.py,sha256=i8fDs8Vm5vcpRTW3kI8P1odyDbogFMlMqGK5AOqXaes,1445
1520
+ mteb/models/model_implementations/kblab.py,sha256=EisTJXijICN2pyfWT_89qUnNO7TH95t1LxCxjzJnzQo,1237
1521
+ mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=YdroUdWJtSjrua93Qo950eui38qhD6KgnSND_NlTzro,3060
1522
+ mteb/models/model_implementations/kfst.py,sha256=jz0Pez-NLXy2Hxt2edvVJMm9A6yn6xQacxxr2nCyOsY,949
1523
+ mteb/models/model_implementations/kowshik24_models.py,sha256=xm2oh0Sjbvp4Aur4XUkTxp6pYtKZIbyN1r88eE4aHpQ,1460
1517
1524
  mteb/models/model_implementations/lens_models.py,sha256=sVgP-wyi7SrMVyXkS1msMEKkE2ZTheYrt3QwGezqqJk,1748
1518
- mteb/models/model_implementations/lgai_embedding_models.py,sha256=aigHsDVY1yhN4hhmaxUlsxbPXe9S8JhfpNq6XSY17s0,2359
1519
- mteb/models/model_implementations/linq_models.py,sha256=huy7c95uYmhmjf6VZtx30YtMiSNrqhm7PJE3Vb3W-5g,1898
1520
- mteb/models/model_implementations/listconranker.py,sha256=EwUAvWefDmx4x_YCIJRVsKI3j3konQIHOiJ4paG2lvY,4492
1521
- mteb/models/model_implementations/llm2clip_models.py,sha256=0dmONEknh5lmMyARmK4VFJ0mpxvly_xqQZ2OwrE8YZc,9295
1522
- mteb/models/model_implementations/llm2vec_models.py,sha256=0I_UydxopC41lKWcIpCMaKADXcFVUfPwKwk0vZFG2zY,12846
1525
+ mteb/models/model_implementations/lgai_embedding_models.py,sha256=6XSL2h4MaA8etAE8qmrDrwKBYxUBurJq-zZ8bXdW1oE,2390
1526
+ mteb/models/model_implementations/linq_models.py,sha256=O4uf7U3ahSW-VsIkCke6uNV37UYEHbJtlJWKuRttfpk,1929
1527
+ mteb/models/model_implementations/listconranker.py,sha256=Pabs6UapPmH4CeUTZskHJ-9jQ4-6fh-j6I3l4RUimZY,4548
1528
+ mteb/models/model_implementations/llm2clip_models.py,sha256=VaPRxliOMViMMpNJmaal8QFJVU9F3-yiPxJoXNHyLyk,9340
1529
+ mteb/models/model_implementations/llm2vec_models.py,sha256=qKbTMrMXYRvmzY9bsaSgQhl6PxnSEAEQypkzU_TC46Y,12966
1523
1530
  mteb/models/model_implementations/mcinext_models.py,sha256=h-X9og2Cjj8DarHkaLOfqlIHpeCGnJZv0EuwYG61uzY,19127
1524
- mteb/models/model_implementations/mdbr_models.py,sha256=knDaM_j_kL9uq1Ng5s6InsTEZ-Cu0jBux8zmrbDnrig,2561
1525
- mteb/models/model_implementations/misc_models.py,sha256=djB2ySEBiCvxwWGZUXIwzeH9eaXtlqV7ttQEDUFlKQQ,70754
1526
- mteb/models/model_implementations/mme5_models.py,sha256=Fuge1fqGbaWqw-Hbd75Xr31JTqJTL45yJ4DAw3QJuyE,1510
1527
- mteb/models/model_implementations/moco_models.py,sha256=XcYavxcNWwB9V5OA63_HuaKwfDsMv6nQ7jgvNC9vbrk,5503
1528
- mteb/models/model_implementations/mod_models.py,sha256=jt33SfV476FIQJ-W-FRi_ocyRY1u8ldRFuo-PgejJDU,6335
1529
- mteb/models/model_implementations/model2vec_models.py,sha256=scVmIw-kBysX_kiQ8j8AnsAKne-T6hJ0WyIErUEaGxw,14087
1530
- mteb/models/model_implementations/moka_models.py,sha256=xY3geXKZwefqVsDZq95AB75GlZpvA9mJKSyPMvb75Us,5073
1531
- mteb/models/model_implementations/mxbai_models.py,sha256=YcgOdcx_vv5UpPi7k7PBuq_M0eqCaktfWfQV5NTlNoc,3929
1532
- mteb/models/model_implementations/nbailab.py,sha256=DtfHjQgGX1YPnlceqZDqDr6IlFwKCJjWN-BEcNt5m-s,2474
1533
- mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=t0CtgIiZHq4KgkPYUbxHQnxnaOaPYqpatCYa5Na-SSs,3993
1534
- mteb/models/model_implementations/nomic_models.py,sha256=n5_0QCqZYq3Pzdjf9hxx15XswjmZZgWpq0GOVN9sWiQ,14895
1535
- mteb/models/model_implementations/nomic_models_vision.py,sha256=9AQRJkPkFDPjuSqdIh8wJ0-pqS2fe_oDZzPR4Y0tOSg,6831
1536
- mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=phbwPnRfrEuJTlrUucI1qxcViMQWogeXQkTZbUkNsQc,6388
1537
- mteb/models/model_implementations/nvidia_models.py,sha256=82hVLFRhABDVtVu_1Y3R_3IxX9ETtYJpnw4AeYBOiiM,21666
1538
- mteb/models/model_implementations/octen_models.py,sha256=v4Mk6qMkK6yoMS5QomZdDWCP7ysB7CYf3VxuuOYVpu4,7481
1531
+ mteb/models/model_implementations/mdbr_models.py,sha256=BWi7xSZuVSudwX_KXUvdLDpNhPnpj0xV0uuokUwCHp4,2733
1532
+ mteb/models/model_implementations/misc_models.py,sha256=G42am6_tdRDFQ-0dU60OLeW2qxiQLwOoA5_NBHVN1eQ,72346
1533
+ mteb/models/model_implementations/mme5_models.py,sha256=4lbFhmKAFUpZojoLBObL0wx8dA6wJ9SGYej488Q_Fdg,1541
1534
+ mteb/models/model_implementations/moco_models.py,sha256=DOFXJINU3LV0gk83PRE5bXxvXs0LiKFUcznSR5lmk6E,5565
1535
+ mteb/models/model_implementations/mod_models.py,sha256=6Cs08pqKrvSPYGNCil-T2Q151AmOCCBKMF54KkzdxJY,6350
1536
+ mteb/models/model_implementations/model2vec_models.py,sha256=7O6y-8fPtaHOoOfPn2-ZqmxSNHAG3r8-DIeK7sthzBg,14568
1537
+ mteb/models/model_implementations/moka_models.py,sha256=M3nhjDoisunpYojtU-dEZYaLjBkndOGhWByz17_x5_w,5088
1538
+ mteb/models/model_implementations/mxbai_models.py,sha256=KTGnaj6zTlWPsaUrgEpQqBxNZWI-2XlQc79SL_Gmz-4,4148
1539
+ mteb/models/model_implementations/nbailab.py,sha256=LM00HJIr4yrA45qh2O21BIDXku9KcoTz-mttczEx_qM,2567
1540
+ mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=qLiMok_OxKvIYXWnP0KNWqH1monZx-OdSZrSx3QEhtI,4049
1541
+ mteb/models/model_implementations/nomic_models.py,sha256=dmQC_cWg6hAmiBHK7fXoXEiGBJnJvrq0RsnCcJ2qe1Q,15137
1542
+ mteb/models/model_implementations/nomic_models_vision.py,sha256=usCKfZCR7aEi_DnNmVAYjH-lXx_ipQkBVtUAmhJ90QI,6870
1543
+ mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=6dTGtK1GiaYdpJ4IQFgCCOkGyHQyuEUatKs-Uv-1YmE,6450
1544
+ mteb/models/model_implementations/nvidia_models.py,sha256=_lLfFl4-uSKpZdj_SDpdKiI2Gb5C1GgPqWSS-QdlYMM,21768
1545
+ mteb/models/model_implementations/octen_models.py,sha256=FwQAcB_z6bFohpFlNQK2ugLBEOQUu533auOhrNqMxaM,7511
1539
1546
  mteb/models/model_implementations/openai_models.py,sha256=905BajYi_XyOZgqU3AeKpwIttLoUitaAyc48sTWI6Jg,9482
1540
- mteb/models/model_implementations/openclip_models.py,sha256=aFBWqHkWjHm8OfCB8RTNiaO03oaILAE2jVLR1VFZgPk,11532
1541
- mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=hS33RteHexhkIekQVKsjx6czKr6YdWINaVa60J91Wnk,8481
1542
- mteb/models/model_implementations/ops_moa_models.py,sha256=EFEDwYuKiLzaSAg2_wWesyqRkaCtTcsa-B8Pu2NvEus,2465
1543
- mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=qGXv71qRjNCIFluZOwvfBlFlKKyN2bXBokwUPk4KHmM,1066
1544
- mteb/models/model_implementations/pawan_models.py,sha256=5Oruum3FczgkxjpCS_ilTFQd1B_aaHao_yXnOjE4qck,1177
1545
- mteb/models/model_implementations/piccolo_models.py,sha256=Y8jDNzp3VAdwIsT_fGG1ulWVyV7NTWs7_jpmWK036gw,2165
1546
- mteb/models/model_implementations/promptriever_models.py,sha256=pSlOQaem5tnLn9k9_WoJm4Cmw_Wj5oBvwfr5zMvykC0,6432
1547
- mteb/models/model_implementations/pylate_models.py,sha256=S5X8FMCVoYPU0jHhsqV1mK6OmIrx_QxbKFjRsqywoPU,16826
1548
- mteb/models/model_implementations/qodo_models.py,sha256=jMGlDYyAYp87zOwDN_WNqsU_PVLv2Tlrkbpe_sb5iiw,2089
1549
- mteb/models/model_implementations/qtack_models.py,sha256=YEuK7Qi1e3NyB1tbOmuqV-BIQIaarhQK-33WejupJiA,1250
1550
- mteb/models/model_implementations/qwen3_models.py,sha256=98yCMHTg8ueCT1fXkaNWMBleSLS-ygcJEnjQmcacGmI,5210
1551
- mteb/models/model_implementations/qzhou_models.py,sha256=TZBX9WXn2X5JyFALx2aSZLGsIseNnhrCVMycHU8LUXk,3588
1547
+ mteb/models/model_implementations/openclip_models.py,sha256=MyosgeYSrgBXGuGFtI2Tyxksxpb7bADFJVSYFCLweVA,11622
1548
+ mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=TnIHut_IHvplvovlcTZ-PWnEldTzcru5JdUIaTH-8Do,8636
1549
+ mteb/models/model_implementations/ops_moa_models.py,sha256=W9DkHT5TwMys-vKmELrcKKfdV9HsHOBvaQAITneDdew,2480
1550
+ mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=PJx1enAWiuiQUqA0JdfpPSBZS1h8CKy7ew-GFGj4YUM,1081
1551
+ mteb/models/model_implementations/pawan_models.py,sha256=Fwpxqool7lHOMsim0XllWjRrQwxZP2ZU3Y9OtQ0AMvA,1192
1552
+ mteb/models/model_implementations/piccolo_models.py,sha256=rIdT5pLInGyjLXpLcECLPWFJ1N-XfzCte0k3Em5Vy-M,2181
1553
+ mteb/models/model_implementations/promptriever_models.py,sha256=Ck_oEuvohgPOhSbyfDGlweKXtKZasWYUwukBMBr1YMc,6492
1554
+ mteb/models/model_implementations/pylate_models.py,sha256=Wunh4voSd6qFjHezIYrmfZA_lj5hM8ofLj2A2r4zD7I,16950
1555
+ mteb/models/model_implementations/qodo_models.py,sha256=bb2iUDdLp1sOZdYojZuzAzV4CQK68Ad1Y-VJul78uho,2151
1556
+ mteb/models/model_implementations/qtack_models.py,sha256=GJGZ0zmJw1KT39kIyrQUlEGMkY-lUa36CY_qTN6mPJU,1265
1557
+ mteb/models/model_implementations/qwen3_models.py,sha256=7uRzl8Uopi_zAAeJ0G1DUxNH4bl1h5gzMqks6ltbkHE,5303
1558
+ mteb/models/model_implementations/qzhou_models.py,sha256=iNsSGvoJJ8XByMF-vFScResLDuqEUcps95s2UvWCPjE,3618
1552
1559
  mteb/models/model_implementations/random_baseline.py,sha256=_lUTjoEl0nJEPcnN1FNWwKEnoJc29PEpaKbnx8HJnLc,7548
1553
- mteb/models/model_implementations/rasgaard_models.py,sha256=OMRmfD7m_6gudMNY7ZuKqKPxNuXHhhF_ZFSCpGIhBVc,1270
1554
- mteb/models/model_implementations/reasonir_model.py,sha256=o9-DufwMG3gutecFsX6OwTio9LKCJbAXuBV4fD-Q5p4,2244
1555
- mteb/models/model_implementations/repllama_models.py,sha256=h1vnFXUwbIjsWGDVjIu9sobBjy1OFTfnm_qGPsXDDjM,7341
1556
- mteb/models/model_implementations/rerankers_custom.py,sha256=dKDaVzyb6Tu-dkyPyY7g3vYOwkdxJrkFMUuhU5SnN40,10624
1557
- mteb/models/model_implementations/rerankers_monot5_based.py,sha256=3gtMhg7VLVnBn4-na9sOnr87VKCgjP-RwyFuDdJRt2I,34352
1558
- mteb/models/model_implementations/richinfoai_models.py,sha256=YQHVXVg2Wmb8m6nirLx6vwde_1xjOtlgftTv48asnww,1015
1559
- mteb/models/model_implementations/ru_sentence_models.py,sha256=-CbCCy5JRuDZAsWS7FBS7OOPaziFXjwiJdko9241KgI,41758
1560
- mteb/models/model_implementations/ruri_models.py,sha256=QW_Mk5_4U45RyC-CvwjT2MUWtobrZ37wHNxpJGGJmos,10303
1561
- mteb/models/model_implementations/salesforce_models.py,sha256=0miQqhSkJKfdKxLv-xl3BL-sCSgkKg1FX-gVu43cdr4,5238
1562
- mteb/models/model_implementations/samilpwc_models.py,sha256=ZcMUO_pWXARqzBa_2G6qAsSaq-_lCPo8a_XG0G_H_f0,2047
1563
- mteb/models/model_implementations/sarashina_embedding_models.py,sha256=LmJAsZ_zXywQwpQspQRB83jThRq2Lc8wxZt8K8UYzRw,8467
1564
- mteb/models/model_implementations/searchmap_models.py,sha256=WpwYwv0xWmig-rTGK0Li7m8ppADV-Qhy9BiHPlhGZug,1930
1560
+ mteb/models/model_implementations/rasgaard_models.py,sha256=iwqLW0r12RF3tyhakZu3ZPTLx0IRXeOAxptgaJCaJKQ,1285
1561
+ mteb/models/model_implementations/reasonir_model.py,sha256=881oFRknIelXBJFFJWVaETol98mjXt69IDueUg1cxNE,2275
1562
+ mteb/models/model_implementations/repllama_models.py,sha256=0_aDjQKv-Vy1PVaHulrc6ydL_N5dJQYpgDOtYWoBOtg,7356
1563
+ mteb/models/model_implementations/rerankers_custom.py,sha256=2KHRYRGDWg4W4KUnUPIzlxLeDkHdj0qY7WQTu4PDYpk,10757
1564
+ mteb/models/model_implementations/rerankers_monot5_based.py,sha256=bGGfVJob6MOGo8R3xLMcrlTqo_VHGhYiT6C17u0L0t8,34696
1565
+ mteb/models/model_implementations/richinfoai_models.py,sha256=n9m6tRq1f3sRWmiQ_9yORMSTZuk9yya3jcvNJTuKh8E,1030
1566
+ mteb/models/model_implementations/ru_sentence_models.py,sha256=nGvJV9rkfsEMp3QtYBtDnJF2jTm1C31_kCHILnAd6wg,42269
1567
+ mteb/models/model_implementations/ruri_models.py,sha256=La2z2xaqYlX6arGrPz55i3-8SYokXhitiyV7DpJQODk,10453
1568
+ mteb/models/model_implementations/salesforce_models.py,sha256=Fc8uvamRc_fzhKLQtiiLRwtzMPqkQxveosoQul76b-k,5331
1569
+ mteb/models/model_implementations/samilpwc_models.py,sha256=ZYmpjsg66eTVaA7-ChDwDAk7zBU5v5JbIDdVaxmlhOk,2078
1570
+ mteb/models/model_implementations/sarashina_embedding_models.py,sha256=ZShwUY3SuSjm6wTYqqh5aIdhadFfFHNvbM2VzZZrOUU,8529
1571
+ mteb/models/model_implementations/searchmap_models.py,sha256=xVQPkO7aLp_kBFiMDAmBOx13VIAuXjgnJ2zUg_Cmed8,1961
1565
1572
  mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=gcGKEY-n7DWGPlXYhO_kcNJ3lkBEnbw8NUxADNs3siM,18635
1566
1573
  mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=OoTHcDRQGOuSzf08V62EXrSEdRsXhnMv2ZN9feJWs9s,36443
1567
1574
  mteb/models/model_implementations/seed_models.py,sha256=9UF2AQ0Uue8DD73SjYhHn2hLxey_7Iq9ii9TkRaA3CM,14168
1568
- mteb/models/model_implementations/sentence_transformers_models.py,sha256=_4MbkdjZ58bell8Ss0JkyCAkLzUxTLBMofnHckRtWs0,23252
1569
- mteb/models/model_implementations/shuu_model.py,sha256=8-hoGqELHQRQ1QFhjwyuOY_8rqj_6f9vhE1Xi8OJ8aw,1162
1570
- mteb/models/model_implementations/siglip_models.py,sha256=A2ic42mlHkZKOjFfDxJBbGR96udd8dy7YtPF_B0Ju7I,12702
1575
+ mteb/models/model_implementations/sentence_transformers_models.py,sha256=WFWB7SPY9WS9b-SWiSAWSszQ7lJO-QGBxnIN8bU3kWE,23969
1576
+ mteb/models/model_implementations/shuu_model.py,sha256=1jDFFPAfbfrSzC4vbHczO4yqy3Xh4tWiDAd3FS9-T6M,1177
1577
+ mteb/models/model_implementations/siglip_models.py,sha256=SOSyp-B7w6Vvqas_10D_1rvpJcKSQuJmXGy7Wdtsw7o,13012
1578
+ mteb/models/model_implementations/slm_models.py,sha256=JXjBio-9NFHLefU4Ny1Z-fFkyvvIz0U2kQ6t5s-PzlQ,13427
1571
1579
  mteb/models/model_implementations/sonar_models.py,sha256=e0zG4ZxCM52mOtIpd43mMORZcX39utOiVDvzX_mz7oQ,4810
1572
- mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=ucTQMRhwSWzzIohVN8Zd7qehqllReG6WFTnD2rkGTLI,1239
1573
- mteb/models/model_implementations/stella_models.py,sha256=9nKuiMXkUE58KGpoDx1Ft29x80oCkLQr8GucsM6c4Fw,8218
1574
- mteb/models/model_implementations/tarka_models.py,sha256=lTA4oIKDKqU8FQ7nBDkQM-L4_945SnBGK499TkMALVk,27397
1575
- mteb/models/model_implementations/text2vec_models.py,sha256=zaHWRc2W0RYZAOetinqRzug9UGW0HmY5U-jYsLXA8wo,4160
1576
- mteb/models/model_implementations/ua_sentence_models.py,sha256=vgBJbXR8-6xau78MMTJ985Uj46_VoRIFatGW8vuOllc,1693
1577
- mteb/models/model_implementations/uae_models.py,sha256=_OLyy5veJJunBewWafkN_FUl2Hv_qqmU1zr2DGs94ek,3138
1578
- mteb/models/model_implementations/vdr_models.py,sha256=1yEkK_5w7rEd4O-8DTjQYc6Ip_h51WxkQcI3vQ2puTs,1448
1579
- mteb/models/model_implementations/vi_vn_models.py,sha256=UZ0bC-inqwL52TjWKfXijyeOyZRIycj1bHJs3t-jjrQ,6198
1580
+ mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=nDfqkxdi8BlFoixWYjBQnaDyPCRb1UyPgH7792hihXs,1270
1581
+ mteb/models/model_implementations/stella_models.py,sha256=ts2BbEl-Qe8okYTneVeoWE-pu9VCkyO7a9oJofjjEok,8420
1582
+ mteb/models/model_implementations/tarka_models.py,sha256=r6H_ZLGbFwpQQrhvaepJVrsSxYXvXGChMIUDgbHaRFs,27427
1583
+ mteb/models/model_implementations/text2vec_models.py,sha256=WuwcmJ6Irhayz4V7F3JJosTsfUm6WjNPmCiqUlAj0Ac,4300
1584
+ mteb/models/model_implementations/ua_sentence_models.py,sha256=bbgwj71Y79VNiuK1hKIKq5XJy4mP71iDrd7IMeiKun8,1708
1585
+ mteb/models/model_implementations/uae_models.py,sha256=FEdM_7Pmx2bsx0xhExO6kZqeavpqlk8mDjTKUwWdNwo,3224
1586
+ mteb/models/model_implementations/vdr_models.py,sha256=8jlfABvO7Z9ebzAPFHqln3B2INFpszu_ClrcUyaVpss,1479
1587
+ mteb/models/model_implementations/vi_vn_models.py,sha256=Ep2zj4Xvjyu0a_YiLsYvolKdMGSOtzm-N-yNyXmfNwA,6328
1580
1588
  mteb/models/model_implementations/vista_models.py,sha256=GkQFHIwwjxwM0wDuo-dWJBo4dLExlHtHfXwhcdKA5uQ,10884
1581
- mteb/models/model_implementations/vlm2vec_models.py,sha256=WRj_ESrQFACJC5fTckvZblTsobXnrZZWlX0Qh83N1W8,11755
1589
+ mteb/models/model_implementations/vlm2vec_models.py,sha256=EeWl3kpS_1VDJs4t1QmpaWSuglLPL2GyZu27fVY1VT8,11802
1582
1590
  mteb/models/model_implementations/voyage_models.py,sha256=5A5RD2A6B20qLDVEpWL0TNMQOf5hnTVXdBugdh5q4d0,20214
1583
1591
  mteb/models/model_implementations/voyage_v.py,sha256=eFdSOKka5VoLjViZk5umlgTw_ETjyXv4yhZ9SoCR-p0,8124
1584
1592
  mteb/models/model_implementations/xyz_models.py,sha256=gjwCx3U4AxMcJDTSWVoYV6xeyXLw7lUZI5D6Q7JjWho,1322
1585
- mteb/models/model_implementations/youtu_models.py,sha256=U2PbAg4QnNZfQSORDm-I-uhYZr3XRQvWiOAU9uO8SQc,5964
1586
- mteb/models/model_implementations/yuan_models.py,sha256=7_nwkXwh3tyoz7wo7pCq9ryHPVX0_uE1wJBNQRsKp-o,965
1587
- mteb/models/model_implementations/yuan_models_en.py,sha256=xliuxqPPiCPLdEDhs8OsBKQgOLp3qBwO6806aKSeRdc,1680
1593
+ mteb/models/model_implementations/youtu_models.py,sha256=THwWRabutW-qC-JZOVhxXWjKHVyMElzt_xm81ixzN50,5995
1594
+ mteb/models/model_implementations/yuan_models.py,sha256=j-QIKECPg4TiBW_3Bp6g5yr2UOdFziFSeoGE4uKepSM,980
1595
+ mteb/models/model_implementations/yuan_models_en.py,sha256=V57gbJFdHW8voN-tkrwUIWv91IkjUfmoQd6SK6AeHLc,1695
1588
1596
  mteb/models/search_encoder_index/__init__.py,sha256=3QFacIuFyEiI7ocsSkb3Lp2S2L7MLkpHCMIJ201fowA,182
1589
1597
  mteb/models/search_encoder_index/search_backend_protocol.py,sha256=TSjlx88stJcMldbAeVqNCf8JsQvE-B5rf5SBRw90isY,1890
1590
1598
  mteb/models/search_encoder_index/search_indexes/__init__.py,sha256=Wm60_oUemUpFsvrCMW111dcPH2L2rt1iZrXMskXmG7o,88
1591
1599
  mteb/models/search_encoder_index/search_indexes/faiss_search_index.py,sha256=6C9e-bN6IzytwCTjNrwosZD7yDwhbZ-V7pR_IlPWQ2g,5671
1592
1600
  mteb/results/__init__.py,sha256=EXQqK4Am5eIYzD52dpcGAFSdqnC38oE6JHN302oidHc,158
1593
- mteb/results/benchmark_results.py,sha256=r6PI1UmvoRFyLzKOIHx25nw17ZpXgv-SxKRHp-4heMg,20195
1601
+ mteb/results/benchmark_results.py,sha256=Ea_JPqVIjZHgVceTO3Oa9rzYblxFZhMhpU3lr2upOY4,20219
1594
1602
  mteb/results/model_result.py,sha256=WokI7iyF3JQxawRTNQ9dJZm-5pD66oJWio0i5G9AB94,15200
1595
1603
  mteb/results/task_result.py,sha256=mmH_7jAXcOqWBaeS7FV4uJ8wO0Hr14c0QqrI_VuLXr4,32677
1596
1604
  mteb/tasks/__init__.py,sha256=izAxU0ip1F_YUwx0dFCuN35BaktdmePh6vlDiHC0kLo,503
@@ -1778,7 +1786,7 @@ mteb/tasks/classification/kor/kor_fin.py,sha256=3ZfN1BIud7joUllzsDMveU23Vjdkwzit
1778
1786
  mteb/tasks/classification/kor/kor_hate_classification.py,sha256=V_IIham-xLAE77KoKk2RM8hXpuXnN3NYDl6aB8Renws,3997
1779
1787
  mteb/tasks/classification/kor/kor_sarcasm_classification.py,sha256=P8AXvEopoX1axcx6A9IpKgDsDe2Xgmq4R3lcMMyFNus,3861
1780
1788
  mteb/tasks/classification/kur/__init__.py,sha256=kBLPJVSB512KaGbwFIUjvjKiLp8_lV6K-O-0fmUJAM4,206
1781
- mteb/tasks/classification/kur/kurdish_sentiment_classification.py,sha256=6OWal7aXxVF6XWJO31d2vySPYgrWpDWSqJQaG2ruQbU,2736
1789
+ mteb/tasks/classification/kur/kurdish_sentiment_classification.py,sha256=p59oRCS0JhfZqP-IgKwmqb_zP48rFb069smhL74ryVM,2760
1782
1790
  mteb/tasks/classification/mal/__init__.py,sha256=oPYnbXfC_hhDorrNOVMdoKJvo_EqVx57g6AMtETiAIs,191
1783
1791
  mteb/tasks/classification/mal/malayalam_news_classification.py,sha256=KPSySBKHGlNY14ehDce3D1-RqFqz8DaapLgqwoTSmxM,3015
1784
1792
  mteb/tasks/classification/mar/__init__.py,sha256=_s9c3NJ5thW7ik8tpKlbwwAan6xNuN5UIn5MqDdC8NQ,181
@@ -1934,7 +1942,7 @@ mteb/tasks/clustering/eng/cifar.py,sha256=CgerokQwKzrtTEQNxBPFH_vlosgtgrcZY2hmW1
1934
1942
  mteb/tasks/clustering/eng/clus_trec_covid.py,sha256=z6pNWYu__6o10jNpcrRUVHWKLq9vNP_a3g1cv0LHKZs,1746
1935
1943
  mteb/tasks/clustering/eng/hume_arxiv_clustering_p2p.py,sha256=Gb_OQUJblW37UTnFBUYGIhtVHupgeifhoYHyv0oPy4Q,1485
1936
1944
  mteb/tasks/clustering/eng/hume_reddit_clustering_p2p.py,sha256=kNYUGPPPA2XNDlPHzhiiN8eSwUG4wLOQvejhZ2T51Wo,1618
1937
- mteb/tasks/clustering/eng/hume_wiki_cities_clustering.py,sha256=gbxmlBt_GAE1KlshGj9FYanz-tZomLh8ZqCeRDhnAw0,1336
1945
+ mteb/tasks/clustering/eng/hume_wiki_cities_clustering.py,sha256=NCEMfMLu0lOM1Vyl7Q-OLFMOmxChJ8PvzOBQuGaSodU,1340
1938
1946
  mteb/tasks/clustering/eng/image_net.py,sha256=21eB_MYbUKFqyzAnvThKfsh4D0t9XerIKehQl5LLMe8,3183
1939
1947
  mteb/tasks/clustering/eng/medrxiv_clustering_p2p.py,sha256=sqRTwPAXg9IBeP5S8ngLm5Q0sMkTVoOEJK7Zf8i_mQo,2909
1940
1948
  mteb/tasks/clustering/eng/medrxiv_clustering_s2s.py,sha256=A0d5fjOGAYZFEukBe5DufD-BJ66KVQOSlC_Bgn4OZng,2874
@@ -1944,7 +1952,7 @@ mteb/tasks/clustering/eng/stack_exchange_clustering.py,sha256=IuUlUtmAnuSo6oLJJO
1944
1952
  mteb/tasks/clustering/eng/stack_exchange_clustering_p2p.py,sha256=1hluyxWoIWABLTjLCmXtEsh-h7oHLWegmoEU74OwXrY,4117
1945
1953
  mteb/tasks/clustering/eng/tiny_image_net.py,sha256=dRr46P37XLvRa49EJK6H1x3nJmwaYVDmLtLz-q-K5kM,1135
1946
1954
  mteb/tasks/clustering/eng/twenty_newsgroups_clustering.py,sha256=0jjIeTlDuBtOzMmGsoZye2T-l4fufsZlWeib2q00OyM,3828
1947
- mteb/tasks/clustering/eng/wiki_cities_clustering.py,sha256=82gf5BZtVf8liCi2V0bN0ZXcYh584jV4gXWVw74PCyM,1246
1955
+ mteb/tasks/clustering/eng/wiki_cities_clustering.py,sha256=-csEB6xiAGRDTi5gsseoZsODCSwzF5_LIe1eTUO4lHM,1250
1948
1956
  mteb/tasks/clustering/eng/wikipedia_chemistry_specialties_clustering.py,sha256=Shs6sYPe9s-HSGeKD9_0OEC4hUn3ODS8GFvX62XSK4U,1437
1949
1957
  mteb/tasks/clustering/eng/wikipedia_chemistry_topics_clustering.py,sha256=NQ5bmskZGElqg6vnZFKbzREufr_6IJGUwMpu6ItEWvg,1424
1950
1958
  mteb/tasks/clustering/fas/__init__.py,sha256=_jSSYKxbHl170edjvRKYtHoNkJ1I76A8DHcjSdJ4of0,315
@@ -2000,7 +2008,7 @@ mteb/tasks/clustering/vie/stack_exchange_clustering_p2p_vn.py,sha256=Do_58DiX_DV
2000
2008
  mteb/tasks/clustering/vie/stack_exchange_clustering_vn.py,sha256=bFF2iu-KBZSP6jFYLBV2ssscsaACf-noFP6wL0R5Rx4,1881
2001
2009
  mteb/tasks/clustering/vie/twenty_newsgroups_clustering_vn.py,sha256=LADX5CLncf0AlGdfypuAfglEM6D2gGnBBSTKIhPTR0w,1825
2002
2010
  mteb/tasks/clustering/zho/__init__.py,sha256=Z6AYBtGjILLiguzbSOML6Gi3OuM2NICABhcSpl4dk2g,481
2003
- mteb/tasks/clustering/zho/cmteb_clustering.py,sha256=YEceqUqwTPUB7UWE7YMdP_3ZWn8DbqJGrF8nfXwDHXE,14801
2011
+ mteb/tasks/clustering/zho/cmteb_clustering.py,sha256=Q7uYPNXuTjxeuWduvdYQT8jog-jHUJgpyJ6x7F0ILu8,14815
2004
2012
  mteb/tasks/image_text_pair_classification/__init__.py,sha256=nw_jS391ttByOsxjJWnxMInBd9GiJVN09ZcuDb7OmeY,19
2005
2013
  mteb/tasks/image_text_pair_classification/eng/__init__.py,sha256=3LhP9ZsZLyK8i077ZPFrerNFtIfo5kUcUH4hQNxpL-Y,463
2006
2014
  mteb/tasks/image_text_pair_classification/eng/aro_coco_order.py,sha256=4CrBTUKXUHuR6k7fpJKFNcwA2-cRH3gO2T7TJCEsyaQ,1746
@@ -2145,7 +2153,7 @@ mteb/tasks/reranking/multilingual/esci_reranking.py,sha256=opEtarEw8JhcqVhIZ2wQo
2145
2153
  mteb/tasks/reranking/multilingual/hume_wikipedia_reranking_multilingual.py,sha256=899WZdh3jEORdzSnprr9Nt5FVF16PSWcwTK9swOg7cc,1505
2146
2154
  mteb/tasks/reranking/multilingual/miracl_reranking.py,sha256=N4YpMCcmFjWtKy1g4LjVS_Ou0jZ2fJJomRKwJQZbus8,2283
2147
2155
  mteb/tasks/reranking/multilingual/multi_long_doc_reranking.py,sha256=igJvX4fybXUkj_qWYbc9PLh8eH7pztS9OJRonxn3ME0,2692
2148
- mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py,sha256=gZWigy-EEPkew6R-wcxt24_uPrOEFH-h9YT-0rPrXX4,1678
2156
+ mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py,sha256=VjNQ9Tz9fCYWxCW4PYzJT30ZEVSboZBK9dIyJNfcpEQ,1682
2149
2157
  mteb/tasks/reranking/multilingual/x_glue_wpr_reranking.py,sha256=2fXZX27xzrn0es4TKaDFaGdo08swUHEA2Ik3pbOzCd8,11360
2150
2158
  mteb/tasks/reranking/rus/__init__.py,sha256=Txjqg4_Pq5MgNsmlIKnTet3UZe_oyraHDJgx_W8aBYA,72
2151
2159
  mteb/tasks/reranking/rus/ru_bq_reranking.py,sha256=cojQO9p5jYn32RdhRmuQQ_-TJnviXR_SrrAFECoMs3g,1363
@@ -2230,7 +2238,7 @@ mteb/tasks/retrieval/eng/cqa_dupstack_tex_retrieval.py,sha256=as6ZGvtZhmwM0acxU3
2230
2238
  mteb/tasks/retrieval/eng/cqa_dupstack_unix_retrieval.py,sha256=vf8ZxjpjaQZ5irDtWLifu_pIxVFveoOLmTIqWwYCzWE,1642
2231
2239
  mteb/tasks/retrieval/eng/cqa_dupstack_webmasters_retrieval.py,sha256=zEkmPfHW2_5NEQTM0Dh3aR6dJ0PUeeiYvGCC2bLnUJM,1622
2232
2240
  mteb/tasks/retrieval/eng/cqa_dupstack_wordpress_retrieval.py,sha256=l6IkX_gHtl3PpbcLxFvcNePwZDul-dOxRX7l0bQlzgY,1634
2233
- mteb/tasks/retrieval/eng/cub200_i2i_retrieval.py,sha256=sn0eN5Q9mseKVdtzN5duZGyjNB3jmLSSS2xgKvC_Icc,1251
2241
+ mteb/tasks/retrieval/eng/cub200_i2i_retrieval.py,sha256=vqC9e3m5Pjtk5yKV2tapOQ28lkwo-UG-HfimpFQw7LQ,1263
2234
2242
  mteb/tasks/retrieval/eng/dapfam_patent_retrieval.py,sha256=3rJDG8Id-gcG8K92SwgfXC8XREhH6uUbjU3u_AyCzgQ,27254
2235
2243
  mteb/tasks/retrieval/eng/dbpedia_retrieval.py,sha256=24XDQknkp_yxLUEEyEj7JnmTpqmT8hdDaLVA1Pr9PB4,3475
2236
2244
  mteb/tasks/retrieval/eng/edis_t2it_retrieval.py,sha256=hgFPxjozfGG25YeYV1WWMNarwJAXPWuPgFPbvsX-LqY,1393
@@ -2473,9 +2481,9 @@ mteb/tasks/retrieval/swe/swe_faq_retrieval.py,sha256=s-o7IM_l7giuK4bJMdYkq2CtE0Q
2473
2481
  mteb/tasks/retrieval/swe/swedn_retrieval.py,sha256=RFcpp0u-EKIwSRXR37tJ0_haY6Jvlfj8DWCgrD-0tnU,1512
2474
2482
  mteb/tasks/retrieval/tur/__init__.py,sha256=tAKhhsTK6meiZwRMIvbx7_ye90JAAW3dlS8iI0r_vg8,84
2475
2483
  mteb/tasks/retrieval/tur/tur_hist_quad.py,sha256=s7S5RrdwPx-0aatUwbgFbuLtj8927yQUHp1SEODfAl0,3669
2476
- mteb/tasks/retrieval/vie/__init__.py,sha256=j69iltc-is1oqx0oIV1RVjjM46LLH-JJQzKnxm4cYvc,2142
2484
+ mteb/tasks/retrieval/vie/__init__.py,sha256=8k8aUndynSTP72j75e2tcU-8omMuGzOVZp3KxIAGaBg,2419
2477
2485
  mteb/tasks/retrieval/vie/argu_ana_vn_retrieval.py,sha256=wmE6syUs0sLs7xgIOxXQuiQzpxrskdsTc5sK46v1YEQ,1754
2478
- mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py,sha256=4GMO5qSYbP0pFtf1yklMZNqFgh8qi1Xo2IXQDl9t14s,1849
2486
+ mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py,sha256=eonoS9NWKw-okR9Eqe4B8YgzGSbw0t7FcNpt0JwxyKU,3788
2479
2487
  mteb/tasks/retrieval/vie/cqa_dupstack_android_vn_retrieval.py,sha256=1c6s1C0j1x7kE92WMv9JB4I_rdsHboyP-QILU-18rQ4,1851
2480
2488
  mteb/tasks/retrieval/vie/cqa_dupstack_gis_vn_retrieval.py,sha256=h--L4OiLIalxHnSulEiUZjMo7JRxjia-mKOnnoaOkzI,1813
2481
2489
  mteb/tasks/retrieval/vie/cqa_dupstack_mathematica_vn_retrieval.py,sha256=Jm5-2YbfBObFW_Ygwu03PAnSNMcZkH_7SL8L18KVWvQ,1857
@@ -2486,21 +2494,22 @@ mteb/tasks/retrieval/vie/cqa_dupstack_tex_vn_retrieval.py,sha256=9EiLKJrpRXACmxZ
2486
2494
  mteb/tasks/retrieval/vie/cqa_dupstack_unix_vn_retrieval.py,sha256=7Mr2sZrAKzFDeMT_7eQQ_52OKzefGFAnkcHmO4lntIo,1824
2487
2495
  mteb/tasks/retrieval/vie/cqa_dupstack_webmasters_vn_retrieval.py,sha256=2zDcrsCfcTAcybUmTpGeJQxUxNpkY7Ha8Tf0xwfqTcQ,1810
2488
2496
  mteb/tasks/retrieval/vie/cqa_dupstack_wordpress_vn_retrieval.py,sha256=ppFPam-3AXXVLVp_DiXeHaSr16Va44_-eRkOH0m5ypo,1821
2489
- mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py,sha256=hOiwz2bcayDW6VrCvsIGeYh1TT7koByM76rZZwtp9KA,1754
2490
- mteb/tasks/retrieval/vie/fevervn_retrieval.py,sha256=xLGoXefGk1l1AFiOSf2Ja0fM_rAQp4tdaR8H6jJqYlI,1853
2497
+ mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py,sha256=9YEubKLDCMJhck_EjY4r3VzAFDu-P4SWR5CLnHdSkTQ,3571
2498
+ mteb/tasks/retrieval/vie/fevervn_retrieval.py,sha256=JLrpB90G5c7ZR2jM9GsYE2YQ51qTnn5FH-LDzO99Z1Q,3768
2491
2499
  mteb/tasks/retrieval/vie/fi_qa2018_vn_retrieval.py,sha256=FGfFuLzRCTuupRxZdjVbBiwCOSspb3vwvtNAKvyXjso,1714
2492
2500
  mteb/tasks/retrieval/vie/green_node_table_markdown_retrieval.py,sha256=O7iIcuvqhrHjB7J1VxH9YJ3v6cuFFBQdrrnYwLgeRfE,2429
2493
- mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py,sha256=FYWj8EhnfwDuPRxZ8uTeGkfa2Q-jDU2bliTmp975Coc,1837
2494
- mteb/tasks/retrieval/vie/msmarcovn_retrieval.py,sha256=xtJ1-rjx4slwSR8p6NedqItTk-79ZzT2f9FlDOhbzkE,1958
2501
+ mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py,sha256=Vg_YI8YbZpXMmwZXS-2KLRutL2Nehw5tW231S2qShd4,3753
2502
+ mteb/tasks/retrieval/vie/msmarcovn_retrieval.py,sha256=syDFYmXL2xK3xCQrBAopGul8_3pDZzBdIjMpk2XbA1s,3951
2495
2503
  mteb/tasks/retrieval/vie/nf_corpus_vn_retrieval.py,sha256=4S8IDJ-TVjKEy2teM8GOeDzHIZR8txkPvX0sGDYIyqs,1780
2496
- mteb/tasks/retrieval/vie/nqvn_retrieval.py,sha256=tQT2t6XcflVRM78t_5TujWD27e9uCMrsfN0DBjDBY0E,1744
2504
+ mteb/tasks/retrieval/vie/nqvn_retrieval.py,sha256=f8LmUGAmsMnCdn-ovfPcpX12X4rmdpXj3F-q6GwjBEc,3551
2497
2505
  mteb/tasks/retrieval/vie/quora_vn_retrieval.py,sha256=VkgKCFbDkOuZAsMl36lOr-MuvbhNfE8zUmmiySW9lSY,1837
2498
2506
  mteb/tasks/retrieval/vie/sci_fact_vn_retrieval.py,sha256=7F3wSU9N2BAj4Jmzw7sjbcxTyYDYs_3I1434X3riaZ4,1773
2499
2507
  mteb/tasks/retrieval/vie/scidocsvn_retrieval.py,sha256=WlcfDfF43jsNf9D_Bl3k02RiiPdedORID6CEEMAYTLc,1815
2500
2508
  mteb/tasks/retrieval/vie/touche2020_vn_retrieval.py,sha256=DKcNwCCdANt7hNr3fLao9jkIJJjfxJ0jLLbD7_b-KnE,1752
2501
2509
  mteb/tasks/retrieval/vie/treccovidvn_retrieval.py,sha256=ZlFFL37Zd_sbKXaUZx41XTxps-nnOi3PnBNCy9KvlJU,1826
2510
+ mteb/tasks/retrieval/vie/tvpl_retrieval.py,sha256=CGwgT9spHONw9cOeuum_BS7khZbooqoNqJgVV6Utfic,1611
2502
2511
  mteb/tasks/retrieval/vie/vie_qu_ad_retrieval.py,sha256=eZh1rR43iXDHoylOGKjrUCopzEujE-1GSGTn2TMrkro,3621
2503
- mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py,sha256=Y93j0EwG6-bcc0DMLvHP9q3r9b_3xLXu6YBR0Q5HDho,985
2512
+ mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py,sha256=BI2GbbkOPnWQpbn9ul6ShHugAZ994iiS7hVi5v1K17Y,1386
2504
2513
  mteb/tasks/retrieval/zho/__init__.py,sha256=dIN-rPfrEjkCuUCha8SpQdlzWYY6IMO_HLxebcBhQxA,438
2505
2514
  mteb/tasks/retrieval/zho/cmteb_retrieval.py,sha256=DXNkvMQQZsKv1U5L_0boKEXGLDPn4RfauIlxwb0f-EQ,10789
2506
2515
  mteb/tasks/retrieval/zho/le_ca_r_dv2_retrieval.py,sha256=O7kNB_7rpgG7_KsKC0SUKG42dhx66Rakk77uy4Iufk0,1293
@@ -2603,9 +2612,9 @@ mteb/types/_metadata.py,sha256=NN-W0S6a5TDV7UkpRx1pyWtGF4TyyCyoPUfHOwdeci8,2290
2603
2612
  mteb/types/_result.py,sha256=UKNokV9pu3G74MGebocU512aU_fFU9I9nPKnrG9Q0iE,1035
2604
2613
  mteb/types/_string_validators.py,sha256=PY-dYq4E8O50VS3bLYdldPWp400fl_WzUjfVSkNWe8U,523
2605
2614
  mteb/types/statistics.py,sha256=GwkBPmAr18Onu-vHtzHs0PFrhCozdOMiT13HwnWL4ZM,3961
2606
- mteb-2.6.4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
2607
- mteb-2.6.4.dist-info/METADATA,sha256=YiucWKiIeOdDqvQNLIgVffTBWr3mQJWub7t86-2UPmA,14251
2608
- mteb-2.6.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2609
- mteb-2.6.4.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
2610
- mteb-2.6.4.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
2611
- mteb-2.6.4.dist-info/RECORD,,
2615
+ mteb-2.6.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
2616
+ mteb-2.6.6.dist-info/METADATA,sha256=s0uH9FABmjhyRn2bwsWVFFxjRtJWEYbQaqEuavtj_mY,14281
2617
+ mteb-2.6.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2618
+ mteb-2.6.6.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
2619
+ mteb-2.6.6.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
2620
+ mteb-2.6.6.dist-info/RECORD,,
File without changes