mteb 2.7.3__py3-none-any.whl → 2.7.4__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 (157) hide show
  1. mteb/abstasks/retrieval.py +1 -1
  2. mteb/benchmarks/benchmarks/__init__.py +2 -0
  3. mteb/benchmarks/benchmarks/benchmarks.py +41 -2
  4. mteb/descriptive_stats/Retrieval/BrightAopsRetrieval.json +35 -0
  5. mteb/descriptive_stats/Retrieval/BrightBiologyLongRetrieval.json +35 -0
  6. mteb/descriptive_stats/Retrieval/BrightBiologyRetrieval.json +35 -0
  7. mteb/descriptive_stats/Retrieval/BrightEarthScienceLongRetrieval.json +35 -0
  8. mteb/descriptive_stats/Retrieval/BrightEarthScienceRetrieval.json +35 -0
  9. mteb/descriptive_stats/Retrieval/BrightEconomicsLongRetrieval.json +35 -0
  10. mteb/descriptive_stats/Retrieval/BrightEconomicsRetrieval.json +35 -0
  11. mteb/descriptive_stats/Retrieval/BrightLeetcodeRetrieval.json +35 -0
  12. mteb/descriptive_stats/Retrieval/BrightPonyLongRetrieval.json +35 -0
  13. mteb/descriptive_stats/Retrieval/BrightPonyRetrieval.json +35 -0
  14. mteb/descriptive_stats/Retrieval/BrightPsychologyLongRetrieval.json +35 -0
  15. mteb/descriptive_stats/Retrieval/BrightPsychologyRetrieval.json +35 -0
  16. mteb/descriptive_stats/Retrieval/BrightRoboticsLongRetrieval.json +35 -0
  17. mteb/descriptive_stats/Retrieval/BrightRoboticsRetrieval.json +35 -0
  18. mteb/descriptive_stats/Retrieval/BrightStackoverflowLongRetrieval.json +35 -0
  19. mteb/descriptive_stats/Retrieval/BrightStackoverflowRetrieval.json +35 -0
  20. mteb/descriptive_stats/Retrieval/BrightSustainableLivingLongRetrieval.json +35 -0
  21. mteb/descriptive_stats/Retrieval/BrightSustainableLivingRetrieval.json +35 -0
  22. mteb/descriptive_stats/Retrieval/BrightTheoremQAQuestionsRetrieval.json +35 -0
  23. mteb/descriptive_stats/Retrieval/BrightTheoremQATheoremsRetrieval.json +35 -0
  24. mteb/models/model_implementations/align_models.py +1 -0
  25. mteb/models/model_implementations/amazon_models.py +1 -0
  26. mteb/models/model_implementations/andersborges.py +2 -0
  27. mteb/models/model_implementations/ara_models.py +1 -0
  28. mteb/models/model_implementations/arctic_models.py +8 -0
  29. mteb/models/model_implementations/b1ade_models.py +1 -0
  30. mteb/models/model_implementations/bedrock_models.py +4 -0
  31. mteb/models/model_implementations/bge_models.py +40 -1
  32. mteb/models/model_implementations/bica_model.py +1 -0
  33. mteb/models/model_implementations/blip2_models.py +2 -0
  34. mteb/models/model_implementations/blip_models.py +8 -0
  35. mteb/models/model_implementations/bm25.py +8 -5
  36. mteb/models/model_implementations/bmretriever_models.py +4 -0
  37. mteb/models/model_implementations/cadet_models.py +1 -0
  38. mteb/models/model_implementations/cde_models.py +2 -0
  39. mteb/models/model_implementations/clip_models.py +3 -0
  40. mteb/models/model_implementations/clips_models.py +3 -0
  41. mteb/models/model_implementations/codefuse_models.py +5 -0
  42. mteb/models/model_implementations/codesage_models.py +3 -0
  43. mteb/models/model_implementations/cohere_models.py +4 -0
  44. mteb/models/model_implementations/cohere_v.py +5 -0
  45. mteb/models/model_implementations/colpali_models.py +3 -0
  46. mteb/models/model_implementations/colqwen_models.py +7 -0
  47. mteb/models/model_implementations/colsmol_models.py +2 -0
  48. mteb/models/model_implementations/conan_models.py +1 -0
  49. mteb/models/model_implementations/dino_models.py +19 -0
  50. mteb/models/model_implementations/e5_instruct.py +4 -0
  51. mteb/models/model_implementations/e5_models.py +9 -0
  52. mteb/models/model_implementations/e5_v.py +1 -0
  53. mteb/models/model_implementations/eagerworks_models.py +1 -0
  54. mteb/models/model_implementations/emillykkejensen_models.py +3 -0
  55. mteb/models/model_implementations/en_code_retriever.py +1 -0
  56. mteb/models/model_implementations/euler_models.py +1 -0
  57. mteb/models/model_implementations/evaclip_models.py +4 -0
  58. mteb/models/model_implementations/fa_models.py +9 -0
  59. mteb/models/model_implementations/facebookai.py +2 -0
  60. mteb/models/model_implementations/geogpt_models.py +1 -0
  61. mteb/models/model_implementations/gme_v_models.py +2 -0
  62. mteb/models/model_implementations/google_models.py +5 -0
  63. mteb/models/model_implementations/granite_vision_embedding_models.py +1 -0
  64. mteb/models/model_implementations/gritlm_models.py +2 -0
  65. mteb/models/model_implementations/gte_models.py +9 -0
  66. mteb/models/model_implementations/hinvec_models.py +1 -0
  67. mteb/models/model_implementations/human.py +1 -0
  68. mteb/models/model_implementations/ibm_granite_models.py +6 -0
  69. mteb/models/model_implementations/inf_models.py +2 -0
  70. mteb/models/model_implementations/jasper_models.py +2 -0
  71. mteb/models/model_implementations/jina_clip.py +1 -0
  72. mteb/models/model_implementations/jina_models.py +7 -0
  73. mteb/models/model_implementations/kalm_models.py +6 -0
  74. mteb/models/model_implementations/kblab.py +1 -0
  75. mteb/models/model_implementations/kennethenevoldsen_models.py +2 -0
  76. mteb/models/model_implementations/kfst.py +1 -0
  77. mteb/models/model_implementations/kowshik24_models.py +1 -0
  78. mteb/models/model_implementations/lens_models.py +2 -0
  79. mteb/models/model_implementations/lgai_embedding_models.py +1 -0
  80. mteb/models/model_implementations/linq_models.py +1 -0
  81. mteb/models/model_implementations/listconranker.py +1 -0
  82. mteb/models/model_implementations/llm2clip_models.py +3 -0
  83. mteb/models/model_implementations/llm2vec_models.py +8 -0
  84. mteb/models/model_implementations/mcinext_models.py +3 -0
  85. mteb/models/model_implementations/mdbr_models.py +2 -0
  86. mteb/models/model_implementations/misc_models.py +63 -0
  87. mteb/models/model_implementations/mixedbread_ai_models.py +3 -0
  88. mteb/models/model_implementations/mme5_models.py +2 -1
  89. mteb/models/model_implementations/moco_models.py +2 -0
  90. mteb/models/model_implementations/mod_models.py +1 -0
  91. mteb/models/model_implementations/model2vec_models.py +13 -0
  92. mteb/models/model_implementations/moka_models.py +3 -0
  93. mteb/models/model_implementations/nbailab.py +3 -0
  94. mteb/models/model_implementations/no_instruct_sentence_models.py +1 -0
  95. mteb/models/model_implementations/nomic_models.py +6 -0
  96. mteb/models/model_implementations/nomic_models_vision.py +1 -0
  97. mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py +2 -0
  98. mteb/models/model_implementations/nvidia_models.py +3 -0
  99. mteb/models/model_implementations/octen_models.py +2 -0
  100. mteb/models/model_implementations/openai_models.py +5 -0
  101. mteb/models/model_implementations/openclip_models.py +8 -0
  102. mteb/models/model_implementations/opensearch_neural_sparse_models.py +5 -0
  103. mteb/models/model_implementations/ops_moa_models.py +2 -0
  104. mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py +1 -0
  105. mteb/models/model_implementations/pawan_models.py +1 -0
  106. mteb/models/model_implementations/piccolo_models.py +2 -0
  107. mteb/models/model_implementations/promptriever_models.py +4 -0
  108. mteb/models/model_implementations/pylate_models.py +3 -0
  109. mteb/models/model_implementations/qodo_models.py +2 -0
  110. mteb/models/model_implementations/qtack_models.py +1 -0
  111. mteb/models/model_implementations/qwen3_models.py +3 -0
  112. mteb/models/model_implementations/qzhou_models.py +2 -0
  113. mteb/models/model_implementations/rasgaard_models.py +1 -0
  114. mteb/models/model_implementations/reasonir_model.py +65 -0
  115. mteb/models/model_implementations/repllama_models.py +2 -0
  116. mteb/models/model_implementations/rerankers_custom.py +3 -0
  117. mteb/models/model_implementations/rerankers_monot5_based.py +14 -0
  118. mteb/models/model_implementations/richinfoai_models.py +1 -0
  119. mteb/models/model_implementations/ru_sentence_models.py +20 -0
  120. mteb/models/model_implementations/ruri_models.py +10 -0
  121. mteb/models/model_implementations/salesforce_models.py +3 -0
  122. mteb/models/model_implementations/samilpwc_models.py +1 -0
  123. mteb/models/model_implementations/sarashina_embedding_models.py +2 -0
  124. mteb/models/model_implementations/searchmap_models.py +1 -0
  125. mteb/models/model_implementations/seed_1_6_embedding_models.py +1 -0
  126. mteb/models/model_implementations/seed_1_6_embedding_models_1215.py +1 -0
  127. mteb/models/model_implementations/seed_models.py +1 -0
  128. mteb/models/model_implementations/sentence_transformers_models.py +18 -0
  129. mteb/models/model_implementations/shuu_model.py +1 -0
  130. mteb/models/model_implementations/siglip_models.py +10 -0
  131. mteb/models/model_implementations/sonar_models.py +2 -1
  132. mteb/models/model_implementations/spartan8806_atles_champion.py +1 -0
  133. mteb/models/model_implementations/stella_models.py +6 -0
  134. mteb/models/model_implementations/tarka_models.py +2 -0
  135. mteb/models/model_implementations/text2vec_models.py +3 -0
  136. mteb/models/model_implementations/ua_sentence_models.py +1 -0
  137. mteb/models/model_implementations/uae_models.py +1 -0
  138. mteb/models/model_implementations/vdr_models.py +1 -0
  139. mteb/models/model_implementations/vi_vn_models.py +6 -0
  140. mteb/models/model_implementations/vista_models.py +2 -0
  141. mteb/models/model_implementations/vlm2vec_models.py +2 -0
  142. mteb/models/model_implementations/voyage_models.py +15 -0
  143. mteb/models/model_implementations/voyage_v.py +1 -0
  144. mteb/models/model_implementations/xyz_models.py +1 -0
  145. mteb/models/model_implementations/youtu_models.py +1 -0
  146. mteb/models/model_implementations/yuan_models.py +1 -0
  147. mteb/models/model_implementations/yuan_models_en.py +1 -0
  148. mteb/models/model_meta.py +35 -2
  149. mteb/tasks/retrieval/eng/__init__.py +42 -0
  150. mteb/tasks/retrieval/eng/bright_retrieval.py +9 -1
  151. mteb/tasks/retrieval/eng/bright_v1_1_retrieval.py +968 -0
  152. {mteb-2.7.3.dist-info → mteb-2.7.4.dist-info}/METADATA +1 -1
  153. {mteb-2.7.3.dist-info → mteb-2.7.4.dist-info}/RECORD +157 -136
  154. {mteb-2.7.3.dist-info → mteb-2.7.4.dist-info}/WHEEL +0 -0
  155. {mteb-2.7.3.dist-info → mteb-2.7.4.dist-info}/entry_points.txt +0 -0
  156. {mteb-2.7.3.dist-info → mteb-2.7.4.dist-info}/licenses/LICENSE +0 -0
  157. {mteb-2.7.3.dist-info → mteb-2.7.4.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mteb
3
- Version: 2.7.3
3
+ Version: 2.7.4
4
4
  Summary: Massive Text Embedding Benchmark
5
5
  Author-email: MTEB Contributors <niklas@huggingface.co>, Kenneth Enevoldsen <kenneth.enevoldsen@cas.au.dk>, Nouamane Tazi <nouamane@huggingface.co>, Nils Reimers <info@nils-reimers.de>
6
6
  Maintainer-email: Kenneth Enevoldsen <kenneth.enevoldsen@cas.au.dk>, Roman Solomatin <risolomatin@gmail.com>, Isaac Chung <chungisaac1217@gmail.com>
@@ -42,7 +42,7 @@ mteb/abstasks/dataset_card_template.md,sha256=aD6l8qc3_jxwoIGJNYLzse-jpRa8hu92Ax
42
42
  mteb/abstasks/multilabel_classification.py,sha256=MREVqYe2Lr4oD7ehk7KXKusyLOq_Dmf-41luJfSj340,9650
43
43
  mteb/abstasks/pair_classification.py,sha256=gKiWBp--oIB2XioiY309ffQCo-ErP0P75MsOP8Cb5Mg,13979
44
44
  mteb/abstasks/regression.py,sha256=ZuMZfOwU3G4hr__eHsgdagKKdrbN4-wQMLz45jr9YUc,8946
45
- mteb/abstasks/retrieval.py,sha256=igoIEz2_9_duydrsjz5Rgk5Yc4Fo1Ktg9b2H8LGBis4,27136
45
+ mteb/abstasks/retrieval.py,sha256=v8b7FjDi-M2wEUg4wZjPfvM0Gm2ONbSaXKZBk6xwosw,27156
46
46
  mteb/abstasks/retrieval_dataset_loaders.py,sha256=2y7mlsSnVum0x7X4-UXOAN-ZeH6GankSxw0Lb9yKmMM,9500
47
47
  mteb/abstasks/sts.py,sha256=iizxtxKcmGVH0ge7j2ZRjA7svupy7YNF7KU_u0SDCB4,9420
48
48
  mteb/abstasks/task_metadata.py,sha256=_yVgX3yjaxVvK-Cs2nw2wMEkI0xf-QhcGb_byCeyo-w,27210
@@ -60,8 +60,8 @@ mteb/benchmarks/__init__.py,sha256=MQEVeli-zLaJ7Xg0z7RhXQwsdmm7Ht_W2Ln0rZo1Szc,2
60
60
  mteb/benchmarks/_create_table.py,sha256=rsckziAot5EuD-aarQ6JnGurNsq6X2zn_nl43_Ge9ng,22651
61
61
  mteb/benchmarks/benchmark.py,sha256=YCGIvJ5Vc6GdCAYSjzwrnfj2A8MkbzNLvvtPBLMSSp8,6327
62
62
  mteb/benchmarks/get_benchmark.py,sha256=nzR6cu5yXu1kIJKhd4A2R62xp43Z62bluPbOpNXHMWQ,2545
63
- mteb/benchmarks/benchmarks/__init__.py,sha256=767VzDgayFSB3KJ05o0gFdOeo2f1EarbEfnCsy_karw,2294
64
- mteb/benchmarks/benchmarks/benchmarks.py,sha256=zAm1NTggaWb5Am6O30FUf-8zIbbF39eiuhSyLHzlpxQ,102370
63
+ mteb/benchmarks/benchmarks/__init__.py,sha256=-o3EMWEfP0eQ8iZpWvTj5r4yuGOUuL9mHk8IgFcpPtk,2330
64
+ mteb/benchmarks/benchmarks/benchmarks.py,sha256=IOU3Kk7TEZkhypJ7ScyfqHmYgx1nG_KPJkjXLKoSTmo,103931
65
65
  mteb/benchmarks/benchmarks/rteb_benchmarks.py,sha256=m97VA15pRBm_W_Ijw_1WHxmvtv3upFJDVl0XBgDET5k,10970
66
66
  mteb/cli/__init__.py,sha256=v-csUr3eUZElIvrGB6QGtaIdndDfNWEe9oZchsGsJpg,64
67
67
  mteb/cli/_display_tasks.py,sha256=JLlUkkfRaGkHSaU0tUTTHSrhmHO9yvwcnpm74yvItos,2307
@@ -1016,8 +1016,28 @@ mteb/descriptive_stats/Retrieval/BarExamQA.json,sha256=XFTi33wqQDYqm5SorFsVWdw_q
1016
1016
  mteb/descriptive_stats/Retrieval/BelebeleRetrieval.json,sha256=duB4gkryRSFnrXUjUaiKeKINFeGSblUYSQwwYgXuekE,458668
1017
1017
  mteb/descriptive_stats/Retrieval/BillSumCA.json,sha256=KgBJmyta3MeXBZwMFvk05LPd-RqAXJHpyexHQHEvGH0,972
1018
1018
  mteb/descriptive_stats/Retrieval/BillSumUS.json,sha256=kSOUBSPMfV6d5eBpIxH829FT00djdwlXzU-4XcPQYhE,971
1019
+ mteb/descriptive_stats/Retrieval/BrightAopsRetrieval.json,sha256=hZhHrGgeAkLYJeG_UhGv5zNqCU5uHaz5DgiMU7ys-Z8,1219
1020
+ mteb/descriptive_stats/Retrieval/BrightBiologyLongRetrieval.json,sha256=ZXjdxWpdy2-8LqQxDk2EhnrAazXbpGr2Wx-exj0Q3aY,1189
1021
+ mteb/descriptive_stats/Retrieval/BrightBiologyRetrieval.json,sha256=PTgq0QNjtensBx4ZhEspoZwrBAqQ-sFxEYwHr1s6vMI,1201
1022
+ mteb/descriptive_stats/Retrieval/BrightEarthScienceLongRetrieval.json,sha256=T5DrENJT5ztYLFg7PFpzmhfxny6RzxpS99JomEE_jyw,1188
1023
+ mteb/descriptive_stats/Retrieval/BrightEarthScienceRetrieval.json,sha256=iZ29EQZHyDGa2OPJFFYuRhWNo4ZHhvXq42mwCZKhUxo,1195
1024
+ mteb/descriptive_stats/Retrieval/BrightEconomicsLongRetrieval.json,sha256=YGXH-p3L-qflC3Ise60Tf7YRyxCkk8rZgHXJfGrWwnU,1187
1025
+ mteb/descriptive_stats/Retrieval/BrightEconomicsRetrieval.json,sha256=hqhfj5LBGBAfyRg2XIHdHqcxkjgSs-w7rD3WQoO8utM,1202
1026
+ mteb/descriptive_stats/Retrieval/BrightLeetcodeRetrieval.json,sha256=FUWWZbDjwWPz8gtyIrYV2yzeayXu5N7bF_BzNEOUNm8,1224
1019
1027
  mteb/descriptive_stats/Retrieval/BrightLongRetrieval.json,sha256=T9d-CULUajZvmalSAOkj3WhR72_DeK0_8esvjfKXIhs,10918
1028
+ mteb/descriptive_stats/Retrieval/BrightPonyLongRetrieval.json,sha256=d2h9liNegxsUrbRKxsWvPq_uEmk3eDyAhNqnAM7Z8pc,1185
1029
+ mteb/descriptive_stats/Retrieval/BrightPonyRetrieval.json,sha256=AcD5nz1AODJCOzKEzJ4MuWBaRq3BcYZhl5M8_szWt6s,1192
1030
+ mteb/descriptive_stats/Retrieval/BrightPsychologyLongRetrieval.json,sha256=sOakJ7s5fHP39hAWX2OEmPsQWzXMa6EyCulJ14dNWpU,1182
1031
+ mteb/descriptive_stats/Retrieval/BrightPsychologyRetrieval.json,sha256=JJ-rHC3zivf5ctdem_LVuHWztJCsr7TDlzfZwjkqdiM,1204
1020
1032
  mteb/descriptive_stats/Retrieval/BrightRetrieval.json,sha256=asWeWTINQ6K02juhzDFiN5LRyIZkqFEGGxr3hiBA9qg,15862
1033
+ mteb/descriptive_stats/Retrieval/BrightRoboticsLongRetrieval.json,sha256=nVS8g_W7gIC5_H6CO8ZZKvHXuK-EPTxVZq28AXz6Sr8,1193
1034
+ mteb/descriptive_stats/Retrieval/BrightRoboticsRetrieval.json,sha256=6BSUJcXcdri-VnucoQfkj003qaIeqUYfAzqfdTJy1-o,1205
1035
+ mteb/descriptive_stats/Retrieval/BrightStackoverflowLongRetrieval.json,sha256=-ueCyRRKYGpCjp_sxrys_Wl48kmZYxgJrpgjUaCDVeg,1199
1036
+ mteb/descriptive_stats/Retrieval/BrightStackoverflowRetrieval.json,sha256=poTbMwGuCe-8va_nfCQj_l0rYJrwgeluZlSzbxFwlOo,1197
1037
+ mteb/descriptive_stats/Retrieval/BrightSustainableLivingLongRetrieval.json,sha256=BY6_LkgbW63IMpVaubl2in_ZfjSQ3dsUS50tVaelw9o,1190
1038
+ mteb/descriptive_stats/Retrieval/BrightSustainableLivingRetrieval.json,sha256=AoXplSiHew7p7xy6WknY2hVHvtaIKkb6zR3Af3geGCk,1203
1039
+ mteb/descriptive_stats/Retrieval/BrightTheoremQAQuestionsRetrieval.json,sha256=E0Fssxvg3ZaL-UC4YgSuXGwJazwRZcigNkINr4isUUg,1218
1040
+ mteb/descriptive_stats/Retrieval/BrightTheoremQATheoremsRetrieval.json,sha256=jyYyhwS7qfjWNXb_d31X_OANi_iMmQF2fe0yjSO6UPQ,1188
1021
1041
  mteb/descriptive_stats/Retrieval/BuiltBenchRetrieval.json,sha256=iRJgn3oEJRjnGVDQPfzGeMMaoWC5ryogKdglNc7106U,1002
1022
1042
  mteb/descriptive_stats/Retrieval/COIRCodeSearchNetRetrieval.json,sha256=mt29C0NyIfjZo84rS-CQgOggQaDZgJn9ACKwbC3hb0c,8379
1023
1043
  mteb/descriptive_stats/Retrieval/CQADupstack-Android-PL.json,sha256=lQoNe1QTg_WbL6Z4BTn9eadFIWuBHG8B5JMpnvWY6-Y,1009
@@ -1461,7 +1481,7 @@ mteb/models/__init__.py,sha256=ABTuoqiBjBtBWW3LYY7ItBHdylR6jWoy06HH0g6j6fU,910
1461
1481
  mteb/models/abs_encoder.py,sha256=We9HlwWP61P4cMyZ080gywvDErA1eVsU9t46PtcNrCM,16830
1462
1482
  mteb/models/get_model_meta.py,sha256=_3gbC9I9fHJuqW4EzfM3xAv-heOBwEPswLVkCGO4BBI,6201
1463
1483
  mteb/models/instruct_wrapper.py,sha256=XAvvbPnXiTxKhFbmusm2uS8E9BMq8QXRSzQQI1jqKzE,9781
1464
- mteb/models/model_meta.py,sha256=KQ1o9tJVY9T5j6wulfK47CXO-t4erl5NDqWDNMCFYxw,31271
1484
+ mteb/models/model_meta.py,sha256=5seQwce893SbgSywFsphLuZGQ9rRn1fLl9fj1SfKnXE,32887
1465
1485
  mteb/models/models_protocols.py,sha256=I2K9f0r7FL8hbkiiABOjtf0eYPvgK1oz-Okke3e7V0w,9331
1466
1486
  mteb/models/search_wrappers.py,sha256=x1bi219_PXi6Ury3earvuk72Guqj0olAc1jCSgvFGfc,21095
1467
1487
  mteb/models/sentence_transformer_wrapper.py,sha256=RsOxj-b7qzeYcxUTVJyb-lZDY4bINl4jEAEkPvKYB10,13578
@@ -1474,133 +1494,133 @@ mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=HRZ8FeXSJyK3m07g
1474
1494
  mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=ejOONSD8wZACuGt455UXn_z5ZHGMpv64ORvteKNqfDw,3899
1475
1495
  mteb/models/cache_wrappers/cache_backends/numpy_cache.py,sha256=V275IY-0lyh2REqZjIZOgJJ7SY05yiWdHNF2kiSdRfo,8071
1476
1496
  mteb/models/model_implementations/__init__.py,sha256=BZDdde6ajKv-yroy9mqE2YS3Hw1KBdKoxBPg8aPTZEs,1164
1477
- mteb/models/model_implementations/align_models.py,sha256=ag8hz3Wdzz6_j8W49bk_uFHtu_Ob1detnfo2whl4ulo,4643
1478
- mteb/models/model_implementations/amazon_models.py,sha256=a9bLYQ1ZGWDo4RdyaPNsBqadMrBm550fLIFr1Zfp2Nk,720
1479
- mteb/models/model_implementations/andersborges.py,sha256=TkZFz55hn3A8qBBKW4SChOMAiVRVhUdzF1gSaiv4icc,2411
1480
- mteb/models/model_implementations/ara_models.py,sha256=pE1aW6a4AdP2H0p6-YCyMi6kBGpDUsI7xi8qDtRVD_k,1478
1481
- mteb/models/model_implementations/arctic_models.py,sha256=G03_fOm_pgYbT9rgMruVlI0sEN_B8fB9HAt5nzRbbRs,10750
1482
- mteb/models/model_implementations/b1ade_models.py,sha256=oyUmA83CjiAqh51nl3c4k5NuzB-SBySyMSXsbEU--hU,1666
1483
- mteb/models/model_implementations/bedrock_models.py,sha256=QzHxSBQI0ghxw10eznCWdN1blizvttTagFQ2B17OGBQ,8915
1484
- mteb/models/model_implementations/bge_models.py,sha256=YMatt2zsOx3EVA7DQp6m6NgnTgsVU-JxWD6iEA4-IFU,25171
1485
- mteb/models/model_implementations/bica_model.py,sha256=vfScW0FBqWG00C7-lb9krWzWnAS7pTzDvBsqMPjeJAM,1266
1486
- mteb/models/model_implementations/blip2_models.py,sha256=src-4l7TezRwsSav-t2zFu6exGQYnrirqkif2UuH6jA,7832
1487
- mteb/models/model_implementations/blip_models.py,sha256=7SaJ_Gnjjt-GbTrjrAJDbuRvk4g788V8hmjtisSPRFc,11837
1488
- mteb/models/model_implementations/bm25.py,sha256=8pNd59GMW4dGPyz9JRbFDLct-rJhI_HUjQTrHhYBfvw,4965
1489
- mteb/models/model_implementations/bmretriever_models.py,sha256=uIQzjltsEgIrzjDsUF7zasDT04cSJdWxeIouUtMmThQ,6919
1490
- mteb/models/model_implementations/cadet_models.py,sha256=CtY4ioYb7W8LcIYRCO5dh6-Nr1QDp6UYvTUR6FGwTik,2266
1491
- mteb/models/model_implementations/cde_models.py,sha256=NeCYExaQs56xHU9fSW_3OmxG2bLeiB5Y4cNZ6_ejRFg,9307
1492
- mteb/models/model_implementations/clip_models.py,sha256=12esOgrfjCIfr9uISmQ1wJRagA199B9eVfOYNnJC-E0,6283
1493
- mteb/models/model_implementations/clips_models.py,sha256=RJUMc9q8ZA4HRtcUDa063Rb0GvXl_cIrjU93Xv4epys,3581
1494
- mteb/models/model_implementations/codefuse_models.py,sha256=dwlHFA0p1oO7vX9NCFmjRa9hgp1_2EnpPCbKN6xfMAc,14208
1495
- mteb/models/model_implementations/codesage_models.py,sha256=HQqkwv6IuhNkUfrKBa9mnwWozoRKnmYRWOdwluBYjZA,3124
1496
- mteb/models/model_implementations/cohere_models.py,sha256=S8X1a9RCwED70-Fc6VttthW2JuiEZz-_N-okAFFSMMg,14089
1497
- mteb/models/model_implementations/cohere_v.py,sha256=V98D89NY4iO7OPSzVPnxzDGK_FRRE2eAc6F0ip-_AYg,15941
1498
- mteb/models/model_implementations/colpali_models.py,sha256=ZFxYpHMi-6Z-K9uTRshSeCXip2Oy2czOgoHr72H3dqM,9277
1499
- mteb/models/model_implementations/colqwen_models.py,sha256=c0-fWJ9tb_E5L9DOqUzZaP9v7IP36tf5fVWSBI8yT9w,15208
1500
- mteb/models/model_implementations/colsmol_models.py,sha256=IOPIrYtbKNfiqv_B-XV6hdDbn24ZQDiaqaSMw3mEuo8,3071
1501
- mteb/models/model_implementations/conan_models.py,sha256=xr1zsAYvXAi8xrSiQXn0r1vt5ICIWldImldA7_E5YbY,6653
1502
- mteb/models/model_implementations/dino_models.py,sha256=xzfc1xMVVFK5wmAGmWL3a80swaF3hLeMOQF6jTwqEk8,26101
1503
- mteb/models/model_implementations/e5_instruct.py,sha256=86Y-MeUOQeAxNhUmqtP-4bFASQSZkDLyhyP3-lzU0yc,8061
1504
- mteb/models/model_implementations/e5_models.py,sha256=iczmJdoqfoH8dvxwmgd0xGTGR-H9XRbIhQbVqImoAb4,9798
1505
- mteb/models/model_implementations/e5_v.py,sha256=bCvNhtMlbe5rlThB2y-EGwvBa9FEZR4o63mDnNO7O28,6883
1506
- mteb/models/model_implementations/eagerworks_models.py,sha256=ioiFbh9h4wOjVzlTtIdHqM0oHLFZPi0HwCFDOe_DUQE,5890
1507
- mteb/models/model_implementations/emillykkejensen_models.py,sha256=Qqzze2MXWioSalQ1cCdXIHRZRUfMN9IxtSU74IwkDb4,3740
1508
- mteb/models/model_implementations/en_code_retriever.py,sha256=UTOmjnCCDOhqoMyYXKCGDPNOqR5XMmNuE9drpgMzMqs,1084
1509
- mteb/models/model_implementations/euler_models.py,sha256=6EdpMJFFGVHGgPC44jRrsc7ywunoWN5fku-zBaa88rA,1162
1510
- mteb/models/model_implementations/evaclip_models.py,sha256=1aDjT8JjuMFIlOVd2lF8DTSSj7eB2oW100IYgxM-Vgo,8187
1511
- mteb/models/model_implementations/fa_models.py,sha256=vwEzH1EIzw0gb0cwmgoz81oYWwowVix-G47y0SiL1PQ,9988
1512
- mteb/models/model_implementations/facebookai.py,sha256=YxJRjMtdvqCHfh3dTwxrLsr19v0N658O1cTx7GilO94,5058
1513
- mteb/models/model_implementations/geogpt_models.py,sha256=FmvRKWmSBf6gXQ1b0VbHdSP02ZAEP68IzIq4726kync,1980
1514
- mteb/models/model_implementations/gme_v_models.py,sha256=QrvsAMI7pm3w7VXiIFDBO10WGH1IEBy34QrZmm5Eack,13895
1515
- mteb/models/model_implementations/google_models.py,sha256=eRcxa2RoyNQvww29I4k3y-BEZmMm9Et9UlFlpfBZvNk,11263
1516
- mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=-ShJ8pPYvjkVdtv9Dt3nlDaPj7ah6QqSm5OE6sa0PA8,7385
1517
- mteb/models/model_implementations/gritlm_models.py,sha256=XmKNIyIAJUpmfT5r_cqm7DjacbLFeGygX9IIe3k3dfw,3119
1518
- mteb/models/model_implementations/gte_models.py,sha256=A9woaY4doCb89b5dxFpJcbwmHMXiG9NnseznoWFU-Qg,14232
1519
- mteb/models/model_implementations/hinvec_models.py,sha256=RJbEYXLdPxNsmKu0tpv-pd1Wcvv3Ir5P2t9-lVrj8-g,1723
1520
- mteb/models/model_implementations/human.py,sha256=EtYa8G7Dc8fDcelBVw0xTpxGGx1YKKuprVgksY5ZOcE,558
1521
- mteb/models/model_implementations/ibm_granite_models.py,sha256=ljHjuPuBkIwJvp5WZ3csjTOIb14nLh1h3OYkW-CEeHY,8464
1522
- mteb/models/model_implementations/inf_models.py,sha256=SXXs3s9PWo08fzrxG_WOXGc_gvbpmkt-Blt7YoGcPRo,3020
1523
- mteb/models/model_implementations/jasper_models.py,sha256=W6MUznsj0rVmcTVEAWdjHOaXf0oqAEVCII32vFuRvfg,16403
1524
- mteb/models/model_implementations/jina_clip.py,sha256=uWvMEyx0ShXkIm4d6EykQpW8bX55Is4p3MmYEdN8M0M,6678
1525
- mteb/models/model_implementations/jina_models.py,sha256=HHE8W2BCofTWWnIwDZPz16PzJiOnVioEI8m4W8-TBvo,35285
1526
- mteb/models/model_implementations/kalm_models.py,sha256=foOAAGjlNMxUsC-nKv6EYcoBxn2t3mR-d_KHKqmkClg,62212
1527
- mteb/models/model_implementations/kblab.py,sha256=EisTJXijICN2pyfWT_89qUnNO7TH95t1LxCxjzJnzQo,1237
1528
- mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=YdroUdWJtSjrua93Qo950eui38qhD6KgnSND_NlTzro,3060
1529
- mteb/models/model_implementations/kfst.py,sha256=jz0Pez-NLXy2Hxt2edvVJMm9A6yn6xQacxxr2nCyOsY,949
1530
- mteb/models/model_implementations/kowshik24_models.py,sha256=xm2oh0Sjbvp4Aur4XUkTxp6pYtKZIbyN1r88eE4aHpQ,1460
1531
- mteb/models/model_implementations/lens_models.py,sha256=sVgP-wyi7SrMVyXkS1msMEKkE2ZTheYrt3QwGezqqJk,1748
1532
- mteb/models/model_implementations/lgai_embedding_models.py,sha256=6XSL2h4MaA8etAE8qmrDrwKBYxUBurJq-zZ8bXdW1oE,2390
1533
- mteb/models/model_implementations/linq_models.py,sha256=Jorw_K-ObjnF88hvaV0cm1BoTqQC6OgEEcx70Xb7sho,2021
1534
- mteb/models/model_implementations/listconranker.py,sha256=X15O6PJcAI2acc4MtfyqhdDfUjF2o-MALCtP08_oxKo,4631
1535
- mteb/models/model_implementations/llm2clip_models.py,sha256=jfCR_WFOYVALOARQ1eYuBBawvgwME7Yi3L9f3w5jS2c,9423
1536
- mteb/models/model_implementations/llm2vec_models.py,sha256=WWL8ydtpGvL4Jc82yVm2Qwbd7DCFURgmyWw-DpHa6Sc,13058
1537
- mteb/models/model_implementations/mcinext_models.py,sha256=7XgokEPPeZDOJkUrBBqiEinv5B_i-VZJeqszp0GCnPg,19200
1538
- mteb/models/model_implementations/mdbr_models.py,sha256=gGF58m_nxwaVOq03T275VofQD3Ur9W2ZdMpYwcQ9RTg,2750
1539
- mteb/models/model_implementations/misc_models.py,sha256=G42am6_tdRDFQ-0dU60OLeW2qxiQLwOoA5_NBHVN1eQ,72346
1540
- mteb/models/model_implementations/mixedbread_ai_models.py,sha256=DJGYb9Twt9cuess2QS4CrW_dWEtL0LTJ5uWruHt8Gzw,10549
1541
- mteb/models/model_implementations/mme5_models.py,sha256=4lbFhmKAFUpZojoLBObL0wx8dA6wJ9SGYej488Q_Fdg,1541
1542
- mteb/models/model_implementations/moco_models.py,sha256=scmdL5k2HLMoWLb07QJ7hBw3C7EVW-Q6YKr5NYT0SVo,5648
1543
- mteb/models/model_implementations/mod_models.py,sha256=i1OaLvAa5qiJp5-h512U6anoJpWgRulrBmTjIOKZp6c,6332
1544
- mteb/models/model_implementations/model2vec_models.py,sha256=2q5MB2MsgXSof3rMMg996w01GKa2HEuSwSo5Z18-JSY,14652
1545
- mteb/models/model_implementations/moka_models.py,sha256=M3nhjDoisunpYojtU-dEZYaLjBkndOGhWByz17_x5_w,5088
1546
- mteb/models/model_implementations/nbailab.py,sha256=LM00HJIr4yrA45qh2O21BIDXku9KcoTz-mttczEx_qM,2567
1547
- mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=qIqABBYCVHjjhWW5wF3IeFmh0SblSxwTFstQNEYnXvg,4159
1548
- mteb/models/model_implementations/nomic_models.py,sha256=nLIQBNhsZXazzuWba1EdC7Pa3NSh0QluNzEA1YiDhD8,15242
1549
- mteb/models/model_implementations/nomic_models_vision.py,sha256=MeiO-rq5-PimLDe-BBIx9emNSvzoZFGzL3O2VXbsZfM,6883
1550
- mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=IchDq1NQW4BJGEUd_TfaUSxrRZg7RrS2VuFE-Z55LWw,6967
1551
- mteb/models/model_implementations/nvidia_models.py,sha256=NtzuXxnWfhMPnKqZa7QwcpsfQh2kAobeZt3unYPZbL8,26825
1552
- mteb/models/model_implementations/octen_models.py,sha256=esOHJ8c9hzuwe21TjHgZbq63lddrkenYnA_xh78f8iA,8496
1553
- mteb/models/model_implementations/openai_models.py,sha256=dhbjmzAKFwdMRROiSO-dRuT53IVfK9BjdsLwJL8yGZo,9565
1554
- mteb/models/model_implementations/openclip_models.py,sha256=q4gwUYfCHrMVkkWs310BsejpRGDfhM1WFM5xjYuQhFU,11705
1555
- mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=-7qMqEzYmTGq0FxcBaoUV484CDGyf6Gp0ePGtBDDC60,8741
1556
- mteb/models/model_implementations/ops_moa_models.py,sha256=tNyw0zZzYH4jEo8QlmvHDCCce0pLUOeQnVOKJPgJiwQ,2577
1557
- mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=PJx1enAWiuiQUqA0JdfpPSBZS1h8CKy7ew-GFGj4YUM,1081
1558
- mteb/models/model_implementations/pawan_models.py,sha256=Fwpxqool7lHOMsim0XllWjRrQwxZP2ZU3Y9OtQ0AMvA,1192
1559
- mteb/models/model_implementations/piccolo_models.py,sha256=rIdT5pLInGyjLXpLcECLPWFJ1N-XfzCte0k3Em5Vy-M,2181
1497
+ mteb/models/model_implementations/align_models.py,sha256=82zOy5yyeaaVej81NGyjT49d1Lbg174Kpa4d8iaBi4Q,4676
1498
+ mteb/models/model_implementations/amazon_models.py,sha256=bEiOzDE2V2duMv-TCAYhMeqlgI--PXGMv6CqKLUQmp0,753
1499
+ mteb/models/model_implementations/andersborges.py,sha256=au-947iRW4F6aq57QoYWZwQVKFUiugcuvVa_IsWm8wE,2477
1500
+ mteb/models/model_implementations/ara_models.py,sha256=b-Qa5q3O8M5XbkauVm7I6D6aZSU1cd9XePT6ZVvSBtk,1517
1501
+ mteb/models/model_implementations/arctic_models.py,sha256=MfYvAkcGcb3FdbvieYmiekSvZREwu2pRJ_2sbbcUIPk,11051
1502
+ mteb/models/model_implementations/b1ade_models.py,sha256=-czgy_Ym5LHAX4-f-F7YaUGqTkfwsKmTL-tiCiihLnU,1705
1503
+ mteb/models/model_implementations/bedrock_models.py,sha256=FStjboIV3gsbUTN3CcbY0ULn-1_2Lk7CP-TrytMkTaI,9047
1504
+ mteb/models/model_implementations/bge_models.py,sha256=cC9Koty1kenoOkPpmZF63X0OsV7REIs2SEc9UIk1zAk,28033
1505
+ mteb/models/model_implementations/bica_model.py,sha256=Yx3iZrXF6ZMJS9SH5lbzNHoUWGNH3dypRtZ7dX5o7rA,1305
1506
+ mteb/models/model_implementations/blip2_models.py,sha256=C6egwozJthHmv92I0SWID3-sQCPROPJP0TzfQVKNzlo,7898
1507
+ mteb/models/model_implementations/blip_models.py,sha256=D_9e7C8GXGST8k7dMJL20x984vMeqbITu36XASi-iUU,12149
1508
+ mteb/models/model_implementations/bm25.py,sha256=2Buo0RZXlkpKQt5smD7Ss6ie_6PO9K6Xc5WqmzVGfBA,5155
1509
+ mteb/models/model_implementations/bmretriever_models.py,sha256=rijCIzX6nO5kNXqxEFbZrV7bsZtmKs8RIkMqa5cPWTk,7078
1510
+ mteb/models/model_implementations/cadet_models.py,sha256=gXIfW9MkGYFhOhsrq5a_tQcPuth13Dh1dO1KySwVxyo,2305
1511
+ mteb/models/model_implementations/cde_models.py,sha256=l4E6h1hcsNY1GTXoCgQDoeG5dRcEl7JTOiiWmp6FYqg,9373
1512
+ mteb/models/model_implementations/clip_models.py,sha256=LQvAKXWXToT0mVzXKugdIWIz56FIHF3Zhp6xL8DNCdk,6382
1513
+ mteb/models/model_implementations/clips_models.py,sha256=wAcpMHI-k6RsFQPq89JL3i75qyDkI7BHFvxu6zLmLSg,3698
1514
+ mteb/models/model_implementations/codefuse_models.py,sha256=lO-cbIN-9CftzV4HpJGrcpS4_E-6cp2337JbjxMAf1g,14373
1515
+ mteb/models/model_implementations/codesage_models.py,sha256=V6O6-fIWdWVcXAE7RhB3S4c4TqfWVnLF2DVfyp_zr-A,3242
1516
+ mteb/models/model_implementations/cohere_models.py,sha256=bf2FNg6VGqDHOXr_VbPW7tTQ677Gr6wiPPivp_EfZ_Q,14221
1517
+ mteb/models/model_implementations/cohere_v.py,sha256=OIf7FFq2hZcmGxsBx3-v_fvgMvK5Y70Su42zjCm4-cU,16106
1518
+ mteb/models/model_implementations/colpali_models.py,sha256=LB6qIuv3Mdi8fCrlvJSS-tzvrPwfB3x7cqJRG059Vmo,9376
1519
+ mteb/models/model_implementations/colqwen_models.py,sha256=_WTP3OyizRo6ky8vvAcC7ABNfxuNNQ1fKG4Fse7Uyxo,15439
1520
+ mteb/models/model_implementations/colsmol_models.py,sha256=9ScngeCsIGwFHMflgHSuwOGhR0VUOhTrXtMMmpObFo8,3137
1521
+ mteb/models/model_implementations/conan_models.py,sha256=N8nd9i-Ajmt-Mpf-EEm27tZ23VrOnE6atC7_2Rsu13g,6686
1522
+ mteb/models/model_implementations/dino_models.py,sha256=xe4JmQ1a0Fdr6dmX5nG7MZCgaLGKHJRYrP4qdwvXNpE,26728
1523
+ mteb/models/model_implementations/e5_instruct.py,sha256=PKAL2MQMLR_tJj3uhXK_oIqpkl1iBr419MPUD1gkeMI,8214
1524
+ mteb/models/model_implementations/e5_models.py,sha256=uWkRJz2m8fue0vPtNRpJm0dcfeNEOzIdU08Kv5bMjUw,10151
1525
+ mteb/models/model_implementations/e5_v.py,sha256=ifmaWfor5GBMGH-kZDGnjnGllvPW8fuuOJ1aQ1iWMtc,6916
1526
+ mteb/models/model_implementations/eagerworks_models.py,sha256=XoRl8TIBjjEDjOu7a4HzdsJumw_7jWjakhhq2EvmDPE,5923
1527
+ mteb/models/model_implementations/emillykkejensen_models.py,sha256=gH-rWMXpuYjpSSJYK58Fwv8rIN3MjOvSBtp5QrzMG_o,3839
1528
+ mteb/models/model_implementations/en_code_retriever.py,sha256=XKYrQbTjzLkTAYYK7fWw8XTykI0aNGJ_ObzEE4u_54A,1117
1529
+ mteb/models/model_implementations/euler_models.py,sha256=cQualHpu3wWQQZwLDBYP11JlLyTsESVJgYmAzieMAyY,1195
1530
+ mteb/models/model_implementations/evaclip_models.py,sha256=dMpQaXD0YuoSYWSLhz2swMb0aW_JYoKBaI2vEjDoAlQ,8319
1531
+ mteb/models/model_implementations/fa_models.py,sha256=ErWOWouyy3h8lkF0jmbdDxkgWqKOS1bbgKIeBEa4H5A,10339
1532
+ mteb/models/model_implementations/facebookai.py,sha256=PLFw5-aTFpcxtlJjG7muVM2LPSxUTUUzj3tNUxpUEPo,5138
1533
+ mteb/models/model_implementations/geogpt_models.py,sha256=sujXljj5R4BlNsFEqpBlaQu3SYDYr5SnLNnXExQTxic,2020
1534
+ mteb/models/model_implementations/gme_v_models.py,sha256=Hr_AcaQom9Lv4ejJ06Z3uXlQDOp3aYa0t9pBwBdhkH8,13975
1535
+ mteb/models/model_implementations/google_models.py,sha256=4VE-hDAu_rfvEQKRK9i8nGjTh_jd3DKiJNdNceTHfAg,11435
1536
+ mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=jxyRL9kIUfFUpokzyuJpbUkn3I0nz1fJPmd9gGLGHNc,7418
1537
+ mteb/models/model_implementations/gritlm_models.py,sha256=dDdiuX4e3GqcikwvNSGVQh4Q19IfMfxvcA9ZfNIxYm0,3192
1538
+ mteb/models/model_implementations/gte_models.py,sha256=-ASkoAuAiVytVtsYMtuKonUf39i0U69HSEnJy_-PwXA,14574
1539
+ mteb/models/model_implementations/hinvec_models.py,sha256=SYWGFr8XALmM7B9tIHEQnrqq9kZOZIBkW7m7QpzerHI,1756
1540
+ mteb/models/model_implementations/human.py,sha256=MTw560BrwuvUsHUb5_Gjq7ZRfrBmaT8dGnrubFFDB_o,591
1541
+ mteb/models/model_implementations/ibm_granite_models.py,sha256=ipLRDBerTQiL5NaoaDho410Fzy7eNFlF3jB54hGZrwI,8687
1542
+ mteb/models/model_implementations/inf_models.py,sha256=q_hNNhzMjAxbnJnAT0N6KaNegX_3XZlmz-LXY5C891I,3093
1543
+ mteb/models/model_implementations/jasper_models.py,sha256=ourAMx1_L6b2AxX046wQcxDqvYzY1Mx3gaHww0WaMA8,16476
1544
+ mteb/models/model_implementations/jina_clip.py,sha256=OF-aC5L8V57-kLdgqyo74S80_q0pxEvc5cyH26Mtwbk,6711
1545
+ mteb/models/model_implementations/jina_models.py,sha256=JUpT_KhsdKh-SttBHC-UeVYmJ5Y_UCiQ9gSTEytJPRc,35540
1546
+ mteb/models/model_implementations/kalm_models.py,sha256=W1I_MYwKHq7o_VgVCRRU9Wf7QD-eDqhpHw_3JwxNkkE,62445
1547
+ mteb/models/model_implementations/kblab.py,sha256=M3pvXtbeF-otS0r-ahuRrssLtAI44n6q299UeCb8sq4,1276
1548
+ mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=mGYYV80S_fpiktBlfDqwNrukicVE3I6IeyLoWLYVRO0,3138
1549
+ mteb/models/model_implementations/kfst.py,sha256=OA3DXGlXjvNS3BMx_iZxSrujk1cJcgaeldJOJn0dNGA,989
1550
+ mteb/models/model_implementations/kowshik24_models.py,sha256=HRLjtEHXung5do2hfmGKOifvk8DdnEhQs9MuXcrhh0Y,1500
1551
+ mteb/models/model_implementations/lens_models.py,sha256=mX5Veh3dXAUFzwBxw_HLQ3G9bjMH6nJUU-T-pgp1xTE,1828
1552
+ mteb/models/model_implementations/lgai_embedding_models.py,sha256=oR8lrw0kNNhVAi4JnB2OgZv-oW1ykW-XpODnnbUvYDM,2430
1553
+ mteb/models/model_implementations/linq_models.py,sha256=alq0ylE8QDbpOGgIHUcs74fj4AzVgS9GqTmJ6zQlxw0,2054
1554
+ mteb/models/model_implementations/listconranker.py,sha256=ojzBWxaCuMmfBaCZla8ECv5aq514IlABb6um5TGoYY8,4664
1555
+ mteb/models/model_implementations/llm2clip_models.py,sha256=X3W16uipaZ0t4Mco4lhhg4s9WC9lpVzg7Djq1wTQkyY,9522
1556
+ mteb/models/model_implementations/llm2vec_models.py,sha256=n86YQ8fAHU1gVtlY7tZcXq-1ab_ISxBmuk-X4MDnY4o,13348
1557
+ mteb/models/model_implementations/mcinext_models.py,sha256=T3vO9JQSmh3BICp6Y_q7j4anuA8P8LGZ4ZWnwGnF7cs,19299
1558
+ mteb/models/model_implementations/mdbr_models.py,sha256=AqsRZ-IDekIjq-FDWu0zx7Nk9ySJxaWTdRb8YhUZeu4,2828
1559
+ mteb/models/model_implementations/misc_models.py,sha256=0FkvheqPYh3JwM65F4CDlQKBDQQdjyMyfJPUdP1X2Ns,74780
1560
+ mteb/models/model_implementations/mixedbread_ai_models.py,sha256=1-RD4M-16M-Rcf5CTD_R7LVoLv3cNFbmEjataQ__q94,10666
1561
+ mteb/models/model_implementations/mme5_models.py,sha256=V7BCGFkfZxkZ3ANJImvSFfP7in8OSfmkbqX-zXc_iF8,1574
1562
+ mteb/models/model_implementations/moco_models.py,sha256=6eEGpGTlI4StFRYsaNtXejhYE9GCqasUYCqB_SQy9cE,5714
1563
+ mteb/models/model_implementations/mod_models.py,sha256=vcXIQ8Z9fXCPGpRRxYK0e7u-0ZsnrCTKyG2BxqkM3gI,6365
1564
+ mteb/models/model_implementations/model2vec_models.py,sha256=qXcPhV0hGRFBsvRBrb8HyntWkS_ITYDzrYa8B1htDlg,15178
1565
+ mteb/models/model_implementations/moka_models.py,sha256=4Esujv_fVJjHuX1nRH6sGtmrmF04A90F4Xo2uN0YTzs,5205
1566
+ mteb/models/model_implementations/nbailab.py,sha256=iv2xdqVM5HoTAlBR6e_UdzJu6rSPujqWXFYwyCv69hU,2684
1567
+ mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=DTb-eHZYSY6lGJkkdkC0tZ_n0GHLQwVlUehVg59T5N4,4198
1568
+ mteb/models/model_implementations/nomic_models.py,sha256=pg9od3Dq71qAsik665gx3eUCNiCzDHFR158jjbj4i0I,15440
1569
+ mteb/models/model_implementations/nomic_models_vision.py,sha256=AzTCWbXBonUAVub0TTxWCsBtg4WYex3vPiLlz3ULdHc,6916
1570
+ mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=5jYzS0qc4x82T5_c1HFt4uy9kksTt9Fs24pdLioq4Oc,7033
1571
+ mteb/models/model_implementations/nvidia_models.py,sha256=r-AW1dVQbteWjexjvZgFEt_90OHNRYer_5GLuqSXRS0,26924
1572
+ mteb/models/model_implementations/octen_models.py,sha256=5z-t2O-iIFiOOLdZ_AK9f7GrVRg-9_vx3JNAG9dJNPE,8562
1573
+ mteb/models/model_implementations/openai_models.py,sha256=y1wMknrrcu1L5CNwniG0mFThPVMON1c2Fj22jkKsw7Y,9730
1574
+ mteb/models/model_implementations/openclip_models.py,sha256=z2gQum16O0QhJPyxqKor3oO-_uWfnep6wSXqOFQQ2Q8,11969
1575
+ mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=O6ewgGKZtw-kpspbz8-dXArDf5tUWy_vY6AxFs7fsZ8,8936
1576
+ mteb/models/model_implementations/ops_moa_models.py,sha256=Ah7L78mqC9pH8t6sf1OWXOLjouVUpAutt6lZ0np7eMM,2655
1577
+ mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=xv1ftJeMND4lpeKYC3RLQB4nhdiYy0wCxrzEjUj4gSg,1114
1578
+ mteb/models/model_implementations/pawan_models.py,sha256=iyzh6NSPZKU9znJYEDPjJNIqvkyuKPAol5TcILuq1Is,1225
1579
+ mteb/models/model_implementations/piccolo_models.py,sha256=-4ABYum2pYW-RPaTyoJbAs6BzrVDgA5J2nswi1BKz7c,2253
1560
1580
  mteb/models/model_implementations/pixie_models.py,sha256=vm2vyCBhi5-_5iRQBmIB6KMjvJOByHDkYiPvSi8LsnQ,1798
1561
- mteb/models/model_implementations/promptriever_models.py,sha256=Mi_Mmo4hDWKsGwBdbk8SZYNj87Ng0u3Jjd8vFxkveAo,6584
1562
- mteb/models/model_implementations/pylate_models.py,sha256=Wlbx7dayIVa2df6_fiB3WkvSMS3nJNNNKchd_dtWTbA,17094
1563
- mteb/models/model_implementations/qodo_models.py,sha256=bb2iUDdLp1sOZdYojZuzAzV4CQK68Ad1Y-VJul78uho,2151
1564
- mteb/models/model_implementations/qtack_models.py,sha256=GJGZ0zmJw1KT39kIyrQUlEGMkY-lUa36CY_qTN6mPJU,1265
1565
- mteb/models/model_implementations/qwen3_models.py,sha256=hQXVoPTRy1wJgzen9lksmF6qh5SFwh2VcnDXp148wB8,5418
1566
- mteb/models/model_implementations/qzhou_models.py,sha256=iNsSGvoJJ8XByMF-vFScResLDuqEUcps95s2UvWCPjE,3618
1581
+ mteb/models/model_implementations/promptriever_models.py,sha256=tDXysEKbvoDNtidVTiYcdQU7gTrmYpUSiAxVLrenXa4,6723
1582
+ mteb/models/model_implementations/pylate_models.py,sha256=xq7kfhsI5M5JkFpIIgNYUMReb4JKmHYdsI9Rec3PLn0,17199
1583
+ mteb/models/model_implementations/qodo_models.py,sha256=AwYRGctJbjEkcIh1pcSeeEXYiYiizAbfTyw6CaZBJfU,2224
1584
+ mteb/models/model_implementations/qtack_models.py,sha256=vw_2O4ZABR-_nYV4g1Ud8bW1DTP-wwtQS2eGqN70vT4,1304
1585
+ mteb/models/model_implementations/qwen3_models.py,sha256=857UnUEil9o8xcw7vSr2fMRlEegyE2Q86e5yLeRL_mQ,5517
1586
+ mteb/models/model_implementations/qzhou_models.py,sha256=mfG70JrNJCo-s3MykRn6lg9gFPcKMeMI7Y8VrBhNo7I,3684
1567
1587
  mteb/models/model_implementations/random_baseline.py,sha256=YsITQoLbea_Iz2X84WNGBGkhlsQ3hB7yx1oJwXghimE,7561
1568
- mteb/models/model_implementations/rasgaard_models.py,sha256=iwqLW0r12RF3tyhakZu3ZPTLx0IRXeOAxptgaJCaJKQ,1285
1569
- mteb/models/model_implementations/reasonir_model.py,sha256=881oFRknIelXBJFFJWVaETol98mjXt69IDueUg1cxNE,2275
1570
- mteb/models/model_implementations/repllama_models.py,sha256=oDLuyUu3nyO73F5pL_krsMypN63caxXbv3B--2pTk9g,7470
1571
- mteb/models/model_implementations/rerankers_custom.py,sha256=wMbQdLdk6Ra8DE-GyuX_CK40mpvdFzKxmW6zepkYnJk,10841
1572
- mteb/models/model_implementations/rerankers_monot5_based.py,sha256=Ld3UZp4885BJAHwV0MvH6pnFz0QHYRX6YQiz-TUMRnU,34780
1573
- mteb/models/model_implementations/richinfoai_models.py,sha256=n9m6tRq1f3sRWmiQ_9yORMSTZuk9yya3jcvNJTuKh8E,1030
1574
- mteb/models/model_implementations/ru_sentence_models.py,sha256=nGvJV9rkfsEMp3QtYBtDnJF2jTm1C31_kCHILnAd6wg,42269
1575
- mteb/models/model_implementations/ruri_models.py,sha256=La2z2xaqYlX6arGrPz55i3-8SYokXhitiyV7DpJQODk,10453
1576
- mteb/models/model_implementations/salesforce_models.py,sha256=IuifNf3zg7Fkg_Oat1wXrNe_6jWLH0Oo3HRqGR5aihs,5424
1577
- mteb/models/model_implementations/samilpwc_models.py,sha256=ZYmpjsg66eTVaA7-ChDwDAk7zBU5v5JbIDdVaxmlhOk,2078
1578
- mteb/models/model_implementations/sarashina_embedding_models.py,sha256=ZShwUY3SuSjm6wTYqqh5aIdhadFfFHNvbM2VzZZrOUU,8529
1579
- mteb/models/model_implementations/searchmap_models.py,sha256=xVQPkO7aLp_kBFiMDAmBOx13VIAuXjgnJ2zUg_Cmed8,1961
1580
- mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=lymyUc3xhH9i5RSvxqUP1NSkNLsn5yovF72APEq5Hpg,18666
1581
- mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=ChVsqm7pDFkoD8drfoIbO4nu0uJenBzalztv8FlL2dg,36518
1582
- mteb/models/model_implementations/seed_models.py,sha256=IPUXOruQrlgfdxpxc960ejQdWyjkuZmj0eyK-alxkN0,14150
1583
- mteb/models/model_implementations/sentence_transformers_models.py,sha256=6oULaf2mTyVe7vy9oS_QoKuxXXPaAqjQgSooMTG0xow,26071
1584
- mteb/models/model_implementations/shuu_model.py,sha256=1jDFFPAfbfrSzC4vbHczO4yqy3Xh4tWiDAd3FS9-T6M,1177
1585
- mteb/models/model_implementations/siglip_models.py,sha256=MLESCdTn0cVhYurvSCmfX0i2KAxYmMcXB2TRyNPlvl4,13095
1588
+ mteb/models/model_implementations/rasgaard_models.py,sha256=_uNYP_nqJcOyoKnHNcvfJnP9gRvsv7HCWhZX2LJzQ9s,1322
1589
+ mteb/models/model_implementations/reasonir_model.py,sha256=WNWGqa9wANBL9vTdcFx51TEFXz6yHq_ygK0rij3LCL8,5217
1590
+ mteb/models/model_implementations/repllama_models.py,sha256=k6BgN2Cn41p0gQ0F1FdOTQ9OXlmFgG-2RtdvzOcCSZg,7543
1591
+ mteb/models/model_implementations/rerankers_custom.py,sha256=Bjgg_UbeHarupzzCk2rdy_Dd0_W0ZsE-DCD5v1EshnI,10953
1592
+ mteb/models/model_implementations/rerankers_monot5_based.py,sha256=6por4DPCycS8gljqKRZWUNM093bjjSVvmyQ3dzj9H6U,35321
1593
+ mteb/models/model_implementations/richinfoai_models.py,sha256=FsXamY-bvR5LLagtKK8fP-I5oc6B_bKp_i6_xzUYL8Y,1069
1594
+ mteb/models/model_implementations/ru_sentence_models.py,sha256=W4R985LnThJ-9XFbPnTGKb3L1QnoS3i3VXBFq94DK_w,43034
1595
+ mteb/models/model_implementations/ruri_models.py,sha256=3zYOqacB3JEnGJkMGYHqFgVkbmLo4uceJs9kzV54ivU,10819
1596
+ mteb/models/model_implementations/salesforce_models.py,sha256=BIHRGJG77QD0QSOi3zM8zfKPqoTFDNG_zpbqsow9Hfo,5523
1597
+ mteb/models/model_implementations/samilpwc_models.py,sha256=8TWU3QTYKigs020rschj0KiwXS1FR3qeFC4WIcXz6dk,2118
1598
+ mteb/models/model_implementations/sarashina_embedding_models.py,sha256=vU6rPMfUbehQNr1YHDOYoTPR5GMv0Ev7E6PQcnvq84U,8609
1599
+ mteb/models/model_implementations/searchmap_models.py,sha256=XFJMAuSick-Dh0FCLTiVIjXo_kfP_VJp28Oi9WVjjlo,1994
1600
+ mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=u7L41utKM8EY-aTVVRrpvLB924FqivM3tjy83CqDPak,18699
1601
+ mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=SDQUIyXIpODFjfgMMZF0rGI1_YPTvd3MpMjEvGhq0jc,36551
1602
+ mteb/models/model_implementations/seed_models.py,sha256=dHTS3NYacl83yV8Z4L_kjBUFpsDNRquMKCN2isXrMzw,14183
1603
+ mteb/models/model_implementations/sentence_transformers_models.py,sha256=u1GkT5Xxjw0bYZvuV1wK26-bRiqv8PPCRStbu_2hYeY,26757
1604
+ mteb/models/model_implementations/shuu_model.py,sha256=q4wZk5tYSJlnNErWpDeHGSypbAwHD5yAUHnEOuTURs8,1210
1605
+ mteb/models/model_implementations/siglip_models.py,sha256=IZj9GUlqIkvJr8_aLk7FCozWZSCXHTqaCqN44B5l0oY,13425
1586
1606
  mteb/models/model_implementations/slm_models.py,sha256=uMtAxpT3UjghyShqDOgpcbFlv0jZFLAheIPw7Psc4-E,13474
1587
- mteb/models/model_implementations/sonar_models.py,sha256=e0zG4ZxCM52mOtIpd43mMORZcX39utOiVDvzX_mz7oQ,4810
1588
- mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=nDfqkxdi8BlFoixWYjBQnaDyPCRb1UyPgH7792hihXs,1270
1589
- mteb/models/model_implementations/stella_models.py,sha256=ts2BbEl-Qe8okYTneVeoWE-pu9VCkyO7a9oJofjjEok,8420
1590
- mteb/models/model_implementations/tarka_models.py,sha256=r6H_ZLGbFwpQQrhvaepJVrsSxYXvXGChMIUDgbHaRFs,27427
1591
- mteb/models/model_implementations/text2vec_models.py,sha256=WuwcmJ6Irhayz4V7F3JJosTsfUm6WjNPmCiqUlAj0Ac,4300
1592
- mteb/models/model_implementations/ua_sentence_models.py,sha256=bbgwj71Y79VNiuK1hKIKq5XJy4mP71iDrd7IMeiKun8,1708
1593
- mteb/models/model_implementations/uae_models.py,sha256=fkDphkbkCUthhKKZWc3iMopZKMXLK1BGxLcRt0-QZic,3307
1594
- mteb/models/model_implementations/vdr_models.py,sha256=vs1JttkHiTjhz2lmGi-jjzIUPUj3BQ2t3xRUVoTpGwI,1572
1595
- mteb/models/model_implementations/vi_vn_models.py,sha256=Ep2zj4Xvjyu0a_YiLsYvolKdMGSOtzm-N-yNyXmfNwA,6328
1596
- mteb/models/model_implementations/vista_models.py,sha256=kcxMGynSaMKxFGP0qppwvSAah7c6rdMKx5ow93th7Rc,10967
1597
- mteb/models/model_implementations/vlm2vec_models.py,sha256=MvKXEok09U9pXTJjKUO7CxFSag8jrbN9TYoTzmjziXg,11885
1598
- mteb/models/model_implementations/voyage_models.py,sha256=Jr5a0DKdy_DP1umLsrQyf1YxTMjFSLjWy--vTwH-S5w,22630
1599
- mteb/models/model_implementations/voyage_v.py,sha256=QpF9LO-TtIHCVf9tTkvhwW_YNH9zh1qN5nQnRZP_MNo,8247
1600
- mteb/models/model_implementations/xyz_models.py,sha256=gjwCx3U4AxMcJDTSWVoYV6xeyXLw7lUZI5D6Q7JjWho,1322
1601
- mteb/models/model_implementations/youtu_models.py,sha256=THwWRabutW-qC-JZOVhxXWjKHVyMElzt_xm81ixzN50,5995
1602
- mteb/models/model_implementations/yuan_models.py,sha256=j-QIKECPg4TiBW_3Bp6g5yr2UOdFziFSeoGE4uKepSM,980
1603
- mteb/models/model_implementations/yuan_models_en.py,sha256=IqhpnfW0Aond1fVnp3SXi3SrqArLas84LLgN8V4SFrM,1677
1607
+ mteb/models/model_implementations/sonar_models.py,sha256=8vvic7mAMXqYOwqNneDWZjCdkP2Eb9fR63Zo-pSbRqY,4843
1608
+ mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=MK53PNE6SDtsFKBjUbPYd8mIu4EFL9X3Mzp10cPR3-Y,1309
1609
+ mteb/models/model_implementations/stella_models.py,sha256=7Z7envL3ay9t0oWmaJXSy6o_eHT5PJoWsQwCljnAEiU,8649
1610
+ mteb/models/model_implementations/tarka_models.py,sha256=DWuxTf9EZ6kmLpr2KIOxrt3hPzj-jNoh1_cgKH1gn98,27493
1611
+ mteb/models/model_implementations/text2vec_models.py,sha256=3aZh0scSSDD8dhjdEHqkEl6bkFPep3tkhhjQ5pELzjs,4417
1612
+ mteb/models/model_implementations/ua_sentence_models.py,sha256=nPUcRoZHFGJ-yfQxhWTALL876uswkLOV4NCp3EfKPdE,1748
1613
+ mteb/models/model_implementations/uae_models.py,sha256=nfeDm0zL49F1ZqfuAv2fFShEBDmFuKZmXAwBtYnTglA,3346
1614
+ mteb/models/model_implementations/vdr_models.py,sha256=IGvpE2F42IWBN5QwKSWjsAehTv4XMMTQzPzYowQhJqM,1612
1615
+ mteb/models/model_implementations/vi_vn_models.py,sha256=7hot8CF5B1UeC4WJXnAAs1C1vbqK2lq7Bw338ztKFDE,6566
1616
+ mteb/models/model_implementations/vista_models.py,sha256=mcI0La6__LasuLd5P-nkc4Z-r9X_8sYhGFLdVPGPmkw,11033
1617
+ mteb/models/model_implementations/vlm2vec_models.py,sha256=1iq2i1ZbsPINE8nXoVZsX1Km-4dTTAd6St6J38I8Tew,11951
1618
+ mteb/models/model_implementations/voyage_models.py,sha256=L8-9kKgIzp_BIS_NIK6rVf4TtvjCeW4KEgR8H6LD2Wk,23125
1619
+ mteb/models/model_implementations/voyage_v.py,sha256=_mJGhskJj9zeHYebEJFuYheLPb-YDyiu6Hny_5LQcAE,8280
1620
+ mteb/models/model_implementations/xyz_models.py,sha256=69JyOCQHVq19nAG3zQFi-UYYT6I7uHmvTcmRxHvjyc8,1361
1621
+ mteb/models/model_implementations/youtu_models.py,sha256=P5fh34UJZQObJAbz3Wuzqh9Nw5S7LraqxdtwAX3sDJ8,6028
1622
+ mteb/models/model_implementations/yuan_models.py,sha256=lEsFUFQ7VyWHxQlwxq6srqURcoR6Sz3gWSOPuYHPLQ0,1019
1623
+ mteb/models/model_implementations/yuan_models_en.py,sha256=Ym1dVBnFrqidA6ufgUjzC_mSR9Emak7DcEHnf2wgQyY,1710
1604
1624
  mteb/models/search_encoder_index/__init__.py,sha256=3QFacIuFyEiI7ocsSkb3Lp2S2L7MLkpHCMIJ201fowA,182
1605
1625
  mteb/models/search_encoder_index/search_backend_protocol.py,sha256=jYIQkQ3FjFM503luHasbSk0tKzxp1NwIjtWzABBZLeY,1968
1606
1626
  mteb/models/search_encoder_index/search_indexes/__init__.py,sha256=Wm60_oUemUpFsvrCMW111dcPH2L2rt1iZrXMskXmG7o,88
@@ -2211,7 +2231,7 @@ mteb/tasks/retrieval/deu/german_qu_ad_retrieval.py,sha256=RYZCPgKaNPi14ncxnvz8_7
2211
2231
  mteb/tasks/retrieval/deu/legal_qu_ad_retrieval.py,sha256=l_UNVkOQxqlKp6wef2BM-GKtyYnmYLYThGZZnUsR_-c,1594
2212
2232
  mteb/tasks/retrieval/ell/__init__.py,sha256=46naXAZtJzyezyqOQGRIlr4zQVkqGQJdj7ztjMrez9Y,72
2213
2233
  mteb/tasks/retrieval/ell/greek_civics_qa.py,sha256=uKmiWHHZvL1o5m17XCrzi16kHWFNhlEUHrtlk-LR1as,2514
2214
- mteb/tasks/retrieval/eng/__init__.py,sha256=dVW7pHRu8SXp2_PJwn6InbfWVQ2VVy0PJvr_-bLBrc4,16158
2234
+ mteb/tasks/retrieval/eng/__init__.py,sha256=PVMsl2oXNQYggkMkU7RKF20ZqWL_EXOrwp9q2Ji2ANc,17555
2215
2235
  mteb/tasks/retrieval/eng/aila_casedocs_retrieval.py,sha256=UKoN9oE8C412REf8MV16aUDgE5NwkHxnXsh4dcLztpk,1398
2216
2236
  mteb/tasks/retrieval/eng/aila_statutes_retrieval.py,sha256=GugjZwaWmTlNyYzK8ACKZHIiUw2YBvLaVyTngN_qQyM,1366
2217
2237
  mteb/tasks/retrieval/eng/alpha_nli_retrieval.py,sha256=GpOkizyeOs_ZMbRu9g1yAXdKkQr8PObUepP1OulbJio,1714
@@ -2227,7 +2247,8 @@ mteb/tasks/retrieval/eng/birco_relic_reranking.py,sha256=zx-zJpQWKmoJ89l1kkmEGW7
2227
2247
  mteb/tasks/retrieval/eng/birco_whats_that_book_reranking.py,sha256=_N8dSye5Zoizma9iuNhE8LY5norGh_zfiiOAomdtcXs,1776
2228
2248
  mteb/tasks/retrieval/eng/blink_it2i_retrieval.py,sha256=WqZ1l-S3u9RAjwwc8umy5RH67zwJjjWRCYWnVpjtupQ,1326
2229
2249
  mteb/tasks/retrieval/eng/blink_it2t_retrieval.py,sha256=sSnpb6QGHok-vvBaJz49wIN9RIYaeZbUVzYs5dfXUTI,1326
2230
- mteb/tasks/retrieval/eng/bright_retrieval.py,sha256=azSvR441wGFOq58cifwDwmgmahYz-qbbOAkVcfYwpmw,4895
2250
+ mteb/tasks/retrieval/eng/bright_retrieval.py,sha256=UxCb5cgp8nAzqG2V5UU06dFx7reMJvLXX1WVxMCMZ9I,5191
2251
+ mteb/tasks/retrieval/eng/bright_v1_1_retrieval.py,sha256=Al8b6hjQPOBIB2jcQfSxcdH1BQvzMXimMYNsIJbbmXM,34917
2231
2252
  mteb/tasks/retrieval/eng/built_bench_retrieval.py,sha256=pqsIaVMl0ugGl5wx1oHPooqpRTLhXJYPYSy51ci89yQ,1528
2232
2253
  mteb/tasks/retrieval/eng/chat_doctor_retrieval.py,sha256=_PQYn3jXgeLKjnb_uKxzHtM9SCICV3bsmgEcEoD2OXo,3582
2233
2254
  mteb/tasks/retrieval/eng/chem_hotpot_qa_retrieval.py,sha256=sLTfqBf967htSU7Ego7zkEC8QYVWFI12YoHxa-urWEw,2114
@@ -2623,9 +2644,9 @@ mteb/types/_metadata.py,sha256=NN-W0S6a5TDV7UkpRx1pyWtGF4TyyCyoPUfHOwdeci8,2290
2623
2644
  mteb/types/_result.py,sha256=UKNokV9pu3G74MGebocU512aU_fFU9I9nPKnrG9Q0iE,1035
2624
2645
  mteb/types/_string_validators.py,sha256=PY-dYq4E8O50VS3bLYdldPWp400fl_WzUjfVSkNWe8U,523
2625
2646
  mteb/types/statistics.py,sha256=gElgSShKBXpfcqaZHhU_d2UHln1CyzUj8FN8KFun_UA,4087
2626
- mteb-2.7.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
2627
- mteb-2.7.3.dist-info/METADATA,sha256=EE-HNOb55odU17jXxFjL2iAsBki09jfwqJDOEQrDslg,14457
2628
- mteb-2.7.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2629
- mteb-2.7.3.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
2630
- mteb-2.7.3.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
2631
- mteb-2.7.3.dist-info/RECORD,,
2647
+ mteb-2.7.4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
2648
+ mteb-2.7.4.dist-info/METADATA,sha256=yaaC_q2bJ-6bfBa3Bybw0PaSQO2bNH35Jii1gDroWqM,14457
2649
+ mteb-2.7.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
2650
+ mteb-2.7.4.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
2651
+ mteb-2.7.4.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
2652
+ mteb-2.7.4.dist-info/RECORD,,
File without changes