mteb 2.5.1__py3-none-any.whl → 2.5.3__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.
- mteb/abstasks/abstask.py +6 -6
- mteb/abstasks/aggregated_task.py +4 -10
- mteb/abstasks/clustering_legacy.py +3 -2
- mteb/abstasks/task_metadata.py +2 -3
- mteb/cache.py +7 -4
- mteb/cli/build_cli.py +10 -5
- mteb/cli/generate_model_card.py +4 -3
- mteb/deprecated_evaluator.py +4 -3
- mteb/evaluate.py +4 -1
- mteb/get_tasks.py +4 -3
- mteb/leaderboard/app.py +70 -3
- mteb/models/abs_encoder.py +5 -3
- mteb/models/cache_wrappers/cache_backends/faiss_cache.py +4 -1
- mteb/models/cache_wrappers/cache_backends/numpy_cache.py +13 -12
- mteb/models/model_implementations/align_models.py +1 -0
- mteb/models/model_implementations/amazon_models.py +1 -0
- mteb/models/model_implementations/andersborges.py +2 -0
- mteb/models/model_implementations/ara_models.py +1 -0
- mteb/models/model_implementations/arctic_models.py +8 -0
- mteb/models/model_implementations/b1ade_models.py +1 -0
- mteb/models/model_implementations/bedrock_models.py +4 -0
- mteb/models/model_implementations/bge_models.py +17 -0
- mteb/models/model_implementations/bica_model.py +1 -0
- mteb/models/model_implementations/blip2_models.py +2 -0
- mteb/models/model_implementations/blip_models.py +8 -0
- mteb/models/model_implementations/bm25.py +1 -0
- mteb/models/model_implementations/bmretriever_models.py +4 -0
- mteb/models/model_implementations/cadet_models.py +1 -0
- mteb/models/model_implementations/cde_models.py +2 -0
- mteb/models/model_implementations/clip_models.py +3 -0
- mteb/models/model_implementations/clips_models.py +3 -0
- mteb/models/model_implementations/codefuse_models.py +3 -0
- mteb/models/model_implementations/codesage_models.py +3 -0
- mteb/models/model_implementations/cohere_models.py +4 -0
- mteb/models/model_implementations/cohere_v.py +5 -0
- mteb/models/model_implementations/colpali_models.py +3 -0
- mteb/models/model_implementations/colqwen_models.py +9 -0
- mteb/models/model_implementations/colsmol_models.py +2 -0
- mteb/models/model_implementations/conan_models.py +1 -0
- mteb/models/model_implementations/dino_models.py +19 -0
- mteb/models/model_implementations/e5_instruct.py +4 -0
- mteb/models/model_implementations/e5_models.py +9 -0
- mteb/models/model_implementations/e5_v.py +1 -0
- mteb/models/model_implementations/eagerworks_models.py +1 -0
- mteb/models/model_implementations/emillykkejensen_models.py +3 -0
- mteb/models/model_implementations/en_code_retriever.py +1 -0
- mteb/models/model_implementations/euler_models.py +1 -0
- mteb/models/model_implementations/evaclip_models.py +4 -0
- mteb/models/model_implementations/fa_models.py +8 -0
- mteb/models/model_implementations/facebookai.py +2 -0
- mteb/models/model_implementations/geogpt_models.py +1 -0
- mteb/models/model_implementations/gme_v_models.py +6 -3
- mteb/models/model_implementations/google_models.py +5 -0
- mteb/models/model_implementations/granite_vision_embedding_models.py +1 -0
- mteb/models/model_implementations/gritlm_models.py +2 -0
- mteb/models/model_implementations/gte_models.py +9 -0
- mteb/models/model_implementations/hinvec_models.py +1 -0
- mteb/models/model_implementations/human.py +1 -0
- mteb/models/model_implementations/ibm_granite_models.py +6 -0
- mteb/models/model_implementations/inf_models.py +2 -0
- mteb/models/model_implementations/jasper_models.py +2 -0
- mteb/models/model_implementations/jina_clip.py +1 -0
- mteb/models/model_implementations/jina_models.py +7 -1
- mteb/models/model_implementations/kalm_models.py +6 -0
- mteb/models/model_implementations/kblab.py +1 -0
- mteb/models/model_implementations/kennethenevoldsen_models.py +2 -0
- mteb/models/model_implementations/kfst.py +1 -0
- mteb/models/model_implementations/kowshik24_models.py +1 -0
- mteb/models/model_implementations/lens_models.py +2 -0
- mteb/models/model_implementations/lgai_embedding_models.py +1 -0
- mteb/models/model_implementations/linq_models.py +1 -0
- mteb/models/model_implementations/listconranker.py +1 -1
- mteb/models/model_implementations/llm2clip_models.py +3 -0
- mteb/models/model_implementations/llm2vec_models.py +8 -0
- mteb/models/model_implementations/mcinext_models.py +7 -1
- mteb/models/model_implementations/mdbr_models.py +2 -0
- mteb/models/model_implementations/misc_models.py +63 -0
- mteb/models/model_implementations/mme5_models.py +1 -0
- mteb/models/model_implementations/moco_models.py +2 -0
- mteb/models/model_implementations/model2vec_models.py +13 -0
- mteb/models/model_implementations/moka_models.py +3 -0
- mteb/models/model_implementations/mxbai_models.py +3 -0
- mteb/models/model_implementations/nbailab.py +3 -0
- mteb/models/model_implementations/no_instruct_sentence_models.py +1 -0
- mteb/models/model_implementations/nomic_models.py +6 -0
- mteb/models/model_implementations/nomic_models_vision.py +1 -0
- mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py +2 -0
- mteb/models/model_implementations/nvidia_models.py +3 -0
- mteb/models/model_implementations/octen_models.py +195 -0
- mteb/models/model_implementations/openai_models.py +5 -0
- mteb/models/model_implementations/openclip_models.py +8 -0
- mteb/models/model_implementations/opensearch_neural_sparse_models.py +5 -0
- mteb/models/model_implementations/ops_moa_models.py +2 -0
- mteb/models/model_implementations/pawan_models.py +1 -0
- mteb/models/model_implementations/piccolo_models.py +2 -0
- mteb/models/model_implementations/promptriever_models.py +4 -0
- mteb/models/model_implementations/pylate_models.py +3 -0
- mteb/models/model_implementations/qodo_models.py +2 -0
- mteb/models/model_implementations/qtack_models.py +1 -0
- mteb/models/model_implementations/qwen3_models.py +3 -0
- mteb/models/model_implementations/qzhou_models.py +2 -0
- mteb/models/model_implementations/random_baseline.py +2 -1
- mteb/models/model_implementations/rasgaard_models.py +1 -0
- mteb/models/model_implementations/reasonir_model.py +1 -0
- mteb/models/model_implementations/repllama_models.py +2 -0
- mteb/models/model_implementations/rerankers_custom.py +3 -3
- mteb/models/model_implementations/rerankers_monot5_based.py +14 -14
- mteb/models/model_implementations/richinfoai_models.py +1 -0
- mteb/models/model_implementations/ru_sentence_models.py +20 -0
- mteb/models/model_implementations/ruri_models.py +10 -0
- mteb/models/model_implementations/salesforce_models.py +3 -0
- mteb/models/model_implementations/samilpwc_models.py +1 -0
- mteb/models/model_implementations/sarashina_embedding_models.py +2 -0
- mteb/models/model_implementations/searchmap_models.py +1 -0
- mteb/models/model_implementations/seed_1_6_embedding_models.py +1 -0
- mteb/models/model_implementations/seed_models.py +1 -0
- mteb/models/model_implementations/sentence_transformers_models.py +18 -0
- mteb/models/model_implementations/shuu_model.py +32 -31
- mteb/models/model_implementations/siglip_models.py +10 -0
- mteb/models/model_implementations/sonar_models.py +1 -0
- mteb/models/model_implementations/spartan8806_atles_champion.py +1 -0
- mteb/models/model_implementations/stella_models.py +6 -0
- mteb/models/model_implementations/tarka_models.py +2 -0
- mteb/models/model_implementations/ua_sentence_models.py +1 -0
- mteb/models/model_implementations/uae_models.py +1 -0
- mteb/models/model_implementations/vdr_models.py +1 -0
- mteb/models/model_implementations/vi_vn_models.py +6 -0
- mteb/models/model_implementations/vista_models.py +2 -0
- mteb/models/model_implementations/vlm2vec_models.py +2 -0
- mteb/models/model_implementations/voyage_models.py +15 -0
- mteb/models/model_implementations/voyage_v.py +1 -0
- mteb/models/model_implementations/xyz_models.py +1 -0
- mteb/models/model_implementations/youtu_models.py +1 -0
- mteb/models/model_implementations/yuan_models.py +1 -0
- mteb/models/model_implementations/yuan_models_en.py +1 -0
- mteb/models/model_meta.py +49 -4
- mteb/models/search_encoder_index/search_indexes/faiss_search_index.py +4 -1
- mteb/models/search_wrappers.py +4 -2
- mteb/models/sentence_transformer_wrapper.py +10 -10
- mteb/results/benchmark_results.py +67 -43
- mteb/results/model_result.py +3 -1
- mteb/results/task_result.py +22 -17
- {mteb-2.5.1.dist-info → mteb-2.5.3.dist-info}/METADATA +1 -1
- {mteb-2.5.1.dist-info → mteb-2.5.3.dist-info}/RECORD +148 -147
- {mteb-2.5.1.dist-info → mteb-2.5.3.dist-info}/WHEEL +0 -0
- {mteb-2.5.1.dist-info → mteb-2.5.3.dist-info}/entry_points.txt +0 -0
- {mteb-2.5.1.dist-info → mteb-2.5.3.dist-info}/licenses/LICENSE +0 -0
- {mteb-2.5.1.dist-info → mteb-2.5.3.dist-info}/top_level.txt +0 -0
|
@@ -5,11 +5,11 @@ mteb/_helpful_enum.py,sha256=jh73N1jlcpg7RGz4bj8UpctiMNvqvHpp9wrB7SYEzIU,510
|
|
|
5
5
|
mteb/_log_once.py,sha256=-tUKzxGQzf2LZSuQXi97oYFXMta1B6GEYXd7BPqssvY,1095
|
|
6
6
|
mteb/_requires_package.py,sha256=eHg_TD9BVZRzNCcQQrUP17d8M1DF_vOd_tVx54AmAnM,3017
|
|
7
7
|
mteb/_set_seed.py,sha256=HPlPRl__Pe6IG-4UgJqTfplcivJ_wA2kaClbXoHQedM,1178
|
|
8
|
-
mteb/cache.py,sha256=
|
|
9
|
-
mteb/deprecated_evaluator.py,sha256=
|
|
10
|
-
mteb/evaluate.py,sha256=
|
|
8
|
+
mteb/cache.py,sha256=y_FJ-tcjmAs-2OIow8-5UqTbXJR4HaPZ_YEjhsB8OxY,21338
|
|
9
|
+
mteb/deprecated_evaluator.py,sha256=IcM_Y1eR4h2DmvCOFuB7baBRGZZ7WRDNsov7ZmyM5Fc,26817
|
|
10
|
+
mteb/evaluate.py,sha256=o2_aJ03CKXxky9rIWfjxeKGl5KDTRHa5SJIgsHHZU94,18710
|
|
11
11
|
mteb/filter_tasks.py,sha256=5XE1OYmgDDoJYnXwFf4ma_PIT_Lekzs420sQF_kpCiY,7240
|
|
12
|
-
mteb/get_tasks.py,sha256=
|
|
12
|
+
mteb/get_tasks.py,sha256=q-J2CfZX39rVAyTDAlKLegKd3CLpVYl0hsF5ZtPFil0,14257
|
|
13
13
|
mteb/load_results.py,sha256=Xw2ZX7BToU92WwUTQUQKPAgPhX7ucyRRdoCrxAoPHdI,6414
|
|
14
14
|
mteb/similarity_functions.py,sha256=ySSnrKl4cSKOWfyIKQPVTJtxuy2ZNfcv0COXDp22QlQ,10630
|
|
15
15
|
mteb/_evaluators/__init__.py,sha256=Ag1_RWpxBGMpujzd3FZjI40gY_KQKIpY31tJPuk-hFg,1013
|
|
@@ -31,12 +31,12 @@ mteb/_evaluators/text/summarization_evaluator.py,sha256=l0AwjVO594mtzPV9Kcqf_xtH
|
|
|
31
31
|
mteb/abstasks/__init__.py,sha256=1iAwpYTWX7U-goak2KMmacPFCzxPchLQAmZ_uI0t-p0,1130
|
|
32
32
|
mteb/abstasks/_statistics_calculation.py,sha256=UP2H2Cy8yqwtqeimTWfe4unmZ4iyyr5qiBNZzzFjy9o,5669
|
|
33
33
|
mteb/abstasks/_stratification.py,sha256=zfwkIVmD7Aq7mR2Yt8jTeW1j5ZVV7CIweW842VzcfXc,14364
|
|
34
|
-
mteb/abstasks/abstask.py,sha256=
|
|
34
|
+
mteb/abstasks/abstask.py,sha256=d6k6lMXdUkUJSgO_OhVKEa54gnAGjJ2p2DZp3eBuzZ0,25295
|
|
35
35
|
mteb/abstasks/aggregate_task_metadata.py,sha256=vzt1z2wDl0sXD7ErZFwKojYwmFUBPAnGlXLuqLA_-6Q,5992
|
|
36
|
-
mteb/abstasks/aggregated_task.py,sha256=
|
|
36
|
+
mteb/abstasks/aggregated_task.py,sha256=ognE64TIQ7ljahSsT_ezDt5a9A2R2tCYe3ET0c0EXSE,6410
|
|
37
37
|
mteb/abstasks/classification.py,sha256=k_wrM1rq2XcVEK97RpU_uEcqhiWWbV7sm3B0dtvP5yY,13376
|
|
38
38
|
mteb/abstasks/clustering.py,sha256=4KcaU8_sNLmLvMhwDpNmcY2nD3BNyx_LcM-ddSv-wtY,14410
|
|
39
|
-
mteb/abstasks/clustering_legacy.py,sha256=
|
|
39
|
+
mteb/abstasks/clustering_legacy.py,sha256=zkibXenniqmSfFr8B8KvGGLoALkuxNZo_vJkeu_7GWQ,8803
|
|
40
40
|
mteb/abstasks/dataset_card_template.md,sha256=aD6l8qc3_jxwoIGJNYLzse-jpRa8hu92AxpnUtNgges,5122
|
|
41
41
|
mteb/abstasks/multilabel_classification.py,sha256=rpIwI3jV2YKtmXlFS2_Ytg4yYjdjPy0q5OU4MsRJFqo,9211
|
|
42
42
|
mteb/abstasks/pair_classification.py,sha256=ToOBFDiokZOz9ea-klMLj_37slbVFR3lSuihP81x9Lc,13263
|
|
@@ -44,7 +44,7 @@ mteb/abstasks/regression.py,sha256=SeacOErZUXGLGOcwqAvht6BlbD8fcsn9QhNiFIuJGyc,8
|
|
|
44
44
|
mteb/abstasks/retrieval.py,sha256=7QTKYlGaGvF1lOQkB_B4qj8Vm2FxxFXNVTHhfwZO8Bw,26439
|
|
45
45
|
mteb/abstasks/retrieval_dataset_loaders.py,sha256=WukcFAn54rUpXULCG43eysHozXHAxo2CaPhQyL_2Yg8,9401
|
|
46
46
|
mteb/abstasks/sts.py,sha256=aKTivjvDtAaoYb1hz1NBv2o3UpDR-3AaeHgkDFHMBGI,9077
|
|
47
|
-
mteb/abstasks/task_metadata.py,sha256=
|
|
47
|
+
mteb/abstasks/task_metadata.py,sha256=UYn8IZaz6qp2MDSupfLsvCuhvVnXGok23GvMTwqzyIs,26880
|
|
48
48
|
mteb/abstasks/zeroshot_classification.py,sha256=4UxBIZ1e1iRK8PRAhCWnnSDirK2vi5-w2N5ZomCnaIM,5882
|
|
49
49
|
mteb/abstasks/_data_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
50
|
mteb/abstasks/_data_filter/filters.py,sha256=p1QLy7V9jYVFicef61fwzCpbSpTA6rOv8CxkwEUTMvc,4585
|
|
@@ -64,8 +64,8 @@ mteb/benchmarks/benchmarks/benchmarks.py,sha256=_8zds06sQj41JzR6BHGWk33DZE2VGvab
|
|
|
64
64
|
mteb/benchmarks/benchmarks/rteb_benchmarks.py,sha256=QnCSrTTaBfcRlAQp2Nu81tgv1idMXqiM16Fp2zKJ5Ys,10607
|
|
65
65
|
mteb/cli/__init__.py,sha256=v-csUr3eUZElIvrGB6QGtaIdndDfNWEe9oZchsGsJpg,64
|
|
66
66
|
mteb/cli/_display_tasks.py,sha256=7A06dT9sSoTz6shyMvskPxuc5eHY_H7PGPlROzMP0yw,2196
|
|
67
|
-
mteb/cli/build_cli.py,sha256=
|
|
68
|
-
mteb/cli/generate_model_card.py,sha256=
|
|
67
|
+
mteb/cli/build_cli.py,sha256=aZ3XWkH-2NH25vjYUDnJY1Q558RxCzmHYCJ8nYTPlDo,12533
|
|
68
|
+
mteb/cli/generate_model_card.py,sha256=34w3E0betglTs60LBlRlNsOJxJnyq0SNRMlXz-c96m8,4092
|
|
69
69
|
mteb/descriptive_stats/BitextMining/BUCC.json,sha256=7zXoJaZacNdqMSG60jPZGIDJ1is_bxbVlcrVyImPRxw,3745
|
|
70
70
|
mteb/descriptive_stats/BitextMining/BUCC.v2.json,sha256=IRPOKaIaUD31okNe12nQV2E1JeYK_Fo25Tz7d-utATM,3716
|
|
71
71
|
mteb/descriptive_stats/BitextMining/BibleNLPBitextMining.json,sha256=BxzjiVoeXrSKaeBIVytLKMf2yx_6ksZ4GddPtTU8MWY,1248649
|
|
@@ -1438,159 +1438,160 @@ mteb/languages/language_family.json,sha256=OUGcHeOIPcZPb2FWmYLhxTS0JxjK5y3Fo6x0P
|
|
|
1438
1438
|
mteb/languages/language_scripts.py,sha256=5wix9HTYolNIpTiS5oXf2pGJyL7ftdGKs_m432w81V8,3998
|
|
1439
1439
|
mteb/languages/programming_languages.py,sha256=zxAakT3OSUnAuTnQ34VyeFIECnNXMlleZmAake6jsZE,211
|
|
1440
1440
|
mteb/leaderboard/__init__.py,sha256=991roXmtRwEQysV-37hWEzWpkvPgMCGRqZTHR-hm2io,88
|
|
1441
|
-
mteb/leaderboard/app.py,sha256
|
|
1441
|
+
mteb/leaderboard/app.py,sha256=5n17etnkh6TNgzPxOVhRx3vFmoji8ymBU-BVFZXUIFM,37157
|
|
1442
1442
|
mteb/leaderboard/benchmark_selector.py,sha256=qd-2L20RQ4ACke01UlytkhZok1dkWgfUlXzfET52kGc,7956
|
|
1443
1443
|
mteb/leaderboard/figures.py,sha256=cfOK82rRf-7sCjyP7GBxh4ezhOIt0OhD0_86mKtzLrg,7530
|
|
1444
1444
|
mteb/leaderboard/table.py,sha256=KqU8aAbZ_tDp1O_qXRGWR32QnB7v_lsF6k5jxLcQVN0,10366
|
|
1445
1445
|
mteb/leaderboard/text_segments.py,sha256=iMIkS04QQjPbT-SkU0x6fOcS8xRbUYevryu9HydipKM,6570
|
|
1446
1446
|
mteb/models/__init__.py,sha256=ABTuoqiBjBtBWW3LYY7ItBHdylR6jWoy06HH0g6j6fU,910
|
|
1447
|
-
mteb/models/abs_encoder.py,sha256=
|
|
1447
|
+
mteb/models/abs_encoder.py,sha256=zboYqEnpYTwyluTPTTbGV1yVqbYBuH_yExhY1ZxYmfo,16521
|
|
1448
1448
|
mteb/models/get_model_meta.py,sha256=BMzlqTuzzhIFmfzmtshnRu2KCWxw9mCPyClJfe4oGdQ,5396
|
|
1449
1449
|
mteb/models/instruct_wrapper.py,sha256=G4dMcmD5A4M3hmKATf5OYezmZv8-Ie189BrdmipBo7Y,9091
|
|
1450
|
-
mteb/models/model_meta.py,sha256=
|
|
1450
|
+
mteb/models/model_meta.py,sha256=c2N4e5lWqX1ofEmHyFhbqxOK_tAHvW5Fcv6ekzpFsXw,29801
|
|
1451
1451
|
mteb/models/models_protocols.py,sha256=D2hYWn_UBGMaKtRwBx3u0B0ni6lHJjSzTxX21XFNwIc,8917
|
|
1452
|
-
mteb/models/search_wrappers.py,sha256=
|
|
1453
|
-
mteb/models/sentence_transformer_wrapper.py,sha256=
|
|
1452
|
+
mteb/models/search_wrappers.py,sha256=Vlg1iEYWrzRv7TElxwizOYP3mB95pUrTCMJBeuvENnI,20383
|
|
1453
|
+
mteb/models/sentence_transformer_wrapper.py,sha256=8zMPeO78kc3rccjPYFpOnk6npdEPPZIvitQxd1XUu8U,12210
|
|
1454
1454
|
mteb/models/cache_wrappers/__init__.py,sha256=1w1TnMwulWJSzNkLXjbh5MY3sqgHWc6vUntYn49i9X8,169
|
|
1455
1455
|
mteb/models/cache_wrappers/cache_backend_protocol.py,sha256=TR7kD7KbN1J4piszIecpegtLZYGy7sRHZt3SDWlImKk,1665
|
|
1456
1456
|
mteb/models/cache_wrappers/cache_wrapper.py,sha256=KLDeOCe_ndQshbZa5ep2u3jovsl--tfpQzvt9EXyxCA,6589
|
|
1457
1457
|
mteb/models/cache_wrappers/cache_backends/__init__.py,sha256=hN2Tq7cpTxoOYSCJ1Wnpvb8dEm-kQLfCCahT1N9Bacw,123
|
|
1458
1458
|
mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=zAp7BDuYyGETn2kX58uk8_tn1G2B7bgcsItDDxgyn-w,488
|
|
1459
|
-
mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=
|
|
1460
|
-
mteb/models/cache_wrappers/cache_backends/numpy_cache.py,sha256=
|
|
1459
|
+
mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=WWDSvXgClQr6XqzJ6sIfiHOwbyfBErjNoeZ9VMzphNw,3803
|
|
1460
|
+
mteb/models/cache_wrappers/cache_backends/numpy_cache.py,sha256=K3iKuOI7Cq3jB4gmm7hqJqcQtdYDssDxLcA4OXaxVlU,7572
|
|
1461
1461
|
mteb/models/model_implementations/__init__.py,sha256=BZDdde6ajKv-yroy9mqE2YS3Hw1KBdKoxBPg8aPTZEs,1164
|
|
1462
|
-
mteb/models/model_implementations/align_models.py,sha256=
|
|
1463
|
-
mteb/models/model_implementations/amazon_models.py,sha256=
|
|
1464
|
-
mteb/models/model_implementations/andersborges.py,sha256=
|
|
1465
|
-
mteb/models/model_implementations/ara_models.py,sha256=
|
|
1466
|
-
mteb/models/model_implementations/arctic_models.py,sha256=
|
|
1467
|
-
mteb/models/model_implementations/b1ade_models.py,sha256=
|
|
1468
|
-
mteb/models/model_implementations/bedrock_models.py,sha256=
|
|
1469
|
-
mteb/models/model_implementations/bge_models.py,sha256=
|
|
1470
|
-
mteb/models/model_implementations/bica_model.py,sha256=
|
|
1471
|
-
mteb/models/model_implementations/blip2_models.py,sha256=
|
|
1472
|
-
mteb/models/model_implementations/blip_models.py,sha256=
|
|
1473
|
-
mteb/models/model_implementations/bm25.py,sha256=
|
|
1474
|
-
mteb/models/model_implementations/bmretriever_models.py,sha256=
|
|
1475
|
-
mteb/models/model_implementations/cadet_models.py,sha256=
|
|
1476
|
-
mteb/models/model_implementations/cde_models.py,sha256=
|
|
1477
|
-
mteb/models/model_implementations/clip_models.py,sha256=
|
|
1478
|
-
mteb/models/model_implementations/clips_models.py,sha256=
|
|
1479
|
-
mteb/models/model_implementations/codefuse_models.py,sha256=
|
|
1480
|
-
mteb/models/model_implementations/codesage_models.py,sha256=
|
|
1481
|
-
mteb/models/model_implementations/cohere_models.py,sha256=
|
|
1482
|
-
mteb/models/model_implementations/cohere_v.py,sha256=
|
|
1483
|
-
mteb/models/model_implementations/colpali_models.py,sha256=
|
|
1484
|
-
mteb/models/model_implementations/colqwen_models.py,sha256=
|
|
1485
|
-
mteb/models/model_implementations/colsmol_models.py,sha256=
|
|
1486
|
-
mteb/models/model_implementations/conan_models.py,sha256=
|
|
1487
|
-
mteb/models/model_implementations/dino_models.py,sha256=
|
|
1488
|
-
mteb/models/model_implementations/e5_instruct.py,sha256=
|
|
1489
|
-
mteb/models/model_implementations/e5_models.py,sha256=
|
|
1490
|
-
mteb/models/model_implementations/e5_v.py,sha256=
|
|
1491
|
-
mteb/models/model_implementations/eagerworks_models.py,sha256=
|
|
1492
|
-
mteb/models/model_implementations/emillykkejensen_models.py,sha256=
|
|
1493
|
-
mteb/models/model_implementations/en_code_retriever.py,sha256=
|
|
1494
|
-
mteb/models/model_implementations/euler_models.py,sha256=
|
|
1495
|
-
mteb/models/model_implementations/evaclip_models.py,sha256=
|
|
1496
|
-
mteb/models/model_implementations/fa_models.py,sha256=
|
|
1497
|
-
mteb/models/model_implementations/facebookai.py,sha256=
|
|
1498
|
-
mteb/models/model_implementations/geogpt_models.py,sha256=
|
|
1499
|
-
mteb/models/model_implementations/gme_v_models.py,sha256=
|
|
1500
|
-
mteb/models/model_implementations/google_models.py,sha256=
|
|
1501
|
-
mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=
|
|
1502
|
-
mteb/models/model_implementations/gritlm_models.py,sha256=
|
|
1503
|
-
mteb/models/model_implementations/gte_models.py,sha256
|
|
1504
|
-
mteb/models/model_implementations/hinvec_models.py,sha256=
|
|
1505
|
-
mteb/models/model_implementations/human.py,sha256=
|
|
1506
|
-
mteb/models/model_implementations/ibm_granite_models.py,sha256
|
|
1507
|
-
mteb/models/model_implementations/inf_models.py,sha256=
|
|
1508
|
-
mteb/models/model_implementations/jasper_models.py,sha256=
|
|
1509
|
-
mteb/models/model_implementations/jina_clip.py,sha256=
|
|
1510
|
-
mteb/models/model_implementations/jina_models.py,sha256=
|
|
1511
|
-
mteb/models/model_implementations/kalm_models.py,sha256=
|
|
1512
|
-
mteb/models/model_implementations/kblab.py,sha256=
|
|
1513
|
-
mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=
|
|
1514
|
-
mteb/models/model_implementations/kfst.py,sha256=
|
|
1515
|
-
mteb/models/model_implementations/kowshik24_models.py,sha256=
|
|
1516
|
-
mteb/models/model_implementations/lens_models.py,sha256=
|
|
1517
|
-
mteb/models/model_implementations/lgai_embedding_models.py,sha256=
|
|
1518
|
-
mteb/models/model_implementations/linq_models.py,sha256=
|
|
1519
|
-
mteb/models/model_implementations/listconranker.py,sha256=
|
|
1520
|
-
mteb/models/model_implementations/llm2clip_models.py,sha256=
|
|
1521
|
-
mteb/models/model_implementations/llm2vec_models.py,sha256=
|
|
1522
|
-
mteb/models/model_implementations/mcinext_models.py,sha256=
|
|
1523
|
-
mteb/models/model_implementations/mdbr_models.py,sha256=
|
|
1524
|
-
mteb/models/model_implementations/misc_models.py,sha256=
|
|
1525
|
-
mteb/models/model_implementations/mme5_models.py,sha256=
|
|
1526
|
-
mteb/models/model_implementations/moco_models.py,sha256=
|
|
1462
|
+
mteb/models/model_implementations/align_models.py,sha256=hKnheWaRqpAcPo1SJa_c2vBbB1ayrKjWmSjbZ5bwGAw,4544
|
|
1463
|
+
mteb/models/model_implementations/amazon_models.py,sha256=a9bLYQ1ZGWDo4RdyaPNsBqadMrBm550fLIFr1Zfp2Nk,720
|
|
1464
|
+
mteb/models/model_implementations/andersborges.py,sha256=AsVkRjIQKxJPdGW0ASRw_9hbfoDOYnROytV2Es-53BU,2413
|
|
1465
|
+
mteb/models/model_implementations/ara_models.py,sha256=UUTvLOZyKlF0-pTDniwQ-ItDONdH2JsyJKUdwtZ6aZI,1447
|
|
1466
|
+
mteb/models/model_implementations/arctic_models.py,sha256=Ca4OzC89F0kKb5CRd-r2Wo65MF2dsS5GiB6bCWnjfQY,10558
|
|
1467
|
+
mteb/models/model_implementations/b1ade_models.py,sha256=voOc0gTpqE31UxzaMZq_8AnWULJZwQBiFzViVx-m2Lk,1635
|
|
1468
|
+
mteb/models/model_implementations/bedrock_models.py,sha256=KKs_0_Cl6f0nzzmxmmKJ1vR2r3B7xRKMbNehov4EGjQ,8813
|
|
1469
|
+
mteb/models/model_implementations/bge_models.py,sha256=L98iw0GkSY5BDBVC3LELf2MYwjNG_sANlVwKxObD2xY,24528
|
|
1470
|
+
mteb/models/model_implementations/bica_model.py,sha256=Q2dg0w_lrcBhnOUjI4ej9ec9U82aWUyzNx7ezRv81vQ,1253
|
|
1471
|
+
mteb/models/model_implementations/blip2_models.py,sha256=F55NYHrK-rprWblIfkKg3GRsOuTqBNZlOY1R33UnLms,7687
|
|
1472
|
+
mteb/models/model_implementations/blip_models.py,sha256=AIVaMfXngIUxYV_HKeq4I531zKlDkiPMbadb8jDrelI,11724
|
|
1473
|
+
mteb/models/model_implementations/bm25.py,sha256=gsAHQSt10cU40Q-SOfmHCnzc4EY7GZyU0HzOVC-LhJQ,4862
|
|
1474
|
+
mteb/models/model_implementations/bmretriever_models.py,sha256=54OO8DJxlN3Fq-AfURZiFIbVMKisrnkOf59NNEKpYB0,6659
|
|
1475
|
+
mteb/models/model_implementations/cadet_models.py,sha256=wzbPmhsvBogFAEukubUir8EItlcmjcmfIGNMhtj-p7Y,2251
|
|
1476
|
+
mteb/models/model_implementations/cde_models.py,sha256=WdpoL_59fgRv2qq1nw9-oqkIvL8KAhHdSTxe5GB17fc,9064
|
|
1477
|
+
mteb/models/model_implementations/clip_models.py,sha256=A4AyhjDiTtFTqFC_Ae6oVuWoRbjVHkoe_c9YWFOsoV0,6185
|
|
1478
|
+
mteb/models/model_implementations/clips_models.py,sha256=QV9fIoyP2dKrra9aS04TE6rveUecVggr3jfXwNeSAOw,3488
|
|
1479
|
+
mteb/models/model_implementations/codefuse_models.py,sha256=NXkFqb1Pdp-HLWkzhh0ZzjVxd45fP0cQgGZ1KvXBk_s,14053
|
|
1480
|
+
mteb/models/model_implementations/codesage_models.py,sha256=ZPr2475aZI0vPbbLbetH2kDEY-1yNeO7OjzEfvykvg8,3076
|
|
1481
|
+
mteb/models/model_implementations/cohere_models.py,sha256=d2CjfrVLvkb1AATf5D1el5iMbRwW62bbZq02SwVXgvU,13936
|
|
1482
|
+
mteb/models/model_implementations/cohere_v.py,sha256=OM0Euckp4B0H8WI_xWfL1HrwC0gOS4NwYC3h-fpOPhk,15890
|
|
1483
|
+
mteb/models/model_implementations/colpali_models.py,sha256=9SooeNDU12nsisM6RIT9B9TOe56qX5vnL1rOctA4Wrc,9219
|
|
1484
|
+
mteb/models/model_implementations/colqwen_models.py,sha256=JOhrLlGBF1VEq-KqU6F8wAw80U96RWrGvXl3Ue6rBak,15886
|
|
1485
|
+
mteb/models/model_implementations/colsmol_models.py,sha256=TCxNsllRkI6DIb-JLtBlD5s9SrJhVLraP-DT1CNy0EQ,3041
|
|
1486
|
+
mteb/models/model_implementations/conan_models.py,sha256=AJJ8_Mv4QR1kQoKamjoZqgjLsosLb3AzNWNuWwvoNq4,6528
|
|
1487
|
+
mteb/models/model_implementations/dino_models.py,sha256=XMlcjKOpiM9PXqb35Ve1NpgxIsDnYsGNCVST7bYYpQY,25512
|
|
1488
|
+
mteb/models/model_implementations/e5_instruct.py,sha256=6bQLMC8Nea59qSu8RSqZp9n8XuQokBJHoxfZb2l6BQM,7780
|
|
1489
|
+
mteb/models/model_implementations/e5_models.py,sha256=18--kpfMSKxgflGjB3GvyDHOjzOpuooc3iSVe-no2U0,9607
|
|
1490
|
+
mteb/models/model_implementations/e5_v.py,sha256=Ko0ImRjhkzRM9kAvJozmHzUJg5pUtT4xf22f0AjXHI4,6716
|
|
1491
|
+
mteb/models/model_implementations/eagerworks_models.py,sha256=7bSInJGHOUqc9N-yzq0KUAtJZDX0zZkmEkzbCG_Pz0c,5770
|
|
1492
|
+
mteb/models/model_implementations/emillykkejensen_models.py,sha256=OveUjIikL81na6Qr8U0AcBfr9gzc0mnEKPqJXwBFSXc,3743
|
|
1493
|
+
mteb/models/model_implementations/en_code_retriever.py,sha256=6sSJ7l8Zrf71fYlcGaWAdF0vcZ9OAFeC1IsVtM2W_i8,1069
|
|
1494
|
+
mteb/models/model_implementations/euler_models.py,sha256=ftNTnLJ42cjvcUCuM5VyYcm3cQBHk6la5Gezj67_gt8,1132
|
|
1495
|
+
mteb/models/model_implementations/evaclip_models.py,sha256=oEoHnKQ4W09EQUCnNwpEd1ieDZGbth4j6lXfC-9jVBc,8104
|
|
1496
|
+
mteb/models/model_implementations/fa_models.py,sha256=Hnw2E2D1ahleS15kkC0aGDIKW1Y-0wIMOlXtqEG6Bks,9818
|
|
1497
|
+
mteb/models/model_implementations/facebookai.py,sha256=0x2c8LmvIFg6kGXtmDa9cbJeTmG3tia12vyr7lgycI0,4886
|
|
1498
|
+
mteb/models/model_implementations/geogpt_models.py,sha256=X85_jeFzBZMjNRsyqwFbIQBgXXP7rZAr5PI-wbuy828,1949
|
|
1499
|
+
mteb/models/model_implementations/gme_v_models.py,sha256=c5OAMnMsNamnjrSiOR9nAav7hXYLUWbe7mEksPJvL48,13748
|
|
1500
|
+
mteb/models/model_implementations/google_models.py,sha256=lEpk1pOkp30kg6xljw8Gtkf-QGXAe8oJVp7JZhzWlik,11143
|
|
1501
|
+
mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=A9yWcQezu_2yVxSm3pv0Da76Hl_uNUfrDVtPK1uqYFo,7341
|
|
1502
|
+
mteb/models/model_implementations/gritlm_models.py,sha256=FKz9AHPaelomNMZP282F5vwsMjEBV3C2IuL3XTxXKCA,3057
|
|
1503
|
+
mteb/models/model_implementations/gte_models.py,sha256=-4uVx1PuqmgYWo-puMcDiFPGhjyRwNTmlMSD6QiWwDo,13895
|
|
1504
|
+
mteb/models/model_implementations/hinvec_models.py,sha256=r1ChD3cpcllHO9ZsVyV29vnjobq4Q7hAKioidbX4D4g,1601
|
|
1505
|
+
mteb/models/model_implementations/human.py,sha256=EtYa8G7Dc8fDcelBVw0xTpxGGx1YKKuprVgksY5ZOcE,558
|
|
1506
|
+
mteb/models/model_implementations/ibm_granite_models.py,sha256=--8N-8Nk2V5TZqGUAo9B-qoDeVTbKIU_jy03ccotmbM,8058
|
|
1507
|
+
mteb/models/model_implementations/inf_models.py,sha256=IBC3TaEkOxrUDXkhXaVnxerjWOZZv1v1eEqhweGWKMY,2958
|
|
1508
|
+
mteb/models/model_implementations/jasper_models.py,sha256=K2DC0JfMVG8Fa822-xemKNhtuL2fZgiKYTTpXp2yBGg,16263
|
|
1509
|
+
mteb/models/model_implementations/jina_clip.py,sha256=Ulmy5lU7bROwaCq54YsxgFehWa8-qUSvzDF_SyvKrnc,5144
|
|
1510
|
+
mteb/models/model_implementations/jina_models.py,sha256=5HEUfHqozrrvWHjOyj2CEU6xAM3kduLbXl4GQG9aByc,35021
|
|
1511
|
+
mteb/models/model_implementations/kalm_models.py,sha256=SHqkw5p7HzmQrb_bIFjRp1rsuv2v531nXIk390h_ojY,62115
|
|
1512
|
+
mteb/models/model_implementations/kblab.py,sha256=n6sMGorSIBQlRHipPC3j2UiKA3r7avriwPvw0wuQKe4,1161
|
|
1513
|
+
mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=ETKkFHRTSGR951YqU0TAJa2P--cZ7aaFV0CC6fdq5gU,3045
|
|
1514
|
+
mteb/models/model_implementations/kfst.py,sha256=sqlEUfAl84EPw1WjTZdlB4ps6GgkY3dCk3n8U9_YtV0,918
|
|
1515
|
+
mteb/models/model_implementations/kowshik24_models.py,sha256=i8fDs8Vm5vcpRTW3kI8P1odyDbogFMlMqGK5AOqXaes,1445
|
|
1516
|
+
mteb/models/model_implementations/lens_models.py,sha256=sVgP-wyi7SrMVyXkS1msMEKkE2ZTheYrt3QwGezqqJk,1748
|
|
1517
|
+
mteb/models/model_implementations/lgai_embedding_models.py,sha256=aigHsDVY1yhN4hhmaxUlsxbPXe9S8JhfpNq6XSY17s0,2359
|
|
1518
|
+
mteb/models/model_implementations/linq_models.py,sha256=huy7c95uYmhmjf6VZtx30YtMiSNrqhm7PJE3Vb3W-5g,1898
|
|
1519
|
+
mteb/models/model_implementations/listconranker.py,sha256=EwUAvWefDmx4x_YCIJRVsKI3j3konQIHOiJ4paG2lvY,4492
|
|
1520
|
+
mteb/models/model_implementations/llm2clip_models.py,sha256=BatYnh6y1w0zF24Fsp1z30kqmXf3FAKeq6_MEKdzEF8,9343
|
|
1521
|
+
mteb/models/model_implementations/llm2vec_models.py,sha256=0I_UydxopC41lKWcIpCMaKADXcFVUfPwKwk0vZFG2zY,12846
|
|
1522
|
+
mteb/models/model_implementations/mcinext_models.py,sha256=h-X9og2Cjj8DarHkaLOfqlIHpeCGnJZv0EuwYG61uzY,19127
|
|
1523
|
+
mteb/models/model_implementations/mdbr_models.py,sha256=knDaM_j_kL9uq1Ng5s6InsTEZ-Cu0jBux8zmrbDnrig,2561
|
|
1524
|
+
mteb/models/model_implementations/misc_models.py,sha256=djB2ySEBiCvxwWGZUXIwzeH9eaXtlqV7ttQEDUFlKQQ,70754
|
|
1525
|
+
mteb/models/model_implementations/mme5_models.py,sha256=Fuge1fqGbaWqw-Hbd75Xr31JTqJTL45yJ4DAw3QJuyE,1510
|
|
1526
|
+
mteb/models/model_implementations/moco_models.py,sha256=mfn7JetQByzN09NY30O5KAOlNPYCe7BYfGkS3Uk8xDg,5535
|
|
1527
1527
|
mteb/models/model_implementations/mod_models.py,sha256=jt33SfV476FIQJ-W-FRi_ocyRY1u8ldRFuo-PgejJDU,6335
|
|
1528
|
-
mteb/models/model_implementations/model2vec_models.py,sha256=
|
|
1529
|
-
mteb/models/model_implementations/moka_models.py,sha256=
|
|
1530
|
-
mteb/models/model_implementations/mxbai_models.py,sha256=
|
|
1531
|
-
mteb/models/model_implementations/nbailab.py,sha256=
|
|
1532
|
-
mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=
|
|
1533
|
-
mteb/models/model_implementations/nomic_models.py,sha256=
|
|
1534
|
-
mteb/models/model_implementations/nomic_models_vision.py,sha256=
|
|
1535
|
-
mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=
|
|
1536
|
-
mteb/models/model_implementations/nvidia_models.py,sha256=
|
|
1537
|
-
mteb/models/model_implementations/
|
|
1538
|
-
mteb/models/model_implementations/
|
|
1539
|
-
mteb/models/model_implementations/
|
|
1540
|
-
mteb/models/model_implementations/
|
|
1528
|
+
mteb/models/model_implementations/model2vec_models.py,sha256=eSHjo_X3I_6MGJdT8Hz_b8RQlO5nL9VUatQgbO2yr04,14103
|
|
1529
|
+
mteb/models/model_implementations/moka_models.py,sha256=xY3geXKZwefqVsDZq95AB75GlZpvA9mJKSyPMvb75Us,5073
|
|
1530
|
+
mteb/models/model_implementations/mxbai_models.py,sha256=YcgOdcx_vv5UpPi7k7PBuq_M0eqCaktfWfQV5NTlNoc,3929
|
|
1531
|
+
mteb/models/model_implementations/nbailab.py,sha256=DtfHjQgGX1YPnlceqZDqDr6IlFwKCJjWN-BEcNt5m-s,2474
|
|
1532
|
+
mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=oH_ReS5_q7xzJT26p84uzGiszTATbPU3E-mIy4QKgrk,4002
|
|
1533
|
+
mteb/models/model_implementations/nomic_models.py,sha256=S5H03E6YdOccq7fh9Ej-gCE88OdR5Cdj3cpQ63HRSCg,14892
|
|
1534
|
+
mteb/models/model_implementations/nomic_models_vision.py,sha256=9AQRJkPkFDPjuSqdIh8wJ0-pqS2fe_oDZzPR4Y0tOSg,6831
|
|
1535
|
+
mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=phbwPnRfrEuJTlrUucI1qxcViMQWogeXQkTZbUkNsQc,6388
|
|
1536
|
+
mteb/models/model_implementations/nvidia_models.py,sha256=OKRnlhlMyBASe-RpU_8j4_ENFdjOtNsZm5fKlnAtcAo,21633
|
|
1537
|
+
mteb/models/model_implementations/octen_models.py,sha256=TT87UHZRK6UDenoIXaarR5oCZ6wgILivu-gondkNqDM,6500
|
|
1538
|
+
mteb/models/model_implementations/openai_models.py,sha256=905BajYi_XyOZgqU3AeKpwIttLoUitaAyc48sTWI6Jg,9482
|
|
1539
|
+
mteb/models/model_implementations/openclip_models.py,sha256=KrLzLtpudqVSEFHaGqY_dOGfC3ZkjYT4_02DYWMUeI0,11644
|
|
1540
|
+
mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=hS33RteHexhkIekQVKsjx6czKr6YdWINaVa60J91Wnk,8481
|
|
1541
|
+
mteb/models/model_implementations/ops_moa_models.py,sha256=EFEDwYuKiLzaSAg2_wWesyqRkaCtTcsa-B8Pu2NvEus,2465
|
|
1541
1542
|
mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=qGXv71qRjNCIFluZOwvfBlFlKKyN2bXBokwUPk4KHmM,1066
|
|
1542
|
-
mteb/models/model_implementations/pawan_models.py,sha256=
|
|
1543
|
-
mteb/models/model_implementations/piccolo_models.py,sha256=
|
|
1544
|
-
mteb/models/model_implementations/promptriever_models.py,sha256=
|
|
1545
|
-
mteb/models/model_implementations/pylate_models.py,sha256=
|
|
1546
|
-
mteb/models/model_implementations/qodo_models.py,sha256=
|
|
1547
|
-
mteb/models/model_implementations/qtack_models.py,sha256=
|
|
1548
|
-
mteb/models/model_implementations/qwen3_models.py,sha256=
|
|
1549
|
-
mteb/models/model_implementations/qzhou_models.py,sha256=
|
|
1550
|
-
mteb/models/model_implementations/random_baseline.py,sha256=
|
|
1551
|
-
mteb/models/model_implementations/rasgaard_models.py,sha256=
|
|
1552
|
-
mteb/models/model_implementations/reasonir_model.py,sha256=
|
|
1553
|
-
mteb/models/model_implementations/repllama_models.py,sha256=
|
|
1554
|
-
mteb/models/model_implementations/rerankers_custom.py,sha256=
|
|
1555
|
-
mteb/models/model_implementations/rerankers_monot5_based.py,sha256=
|
|
1556
|
-
mteb/models/model_implementations/richinfoai_models.py,sha256=
|
|
1557
|
-
mteb/models/model_implementations/ru_sentence_models.py,sha256
|
|
1558
|
-
mteb/models/model_implementations/ruri_models.py,sha256
|
|
1559
|
-
mteb/models/model_implementations/salesforce_models.py,sha256=
|
|
1560
|
-
mteb/models/model_implementations/samilpwc_models.py,sha256=
|
|
1561
|
-
mteb/models/model_implementations/sarashina_embedding_models.py,sha256=
|
|
1562
|
-
mteb/models/model_implementations/searchmap_models.py,sha256=
|
|
1563
|
-
mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=
|
|
1543
|
+
mteb/models/model_implementations/pawan_models.py,sha256=5Oruum3FczgkxjpCS_ilTFQd1B_aaHao_yXnOjE4qck,1177
|
|
1544
|
+
mteb/models/model_implementations/piccolo_models.py,sha256=Y8jDNzp3VAdwIsT_fGG1ulWVyV7NTWs7_jpmWK036gw,2165
|
|
1545
|
+
mteb/models/model_implementations/promptriever_models.py,sha256=pSlOQaem5tnLn9k9_WoJm4Cmw_Wj5oBvwfr5zMvykC0,6432
|
|
1546
|
+
mteb/models/model_implementations/pylate_models.py,sha256=S5X8FMCVoYPU0jHhsqV1mK6OmIrx_QxbKFjRsqywoPU,16826
|
|
1547
|
+
mteb/models/model_implementations/qodo_models.py,sha256=jMGlDYyAYp87zOwDN_WNqsU_PVLv2Tlrkbpe_sb5iiw,2089
|
|
1548
|
+
mteb/models/model_implementations/qtack_models.py,sha256=YEuK7Qi1e3NyB1tbOmuqV-BIQIaarhQK-33WejupJiA,1250
|
|
1549
|
+
mteb/models/model_implementations/qwen3_models.py,sha256=98yCMHTg8ueCT1fXkaNWMBleSLS-ygcJEnjQmcacGmI,5210
|
|
1550
|
+
mteb/models/model_implementations/qzhou_models.py,sha256=TZBX9WXn2X5JyFALx2aSZLGsIseNnhrCVMycHU8LUXk,3588
|
|
1551
|
+
mteb/models/model_implementations/random_baseline.py,sha256=Ei6YZWhhJuPI60iUzBCHB9FevtlW02VFOslpz1_-8-4,7596
|
|
1552
|
+
mteb/models/model_implementations/rasgaard_models.py,sha256=eGe_J_osCOQ4CRBU4e3-OQbfQL4Ab98Abk98Pv6iWtE,1286
|
|
1553
|
+
mteb/models/model_implementations/reasonir_model.py,sha256=o9-DufwMG3gutecFsX6OwTio9LKCJbAXuBV4fD-Q5p4,2244
|
|
1554
|
+
mteb/models/model_implementations/repllama_models.py,sha256=o5qW7zZ8l1XZF8VwcLuPRHVJs30_FYUE3DR-Gj-BVU0,7373
|
|
1555
|
+
mteb/models/model_implementations/rerankers_custom.py,sha256=1C3_7GxBf-9B8QjesJMLsGyJFRLWdBgn-5d_AlGUNXc,10672
|
|
1556
|
+
mteb/models/model_implementations/rerankers_monot5_based.py,sha256=DiTX1CPVZvH57MHjqs01ke7S0EOKji_vvz3MreAMXLg,34400
|
|
1557
|
+
mteb/models/model_implementations/richinfoai_models.py,sha256=YQHVXVg2Wmb8m6nirLx6vwde_1xjOtlgftTv48asnww,1015
|
|
1558
|
+
mteb/models/model_implementations/ru_sentence_models.py,sha256=-CbCCy5JRuDZAsWS7FBS7OOPaziFXjwiJdko9241KgI,41758
|
|
1559
|
+
mteb/models/model_implementations/ruri_models.py,sha256=QW_Mk5_4U45RyC-CvwjT2MUWtobrZ37wHNxpJGGJmos,10303
|
|
1560
|
+
mteb/models/model_implementations/salesforce_models.py,sha256=0miQqhSkJKfdKxLv-xl3BL-sCSgkKg1FX-gVu43cdr4,5238
|
|
1561
|
+
mteb/models/model_implementations/samilpwc_models.py,sha256=ZcMUO_pWXARqzBa_2G6qAsSaq-_lCPo8a_XG0G_H_f0,2047
|
|
1562
|
+
mteb/models/model_implementations/sarashina_embedding_models.py,sha256=LmJAsZ_zXywQwpQspQRB83jThRq2Lc8wxZt8K8UYzRw,8467
|
|
1563
|
+
mteb/models/model_implementations/searchmap_models.py,sha256=WpwYwv0xWmig-rTGK0Li7m8ppADV-Qhy9BiHPlhGZug,1930
|
|
1564
|
+
mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=gcGKEY-n7DWGPlXYhO_kcNJ3lkBEnbw8NUxADNs3siM,18635
|
|
1564
1565
|
mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=O0BlsOHaxF0EEGaoas4AdzB8f-_9W9lwfoxLypexKEo,37516
|
|
1565
|
-
mteb/models/model_implementations/seed_models.py,sha256=
|
|
1566
|
-
mteb/models/model_implementations/sentence_transformers_models.py,sha256=
|
|
1567
|
-
mteb/models/model_implementations/shuu_model.py,sha256=
|
|
1568
|
-
mteb/models/model_implementations/siglip_models.py,sha256=
|
|
1569
|
-
mteb/models/model_implementations/sonar_models.py,sha256=
|
|
1570
|
-
mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=
|
|
1571
|
-
mteb/models/model_implementations/stella_models.py,sha256=
|
|
1572
|
-
mteb/models/model_implementations/tarka_models.py,sha256=
|
|
1566
|
+
mteb/models/model_implementations/seed_models.py,sha256=9UF2AQ0Uue8DD73SjYhHn2hLxey_7Iq9ii9TkRaA3CM,14168
|
|
1567
|
+
mteb/models/model_implementations/sentence_transformers_models.py,sha256=_4MbkdjZ58bell8Ss0JkyCAkLzUxTLBMofnHckRtWs0,23252
|
|
1568
|
+
mteb/models/model_implementations/shuu_model.py,sha256=8-hoGqELHQRQ1QFhjwyuOY_8rqj_6f9vhE1Xi8OJ8aw,1162
|
|
1569
|
+
mteb/models/model_implementations/siglip_models.py,sha256=yHfhk5rHC1as0UG7EdEIaqemNxg3e5DRbZnNOunfXS8,12862
|
|
1570
|
+
mteb/models/model_implementations/sonar_models.py,sha256=e0zG4ZxCM52mOtIpd43mMORZcX39utOiVDvzX_mz7oQ,4810
|
|
1571
|
+
mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=ucTQMRhwSWzzIohVN8Zd7qehqllReG6WFTnD2rkGTLI,1239
|
|
1572
|
+
mteb/models/model_implementations/stella_models.py,sha256=9nKuiMXkUE58KGpoDx1Ft29x80oCkLQr8GucsM6c4Fw,8218
|
|
1573
|
+
mteb/models/model_implementations/tarka_models.py,sha256=lTA4oIKDKqU8FQ7nBDkQM-L4_945SnBGK499TkMALVk,27397
|
|
1573
1574
|
mteb/models/model_implementations/text2vec_models.py,sha256=zaHWRc2W0RYZAOetinqRzug9UGW0HmY5U-jYsLXA8wo,4160
|
|
1574
|
-
mteb/models/model_implementations/ua_sentence_models.py,sha256=
|
|
1575
|
-
mteb/models/model_implementations/uae_models.py,sha256=
|
|
1576
|
-
mteb/models/model_implementations/vdr_models.py,sha256=
|
|
1577
|
-
mteb/models/model_implementations/vi_vn_models.py,sha256=
|
|
1578
|
-
mteb/models/model_implementations/vista_models.py,sha256=
|
|
1579
|
-
mteb/models/model_implementations/vlm2vec_models.py,sha256=
|
|
1580
|
-
mteb/models/model_implementations/voyage_models.py,sha256=
|
|
1581
|
-
mteb/models/model_implementations/voyage_v.py,sha256=
|
|
1582
|
-
mteb/models/model_implementations/xyz_models.py,sha256=
|
|
1583
|
-
mteb/models/model_implementations/youtu_models.py,sha256=
|
|
1584
|
-
mteb/models/model_implementations/yuan_models.py,sha256=
|
|
1585
|
-
mteb/models/model_implementations/yuan_models_en.py,sha256=
|
|
1575
|
+
mteb/models/model_implementations/ua_sentence_models.py,sha256=vgBJbXR8-6xau78MMTJ985Uj46_VoRIFatGW8vuOllc,1693
|
|
1576
|
+
mteb/models/model_implementations/uae_models.py,sha256=_OLyy5veJJunBewWafkN_FUl2Hv_qqmU1zr2DGs94ek,3138
|
|
1577
|
+
mteb/models/model_implementations/vdr_models.py,sha256=1yEkK_5w7rEd4O-8DTjQYc6Ip_h51WxkQcI3vQ2puTs,1448
|
|
1578
|
+
mteb/models/model_implementations/vi_vn_models.py,sha256=UZ0bC-inqwL52TjWKfXijyeOyZRIycj1bHJs3t-jjrQ,6198
|
|
1579
|
+
mteb/models/model_implementations/vista_models.py,sha256=GkQFHIwwjxwM0wDuo-dWJBo4dLExlHtHfXwhcdKA5uQ,10884
|
|
1580
|
+
mteb/models/model_implementations/vlm2vec_models.py,sha256=xG5Lp-v4eB08_iPIcKK11iB7-zOHIPk6T4lWU2OoCcI,11776
|
|
1581
|
+
mteb/models/model_implementations/voyage_models.py,sha256=5A5RD2A6B20qLDVEpWL0TNMQOf5hnTVXdBugdh5q4d0,20214
|
|
1582
|
+
mteb/models/model_implementations/voyage_v.py,sha256=pkDmyLcj3XCzMJI7AJ86YS14S6_GUqfhFg7cf_otMfw,8188
|
|
1583
|
+
mteb/models/model_implementations/xyz_models.py,sha256=gjwCx3U4AxMcJDTSWVoYV6xeyXLw7lUZI5D6Q7JjWho,1322
|
|
1584
|
+
mteb/models/model_implementations/youtu_models.py,sha256=U2PbAg4QnNZfQSORDm-I-uhYZr3XRQvWiOAU9uO8SQc,5964
|
|
1585
|
+
mteb/models/model_implementations/yuan_models.py,sha256=7_nwkXwh3tyoz7wo7pCq9ryHPVX0_uE1wJBNQRsKp-o,965
|
|
1586
|
+
mteb/models/model_implementations/yuan_models_en.py,sha256=xliuxqPPiCPLdEDhs8OsBKQgOLp3qBwO6806aKSeRdc,1680
|
|
1586
1587
|
mteb/models/search_encoder_index/__init__.py,sha256=3QFacIuFyEiI7ocsSkb3Lp2S2L7MLkpHCMIJ201fowA,182
|
|
1587
1588
|
mteb/models/search_encoder_index/search_backend_protocol.py,sha256=TSjlx88stJcMldbAeVqNCf8JsQvE-B5rf5SBRw90isY,1890
|
|
1588
1589
|
mteb/models/search_encoder_index/search_indexes/__init__.py,sha256=Wm60_oUemUpFsvrCMW111dcPH2L2rt1iZrXMskXmG7o,88
|
|
1589
|
-
mteb/models/search_encoder_index/search_indexes/faiss_search_index.py,sha256=
|
|
1590
|
+
mteb/models/search_encoder_index/search_indexes/faiss_search_index.py,sha256=wl7pBU-zyjX3H1Tc93a6N5nKLBnRijWyb2CUEgKt0VI,5632
|
|
1590
1591
|
mteb/results/__init__.py,sha256=EXQqK4Am5eIYzD52dpcGAFSdqnC38oE6JHN302oidHc,158
|
|
1591
|
-
mteb/results/benchmark_results.py,sha256=
|
|
1592
|
-
mteb/results/model_result.py,sha256=
|
|
1593
|
-
mteb/results/task_result.py,sha256=
|
|
1592
|
+
mteb/results/benchmark_results.py,sha256=whY2b9CYD8LJ4fzYfMfrvuYnDxJKZYW1Z0RBsMWq1ns,19899
|
|
1593
|
+
mteb/results/model_result.py,sha256=wY8Za1R4pumS0cq0ePJCNelFEs7LEIecZcBJ59vyQxU,14112
|
|
1594
|
+
mteb/results/task_result.py,sha256=GB1YTi_N9OXuzL4VRckaR5twz7F78UDLPbdqGWv8Z2Y,32478
|
|
1594
1595
|
mteb/tasks/__init__.py,sha256=izAxU0ip1F_YUwx0dFCuN35BaktdmePh6vlDiHC0kLo,503
|
|
1595
1596
|
mteb/tasks/aggregated_tasks/__init__.py,sha256=Ufgbh1AirxCQkojO3AUhUFWM8zQG10cfdVTkj_PeyLI,104
|
|
1596
1597
|
mteb/tasks/aggregated_tasks/eng/__init__.py,sha256=HgaSyAX8Is5CGE006RgJkLQQVxrx2FmMnm6NHQBDi-4,358
|
|
@@ -2601,9 +2602,9 @@ mteb/types/_metadata.py,sha256=NN-W0S6a5TDV7UkpRx1pyWtGF4TyyCyoPUfHOwdeci8,2290
|
|
|
2601
2602
|
mteb/types/_result.py,sha256=CRAUc5IvqI3_9SyXDwv-PWLCXwXdZem9RePeYESRtuw,996
|
|
2602
2603
|
mteb/types/_string_validators.py,sha256=PY-dYq4E8O50VS3bLYdldPWp400fl_WzUjfVSkNWe8U,523
|
|
2603
2604
|
mteb/types/statistics.py,sha256=YwJsxTf1eaCI_RE-J37a-gK5wDeGAsmkeZKoZCFihSo,3755
|
|
2604
|
-
mteb-2.5.
|
|
2605
|
-
mteb-2.5.
|
|
2606
|
-
mteb-2.5.
|
|
2607
|
-
mteb-2.5.
|
|
2608
|
-
mteb-2.5.
|
|
2609
|
-
mteb-2.5.
|
|
2605
|
+
mteb-2.5.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
2606
|
+
mteb-2.5.3.dist-info/METADATA,sha256=WNh8oN0eu2FuL94XKUX6qnIKcsfKGxJFdLCmbxWXoKU,13990
|
|
2607
|
+
mteb-2.5.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
2608
|
+
mteb-2.5.3.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
|
|
2609
|
+
mteb-2.5.3.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
|
|
2610
|
+
mteb-2.5.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|