mteb 2.7.2__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.
- mteb/_create_dataloaders.py +16 -9
- mteb/_evaluators/any_sts_evaluator.py +10 -5
- mteb/_evaluators/clustering_evaluator.py +10 -4
- mteb/_evaluators/evaluator.py +9 -4
- mteb/_evaluators/image/imagetext_pairclassification_evaluator.py +6 -4
- mteb/_evaluators/pair_classification_evaluator.py +10 -5
- mteb/_evaluators/retrieval_evaluator.py +19 -13
- mteb/_evaluators/retrieval_metrics.py +9 -3
- mteb/_evaluators/sklearn_evaluator.py +14 -10
- mteb/_evaluators/text/bitext_mining_evaluator.py +8 -3
- mteb/_evaluators/text/summarization_evaluator.py +8 -4
- mteb/_evaluators/zeroshot_classification_evaluator.py +10 -3
- mteb/_helpful_enum.py +5 -1
- mteb/abstasks/_data_filter/filters.py +8 -2
- mteb/abstasks/_data_filter/task_pipelines.py +7 -2
- mteb/abstasks/_statistics_calculation.py +6 -4
- mteb/abstasks/abstask.py +17 -9
- mteb/abstasks/aggregate_task_metadata.py +20 -9
- mteb/abstasks/aggregated_task.py +15 -8
- mteb/abstasks/classification.py +15 -6
- mteb/abstasks/clustering.py +17 -8
- mteb/abstasks/clustering_legacy.py +14 -6
- mteb/abstasks/image/image_text_pair_classification.py +17 -7
- mteb/abstasks/multilabel_classification.py +11 -5
- mteb/abstasks/pair_classification.py +19 -9
- mteb/abstasks/regression.py +14 -6
- mteb/abstasks/retrieval.py +28 -17
- mteb/abstasks/retrieval_dataset_loaders.py +11 -8
- mteb/abstasks/sts.py +19 -10
- mteb/abstasks/task_metadata.py +17 -8
- mteb/abstasks/text/bitext_mining.py +14 -7
- mteb/abstasks/text/summarization.py +17 -7
- mteb/abstasks/zeroshot_classification.py +15 -7
- mteb/benchmarks/_create_table.py +13 -3
- mteb/benchmarks/benchmark.py +11 -1
- mteb/benchmarks/benchmarks/__init__.py +2 -0
- mteb/benchmarks/benchmarks/benchmarks.py +41 -2
- mteb/benchmarks/benchmarks/rteb_benchmarks.py +20 -9
- mteb/cache.py +10 -5
- mteb/cli/_display_tasks.py +9 -3
- mteb/cli/build_cli.py +5 -2
- mteb/cli/generate_model_card.py +9 -2
- mteb/deprecated_evaluator.py +16 -12
- mteb/descriptive_stats/Retrieval/BrightAopsRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightBiologyLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightBiologyRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightEarthScienceLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightEarthScienceRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightEconomicsLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightEconomicsRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightLeetcodeRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightPonyLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightPonyRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightPsychologyLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightPsychologyRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightRoboticsLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightRoboticsRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightStackoverflowLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightStackoverflowRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightSustainableLivingLongRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightSustainableLivingRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightTheoremQAQuestionsRetrieval.json +35 -0
- mteb/descriptive_stats/Retrieval/BrightTheoremQATheoremsRetrieval.json +35 -0
- mteb/evaluate.py +20 -18
- mteb/filter_tasks.py +12 -7
- mteb/get_tasks.py +9 -4
- mteb/languages/language_scripts.py +8 -3
- mteb/leaderboard/app.py +7 -3
- mteb/leaderboard/table.py +7 -2
- mteb/load_results.py +9 -3
- mteb/models/abs_encoder.py +22 -12
- mteb/models/cache_wrappers/cache_backend_protocol.py +5 -3
- mteb/models/cache_wrappers/cache_backends/_hash_utils.py +8 -4
- mteb/models/cache_wrappers/cache_backends/faiss_cache.py +8 -3
- mteb/models/cache_wrappers/cache_wrapper.py +14 -9
- mteb/models/get_model_meta.py +11 -4
- mteb/models/instruct_wrapper.py +13 -5
- mteb/models/model_implementations/align_models.py +10 -4
- 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 +20 -6
- mteb/models/model_implementations/bge_models.py +40 -1
- mteb/models/model_implementations/bica_model.py +1 -0
- mteb/models/model_implementations/blip2_models.py +11 -4
- mteb/models/model_implementations/blip_models.py +17 -4
- mteb/models/model_implementations/bm25.py +22 -14
- mteb/models/model_implementations/bmretriever_models.py +10 -2
- mteb/models/model_implementations/cadet_models.py +1 -0
- mteb/models/model_implementations/cde_models.py +11 -5
- mteb/models/model_implementations/clip_models.py +12 -4
- mteb/models/model_implementations/clips_models.py +3 -0
- mteb/models/model_implementations/codefuse_models.py +5 -0
- mteb/models/model_implementations/codesage_models.py +3 -0
- mteb/models/model_implementations/cohere_models.py +14 -4
- mteb/models/model_implementations/cohere_v.py +14 -4
- mteb/models/model_implementations/colpali_models.py +7 -3
- mteb/models/model_implementations/colqwen_models.py +17 -31
- mteb/models/model_implementations/colsmol_models.py +3 -1
- mteb/models/model_implementations/conan_models.py +11 -4
- mteb/models/model_implementations/dino_models.py +28 -4
- 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 +10 -4
- mteb/models/model_implementations/eagerworks_models.py +11 -4
- 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 +13 -4
- mteb/models/model_implementations/fa_models.py +9 -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 +7 -3
- mteb/models/model_implementations/google_models.py +15 -4
- mteb/models/model_implementations/granite_vision_embedding_models.py +7 -5
- 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 +6 -1
- 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 +14 -5
- mteb/models/model_implementations/jina_clip.py +10 -4
- mteb/models/model_implementations/jina_models.py +17 -5
- mteb/models/model_implementations/kalm_models.py +24 -12
- 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 +7 -1
- mteb/models/model_implementations/listconranker.py +10 -4
- mteb/models/model_implementations/llm2clip_models.py +12 -4
- mteb/models/model_implementations/llm2vec_models.py +20 -6
- mteb/models/model_implementations/mcinext_models.py +8 -2
- mteb/models/model_implementations/mdbr_models.py +2 -0
- mteb/models/model_implementations/misc_models.py +63 -0
- mteb/models/model_implementations/mixedbread_ai_models.py +3 -0
- mteb/models/model_implementations/mme5_models.py +2 -1
- mteb/models/model_implementations/moco_models.py +11 -4
- mteb/models/model_implementations/mod_models.py +2 -1
- mteb/models/model_implementations/model2vec_models.py +23 -4
- mteb/models/model_implementations/moka_models.py +3 -0
- mteb/models/model_implementations/nbailab.py +3 -0
- mteb/models/model_implementations/no_instruct_sentence_models.py +13 -5
- mteb/models/model_implementations/nomic_models.py +16 -4
- mteb/models/model_implementations/nomic_models_vision.py +5 -3
- mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py +9 -3
- mteb/models/model_implementations/nvidia_models.py +15 -4
- mteb/models/model_implementations/octen_models.py +3 -1
- mteb/models/model_implementations/openai_models.py +14 -4
- mteb/models/model_implementations/openclip_models.py +17 -4
- mteb/models/model_implementations/opensearch_neural_sparse_models.py +15 -4
- mteb/models/model_implementations/ops_moa_models.py +9 -2
- mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py +1 -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 +16 -6
- mteb/models/model_implementations/pylate_models.py +22 -13
- 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 +11 -1
- mteb/models/model_implementations/qzhou_models.py +2 -0
- mteb/models/model_implementations/random_baseline.py +4 -3
- mteb/models/model_implementations/rasgaard_models.py +1 -0
- mteb/models/model_implementations/reasonir_model.py +65 -0
- mteb/models/model_implementations/repllama_models.py +15 -6
- mteb/models/model_implementations/rerankers_custom.py +13 -4
- mteb/models/model_implementations/rerankers_monot5_based.py +24 -4
- 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 +10 -1
- 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 +5 -2
- mteb/models/model_implementations/seed_1_6_embedding_models_1215.py +6 -2
- mteb/models/model_implementations/seed_models.py +2 -1
- mteb/models/model_implementations/sentence_transformers_models.py +18 -0
- mteb/models/model_implementations/shuu_model.py +1 -0
- mteb/models/model_implementations/siglip_models.py +19 -4
- mteb/models/model_implementations/slm_models.py +7 -4
- mteb/models/model_implementations/sonar_models.py +2 -1
- 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/text2vec_models.py +3 -0
- mteb/models/model_implementations/ua_sentence_models.py +1 -0
- mteb/models/model_implementations/uae_models.py +10 -4
- mteb/models/model_implementations/vdr_models.py +8 -1
- mteb/models/model_implementations/vi_vn_models.py +6 -0
- mteb/models/model_implementations/vista_models.py +11 -4
- mteb/models/model_implementations/vlm2vec_models.py +11 -4
- mteb/models/model_implementations/voyage_models.py +25 -4
- mteb/models/model_implementations/voyage_v.py +11 -6
- 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 +2 -1
- mteb/models/model_meta.py +47 -9
- mteb/models/models_protocols.py +19 -18
- mteb/models/search_encoder_index/search_backend_protocol.py +7 -3
- mteb/models/search_encoder_index/search_indexes/faiss_search_index.py +12 -4
- mteb/models/search_wrappers.py +19 -12
- mteb/models/sentence_transformer_wrapper.py +4 -3
- mteb/models/vllm_wrapper.py +8 -6
- mteb/results/benchmark_results.py +22 -17
- mteb/results/model_result.py +21 -15
- mteb/results/task_result.py +15 -9
- mteb/similarity_functions.py +8 -2
- mteb/tasks/aggregated_tasks/eng/cqadupstack_retrieval.py +3 -3
- mteb/tasks/aggregated_tasks/eng/sts17_multilingual_visual_sts_eng.py +3 -3
- mteb/tasks/aggregated_tasks/eng/sts_benchmark_multilingual_visual_sts_eng.py +3 -3
- mteb/tasks/aggregated_tasks/fas/cqadupstack_retrieval_fa.py +3 -3
- mteb/tasks/aggregated_tasks/fas/syn_per_chatbot_conv_sa_classification.py +3 -3
- mteb/tasks/aggregated_tasks/multilingual/sts17_multilingual_vision_sts.py +3 -3
- mteb/tasks/aggregated_tasks/multilingual/sts_benchmark_multilingual_visual_sts.py +3 -3
- mteb/tasks/aggregated_tasks/nld/cqadupstack_nl_retrieval.py +3 -3
- mteb/tasks/aggregated_tasks/pol/cqadupstack_retrieval_pl.py +3 -3
- mteb/tasks/clustering/nob/snl_clustering.py +7 -2
- mteb/tasks/clustering/nob/vg_clustering.py +7 -2
- mteb/tasks/retrieval/eng/__init__.py +42 -0
- mteb/tasks/retrieval/eng/bright_retrieval.py +9 -1
- mteb/tasks/retrieval/eng/bright_v1_1_retrieval.py +968 -0
- mteb/tasks/retrieval/eng/limit_retrieval.py +6 -1
- mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py +3 -3
- mteb/types/_encoder_io.py +1 -1
- mteb/types/statistics.py +9 -2
- {mteb-2.7.2.dist-info → mteb-2.7.4.dist-info}/METADATA +1 -1
- {mteb-2.7.2.dist-info → mteb-2.7.4.dist-info}/RECORD +238 -217
- {mteb-2.7.2.dist-info → mteb-2.7.4.dist-info}/WHEEL +0 -0
- {mteb-2.7.2.dist-info → mteb-2.7.4.dist-info}/entry_points.txt +0 -0
- {mteb-2.7.2.dist-info → mteb-2.7.4.dist-info}/licenses/LICENSE +0 -0
- {mteb-2.7.2.dist-info → mteb-2.7.4.dist-info}/top_level.txt +0 -0
|
@@ -1,72 +1,72 @@
|
|
|
1
1
|
mteb/__init__.py,sha256=AFdvWGkAnKZqzKxqp-xvuBhGnpz0QM1cuOtaztsDzjI,1430
|
|
2
2
|
mteb/__main__.py,sha256=KKWed4HW-OpfpJhCuKDNDPuAAIoppQY1g2gRuCdAmlw,34
|
|
3
|
-
mteb/_create_dataloaders.py,sha256=
|
|
4
|
-
mteb/_helpful_enum.py,sha256=
|
|
3
|
+
mteb/_create_dataloaders.py,sha256=2-W3Yz7GvoTmCL7bZIm7OXOorum08A-pa4RePbYVbxg,14458
|
|
4
|
+
mteb/_helpful_enum.py,sha256=5hi3vm19QhTWXb5G80ytviJ-SEbCCGVhn2gbJaRgoyY,601
|
|
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=
|
|
11
|
-
mteb/filter_tasks.py,sha256=
|
|
12
|
-
mteb/get_tasks.py,sha256=
|
|
13
|
-
mteb/load_results.py,sha256=
|
|
8
|
+
mteb/cache.py,sha256=xE2BhrG_ypm2C0nPt6tRQCe393pN1RjDLadQcC6W1WE,27657
|
|
9
|
+
mteb/deprecated_evaluator.py,sha256=F47pBHL3lM8YHGZEPLR4CuVn7aV3gzomNpyP3I3jmmc,27727
|
|
10
|
+
mteb/evaluate.py,sha256=OzcnWwmoHlRAdYrM112QhiCnVJzSUKBt2ip1YIMV8Gk,19288
|
|
11
|
+
mteb/filter_tasks.py,sha256=ZFFEl7jWTSq3kDdM8oHG-RZrrBOP16zcFzezA3OsLiM,7430
|
|
12
|
+
mteb/get_tasks.py,sha256=1BZJF7jADJnnL_ZzsJaTKLITO7u6inAHV0PxCAQfhfc,14402
|
|
13
|
+
mteb/load_results.py,sha256=geGyArDB1CNrqse_QzPqfvY7YvF9fL57LJsuy-DDY58,6532
|
|
14
14
|
mteb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
mteb/similarity_functions.py,sha256=
|
|
15
|
+
mteb/similarity_functions.py,sha256=7ENHjq35EMSO1kT73IKLbQ0jMWGxMPSMM8SPmGHzaAM,10887
|
|
16
16
|
mteb/_evaluators/__init__.py,sha256=Ag1_RWpxBGMpujzd3FZjI40gY_KQKIpY31tJPuk-hFg,1013
|
|
17
17
|
mteb/_evaluators/_download.py,sha256=jntlcURbJxcxUjTmn2D9Tu6ZnWgDc9t5bY8p9CZCqv4,586
|
|
18
|
-
mteb/_evaluators/any_sts_evaluator.py,sha256=
|
|
18
|
+
mteb/_evaluators/any_sts_evaluator.py,sha256=EU0QSge1MY6BL1BOvoWmYGUK0uj5So828qkgqPe4KMk,3856
|
|
19
19
|
mteb/_evaluators/classification_metrics.py,sha256=TI-cMPWrIpMqpsNhhwSBY4bZUu2yM469fbcu44zolW0,1926
|
|
20
|
-
mteb/_evaluators/clustering_evaluator.py,sha256=
|
|
21
|
-
mteb/_evaluators/evaluator.py,sha256=
|
|
22
|
-
mteb/_evaluators/pair_classification_evaluator.py,sha256=
|
|
23
|
-
mteb/_evaluators/retrieval_evaluator.py,sha256=
|
|
24
|
-
mteb/_evaluators/retrieval_metrics.py,sha256=
|
|
25
|
-
mteb/_evaluators/sklearn_evaluator.py,sha256=
|
|
26
|
-
mteb/_evaluators/zeroshot_classification_evaluator.py,sha256=
|
|
20
|
+
mteb/_evaluators/clustering_evaluator.py,sha256=c-4GJh9FtuBtZrQ2bI9wp7xrJ_vWCCCV3YDhkYM1mJc,2168
|
|
21
|
+
mteb/_evaluators/evaluator.py,sha256=RYkGWvjelmibFnYmoCvmgn5bF-KbQ0n269qGzJ30xnE,989
|
|
22
|
+
mteb/_evaluators/pair_classification_evaluator.py,sha256=WZHliRDT7jy1nBW9hshr5FzWw2SfoS5wBBLlp0Y-1jQ,6527
|
|
23
|
+
mteb/_evaluators/retrieval_evaluator.py,sha256=RuFVgmtX8olhm1WbXEVx_gPd9DaHOnrD9c4drVDP8Z0,3161
|
|
24
|
+
mteb/_evaluators/retrieval_metrics.py,sha256=XXeI7pXHuhKDvDjMKhGSU-Uv6J2itQKeD7lUH85IL8Q,23856
|
|
25
|
+
mteb/_evaluators/sklearn_evaluator.py,sha256=2A6YJ2Tkkmtw_AnONIKDFhoSajsSy0QUU4CJ7tWpiDM,3938
|
|
26
|
+
mteb/_evaluators/zeroshot_classification_evaluator.py,sha256=P7fMcfSxNKkJBu_P6bpgUlOuJTefG1nbXQoHYAxMsUg,2430
|
|
27
27
|
mteb/_evaluators/image/__init__.py,sha256=CsQd7OMkeV2Phun7paPWjayZ5qRnvj8H0TYBFeqMxag,148
|
|
28
|
-
mteb/_evaluators/image/imagetext_pairclassification_evaluator.py,sha256=
|
|
28
|
+
mteb/_evaluators/image/imagetext_pairclassification_evaluator.py,sha256=92CKHSnOh3qjP07OoApYGlmpIfA6uDOeU3NIqZxzjao,4980
|
|
29
29
|
mteb/_evaluators/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
mteb/_evaluators/text/bitext_mining_evaluator.py,sha256=
|
|
31
|
-
mteb/_evaluators/text/summarization_evaluator.py,sha256=
|
|
30
|
+
mteb/_evaluators/text/bitext_mining_evaluator.py,sha256=eTA5vp5qcOKpLcyv02tkPh45uVQiQsCJp9bgbzO9UJQ,6670
|
|
31
|
+
mteb/_evaluators/text/summarization_evaluator.py,sha256=ciHCZQglV-tE-HbH7tMw9lY_fSoPqHc1kyS8M7JUUEk,10838
|
|
32
32
|
mteb/abstasks/__init__.py,sha256=1iAwpYTWX7U-goak2KMmacPFCzxPchLQAmZ_uI0t-p0,1130
|
|
33
|
-
mteb/abstasks/_statistics_calculation.py,sha256=
|
|
33
|
+
mteb/abstasks/_statistics_calculation.py,sha256=4opttohaS6LV5K0zQIqfG2IGIzQAdKAaLTpSTQ6auBc,5988
|
|
34
34
|
mteb/abstasks/_stratification.py,sha256=GnqYRtkFYsB-412EvMR2iMqIinFr98NCSmxHeCXctlw,14347
|
|
35
|
-
mteb/abstasks/abstask.py,sha256=
|
|
36
|
-
mteb/abstasks/aggregate_task_metadata.py,sha256=
|
|
37
|
-
mteb/abstasks/aggregated_task.py,sha256
|
|
38
|
-
mteb/abstasks/classification.py,sha256=
|
|
39
|
-
mteb/abstasks/clustering.py,sha256=
|
|
40
|
-
mteb/abstasks/clustering_legacy.py,sha256
|
|
35
|
+
mteb/abstasks/abstask.py,sha256=XlXg0gda_maUDG_PcY9PbfHgHP25lfV8KhpZpcCg4Bs,25706
|
|
36
|
+
mteb/abstasks/aggregate_task_metadata.py,sha256=WXYY_DUU55s4PkxMVz7lwbdZarq6QznhbvJYdSTYZZI,5846
|
|
37
|
+
mteb/abstasks/aggregated_task.py,sha256=8NY_vaqmMuYNxuB05YjU4W6aEipyKrF2iDFS3m-eXNc,6167
|
|
38
|
+
mteb/abstasks/classification.py,sha256=tHMfK_gT9WuKHSaLvIna78_Zsb-MqeCrE1WYV6_e5v8,13828
|
|
39
|
+
mteb/abstasks/clustering.py,sha256=utce6odZiUH5gZDbQd7-UIS6TqXF_HmQSnSDFiA1sig,14819
|
|
40
|
+
mteb/abstasks/clustering_legacy.py,sha256=-6rYHPwqZGEqsNIOtR4XZHnRupRYFc5bGnvHYdlYc7U,9041
|
|
41
41
|
mteb/abstasks/dataset_card_template.md,sha256=aD6l8qc3_jxwoIGJNYLzse-jpRa8hu92AxpnUtNgges,5122
|
|
42
|
-
mteb/abstasks/multilabel_classification.py,sha256=
|
|
43
|
-
mteb/abstasks/pair_classification.py,sha256
|
|
44
|
-
mteb/abstasks/regression.py,sha256=
|
|
45
|
-
mteb/abstasks/retrieval.py,sha256=
|
|
46
|
-
mteb/abstasks/retrieval_dataset_loaders.py,sha256=
|
|
47
|
-
mteb/abstasks/sts.py,sha256=
|
|
48
|
-
mteb/abstasks/task_metadata.py,sha256=
|
|
49
|
-
mteb/abstasks/zeroshot_classification.py,sha256=
|
|
42
|
+
mteb/abstasks/multilabel_classification.py,sha256=MREVqYe2Lr4oD7ehk7KXKusyLOq_Dmf-41luJfSj340,9650
|
|
43
|
+
mteb/abstasks/pair_classification.py,sha256=gKiWBp--oIB2XioiY309ffQCo-ErP0P75MsOP8Cb5Mg,13979
|
|
44
|
+
mteb/abstasks/regression.py,sha256=ZuMZfOwU3G4hr__eHsgdagKKdrbN4-wQMLz45jr9YUc,8946
|
|
45
|
+
mteb/abstasks/retrieval.py,sha256=v8b7FjDi-M2wEUg4wZjPfvM0Gm2ONbSaXKZBk6xwosw,27156
|
|
46
|
+
mteb/abstasks/retrieval_dataset_loaders.py,sha256=2y7mlsSnVum0x7X4-UXOAN-ZeH6GankSxw0Lb9yKmMM,9500
|
|
47
|
+
mteb/abstasks/sts.py,sha256=iizxtxKcmGVH0ge7j2ZRjA7svupy7YNF7KU_u0SDCB4,9420
|
|
48
|
+
mteb/abstasks/task_metadata.py,sha256=_yVgX3yjaxVvK-Cs2nw2wMEkI0xf-QhcGb_byCeyo-w,27210
|
|
49
|
+
mteb/abstasks/zeroshot_classification.py,sha256=0YJhJr9tVW_phYVnAqFGKGBQkn1RLBy1BpmYnIbWhwE,6217
|
|
50
50
|
mteb/abstasks/_data_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
mteb/abstasks/_data_filter/filters.py,sha256=
|
|
52
|
-
mteb/abstasks/_data_filter/task_pipelines.py,sha256=
|
|
51
|
+
mteb/abstasks/_data_filter/filters.py,sha256=ew6S8OI2G_Pf1YKz9XYTL3jh2bsQz8M5uzBy21TN-J0,4727
|
|
52
|
+
mteb/abstasks/_data_filter/task_pipelines.py,sha256=L0c4Yv-nbo_WDtuhmrcGJd1xulOwf6vc0dIyWvscgks,3254
|
|
53
53
|
mteb/abstasks/image/__init__.py,sha256=NgvMJnp1g2mUv27RL-TvzA7s1BOdMG-EB1CrZfdbWdg,136
|
|
54
|
-
mteb/abstasks/image/image_text_pair_classification.py,sha256=
|
|
54
|
+
mteb/abstasks/image/image_text_pair_classification.py,sha256=Uo_LgNu3AoDsKecrrpkfhW7Fz8NTGqZ93q2LRt24HzQ,8137
|
|
55
55
|
mteb/abstasks/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
mteb/abstasks/text/bitext_mining.py,sha256=
|
|
56
|
+
mteb/abstasks/text/bitext_mining.py,sha256=nHmKB0aXO6yrvnZgb9YkBaCPgnjze4xBcdWs7_BUNUg,11299
|
|
57
57
|
mteb/abstasks/text/reranking.py,sha256=vD5YUwst--zJ01bU40Z7juqQyuv8jrareRTtoCwt8E4,7871
|
|
58
|
-
mteb/abstasks/text/summarization.py,sha256=
|
|
58
|
+
mteb/abstasks/text/summarization.py,sha256=5fKfAR4M2j922YE8I9FNpWSRcW16M00fubTOruXnOvU,7335
|
|
59
59
|
mteb/benchmarks/__init__.py,sha256=MQEVeli-zLaJ7Xg0z7RhXQwsdmm7Ht_W2Ln0rZo1Szc,225
|
|
60
|
-
mteb/benchmarks/_create_table.py,sha256=
|
|
61
|
-
mteb/benchmarks/benchmark.py,sha256=
|
|
60
|
+
mteb/benchmarks/_create_table.py,sha256=rsckziAot5EuD-aarQ6JnGurNsq6X2zn_nl43_Ge9ng,22651
|
|
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
|
|
64
|
-
mteb/benchmarks/benchmarks/benchmarks.py,sha256=
|
|
65
|
-
mteb/benchmarks/benchmarks/rteb_benchmarks.py,sha256=
|
|
63
|
+
mteb/benchmarks/benchmarks/__init__.py,sha256=-o3EMWEfP0eQ8iZpWvTj5r4yuGOUuL9mHk8IgFcpPtk,2330
|
|
64
|
+
mteb/benchmarks/benchmarks/benchmarks.py,sha256=IOU3Kk7TEZkhypJ7ScyfqHmYgx1nG_KPJkjXLKoSTmo,103931
|
|
65
|
+
mteb/benchmarks/benchmarks/rteb_benchmarks.py,sha256=m97VA15pRBm_W_Ijw_1WHxmvtv3upFJDVl0XBgDET5k,10970
|
|
66
66
|
mteb/cli/__init__.py,sha256=v-csUr3eUZElIvrGB6QGtaIdndDfNWEe9oZchsGsJpg,64
|
|
67
|
-
mteb/cli/_display_tasks.py,sha256=
|
|
68
|
-
mteb/cli/build_cli.py,sha256=
|
|
69
|
-
mteb/cli/generate_model_card.py,sha256=
|
|
67
|
+
mteb/cli/_display_tasks.py,sha256=JLlUkkfRaGkHSaU0tUTTHSrhmHO9yvwcnpm74yvItos,2307
|
|
68
|
+
mteb/cli/build_cli.py,sha256=gb5HJq6zWyPvYWb2dr-PWuMb8jAPsg60Zo3AUScS-V0,15437
|
|
69
|
+
mteb/cli/generate_model_card.py,sha256=aR8qTVtejW4Fz25BCUgXOuM0ytrHKW0m5kKW3D0L-Hw,5088
|
|
70
70
|
mteb/descriptive_stats/BitextMining/BUCC.json,sha256=7zXoJaZacNdqMSG60jPZGIDJ1is_bxbVlcrVyImPRxw,3745
|
|
71
71
|
mteb/descriptive_stats/BitextMining/BUCC.v2.json,sha256=IRPOKaIaUD31okNe12nQV2E1JeYK_Fo25Tz7d-utATM,3716
|
|
72
72
|
mteb/descriptive_stats/BitextMining/BibleNLPBitextMining.json,sha256=BxzjiVoeXrSKaeBIVytLKMf2yx_6ksZ4GddPtTU8MWY,1248649
|
|
@@ -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
|
|
@@ -1449,182 +1469,182 @@ mteb/languages/iso_15924_to_script.json,sha256=agZvrYqSc0YJDXoqluncshuaMeg5RGkd_
|
|
|
1449
1469
|
mteb/languages/iso_639_3_to_language.json,sha256=KDVAh3TQziSyUd8xGDwpUHRUeTrngwp-MDuOxM9bpgo,193114
|
|
1450
1470
|
mteb/languages/iso_mappings.py,sha256=TKpAmP9KL-KmY5EsHjsrfbnnluvCHES5mTlXNUC-pp0,891
|
|
1451
1471
|
mteb/languages/language_family.json,sha256=OUGcHeOIPcZPb2FWmYLhxTS0JxjK5y3Fo6x0PeK0cKM,1833535
|
|
1452
|
-
mteb/languages/language_scripts.py,sha256=
|
|
1472
|
+
mteb/languages/language_scripts.py,sha256=AjtdlJlVRE3TWASdmREKw0P-xAoVFdl_Rut5DgX6k6c,4149
|
|
1453
1473
|
mteb/languages/programming_languages.py,sha256=zxAakT3OSUnAuTnQ34VyeFIECnNXMlleZmAake6jsZE,211
|
|
1454
1474
|
mteb/leaderboard/__init__.py,sha256=991roXmtRwEQysV-37hWEzWpkvPgMCGRqZTHR-hm2io,88
|
|
1455
|
-
mteb/leaderboard/app.py,sha256=
|
|
1475
|
+
mteb/leaderboard/app.py,sha256=te9F3F5u6pMYzEsLtBnOWSr-6ZQ4ZvXVSmbfxuu3cfQ,42500
|
|
1456
1476
|
mteb/leaderboard/benchmark_selector.py,sha256=qd-2L20RQ4ACke01UlytkhZok1dkWgfUlXzfET52kGc,7956
|
|
1457
1477
|
mteb/leaderboard/figures.py,sha256=cfOK82rRf-7sCjyP7GBxh4ezhOIt0OhD0_86mKtzLrg,7530
|
|
1458
|
-
mteb/leaderboard/table.py,sha256=
|
|
1478
|
+
mteb/leaderboard/table.py,sha256=U5mWtrVUTk_6t8T4KAp5qlbFgKh1PD0iKICqNMfhsoY,10462
|
|
1459
1479
|
mteb/leaderboard/text_segments.py,sha256=iMIkS04QQjPbT-SkU0x6fOcS8xRbUYevryu9HydipKM,6570
|
|
1460
1480
|
mteb/models/__init__.py,sha256=ABTuoqiBjBtBWW3LYY7ItBHdylR6jWoy06HH0g6j6fU,910
|
|
1461
|
-
mteb/models/abs_encoder.py,sha256=
|
|
1462
|
-
mteb/models/get_model_meta.py,sha256=
|
|
1463
|
-
mteb/models/instruct_wrapper.py,sha256=
|
|
1464
|
-
mteb/models/model_meta.py,sha256=
|
|
1465
|
-
mteb/models/models_protocols.py,sha256=
|
|
1466
|
-
mteb/models/search_wrappers.py,sha256=
|
|
1467
|
-
mteb/models/sentence_transformer_wrapper.py,sha256=
|
|
1468
|
-
mteb/models/vllm_wrapper.py,sha256=
|
|
1481
|
+
mteb/models/abs_encoder.py,sha256=We9HlwWP61P4cMyZ080gywvDErA1eVsU9t46PtcNrCM,16830
|
|
1482
|
+
mteb/models/get_model_meta.py,sha256=_3gbC9I9fHJuqW4EzfM3xAv-heOBwEPswLVkCGO4BBI,6201
|
|
1483
|
+
mteb/models/instruct_wrapper.py,sha256=XAvvbPnXiTxKhFbmusm2uS8E9BMq8QXRSzQQI1jqKzE,9781
|
|
1484
|
+
mteb/models/model_meta.py,sha256=5seQwce893SbgSywFsphLuZGQ9rRn1fLl9fj1SfKnXE,32887
|
|
1485
|
+
mteb/models/models_protocols.py,sha256=I2K9f0r7FL8hbkiiABOjtf0eYPvgK1oz-Okke3e7V0w,9331
|
|
1486
|
+
mteb/models/search_wrappers.py,sha256=x1bi219_PXi6Ury3earvuk72Guqj0olAc1jCSgvFGfc,21095
|
|
1487
|
+
mteb/models/sentence_transformer_wrapper.py,sha256=RsOxj-b7qzeYcxUTVJyb-lZDY4bINl4jEAEkPvKYB10,13578
|
|
1488
|
+
mteb/models/vllm_wrapper.py,sha256=rvE0mghcHRA1UwIN1mjJf1GKA6pTTcs8mZQ2UoGRJ0g,12287
|
|
1469
1489
|
mteb/models/cache_wrappers/__init__.py,sha256=1w1TnMwulWJSzNkLXjbh5MY3sqgHWc6vUntYn49i9X8,169
|
|
1470
|
-
mteb/models/cache_wrappers/cache_backend_protocol.py,sha256=
|
|
1471
|
-
mteb/models/cache_wrappers/cache_wrapper.py,sha256=
|
|
1490
|
+
mteb/models/cache_wrappers/cache_backend_protocol.py,sha256=d00imHSJAVU1jtvwLWv3mn06_SJn-6JQbOvb0N2nlAk,1676
|
|
1491
|
+
mteb/models/cache_wrappers/cache_wrapper.py,sha256=ZzbtW5rVGNZ-5wrqE06C0Uy6BHT5Lq3IysHe8hAoTz4,6703
|
|
1472
1492
|
mteb/models/cache_wrappers/cache_backends/__init__.py,sha256=hN2Tq7cpTxoOYSCJ1Wnpvb8dEm-kQLfCCahT1N9Bacw,123
|
|
1473
|
-
mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=
|
|
1474
|
-
mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=
|
|
1493
|
+
mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=HRZ8FeXSJyK3m07gnEIFduR2hU2DSJLjo4QPs5DxDGs,620
|
|
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=
|
|
1478
|
-
mteb/models/model_implementations/amazon_models.py,sha256=
|
|
1479
|
-
mteb/models/model_implementations/andersborges.py,sha256=
|
|
1480
|
-
mteb/models/model_implementations/ara_models.py,sha256=
|
|
1481
|
-
mteb/models/model_implementations/arctic_models.py,sha256=
|
|
1482
|
-
mteb/models/model_implementations/b1ade_models.py,sha256
|
|
1483
|
-
mteb/models/model_implementations/bedrock_models.py,sha256=
|
|
1484
|
-
mteb/models/model_implementations/bge_models.py,sha256=
|
|
1485
|
-
mteb/models/model_implementations/bica_model.py,sha256=
|
|
1486
|
-
mteb/models/model_implementations/blip2_models.py,sha256=
|
|
1487
|
-
mteb/models/model_implementations/blip_models.py,sha256=
|
|
1488
|
-
mteb/models/model_implementations/bm25.py,sha256=
|
|
1489
|
-
mteb/models/model_implementations/bmretriever_models.py,sha256=
|
|
1490
|
-
mteb/models/model_implementations/cadet_models.py,sha256=
|
|
1491
|
-
mteb/models/model_implementations/cde_models.py,sha256=
|
|
1492
|
-
mteb/models/model_implementations/clip_models.py,sha256=
|
|
1493
|
-
mteb/models/model_implementations/clips_models.py,sha256=
|
|
1494
|
-
mteb/models/model_implementations/codefuse_models.py,sha256=
|
|
1495
|
-
mteb/models/model_implementations/codesage_models.py,sha256=
|
|
1496
|
-
mteb/models/model_implementations/cohere_models.py,sha256=
|
|
1497
|
-
mteb/models/model_implementations/cohere_v.py,sha256=
|
|
1498
|
-
mteb/models/model_implementations/colpali_models.py,sha256=
|
|
1499
|
-
mteb/models/model_implementations/colqwen_models.py,sha256=
|
|
1500
|
-
mteb/models/model_implementations/colsmol_models.py,sha256=
|
|
1501
|
-
mteb/models/model_implementations/conan_models.py,sha256=
|
|
1502
|
-
mteb/models/model_implementations/dino_models.py,sha256=
|
|
1503
|
-
mteb/models/model_implementations/e5_instruct.py,sha256=
|
|
1504
|
-
mteb/models/model_implementations/e5_models.py,sha256=
|
|
1505
|
-
mteb/models/model_implementations/e5_v.py,sha256=
|
|
1506
|
-
mteb/models/model_implementations/eagerworks_models.py,sha256=
|
|
1507
|
-
mteb/models/model_implementations/emillykkejensen_models.py,sha256=
|
|
1508
|
-
mteb/models/model_implementations/en_code_retriever.py,sha256=
|
|
1509
|
-
mteb/models/model_implementations/euler_models.py,sha256=
|
|
1510
|
-
mteb/models/model_implementations/evaclip_models.py,sha256=
|
|
1511
|
-
mteb/models/model_implementations/fa_models.py,sha256=
|
|
1512
|
-
mteb/models/model_implementations/facebookai.py,sha256=
|
|
1513
|
-
mteb/models/model_implementations/geogpt_models.py,sha256=
|
|
1514
|
-
mteb/models/model_implementations/gme_v_models.py,sha256=
|
|
1515
|
-
mteb/models/model_implementations/google_models.py,sha256=
|
|
1516
|
-
mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=
|
|
1517
|
-
mteb/models/model_implementations/gritlm_models.py,sha256=
|
|
1518
|
-
mteb/models/model_implementations/gte_models.py,sha256
|
|
1519
|
-
mteb/models/model_implementations/hinvec_models.py,sha256=
|
|
1520
|
-
mteb/models/model_implementations/human.py,sha256=
|
|
1521
|
-
mteb/models/model_implementations/ibm_granite_models.py,sha256=
|
|
1522
|
-
mteb/models/model_implementations/inf_models.py,sha256=
|
|
1523
|
-
mteb/models/model_implementations/jasper_models.py,sha256=
|
|
1524
|
-
mteb/models/model_implementations/jina_clip.py,sha256=
|
|
1525
|
-
mteb/models/model_implementations/jina_models.py,sha256=
|
|
1526
|
-
mteb/models/model_implementations/kalm_models.py,sha256=
|
|
1527
|
-
mteb/models/model_implementations/kblab.py,sha256=
|
|
1528
|
-
mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=
|
|
1529
|
-
mteb/models/model_implementations/kfst.py,sha256=
|
|
1530
|
-
mteb/models/model_implementations/kowshik24_models.py,sha256=
|
|
1531
|
-
mteb/models/model_implementations/lens_models.py,sha256=
|
|
1532
|
-
mteb/models/model_implementations/lgai_embedding_models.py,sha256=
|
|
1533
|
-
mteb/models/model_implementations/linq_models.py,sha256=
|
|
1534
|
-
mteb/models/model_implementations/listconranker.py,sha256=
|
|
1535
|
-
mteb/models/model_implementations/llm2clip_models.py,sha256=
|
|
1536
|
-
mteb/models/model_implementations/llm2vec_models.py,sha256=
|
|
1537
|
-
mteb/models/model_implementations/mcinext_models.py,sha256=
|
|
1538
|
-
mteb/models/model_implementations/mdbr_models.py,sha256=
|
|
1539
|
-
mteb/models/model_implementations/misc_models.py,sha256=
|
|
1540
|
-
mteb/models/model_implementations/mixedbread_ai_models.py,sha256=
|
|
1541
|
-
mteb/models/model_implementations/mme5_models.py,sha256=
|
|
1542
|
-
mteb/models/model_implementations/moco_models.py,sha256=
|
|
1543
|
-
mteb/models/model_implementations/mod_models.py,sha256=
|
|
1544
|
-
mteb/models/model_implementations/model2vec_models.py,sha256=
|
|
1545
|
-
mteb/models/model_implementations/moka_models.py,sha256=
|
|
1546
|
-
mteb/models/model_implementations/nbailab.py,sha256=
|
|
1547
|
-
mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=
|
|
1548
|
-
mteb/models/model_implementations/nomic_models.py,sha256=
|
|
1549
|
-
mteb/models/model_implementations/nomic_models_vision.py,sha256=
|
|
1550
|
-
mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=
|
|
1551
|
-
mteb/models/model_implementations/nvidia_models.py,sha256=
|
|
1552
|
-
mteb/models/model_implementations/octen_models.py,sha256=
|
|
1553
|
-
mteb/models/model_implementations/openai_models.py,sha256=
|
|
1554
|
-
mteb/models/model_implementations/openclip_models.py,sha256=
|
|
1555
|
-
mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=
|
|
1556
|
-
mteb/models/model_implementations/ops_moa_models.py,sha256=
|
|
1557
|
-
mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=
|
|
1558
|
-
mteb/models/model_implementations/pawan_models.py,sha256=
|
|
1559
|
-
mteb/models/model_implementations/piccolo_models.py,sha256
|
|
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=
|
|
1562
|
-
mteb/models/model_implementations/pylate_models.py,sha256=
|
|
1563
|
-
mteb/models/model_implementations/qodo_models.py,sha256=
|
|
1564
|
-
mteb/models/model_implementations/qtack_models.py,sha256=
|
|
1565
|
-
mteb/models/model_implementations/qwen3_models.py,sha256=
|
|
1566
|
-
mteb/models/model_implementations/qzhou_models.py,sha256=
|
|
1567
|
-
mteb/models/model_implementations/random_baseline.py,sha256=
|
|
1568
|
-
mteb/models/model_implementations/rasgaard_models.py,sha256=
|
|
1569
|
-
mteb/models/model_implementations/reasonir_model.py,sha256=
|
|
1570
|
-
mteb/models/model_implementations/repllama_models.py,sha256=
|
|
1571
|
-
mteb/models/model_implementations/rerankers_custom.py,sha256=
|
|
1572
|
-
mteb/models/model_implementations/rerankers_monot5_based.py,sha256=
|
|
1573
|
-
mteb/models/model_implementations/richinfoai_models.py,sha256=
|
|
1574
|
-
mteb/models/model_implementations/ru_sentence_models.py,sha256=
|
|
1575
|
-
mteb/models/model_implementations/ruri_models.py,sha256=
|
|
1576
|
-
mteb/models/model_implementations/salesforce_models.py,sha256=
|
|
1577
|
-
mteb/models/model_implementations/samilpwc_models.py,sha256=
|
|
1578
|
-
mteb/models/model_implementations/sarashina_embedding_models.py,sha256=
|
|
1579
|
-
mteb/models/model_implementations/searchmap_models.py,sha256=
|
|
1580
|
-
mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=
|
|
1581
|
-
mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=
|
|
1582
|
-
mteb/models/model_implementations/seed_models.py,sha256=
|
|
1583
|
-
mteb/models/model_implementations/sentence_transformers_models.py,sha256=
|
|
1584
|
-
mteb/models/model_implementations/shuu_model.py,sha256=
|
|
1585
|
-
mteb/models/model_implementations/siglip_models.py,sha256=
|
|
1586
|
-
mteb/models/model_implementations/slm_models.py,sha256=
|
|
1587
|
-
mteb/models/model_implementations/sonar_models.py,sha256=
|
|
1588
|
-
mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=
|
|
1589
|
-
mteb/models/model_implementations/stella_models.py,sha256=
|
|
1590
|
-
mteb/models/model_implementations/tarka_models.py,sha256=
|
|
1591
|
-
mteb/models/model_implementations/text2vec_models.py,sha256=
|
|
1592
|
-
mteb/models/model_implementations/ua_sentence_models.py,sha256=
|
|
1593
|
-
mteb/models/model_implementations/uae_models.py,sha256=
|
|
1594
|
-
mteb/models/model_implementations/vdr_models.py,sha256=
|
|
1595
|
-
mteb/models/model_implementations/vi_vn_models.py,sha256=
|
|
1596
|
-
mteb/models/model_implementations/vista_models.py,sha256=
|
|
1597
|
-
mteb/models/model_implementations/vlm2vec_models.py,sha256=
|
|
1598
|
-
mteb/models/model_implementations/voyage_models.py,sha256=
|
|
1599
|
-
mteb/models/model_implementations/voyage_v.py,sha256=
|
|
1600
|
-
mteb/models/model_implementations/xyz_models.py,sha256=
|
|
1601
|
-
mteb/models/model_implementations/youtu_models.py,sha256=
|
|
1602
|
-
mteb/models/model_implementations/yuan_models.py,sha256=
|
|
1603
|
-
mteb/models/model_implementations/yuan_models_en.py,sha256=
|
|
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
|
|
1587
|
+
mteb/models/model_implementations/random_baseline.py,sha256=YsITQoLbea_Iz2X84WNGBGkhlsQ3hB7yx1oJwXghimE,7561
|
|
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
|
|
1606
|
+
mteb/models/model_implementations/slm_models.py,sha256=uMtAxpT3UjghyShqDOgpcbFlv0jZFLAheIPw7Psc4-E,13474
|
|
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
|
-
mteb/models/search_encoder_index/search_backend_protocol.py,sha256=
|
|
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
|
|
1607
|
-
mteb/models/search_encoder_index/search_indexes/faiss_search_index.py,sha256=
|
|
1627
|
+
mteb/models/search_encoder_index/search_indexes/faiss_search_index.py,sha256=jwC-3swhnILZnVHUrMR7Ts78TuYtVRxPusF02UV1g6E,5770
|
|
1608
1628
|
mteb/results/__init__.py,sha256=EXQqK4Am5eIYzD52dpcGAFSdqnC38oE6JHN302oidHc,158
|
|
1609
|
-
mteb/results/benchmark_results.py,sha256=
|
|
1610
|
-
mteb/results/model_result.py,sha256=
|
|
1611
|
-
mteb/results/task_result.py,sha256=
|
|
1629
|
+
mteb/results/benchmark_results.py,sha256=unBUBJ92ud0UXlkZJLn71WVcf-oUlF6XcITTccz5OBA,20318
|
|
1630
|
+
mteb/results/model_result.py,sha256=u1eUynaf_KVsdYdz29MACsCDR_48xODapkIGLG-lZa0,15321
|
|
1631
|
+
mteb/results/task_result.py,sha256=3j-zHyzsMRUrNWkDrgGalCc2-QmlxMYryb67P3m2VV8,33813
|
|
1612
1632
|
mteb/tasks/__init__.py,sha256=izAxU0ip1F_YUwx0dFCuN35BaktdmePh6vlDiHC0kLo,503
|
|
1613
1633
|
mteb/tasks/aggregated_tasks/__init__.py,sha256=Ufgbh1AirxCQkojO3AUhUFWM8zQG10cfdVTkj_PeyLI,104
|
|
1614
1634
|
mteb/tasks/aggregated_tasks/eng/__init__.py,sha256=HgaSyAX8Is5CGE006RgJkLQQVxrx2FmMnm6NHQBDi-4,358
|
|
1615
|
-
mteb/tasks/aggregated_tasks/eng/cqadupstack_retrieval.py,sha256=
|
|
1616
|
-
mteb/tasks/aggregated_tasks/eng/sts17_multilingual_visual_sts_eng.py,sha256=
|
|
1617
|
-
mteb/tasks/aggregated_tasks/eng/sts_benchmark_multilingual_visual_sts_eng.py,sha256=
|
|
1635
|
+
mteb/tasks/aggregated_tasks/eng/cqadupstack_retrieval.py,sha256=bKbx-L5v1Id7yW6idXU4XIYHfpohDb-GpPOnV4wvxvY,2149
|
|
1636
|
+
mteb/tasks/aggregated_tasks/eng/sts17_multilingual_visual_sts_eng.py,sha256=jptzp8rw7uStr7I3Puy7Eo3o3VyP5vWx55VDUFOn9RM,1435
|
|
1637
|
+
mteb/tasks/aggregated_tasks/eng/sts_benchmark_multilingual_visual_sts_eng.py,sha256=UX7pFnPFlUdBIeAwPeR_whhYuLxJIPtXckGpm5XonjY,1365
|
|
1618
1638
|
mteb/tasks/aggregated_tasks/fas/__init__.py,sha256=3-JWNHm4I74-yDmYLe4f5EH29UdugfkqtQ_hzAuIy_o,233
|
|
1619
|
-
mteb/tasks/aggregated_tasks/fas/cqadupstack_retrieval_fa.py,sha256=
|
|
1620
|
-
mteb/tasks/aggregated_tasks/fas/syn_per_chatbot_conv_sa_classification.py,sha256=
|
|
1639
|
+
mteb/tasks/aggregated_tasks/fas/cqadupstack_retrieval_fa.py,sha256=CbXeKWuGwP2VacjuxiF8ZxPQbNkk1crbwonp9fhJVQc,1522
|
|
1640
|
+
mteb/tasks/aggregated_tasks/fas/syn_per_chatbot_conv_sa_classification.py,sha256=Vp3H5gMPUX_wRYtrrR1sRyl7pnDoBeeA73RFCD8CQfE,1184
|
|
1621
1641
|
mteb/tasks/aggregated_tasks/multilingual/__init__.py,sha256=RzvN2ObH9EcnpadOjCUPI_gP6fKT2h_2cqL7bA0WW6o,302
|
|
1622
|
-
mteb/tasks/aggregated_tasks/multilingual/sts17_multilingual_vision_sts.py,sha256=
|
|
1623
|
-
mteb/tasks/aggregated_tasks/multilingual/sts_benchmark_multilingual_visual_sts.py,sha256=
|
|
1642
|
+
mteb/tasks/aggregated_tasks/multilingual/sts17_multilingual_vision_sts.py,sha256=KTQBqqhLKpyU6DKEmz_J4Ujd-T_Lku5XLfDSLPHafYs,2109
|
|
1643
|
+
mteb/tasks/aggregated_tasks/multilingual/sts_benchmark_multilingual_visual_sts.py,sha256=getf8b12jzIWPqZofZXyh-uvc3cHoLsiKOuoQP0G22g,1953
|
|
1624
1644
|
mteb/tasks/aggregated_tasks/nld/__init__.py,sha256=j1gIyN-tjD75JBS1O3FuMQIGmVUqvMQ-CqJpzgNQjTw,106
|
|
1625
|
-
mteb/tasks/aggregated_tasks/nld/cqadupstack_nl_retrieval.py,sha256=
|
|
1645
|
+
mteb/tasks/aggregated_tasks/nld/cqadupstack_nl_retrieval.py,sha256=LlRuibdTCuAgfpsnSuErseykFSRzc4SQWwLq6EWUWcc,2438
|
|
1626
1646
|
mteb/tasks/aggregated_tasks/pol/__init__.py,sha256=lXhz3unVuuCtnvE12Pnqx9RDTkfmf2ABMQJVoUGYJcQ,106
|
|
1627
|
-
mteb/tasks/aggregated_tasks/pol/cqadupstack_retrieval_pl.py,sha256=
|
|
1647
|
+
mteb/tasks/aggregated_tasks/pol/cqadupstack_retrieval_pl.py,sha256=dApT6xmmA3JlHLT9ckt1mgUO8ojzPACd3hHQ0lABh74,1872
|
|
1628
1648
|
mteb/tasks/bitext_mining/__init__.py,sha256=OW5cpjK2vMUOkTkC0TUgTnaWxhNBe8kk8ARCpCrf5MA,142
|
|
1629
1649
|
mteb/tasks/bitext_mining/dan/__init__.py,sha256=2ipLKsxlpKlakIZq5hFSYSZhY6Nd29hg9INMsT7Bd-k,95
|
|
1630
1650
|
mteb/tasks/bitext_mining/dan/bornholmsk_bitext_mining.py,sha256=VysbFfJbGh6X-GP4vZEBwF33n7D0V34Fr0CfdK0TvdM,1924
|
|
@@ -1993,9 +2013,9 @@ mteb/tasks/clustering/nld/open_tender_clustering_s2s.py,sha256=9DlFx_VQHFrRR5Gi6
|
|
|
1993
2013
|
mteb/tasks/clustering/nld/vabb_clustering_p2p.py,sha256=TDGBUwN6AAQ8U0S0Whp5OiU0_XAsNsonrCeqxNnYFCg,2191
|
|
1994
2014
|
mteb/tasks/clustering/nld/vabb_clustering_s2s.py,sha256=2UXW5pk95meD5FNHuMY4S1mhlaPl0NfrKDAV9N4_uCY,2193
|
|
1995
2015
|
mteb/tasks/clustering/nob/__init__.py,sha256=de-t3amIyZAo0iPjy33xVMFKCQlcDNmS4M8dgfWsr1U,503
|
|
1996
|
-
mteb/tasks/clustering/nob/snl_clustering.py,sha256=
|
|
2016
|
+
mteb/tasks/clustering/nob/snl_clustering.py,sha256=dT2LVhDeQQ_0dthcDt0x8kp81h4ZEXmOm_X0kcvH43U,3655
|
|
1997
2017
|
mteb/tasks/clustering/nob/snl_hierarchical_clustering.py,sha256=OfdGmodK0eHTQMLo22SMI4FxM47wUCJmYYL8OOPqrCg,3328
|
|
1998
|
-
mteb/tasks/clustering/nob/vg_clustering.py,sha256=
|
|
2018
|
+
mteb/tasks/clustering/nob/vg_clustering.py,sha256=5QlYxOR2Mx6vQMIq52NZ1AEFcN7QOGMA4iSD1w2Q0o0,3676
|
|
1999
2019
|
mteb/tasks/clustering/nob/vg_hierarchical_clustering.py,sha256=lVPCrnei7S8EfLav38F3rv80WPCffBOcju5w8pCjioI,3893
|
|
2000
2020
|
mteb/tasks/clustering/pol/__init__.py,sha256=na-Vwcu9J6P-05_40WLSI0DvhP2hdSRzDRT4A38gbvY,370
|
|
2001
2021
|
mteb/tasks/clustering/pol/polish_clustering.py,sha256=RcFVSe3aDdtzHpijVXh2aKcTMNChntXw3Knu_HAhyQk,11206
|
|
@@ -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=
|
|
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=
|
|
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
|
|
@@ -2290,7 +2311,7 @@ mteb/tasks/retrieval/eng/lemb_passkey_retrieval.py,sha256=t6-AdiXiOpgLKacVILKu0L
|
|
|
2290
2311
|
mteb/tasks/retrieval/eng/lemb_summ_screen_fd_retrieval.py,sha256=jO38l3-dkN22IX4YZUj57uN7tm6RfwSmvm-uIlglFcM,2608
|
|
2291
2312
|
mteb/tasks/retrieval/eng/lemb_wikim_qa_retrieval.py,sha256=0NpKvntafhBi0WMFcNoXl-J_BJHZYQZLsFNEaxztzVg,2292
|
|
2292
2313
|
mteb/tasks/retrieval/eng/lembqm_sum_retrieval.py,sha256=ai0cI88ns7maPIvVhA3pHJ-kwIG50DOv2-ET3X2cxMU,2860
|
|
2293
|
-
mteb/tasks/retrieval/eng/limit_retrieval.py,sha256=
|
|
2314
|
+
mteb/tasks/retrieval/eng/limit_retrieval.py,sha256=0asw3V7oBfVTinfhOHx-bzvN8G1wfO1ec0gAIBCT3pI,2586
|
|
2294
2315
|
mteb/tasks/retrieval/eng/lit_search_retrieval.py,sha256=CpL-LNff6QHpseLML4u9_csPNff4QhErRMjYN-42uCM,2934
|
|
2295
2316
|
mteb/tasks/retrieval/eng/llava_it2t_retrieval.py,sha256=j2W4nh5EPcbvilYqgyjJ1tfHgxLsKGG5wisSsiAVK3A,1780
|
|
2296
2317
|
mteb/tasks/retrieval/eng/lotte_retrieval.py,sha256=l5akqCc54mS1fmmhBWie-2EDpuCc0sQZRCtm2c3x3YA,2325
|
|
@@ -2415,7 +2436,7 @@ mteb/tasks/retrieval/multilingual/multi_long_doc_retrieval.py,sha256=xF4GjBmJVgw
|
|
|
2415
2436
|
mteb/tasks/retrieval/multilingual/neu_clir2022_retrieval.py,sha256=bkGMvMxG2toYL98kv85BvVpSZ-rVeWvB5FFIzXhdPO4,2749
|
|
2416
2437
|
mteb/tasks/retrieval/multilingual/neu_clir2023_retrieval.py,sha256=0cALhuU3ZU5c_y7tDIyiMc7Onv-qC7YwfnimZVb8-rg,2793
|
|
2417
2438
|
mteb/tasks/retrieval/multilingual/public_health_qa_retrieval.py,sha256=LJGpx4RkSJPXldN0SlMA6PbG1x8R2l-Hupc9q1xfleg,3667
|
|
2418
|
-
mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py,sha256=
|
|
2439
|
+
mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py,sha256=5iMAlfjLSov0WHMcwoi_8mianknPCCPVPAI9zl9NBGk,6843
|
|
2419
2440
|
mteb/tasks/retrieval/multilingual/statcan_dialogue_dataset_retrieval.py,sha256=iFUQUlO_ogBdQBVYBQW3o-AJDQ792yg1pJtRxA5I3Qo,3796
|
|
2420
2441
|
mteb/tasks/retrieval/multilingual/vdr_multilingual_retrieval.py,sha256=UduWKefwP7bPYxiDlztPEvSWXmTdw0xElglMbPY6XhA,4449
|
|
2421
2442
|
mteb/tasks/retrieval/multilingual/vidore2_bench_retrieval.py,sha256=vOfiruHywYkP8pccdAuGLyYyFTw1zK0qcXDnUFA8Z5A,9091
|
|
@@ -2618,14 +2639,14 @@ mteb/tasks/zeroshot_classification/eng/sun397.py,sha256=Nls7tXM2Svu008MmAUjt-o_N
|
|
|
2618
2639
|
mteb/tasks/zeroshot_classification/eng/ucf101.py,sha256=kwNRYks-_Oe4VE3GyoHIvN-2OJ6zhkwFr76WDNL9ymU,1884
|
|
2619
2640
|
mteb/tasks/zeroshot_classification/eng/templates/__init__.py,sha256=da1PTClDMl-IBkrSvq6JC1lnS-K_BASzCvxVhNxN5Ls,13
|
|
2620
2641
|
mteb/types/__init__.py,sha256=O26vXPolPReX7iVUBgUsyCkCo4w8KeLs7uueQDWp3fc,1142
|
|
2621
|
-
mteb/types/_encoder_io.py,sha256=
|
|
2642
|
+
mteb/types/_encoder_io.py,sha256=jfwzUBmYNOZvYepQcW3KJeiJ7vmA-JTHUCyNAtJBXK0,5851
|
|
2622
2643
|
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
|
-
mteb/types/statistics.py,sha256=
|
|
2626
|
-
mteb-2.7.
|
|
2627
|
-
mteb-2.7.
|
|
2628
|
-
mteb-2.7.
|
|
2629
|
-
mteb-2.7.
|
|
2630
|
-
mteb-2.7.
|
|
2631
|
-
mteb-2.7.
|
|
2646
|
+
mteb/types/statistics.py,sha256=gElgSShKBXpfcqaZHhU_d2UHln1CyzUj8FN8KFun_UA,4087
|
|
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,,
|