mteb 2.5.2__py3-none-any.whl → 2.7.2__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/__init__.py +2 -0
- mteb/_create_dataloaders.py +17 -18
- mteb/_evaluators/any_sts_evaluator.py +3 -3
- mteb/_evaluators/clustering_evaluator.py +2 -2
- mteb/_evaluators/evaluator.py +4 -2
- mteb/_evaluators/image/imagetext_pairclassification_evaluator.py +10 -8
- mteb/_evaluators/pair_classification_evaluator.py +5 -3
- mteb/_evaluators/retrieval_evaluator.py +2 -2
- mteb/_evaluators/retrieval_metrics.py +18 -17
- mteb/_evaluators/sklearn_evaluator.py +11 -10
- mteb/_evaluators/text/bitext_mining_evaluator.py +27 -18
- mteb/_evaluators/text/summarization_evaluator.py +23 -18
- mteb/_evaluators/zeroshot_classification_evaluator.py +5 -3
- mteb/abstasks/_data_filter/filters.py +1 -1
- mteb/abstasks/_data_filter/task_pipelines.py +3 -0
- mteb/abstasks/_statistics_calculation.py +18 -10
- mteb/abstasks/_stratification.py +18 -18
- mteb/abstasks/abstask.py +35 -28
- mteb/abstasks/aggregate_task_metadata.py +1 -9
- mteb/abstasks/aggregated_task.py +10 -29
- mteb/abstasks/classification.py +15 -10
- mteb/abstasks/clustering.py +19 -15
- mteb/abstasks/clustering_legacy.py +10 -10
- mteb/abstasks/image/image_text_pair_classification.py +7 -4
- mteb/abstasks/multilabel_classification.py +23 -19
- mteb/abstasks/pair_classification.py +20 -11
- mteb/abstasks/regression.py +4 -4
- mteb/abstasks/retrieval.py +28 -24
- mteb/abstasks/retrieval_dataset_loaders.py +2 -2
- mteb/abstasks/sts.py +8 -5
- mteb/abstasks/task_metadata.py +31 -33
- mteb/abstasks/text/bitext_mining.py +39 -28
- mteb/abstasks/text/reranking.py +8 -6
- mteb/abstasks/text/summarization.py +10 -5
- mteb/abstasks/zeroshot_classification.py +8 -4
- mteb/benchmarks/benchmark.py +4 -2
- mteb/benchmarks/benchmarks/__init__.py +4 -0
- mteb/benchmarks/benchmarks/benchmarks.py +112 -11
- mteb/benchmarks/get_benchmark.py +14 -55
- mteb/cache.py +182 -29
- mteb/cli/_display_tasks.py +2 -2
- mteb/cli/build_cli.py +110 -14
- mteb/cli/generate_model_card.py +43 -23
- mteb/deprecated_evaluator.py +63 -49
- mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2CybersecurityRetrieval.json +32 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2EconomicRetrieval.json +32 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2EnergyRetrieval.json +32 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2HrRetrieval.json +32 -0
- mteb/descriptive_stats/Retrieval/ChemRxivRetrieval.json +30 -0
- mteb/descriptive_stats/Retrieval/EuroPIRQRetrieval.json +116 -0
- mteb/descriptive_stats/Retrieval/NanoClimateFEVER-VN.json +30 -0
- mteb/descriptive_stats/Retrieval/NanoDBPedia-VN.json +30 -0
- mteb/descriptive_stats/Retrieval/NanoFEVER-VN.json +30 -0
- mteb/descriptive_stats/Retrieval/NanoHotpotQA-VN.json +30 -0
- mteb/descriptive_stats/Retrieval/NanoMSMARCO-VN.json +30 -0
- mteb/descriptive_stats/Retrieval/NanoNQ-VN.json +30 -0
- mteb/descriptive_stats/Retrieval/TVPLRetrieval.json +30 -0
- mteb/evaluate.py +44 -33
- mteb/filter_tasks.py +25 -26
- mteb/get_tasks.py +29 -30
- mteb/languages/language_scripts.py +5 -3
- mteb/leaderboard/app.py +162 -34
- mteb/load_results.py +12 -12
- mteb/models/abs_encoder.py +10 -6
- mteb/models/cache_wrappers/cache_backend_protocol.py +3 -5
- mteb/models/cache_wrappers/cache_backends/_hash_utils.py +5 -4
- mteb/models/cache_wrappers/cache_backends/faiss_cache.py +6 -2
- mteb/models/cache_wrappers/cache_backends/numpy_cache.py +43 -25
- mteb/models/cache_wrappers/cache_wrapper.py +2 -2
- mteb/models/get_model_meta.py +21 -3
- mteb/models/instruct_wrapper.py +28 -8
- mteb/models/model_implementations/align_models.py +1 -1
- mteb/models/model_implementations/andersborges.py +4 -4
- mteb/models/model_implementations/ara_models.py +1 -1
- mteb/models/model_implementations/arctic_models.py +8 -8
- mteb/models/model_implementations/b1ade_models.py +1 -1
- mteb/models/model_implementations/bge_models.py +45 -21
- mteb/models/model_implementations/bica_model.py +3 -3
- mteb/models/model_implementations/blip2_models.py +2 -2
- mteb/models/model_implementations/blip_models.py +16 -16
- mteb/models/model_implementations/bm25.py +4 -4
- mteb/models/model_implementations/bmretriever_models.py +6 -4
- mteb/models/model_implementations/cadet_models.py +1 -1
- mteb/models/model_implementations/cde_models.py +11 -4
- mteb/models/model_implementations/clip_models.py +6 -6
- mteb/models/model_implementations/clips_models.py +3 -3
- mteb/models/model_implementations/codefuse_models.py +5 -5
- mteb/models/model_implementations/codesage_models.py +3 -3
- mteb/models/model_implementations/cohere_models.py +5 -5
- mteb/models/model_implementations/cohere_v.py +2 -2
- mteb/models/model_implementations/colpali_models.py +3 -3
- mteb/models/model_implementations/colqwen_models.py +8 -8
- mteb/models/model_implementations/colsmol_models.py +2 -2
- mteb/models/model_implementations/conan_models.py +1 -1
- mteb/models/model_implementations/dino_models.py +42 -42
- mteb/models/model_implementations/e5_instruct.py +23 -4
- mteb/models/model_implementations/e5_models.py +9 -9
- mteb/models/model_implementations/e5_v.py +6 -6
- mteb/models/model_implementations/eagerworks_models.py +1 -1
- mteb/models/model_implementations/emillykkejensen_models.py +6 -6
- mteb/models/model_implementations/en_code_retriever.py +1 -1
- mteb/models/model_implementations/euler_models.py +2 -2
- mteb/models/model_implementations/fa_models.py +9 -9
- mteb/models/model_implementations/facebookai.py +14 -2
- mteb/models/model_implementations/geogpt_models.py +1 -1
- mteb/models/model_implementations/gme_v_models.py +6 -5
- mteb/models/model_implementations/google_models.py +1 -1
- mteb/models/model_implementations/granite_vision_embedding_models.py +1 -1
- mteb/models/model_implementations/gritlm_models.py +2 -2
- mteb/models/model_implementations/gte_models.py +25 -13
- mteb/models/model_implementations/hinvec_models.py +1 -1
- mteb/models/model_implementations/ibm_granite_models.py +30 -6
- mteb/models/model_implementations/inf_models.py +2 -2
- mteb/models/model_implementations/jasper_models.py +2 -2
- mteb/models/model_implementations/jina_clip.py +48 -10
- mteb/models/model_implementations/jina_models.py +18 -11
- mteb/models/model_implementations/kblab.py +12 -6
- mteb/models/model_implementations/kennethenevoldsen_models.py +4 -4
- mteb/models/model_implementations/kfst.py +1 -1
- mteb/models/model_implementations/kowshik24_models.py +1 -1
- mteb/models/model_implementations/lgai_embedding_models.py +1 -1
- mteb/models/model_implementations/linq_models.py +1 -1
- mteb/models/model_implementations/listconranker.py +1 -1
- mteb/models/model_implementations/llm2clip_models.py +6 -6
- mteb/models/model_implementations/llm2vec_models.py +8 -8
- mteb/models/model_implementations/mcinext_models.py +4 -1
- mteb/models/model_implementations/mdbr_models.py +17 -3
- mteb/models/model_implementations/misc_models.py +68 -68
- mteb/models/model_implementations/mixedbread_ai_models.py +332 -0
- mteb/models/model_implementations/mme5_models.py +1 -1
- mteb/models/model_implementations/moco_models.py +4 -4
- mteb/models/model_implementations/mod_models.py +1 -1
- mteb/models/model_implementations/model2vec_models.py +14 -14
- mteb/models/model_implementations/moka_models.py +1 -1
- mteb/models/model_implementations/nbailab.py +3 -3
- mteb/models/model_implementations/no_instruct_sentence_models.py +2 -2
- mteb/models/model_implementations/nomic_models.py +30 -15
- mteb/models/model_implementations/nomic_models_vision.py +1 -1
- mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py +15 -9
- mteb/models/model_implementations/nvidia_models.py +151 -19
- mteb/models/model_implementations/octen_models.py +61 -2
- mteb/models/model_implementations/openclip_models.py +13 -13
- mteb/models/model_implementations/opensearch_neural_sparse_models.py +5 -5
- mteb/models/model_implementations/ops_moa_models.py +1 -1
- mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py +1 -1
- mteb/models/model_implementations/pawan_models.py +1 -1
- mteb/models/model_implementations/piccolo_models.py +1 -1
- mteb/models/model_implementations/pixie_models.py +56 -0
- mteb/models/model_implementations/promptriever_models.py +4 -4
- mteb/models/model_implementations/pylate_models.py +10 -9
- mteb/models/model_implementations/qodo_models.py +2 -2
- mteb/models/model_implementations/qtack_models.py +1 -1
- mteb/models/model_implementations/qwen3_models.py +3 -3
- mteb/models/model_implementations/qzhou_models.py +2 -2
- mteb/models/model_implementations/random_baseline.py +3 -3
- mteb/models/model_implementations/rasgaard_models.py +2 -2
- mteb/models/model_implementations/reasonir_model.py +1 -1
- mteb/models/model_implementations/repllama_models.py +3 -3
- mteb/models/model_implementations/rerankers_custom.py +12 -6
- mteb/models/model_implementations/rerankers_monot5_based.py +17 -17
- mteb/models/model_implementations/richinfoai_models.py +1 -1
- mteb/models/model_implementations/ru_sentence_models.py +20 -20
- mteb/models/model_implementations/ruri_models.py +10 -10
- mteb/models/model_implementations/salesforce_models.py +3 -3
- mteb/models/model_implementations/samilpwc_models.py +1 -1
- mteb/models/model_implementations/sarashina_embedding_models.py +2 -2
- mteb/models/model_implementations/searchmap_models.py +1 -1
- mteb/models/model_implementations/seed_1_6_embedding_models_1215.py +113 -146
- mteb/models/model_implementations/sentence_transformers_models.py +124 -22
- mteb/models/model_implementations/shuu_model.py +1 -1
- mteb/models/model_implementations/siglip_models.py +20 -20
- mteb/models/model_implementations/slm_models.py +416 -0
- mteb/models/model_implementations/spartan8806_atles_champion.py +1 -1
- mteb/models/model_implementations/stella_models.py +17 -4
- mteb/models/model_implementations/tarka_models.py +2 -2
- mteb/models/model_implementations/text2vec_models.py +9 -3
- mteb/models/model_implementations/ua_sentence_models.py +1 -1
- mteb/models/model_implementations/uae_models.py +7 -1
- mteb/models/model_implementations/vdr_models.py +1 -1
- mteb/models/model_implementations/vi_vn_models.py +6 -6
- mteb/models/model_implementations/vlm2vec_models.py +3 -3
- mteb/models/model_implementations/voyage_models.py +84 -0
- mteb/models/model_implementations/voyage_v.py +9 -7
- mteb/models/model_implementations/youtu_models.py +1 -1
- mteb/models/model_implementations/yuan_models.py +1 -1
- mteb/models/model_implementations/yuan_models_en.py +1 -1
- mteb/models/model_meta.py +80 -31
- mteb/models/models_protocols.py +22 -6
- mteb/models/search_encoder_index/search_indexes/faiss_search_index.py +9 -6
- mteb/models/search_wrappers.py +33 -18
- mteb/models/sentence_transformer_wrapper.py +50 -25
- mteb/models/vllm_wrapper.py +327 -0
- mteb/py.typed +0 -0
- mteb/results/benchmark_results.py +29 -21
- mteb/results/model_result.py +52 -22
- mteb/results/task_result.py +80 -58
- mteb/similarity_functions.py +11 -7
- mteb/tasks/classification/dan/dk_hate_classification.py +1 -1
- mteb/tasks/classification/est/estonian_valence.py +1 -1
- mteb/tasks/classification/kur/kurdish_sentiment_classification.py +2 -2
- mteb/tasks/classification/multilingual/scala_classification.py +1 -1
- mteb/tasks/clustering/eng/hume_wiki_cities_clustering.py +1 -1
- mteb/tasks/clustering/eng/wiki_cities_clustering.py +1 -1
- mteb/tasks/clustering/zho/cmteb_clustering.py +2 -2
- mteb/tasks/image_text_pair_classification/eng/sugar_crepe.py +1 -1
- mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py +1 -1
- mteb/tasks/retrieval/code/code_rag.py +12 -12
- mteb/tasks/retrieval/dan/dan_fever_retrieval.py +1 -1
- mteb/tasks/retrieval/dan/tv2_nordretrieval.py +2 -2
- mteb/tasks/retrieval/dan/twitter_hjerne_retrieval.py +2 -2
- mteb/tasks/retrieval/eng/__init__.py +2 -0
- mteb/tasks/retrieval/eng/chemrxiv.py +33 -0
- mteb/tasks/retrieval/eng/cub200_i2i_retrieval.py +1 -1
- mteb/tasks/retrieval/kor/__init__.py +15 -1
- mteb/tasks/retrieval/kor/kovidore2_bench_retrieval.py +142 -0
- mteb/tasks/retrieval/multilingual/__init__.py +2 -0
- mteb/tasks/retrieval/multilingual/euro_pirq_retrieval.py +43 -0
- mteb/tasks/retrieval/multilingual/vidore3_bench_retrieval.py +90 -100
- mteb/tasks/retrieval/nob/norquad.py +2 -2
- mteb/tasks/retrieval/nob/snl_retrieval.py +2 -2
- mteb/tasks/retrieval/tur/tur_hist_quad.py +1 -1
- mteb/tasks/retrieval/vie/__init__.py +14 -6
- mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py +39 -0
- mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py +39 -0
- mteb/tasks/retrieval/vie/fevervn_retrieval.py +39 -0
- mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py +39 -0
- mteb/tasks/retrieval/vie/msmarcovn_retrieval.py +48 -0
- mteb/tasks/retrieval/vie/nqvn_retrieval.py +39 -0
- mteb/tasks/retrieval/vie/tvpl_retrieval.py +42 -0
- mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py +15 -1
- mteb/types/__init__.py +2 -0
- mteb/types/_encoder_io.py +12 -0
- mteb/types/_result.py +2 -1
- mteb/types/statistics.py +9 -3
- {mteb-2.5.2.dist-info → mteb-2.7.2.dist-info}/METADATA +15 -4
- {mteb-2.5.2.dist-info → mteb-2.7.2.dist-info}/RECORD +240 -219
- mteb/models/model_implementations/mxbai_models.py +0 -111
- {mteb-2.5.2.dist-info → mteb-2.7.2.dist-info}/WHEEL +0 -0
- {mteb-2.5.2.dist-info → mteb-2.7.2.dist-info}/entry_points.txt +0 -0
- {mteb-2.5.2.dist-info → mteb-2.7.2.dist-info}/licenses/LICENSE +0 -0
- {mteb-2.5.2.dist-info → mteb-2.7.2.dist-info}/top_level.txt +0 -0
|
@@ -1,71 +1,72 @@
|
|
|
1
|
-
mteb/__init__.py,sha256=
|
|
1
|
+
mteb/__init__.py,sha256=AFdvWGkAnKZqzKxqp-xvuBhGnpz0QM1cuOtaztsDzjI,1430
|
|
2
2
|
mteb/__main__.py,sha256=KKWed4HW-OpfpJhCuKDNDPuAAIoppQY1g2gRuCdAmlw,34
|
|
3
|
-
mteb/_create_dataloaders.py,sha256=
|
|
3
|
+
mteb/_create_dataloaders.py,sha256=WgQmfAgz1fuPvCvk20Oo1HSt2g-KCGITqi8yF_5MGGg,14324
|
|
4
4
|
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=
|
|
11
|
-
mteb/filter_tasks.py,sha256=
|
|
12
|
-
mteb/get_tasks.py,sha256=
|
|
13
|
-
mteb/load_results.py,sha256=
|
|
14
|
-
mteb/
|
|
8
|
+
mteb/cache.py,sha256=FheoSVGHDB88ohCKdGm3uJ0eq4tQjFZHyegAlUvymn8,27574
|
|
9
|
+
mteb/deprecated_evaluator.py,sha256=ASPodCDsqofAPUEGBikZA1ZCIDiSnxyL4xuic63OkYQ,27661
|
|
10
|
+
mteb/evaluate.py,sha256=RFHQ3NEI0qPD3EmMYrxH9RtDTjPJ3R4ZLX4ZmT14IO4,19247
|
|
11
|
+
mteb/filter_tasks.py,sha256=D9g2o79aQiA5va7u_QKtMlZNDUmYwZGqCDpaKhBimWQ,7335
|
|
12
|
+
mteb/get_tasks.py,sha256=UoxxsGVgeCm_qonCihl7EOFqWN_9BOCW2IP7GMN7ICw,14319
|
|
13
|
+
mteb/load_results.py,sha256=9SovAzy7TQn-hibClDfH5B-YDMVdi4tZmDgGYfiL2Hc,6431
|
|
14
|
+
mteb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
mteb/similarity_functions.py,sha256=7mv2dFpMiWNDnGCjCsRQOT77RTtsIsoKUma_FsXG5z0,10790
|
|
15
16
|
mteb/_evaluators/__init__.py,sha256=Ag1_RWpxBGMpujzd3FZjI40gY_KQKIpY31tJPuk-hFg,1013
|
|
16
17
|
mteb/_evaluators/_download.py,sha256=jntlcURbJxcxUjTmn2D9Tu6ZnWgDc9t5bY8p9CZCqv4,586
|
|
17
|
-
mteb/_evaluators/any_sts_evaluator.py,sha256=
|
|
18
|
+
mteb/_evaluators/any_sts_evaluator.py,sha256=Xdl78CJo7yfeXjGhUBrrilzq_Uz3yzaakAugVlaqV5E,3769
|
|
18
19
|
mteb/_evaluators/classification_metrics.py,sha256=TI-cMPWrIpMqpsNhhwSBY4bZUu2yM469fbcu44zolW0,1926
|
|
19
|
-
mteb/_evaluators/clustering_evaluator.py,sha256=
|
|
20
|
-
mteb/_evaluators/evaluator.py,sha256=
|
|
21
|
-
mteb/_evaluators/pair_classification_evaluator.py,sha256=
|
|
22
|
-
mteb/_evaluators/retrieval_evaluator.py,sha256=
|
|
23
|
-
mteb/_evaluators/retrieval_metrics.py,sha256=
|
|
24
|
-
mteb/_evaluators/sklearn_evaluator.py,sha256=
|
|
25
|
-
mteb/_evaluators/zeroshot_classification_evaluator.py,sha256=
|
|
20
|
+
mteb/_evaluators/clustering_evaluator.py,sha256=YfjwpZL03Tiu0jfd6HBSavrOs_WALwIpoPC25JGkVvE,2063
|
|
21
|
+
mteb/_evaluators/evaluator.py,sha256=CZIFM84KJcbygBqHrd6Reg0FA1ZT5dfVjFTuBYgGyMw,906
|
|
22
|
+
mteb/_evaluators/pair_classification_evaluator.py,sha256=kgxvnzsZPFF7c6GNRWtyAP3AJ3v_heRQUYwmYvNATzI,6440
|
|
23
|
+
mteb/_evaluators/retrieval_evaluator.py,sha256=UVrGtjOQdbDD2ZeH1oVm9ouIlU7Uup2a09ylzm0-QaM,3024
|
|
24
|
+
mteb/_evaluators/retrieval_metrics.py,sha256=fwsPemssWqQRvo0t4PZTGrrv5KXK8N6U35kOFSkRbEU,23755
|
|
25
|
+
mteb/_evaluators/sklearn_evaluator.py,sha256=lipgxkGXWeKGD2jhaNL9WQqLBS1_2L_WZpUobZR7iBI,3838
|
|
26
|
+
mteb/_evaluators/zeroshot_classification_evaluator.py,sha256=Y5ZFUsBAWXMpKnZ6Iw1K0lm0_L4chLMxC4LAdZCBbPs,2296
|
|
26
27
|
mteb/_evaluators/image/__init__.py,sha256=CsQd7OMkeV2Phun7paPWjayZ5qRnvj8H0TYBFeqMxag,148
|
|
27
|
-
mteb/_evaluators/image/imagetext_pairclassification_evaluator.py,sha256=
|
|
28
|
+
mteb/_evaluators/image/imagetext_pairclassification_evaluator.py,sha256=6_xhsLSq8ZxGkE9Z_rBXR_FvrKcZ_DEvAaJsQVlLAGo,4962
|
|
28
29
|
mteb/_evaluators/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
mteb/_evaluators/text/bitext_mining_evaluator.py,sha256=
|
|
30
|
-
mteb/_evaluators/text/summarization_evaluator.py,sha256=
|
|
30
|
+
mteb/_evaluators/text/bitext_mining_evaluator.py,sha256=RhWD_Q-xrKfTPoSzAVlhv31ays-jogYqO7ZtKUCiEgo,6570
|
|
31
|
+
mteb/_evaluators/text/summarization_evaluator.py,sha256=USjeo4Z1yhsSNkFq2c-I9okJSAHYyDDkqF-vRyBb828,10756
|
|
31
32
|
mteb/abstasks/__init__.py,sha256=1iAwpYTWX7U-goak2KMmacPFCzxPchLQAmZ_uI0t-p0,1130
|
|
32
|
-
mteb/abstasks/_statistics_calculation.py,sha256=
|
|
33
|
-
mteb/abstasks/_stratification.py,sha256=
|
|
34
|
-
mteb/abstasks/abstask.py,sha256=
|
|
35
|
-
mteb/abstasks/aggregate_task_metadata.py,sha256=
|
|
36
|
-
mteb/abstasks/aggregated_task.py,sha256
|
|
37
|
-
mteb/abstasks/classification.py,sha256=
|
|
38
|
-
mteb/abstasks/clustering.py,sha256=
|
|
39
|
-
mteb/abstasks/clustering_legacy.py,sha256=
|
|
33
|
+
mteb/abstasks/_statistics_calculation.py,sha256=FI2kAK1fLf1HreoBNYZ1YKKjD26xI0UUhfmoC7x6Qss,5974
|
|
34
|
+
mteb/abstasks/_stratification.py,sha256=GnqYRtkFYsB-412EvMR2iMqIinFr98NCSmxHeCXctlw,14347
|
|
35
|
+
mteb/abstasks/abstask.py,sha256=NMm-BSKcDEwveE5qW4D8wRH0b7MsI_tgbhix21dIM6c,25579
|
|
36
|
+
mteb/abstasks/aggregate_task_metadata.py,sha256=nDkXU-_mxPdf_YK8d4P-fPGAzX3jBfwA19P7ZOgn0Fc,5646
|
|
37
|
+
mteb/abstasks/aggregated_task.py,sha256=-L0ke7A_jmOZYQRW1NmOaAVTUll2bGWRTjmCiH__1S0,6066
|
|
38
|
+
mteb/abstasks/classification.py,sha256=0pumzQSqCySo8EjNlUCu6xQgqfLFU7wugmH-0VCXX-4,13580
|
|
39
|
+
mteb/abstasks/clustering.py,sha256=xuad_3QHuqpxfZo250NBVAvxKC-jLBec37REcerG-BQ,14624
|
|
40
|
+
mteb/abstasks/clustering_legacy.py,sha256=XGGq-5kBMWOEpWt6LBLkeUNqHTSDw3GRRipfHW9ve8M,8865
|
|
40
41
|
mteb/abstasks/dataset_card_template.md,sha256=aD6l8qc3_jxwoIGJNYLzse-jpRa8hu92AxpnUtNgges,5122
|
|
41
|
-
mteb/abstasks/multilabel_classification.py,sha256=
|
|
42
|
-
mteb/abstasks/pair_classification.py,sha256
|
|
43
|
-
mteb/abstasks/regression.py,sha256=
|
|
44
|
-
mteb/abstasks/retrieval.py,sha256=
|
|
45
|
-
mteb/abstasks/retrieval_dataset_loaders.py,sha256=
|
|
46
|
-
mteb/abstasks/sts.py,sha256=
|
|
47
|
-
mteb/abstasks/task_metadata.py,sha256=
|
|
48
|
-
mteb/abstasks/zeroshot_classification.py,sha256=
|
|
42
|
+
mteb/abstasks/multilabel_classification.py,sha256=D_bdK3yyZFgaH1pg9PpO5LHQMVaJP3IkzvXCmYgmPjI,9540
|
|
43
|
+
mteb/abstasks/pair_classification.py,sha256=-T8q7JQRjHZ3ihLqnuR2yuuci9xljvUqCldsHGnGLGc,13767
|
|
44
|
+
mteb/abstasks/regression.py,sha256=sROjvfasLS89KRPUTsc1ONFsBTzfoqlpxLQfIkKBQXs,8763
|
|
45
|
+
mteb/abstasks/retrieval.py,sha256=keuf7GeYyM0ODPlVFGZIFBmBoSil0c1glmcu6C0YzhA,26921
|
|
46
|
+
mteb/abstasks/retrieval_dataset_loaders.py,sha256=Jcr2hHe5sqWc8eL3WDhR9J7bJokD7tyhz_z3eD14o0M,9403
|
|
47
|
+
mteb/abstasks/sts.py,sha256=b_19QvclU0_q0aEJdfvB3weUQ96bUS7uDuuRrjpz8Bc,9245
|
|
48
|
+
mteb/abstasks/task_metadata.py,sha256=7TM_ls5bzYA1dHFq3VQgeioiyLrvMQz4i3hmWIsnD4M,27029
|
|
49
|
+
mteb/abstasks/zeroshot_classification.py,sha256=O8jxoBgnrRx-BzOnr1aJVK3wIEBwkA4xuMxdVxlzJqI,6053
|
|
49
50
|
mteb/abstasks/_data_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
-
mteb/abstasks/_data_filter/filters.py,sha256=
|
|
51
|
-
mteb/abstasks/_data_filter/task_pipelines.py,sha256=
|
|
51
|
+
mteb/abstasks/_data_filter/filters.py,sha256=znU7pjA7GYbChxUVyPGgCIdp7OvFeawBvksXki5LMcg,4611
|
|
52
|
+
mteb/abstasks/_data_filter/task_pipelines.py,sha256=HUB2fXX5IsLJ9MchLoh3cEjiywkPEY1wFgKBlv1wz58,3158
|
|
52
53
|
mteb/abstasks/image/__init__.py,sha256=NgvMJnp1g2mUv27RL-TvzA7s1BOdMG-EB1CrZfdbWdg,136
|
|
53
|
-
mteb/abstasks/image/image_text_pair_classification.py,sha256=
|
|
54
|
+
mteb/abstasks/image/image_text_pair_classification.py,sha256=4RfPdAlb4ZlAE-9DiFQUvm7YpcQg9kTY7HRjRVenLmk,7935
|
|
54
55
|
mteb/abstasks/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
mteb/abstasks/text/bitext_mining.py,sha256=
|
|
56
|
-
mteb/abstasks/text/reranking.py,sha256=
|
|
57
|
-
mteb/abstasks/text/summarization.py,sha256=
|
|
56
|
+
mteb/abstasks/text/bitext_mining.py,sha256=0Ff7t1jMEonajHzB5CzZZoSMVkC5KTa0muoytcNzOjM,11152
|
|
57
|
+
mteb/abstasks/text/reranking.py,sha256=vD5YUwst--zJ01bU40Z7juqQyuv8jrareRTtoCwt8E4,7871
|
|
58
|
+
mteb/abstasks/text/summarization.py,sha256=qCUWfxaVAW0EYTFClUh9puBMGttyV6C7qKpCcHPAZN8,7148
|
|
58
59
|
mteb/benchmarks/__init__.py,sha256=MQEVeli-zLaJ7Xg0z7RhXQwsdmm7Ht_W2Ln0rZo1Szc,225
|
|
59
60
|
mteb/benchmarks/_create_table.py,sha256=b2RqGqi0ZonKbHecEcZiF4pkfE96smFRIzxOI82ETA8,22304
|
|
60
|
-
mteb/benchmarks/benchmark.py,sha256=
|
|
61
|
-
mteb/benchmarks/get_benchmark.py,sha256
|
|
62
|
-
mteb/benchmarks/benchmarks/__init__.py,sha256=
|
|
63
|
-
mteb/benchmarks/benchmarks/benchmarks.py,sha256=
|
|
61
|
+
mteb/benchmarks/benchmark.py,sha256=RheQOo0iQbu_ylN7oFLr2r-z_ahrMCTvKscVuwUx6yo,5694
|
|
62
|
+
mteb/benchmarks/get_benchmark.py,sha256=nzR6cu5yXu1kIJKhd4A2R62xp43Z62bluPbOpNXHMWQ,2545
|
|
63
|
+
mteb/benchmarks/benchmarks/__init__.py,sha256=767VzDgayFSB3KJ05o0gFdOeo2f1EarbEfnCsy_karw,2294
|
|
64
|
+
mteb/benchmarks/benchmarks/benchmarks.py,sha256=zAm1NTggaWb5Am6O30FUf-8zIbbF39eiuhSyLHzlpxQ,102370
|
|
64
65
|
mteb/benchmarks/benchmarks/rteb_benchmarks.py,sha256=QnCSrTTaBfcRlAQp2Nu81tgv1idMXqiM16Fp2zKJ5Ys,10607
|
|
65
66
|
mteb/cli/__init__.py,sha256=v-csUr3eUZElIvrGB6QGtaIdndDfNWEe9oZchsGsJpg,64
|
|
66
|
-
mteb/cli/_display_tasks.py,sha256=
|
|
67
|
-
mteb/cli/build_cli.py,sha256=
|
|
68
|
-
mteb/cli/generate_model_card.py,sha256=
|
|
67
|
+
mteb/cli/_display_tasks.py,sha256=pWKupzak8uxEIwJZbYpZpteeVprOgVT9Wr0HYeypitQ,2206
|
|
68
|
+
mteb/cli/build_cli.py,sha256=LkpAPwirASdfDzDdAbyRIAJ87tUAWZk7i75E8hN5iVA,15389
|
|
69
|
+
mteb/cli/generate_model_card.py,sha256=wX1ApQHCbox9z8QIiHSomcbTiCIHmsoUTnsxmAv7e-g,4945
|
|
69
70
|
mteb/descriptive_stats/BitextMining/BUCC.json,sha256=7zXoJaZacNdqMSG60jPZGIDJ1is_bxbVlcrVyImPRxw,3745
|
|
70
71
|
mteb/descriptive_stats/BitextMining/BUCC.v2.json,sha256=IRPOKaIaUD31okNe12nQV2E1JeYK_Fo25Tz7d-utATM,3716
|
|
71
72
|
mteb/descriptive_stats/BitextMining/BibleNLPBitextMining.json,sha256=BxzjiVoeXrSKaeBIVytLKMf2yx_6ksZ4GddPtTU8MWY,1248649
|
|
@@ -782,6 +783,10 @@ mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRTatQARetrieval.json,sh
|
|
|
782
783
|
mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRTweetStockSyntheticsRetrieval.json,sha256=13JnQILz--KA2j9xooDkf2hp_4bdAttKcM_co6m0VMo,14073
|
|
783
784
|
mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRWikimediaCommonsDocumentsRetrieval.json,sha256=caHYDGWGBmlOdL3HHT0djzOgj1hwfGfNMpgNptRRdVs,27289
|
|
784
785
|
mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRWikimediaCommonsMapsRetrieval.json,sha256=HIoVgPD7wSHz7Ro-HKXh_YpAJFCJb6WzUsziBP2a1fI,1089
|
|
786
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2CybersecurityRetrieval.json,sha256=stPxkKTyZNw3mVVnuZRrWLfSsxYYEnd8Ym2NvBppdXw,1088
|
|
787
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2EconomicRetrieval.json,sha256=bUkZyMf7f00Wz0KCwcezjp_KJcq5hEbop50dWcMa6T4,1088
|
|
788
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2EnergyRetrieval.json,sha256=iMt--FqlwQrj3skZ6MnPW9GHh5yH8wcuA5hfr7e4D3w,1088
|
|
789
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/KoVidore2HrRetrieval.json,sha256=nJJkkRNCo26iVXk0ZQCbHR5iii8zeyTrpthnzQ_MIRU,1091
|
|
785
790
|
mteb/descriptive_stats/Image/DocumentUnderstanding/MIRACLVisionRetrieval.json,sha256=LY6SQHcLESsRrRmfzt9h2sGHfxAdnQD1fhMG0KCQmaU,24510
|
|
786
791
|
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2BioMedicalLecturesRetrieval.json,sha256=L4xuWlJVfd8WDIRtj8gJoOWbBnbm3BigWrQC2nOojpc,6365
|
|
787
792
|
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2ESGReportsHLRetrieval.json,sha256=DWI0Au4nsfUCSNWkAhK_ffGfmcRdgIHc_JYekjFlXKg,1091
|
|
@@ -1077,6 +1082,7 @@ mteb/descriptive_stats/Retrieval/CUREv1.json,sha256=lfz-JMLuE5KlWqM08CUF80Nex1Oh
|
|
|
1077
1082
|
mteb/descriptive_stats/Retrieval/ChatDoctorRetrieval.json,sha256=VyyOcmc9GQ1zqXrvAv0pFR5OAK-pE0fQYGJOsl4Wvok,991
|
|
1078
1083
|
mteb/descriptive_stats/Retrieval/ChemHotpotQARetrieval.json,sha256=V2oT8C6Wh5VR6LeBlxrYH0VUJeEisjJELOZHpN2NP1o,2950
|
|
1079
1084
|
mteb/descriptive_stats/Retrieval/ChemNQRetrieval.json,sha256=6E8SefjKJdqVC1R0JvGOPrJdpogDT-1H9X19GryVfI8,985
|
|
1085
|
+
mteb/descriptive_stats/Retrieval/ChemRxivRetrieval.json,sha256=kIfyVNgoLtO1QpnKguIovQVUio8RVdc1bBY_kwogT-Q,986
|
|
1080
1086
|
mteb/descriptive_stats/Retrieval/ClimateFEVER-Fa.json,sha256=B1bp66dEPtY6p1zgHTK3fyBN_eFbmprpjhwUovVs4mI,1016
|
|
1081
1087
|
mteb/descriptive_stats/Retrieval/ClimateFEVER-NL.json,sha256=RaHI8NhlXCD28FGFd1-Pofm4lvD-_Kcszde2OgPxQk8,1017
|
|
1082
1088
|
mteb/descriptive_stats/Retrieval/ClimateFEVER-VN.json,sha256=D2xgItr4sBQiW3x8qr12firW0cXsOHygKZcDrtjhQ10,1016
|
|
@@ -1135,6 +1141,7 @@ mteb/descriptive_stats/Retrieval/EnglishFinance3Retrieval.json,sha256=IpCB7e6cwO
|
|
|
1135
1141
|
mteb/descriptive_stats/Retrieval/EnglishFinance4Retrieval.json,sha256=tdSyer5_q9rPZSD0LEjjXluCbWY_W_FewhOTQycU1U0,995
|
|
1136
1142
|
mteb/descriptive_stats/Retrieval/EnglishHealthcare1Retrieval.json,sha256=c_QduudRLaQVFARJxSc-YTFwHeNyhiu7IMv6JGlYC5c,1005
|
|
1137
1143
|
mteb/descriptive_stats/Retrieval/EstQA.json,sha256=qqmmX7ExWg4152S6yiUAyHzaLS0I-QUaOn9KVBZ3UZ8,981
|
|
1144
|
+
mteb/descriptive_stats/Retrieval/EuroPIRQRetrieval.json,sha256=FIpF0h7hhF7O4jn-rEa9a-_8tPD1MAY-klTkSX3_SI8,4586
|
|
1138
1145
|
mteb/descriptive_stats/Retrieval/FEVER-FaHardNegatives.json,sha256=KMDX6lg671e76rAboz30KgpvJAPxVSa6Thgefj1tgM4,987
|
|
1139
1146
|
mteb/descriptive_stats/Retrieval/FEVER-NL.json,sha256=K810hO-zNJWg3-i30oma72wsjORGu8lLLd4PN_w0VVs,1020
|
|
1140
1147
|
mteb/descriptive_stats/Retrieval/FEVER-VN.json,sha256=MnadQ0FGkXCFCDCI8eGwFYbouo8ta_1W_WlrqNx1clI,1018
|
|
@@ -1253,13 +1260,19 @@ mteb/descriptive_stats/Retrieval/NQ-VN.json,sha256=lz7Jb865vUqLOxZhd8StxxAmlyNg-
|
|
|
1253
1260
|
mteb/descriptive_stats/Retrieval/NQ.json,sha256=ylIFn-uHev-jkcua8SUmiDCRanM9uCkvRElU-kIGIJg,1014
|
|
1254
1261
|
mteb/descriptive_stats/Retrieval/NQHardNegatives.json,sha256=uPcQxhFQ9R7HGcEu8c9U4K1a5yYntN-mVK4anaRHtNo,986
|
|
1255
1262
|
mteb/descriptive_stats/Retrieval/NanoArguAnaRetrieval.json,sha256=Qv5QaFK0wXUec-9rv6K71oTgwdeOWxPpGEA-gu0-BkI,976
|
|
1263
|
+
mteb/descriptive_stats/Retrieval/NanoClimateFEVER-VN.json,sha256=8isr2BOTbbFU4_Ivwof3-MTdxngG2SMl_GYrD_vbg3Q,1010
|
|
1256
1264
|
mteb/descriptive_stats/Retrieval/NanoClimateFeverRetrieval.json,sha256=CdBXQhfQhtKG9_64I6AXDV4giSRppmLZDB3S8M28TOA,973
|
|
1265
|
+
mteb/descriptive_stats/Retrieval/NanoDBPedia-VN.json,sha256=xhNOXfcG-shzlptKuHBu9dkRXQAbmlknQqu8vhxKb6g,1012
|
|
1257
1266
|
mteb/descriptive_stats/Retrieval/NanoDBPediaRetrieval.json,sha256=eAZJSH9WPk6AVkonlshmX9RHqq-b6iLTPmzO3yJFesk,974
|
|
1267
|
+
mteb/descriptive_stats/Retrieval/NanoFEVER-VN.json,sha256=vb5rzqP3SHVo3R85xRaS-nXUfH0b6KQMAbFSmK6U--o,1010
|
|
1258
1268
|
mteb/descriptive_stats/Retrieval/NanoFEVERRetrieval.json,sha256=ac505XP13F5NRmCaQPwKdH-v9JTESsieu-K1IEa4j-I,971
|
|
1259
1269
|
mteb/descriptive_stats/Retrieval/NanoFiQA2018Retrieval.json,sha256=eB00Q60zKfJmIY6HO083-eWIKo1STY8z4WdzRrKMI4I,973
|
|
1270
|
+
mteb/descriptive_stats/Retrieval/NanoHotpotQA-VN.json,sha256=JVJUfPow4rwxuUuMNJ_ygusaYDm1s7tBJX5IzUSfXLQ,998
|
|
1260
1271
|
mteb/descriptive_stats/Retrieval/NanoHotpotQARetrieval.json,sha256=mAgjR7ekGKqk0QtiZxK-iuPWJIFWi9yvAO6j9liz-iQ,972
|
|
1272
|
+
mteb/descriptive_stats/Retrieval/NanoMSMARCO-VN.json,sha256=InXDVB08Q11Pb9IU2H2s7rZT_DXnbdpcs2duj66EdHI,1008
|
|
1261
1273
|
mteb/descriptive_stats/Retrieval/NanoMSMARCORetrieval.json,sha256=_2ap0Bglk-hVK2rYJy3E4ECVm6Kf3yqhvWYQ99ZXruM,970
|
|
1262
1274
|
mteb/descriptive_stats/Retrieval/NanoNFCorpusRetrieval.json,sha256=BjRdljofdnrJqn8BQdRpoxoanU5-XdeSn48085N2o4Q,977
|
|
1275
|
+
mteb/descriptive_stats/Retrieval/NanoNQ-VN.json,sha256=l_49qFdL8DtxaZ9i9lX5dJcxG1KnjvaOO-eyuVWsUAM,1010
|
|
1263
1276
|
mteb/descriptive_stats/Retrieval/NanoNQRetrieval.json,sha256=q9TBcEqGV8fmoK4_32a-yDLhGN6FAj049XuN95Hhiiw,969
|
|
1264
1277
|
mteb/descriptive_stats/Retrieval/NanoQuoraRetrieval.json,sha256=sG9ZgROl8kqDk3n2Rmb7zMgUmu0S8LqILZvjdevf-rQ,967
|
|
1265
1278
|
mteb/descriptive_stats/Retrieval/NanoSCIDOCSRetrieval.json,sha256=J0a84pa1TupKlHC5Oi9zqhOkmKz2TqlcxPPXt58zuBU,973
|
|
@@ -1345,6 +1358,7 @@ mteb/descriptive_stats/Retrieval/TRECCOVID.json,sha256=VMICXZ2lA7GfiUyudOxYGRnMm
|
|
|
1345
1358
|
mteb/descriptive_stats/Retrieval/TRECDL2019.json,sha256=6BOe9qATrKaRz8_cCMbqwXiu-ZiZq--Cm37uwTqSvJs,1013
|
|
1346
1359
|
mteb/descriptive_stats/Retrieval/TRECDL2020.json,sha256=0WFbaPL2dyp5FZ1Wf0yAOVhndUfxP11sep562RHMplA,1014
|
|
1347
1360
|
mteb/descriptive_stats/Retrieval/TV2Nordretrieval.json,sha256=_oDN_OfptM5ak-d4OXA-RU0hrtjvfg18jhir8CckxZ0,985
|
|
1361
|
+
mteb/descriptive_stats/Retrieval/TVPLRetrieval.json,sha256=m-t90SylbkuUUyu-MprOpB27h8xkoqjA2ebhvq5Vl98,1007
|
|
1348
1362
|
mteb/descriptive_stats/Retrieval/TempReasonL1.json,sha256=-MpwGucuNT0aKOMWwGld9POo_vkSnjpnih8xIFnN5d4,975
|
|
1349
1363
|
mteb/descriptive_stats/Retrieval/TempReasonL2Context.json,sha256=Gd2cVFAsdF1RHHWIbKI9hZLWgrbFzp8p0xoa6NU1uGM,996
|
|
1350
1364
|
mteb/descriptive_stats/Retrieval/TempReasonL2Fact.json,sha256=om5WmIGXJLeMI-b0Tp7-odKRH-S9kx6OHXlnAD62rLk,992
|
|
@@ -1435,163 +1449,166 @@ mteb/languages/iso_15924_to_script.json,sha256=agZvrYqSc0YJDXoqluncshuaMeg5RGkd_
|
|
|
1435
1449
|
mteb/languages/iso_639_3_to_language.json,sha256=KDVAh3TQziSyUd8xGDwpUHRUeTrngwp-MDuOxM9bpgo,193114
|
|
1436
1450
|
mteb/languages/iso_mappings.py,sha256=TKpAmP9KL-KmY5EsHjsrfbnnluvCHES5mTlXNUC-pp0,891
|
|
1437
1451
|
mteb/languages/language_family.json,sha256=OUGcHeOIPcZPb2FWmYLhxTS0JxjK5y3Fo6x0PeK0cKM,1833535
|
|
1438
|
-
mteb/languages/language_scripts.py,sha256=
|
|
1452
|
+
mteb/languages/language_scripts.py,sha256=p7AM10Fe3b3EOMlPj8i5_MDjtyoH4FMCCBv_zrABWBg,4053
|
|
1439
1453
|
mteb/languages/programming_languages.py,sha256=zxAakT3OSUnAuTnQ34VyeFIECnNXMlleZmAake6jsZE,211
|
|
1440
1454
|
mteb/leaderboard/__init__.py,sha256=991roXmtRwEQysV-37hWEzWpkvPgMCGRqZTHR-hm2io,88
|
|
1441
|
-
mteb/leaderboard/app.py,sha256=
|
|
1455
|
+
mteb/leaderboard/app.py,sha256=L7yhQvtkVR0eiee6l0I0094U5CTYzvf_YIaT2AW6Qk4,42374
|
|
1442
1456
|
mteb/leaderboard/benchmark_selector.py,sha256=qd-2L20RQ4ACke01UlytkhZok1dkWgfUlXzfET52kGc,7956
|
|
1443
1457
|
mteb/leaderboard/figures.py,sha256=cfOK82rRf-7sCjyP7GBxh4ezhOIt0OhD0_86mKtzLrg,7530
|
|
1444
1458
|
mteb/leaderboard/table.py,sha256=KqU8aAbZ_tDp1O_qXRGWR32QnB7v_lsF6k5jxLcQVN0,10366
|
|
1445
1459
|
mteb/leaderboard/text_segments.py,sha256=iMIkS04QQjPbT-SkU0x6fOcS8xRbUYevryu9HydipKM,6570
|
|
1446
1460
|
mteb/models/__init__.py,sha256=ABTuoqiBjBtBWW3LYY7ItBHdylR6jWoy06HH0g6j6fU,910
|
|
1447
|
-
mteb/models/abs_encoder.py,sha256=
|
|
1448
|
-
mteb/models/get_model_meta.py,sha256=
|
|
1449
|
-
mteb/models/instruct_wrapper.py,sha256=
|
|
1450
|
-
mteb/models/model_meta.py,sha256=
|
|
1451
|
-
mteb/models/models_protocols.py,sha256=
|
|
1452
|
-
mteb/models/search_wrappers.py,sha256=
|
|
1453
|
-
mteb/models/sentence_transformer_wrapper.py,sha256=
|
|
1461
|
+
mteb/models/abs_encoder.py,sha256=6e9UAk7ckYsJ6hItIPMfSaPdlX_FxfJ-OdJ87oqT2OM,16625
|
|
1462
|
+
mteb/models/get_model_meta.py,sha256=wVh2FaWevJ10hJlbm-FQtTQazLMfnkEV3IK7PUyBPOQ,6082
|
|
1463
|
+
mteb/models/instruct_wrapper.py,sha256=GLHg9KcgYu2rF15LEMKesRpPudGfKE2y-aLXVG_CLj0,9670
|
|
1464
|
+
mteb/models/model_meta.py,sha256=BDT4Q_aYPm3RUgtXq2poe1VyUUHob_fLrDKA4BPgYrg,31143
|
|
1465
|
+
mteb/models/models_protocols.py,sha256=5WYOZw3-T-wK7ux0YZVCfbcMTkAisqAqbu44ZNoir4A,9250
|
|
1466
|
+
mteb/models/search_wrappers.py,sha256=9lXLXUyL6atMCwXp-HBUong6msT3UAUY9QI7zKXbSVU,20945
|
|
1467
|
+
mteb/models/sentence_transformer_wrapper.py,sha256=liMzSqr0bC-yI_oEL50ckEc4ti9nibDLIiukP2crhOA,13543
|
|
1468
|
+
mteb/models/vllm_wrapper.py,sha256=ebX4JIKPoxW4PIlr3BnaoLGuMGRpHzBe_ZwvFscx1D0,12286
|
|
1454
1469
|
mteb/models/cache_wrappers/__init__.py,sha256=1w1TnMwulWJSzNkLXjbh5MY3sqgHWc6vUntYn49i9X8,169
|
|
1455
|
-
mteb/models/cache_wrappers/cache_backend_protocol.py,sha256=
|
|
1456
|
-
mteb/models/cache_wrappers/cache_wrapper.py,sha256=
|
|
1470
|
+
mteb/models/cache_wrappers/cache_backend_protocol.py,sha256=iGWdqDEoaCxUVEnwsXhy-m9d2QX8KTaQ9m2ZyawrMes,1634
|
|
1471
|
+
mteb/models/cache_wrappers/cache_wrapper.py,sha256=GPC0UhHfkUH-i-Q4HdFvBev6h6GtMlWEId_B3tL-J54,6600
|
|
1457
1472
|
mteb/models/cache_wrappers/cache_backends/__init__.py,sha256=hN2Tq7cpTxoOYSCJ1Wnpvb8dEm-kQLfCCahT1N9Bacw,123
|
|
1458
|
-
mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=
|
|
1459
|
-
mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=
|
|
1460
|
-
mteb/models/cache_wrappers/cache_backends/numpy_cache.py,sha256=
|
|
1473
|
+
mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=CeewRAwKr2RhFB7VOpam-4NDFMjFl8VaVPaZolbGGq8,550
|
|
1474
|
+
mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=oAm5Ca7iR0AE1ivSvOF3Nbbtb_jhfCwp8O1Ck4vSk3s,3828
|
|
1475
|
+
mteb/models/cache_wrappers/cache_backends/numpy_cache.py,sha256=V275IY-0lyh2REqZjIZOgJJ7SY05yiWdHNF2kiSdRfo,8071
|
|
1461
1476
|
mteb/models/model_implementations/__init__.py,sha256=BZDdde6ajKv-yroy9mqE2YS3Hw1KBdKoxBPg8aPTZEs,1164
|
|
1462
|
-
mteb/models/model_implementations/align_models.py,sha256=
|
|
1477
|
+
mteb/models/model_implementations/align_models.py,sha256=nR-sxBHV7t-x35aihSQwzSXe09iRZutpqwFqmAnTZGA,4560
|
|
1463
1478
|
mteb/models/model_implementations/amazon_models.py,sha256=a9bLYQ1ZGWDo4RdyaPNsBqadMrBm550fLIFr1Zfp2Nk,720
|
|
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=
|
|
1479
|
+
mteb/models/model_implementations/andersborges.py,sha256=TkZFz55hn3A8qBBKW4SChOMAiVRVhUdzF1gSaiv4icc,2411
|
|
1480
|
+
mteb/models/model_implementations/ara_models.py,sha256=pE1aW6a4AdP2H0p6-YCyMi6kBGpDUsI7xi8qDtRVD_k,1478
|
|
1481
|
+
mteb/models/model_implementations/arctic_models.py,sha256=G03_fOm_pgYbT9rgMruVlI0sEN_B8fB9HAt5nzRbbRs,10750
|
|
1482
|
+
mteb/models/model_implementations/b1ade_models.py,sha256=oyUmA83CjiAqh51nl3c4k5NuzB-SBySyMSXsbEU--hU,1666
|
|
1468
1483
|
mteb/models/model_implementations/bedrock_models.py,sha256=KKs_0_Cl6f0nzzmxmmKJ1vR2r3B7xRKMbNehov4EGjQ,8813
|
|
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=
|
|
1484
|
+
mteb/models/model_implementations/bge_models.py,sha256=YMatt2zsOx3EVA7DQp6m6NgnTgsVU-JxWD6iEA4-IFU,25171
|
|
1485
|
+
mteb/models/model_implementations/bica_model.py,sha256=vfScW0FBqWG00C7-lb9krWzWnAS7pTzDvBsqMPjeJAM,1266
|
|
1486
|
+
mteb/models/model_implementations/blip2_models.py,sha256=mNnWANEeQoPfgx1I3lDP4jzb3KgejohUMOQz9_KYKWM,7749
|
|
1487
|
+
mteb/models/model_implementations/blip_models.py,sha256=Tfsk0mEo7brFQ9paDTtGri8axZUHzNqAUK7WHEqOfWM,11754
|
|
1488
|
+
mteb/models/model_implementations/bm25.py,sha256=QBzWCyo_X4rVxL2ua-L1WTPpDMf9OVQcD9zwMkQkOrI,4837
|
|
1489
|
+
mteb/models/model_implementations/bmretriever_models.py,sha256=UMvSNK7ZgC0SfHp9nGjvdBSwDB2M-ZqpGlSIaieSl3Y,6845
|
|
1490
|
+
mteb/models/model_implementations/cadet_models.py,sha256=CtY4ioYb7W8LcIYRCO5dh6-Nr1QDp6UYvTUR6FGwTik,2266
|
|
1491
|
+
mteb/models/model_implementations/cde_models.py,sha256=rPyvpd1rEK0F_wwHoJ1GGXWEKZmoNJyR7Km7AOUT5BM,9271
|
|
1492
|
+
mteb/models/model_implementations/clip_models.py,sha256=fDIY9xAh2mtUgnWOlPGR98HmPNLN7-qB0wH8_9ZO_Rk,6200
|
|
1493
|
+
mteb/models/model_implementations/clips_models.py,sha256=RJUMc9q8ZA4HRtcUDa063Rb0GvXl_cIrjU93Xv4epys,3581
|
|
1494
|
+
mteb/models/model_implementations/codefuse_models.py,sha256=dwlHFA0p1oO7vX9NCFmjRa9hgp1_2EnpPCbKN6xfMAc,14208
|
|
1495
|
+
mteb/models/model_implementations/codesage_models.py,sha256=HQqkwv6IuhNkUfrKBa9mnwWozoRKnmYRWOdwluBYjZA,3124
|
|
1496
|
+
mteb/models/model_implementations/cohere_models.py,sha256=nXe2Lizql4N_FmlzyMhgMx2dBYV8EN_4lzi0Y_Z1Afo,13984
|
|
1497
|
+
mteb/models/model_implementations/cohere_v.py,sha256=bDrvREsuL1Ea3ZGCGsvXTWQ4nMJND3T0dYqOKAl1vls,15858
|
|
1498
|
+
mteb/models/model_implementations/colpali_models.py,sha256=gTGPjk9l-AFDumrO-KdWiP_kOKUNGwmTiDSr7Z2-z_s,9264
|
|
1499
|
+
mteb/models/model_implementations/colqwen_models.py,sha256=lmLBnlGgpMftj1yOzE6eJ2CHfNvqWo70oTxnc_V0Uzk,16038
|
|
1500
|
+
mteb/models/model_implementations/colsmol_models.py,sha256=7JjepKLNIqtQVFzvFlYmx_5Sp4yYPtg48loezhRqmuw,3071
|
|
1501
|
+
mteb/models/model_implementations/conan_models.py,sha256=KmdhZ4l3euYPmGE_2T4F6EQctpcNdwXIHrxpmcdkAMo,6569
|
|
1502
|
+
mteb/models/model_implementations/dino_models.py,sha256=7ok5GpfeXtyPL2XRnPIHXnft2PiO6RPB3uTRPFp1NEI,26018
|
|
1503
|
+
mteb/models/model_implementations/e5_instruct.py,sha256=86Y-MeUOQeAxNhUmqtP-4bFASQSZkDLyhyP3-lzU0yc,8061
|
|
1504
|
+
mteb/models/model_implementations/e5_models.py,sha256=iczmJdoqfoH8dvxwmgd0xGTGR-H9XRbIhQbVqImoAb4,9798
|
|
1505
|
+
mteb/models/model_implementations/e5_v.py,sha256=uTvD61jTrtBdGB5MY83JnIdFi3WXs4xq08nilg1_Ujk,6800
|
|
1506
|
+
mteb/models/model_implementations/eagerworks_models.py,sha256=bk-Vy_BqD-Qn_rpsW4lLaBDza-KRVtfDBVHcXKaqNMQ,5785
|
|
1507
|
+
mteb/models/model_implementations/emillykkejensen_models.py,sha256=Qqzze2MXWioSalQ1cCdXIHRZRUfMN9IxtSU74IwkDb4,3740
|
|
1508
|
+
mteb/models/model_implementations/en_code_retriever.py,sha256=UTOmjnCCDOhqoMyYXKCGDPNOqR5XMmNuE9drpgMzMqs,1084
|
|
1509
|
+
mteb/models/model_implementations/euler_models.py,sha256=6EdpMJFFGVHGgPC44jRrsc7ywunoWN5fku-zBaa88rA,1162
|
|
1495
1510
|
mteb/models/model_implementations/evaclip_models.py,sha256=oEoHnKQ4W09EQUCnNwpEd1ieDZGbth4j6lXfC-9jVBc,8104
|
|
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=
|
|
1511
|
+
mteb/models/model_implementations/fa_models.py,sha256=vwEzH1EIzw0gb0cwmgoz81oYWwowVix-G47y0SiL1PQ,9988
|
|
1512
|
+
mteb/models/model_implementations/facebookai.py,sha256=YxJRjMtdvqCHfh3dTwxrLsr19v0N658O1cTx7GilO94,5058
|
|
1513
|
+
mteb/models/model_implementations/geogpt_models.py,sha256=FmvRKWmSBf6gXQ1b0VbHdSP02ZAEP68IzIq4726kync,1980
|
|
1514
|
+
mteb/models/model_implementations/gme_v_models.py,sha256=aPDW_NZTMGXDvIPJgp-8aMEP33cGRDmDr766QPiC_Rs,13860
|
|
1515
|
+
mteb/models/model_implementations/google_models.py,sha256=TtHu-RhFq72jIX4jkq3M9gIOjp5RKgUB1pX2EtgUCLM,11158
|
|
1516
|
+
mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=_H0pphKd7CZwTmZyccYwc8VRCBuADb-2Y1NqjLyLqYg,7372
|
|
1517
|
+
mteb/models/model_implementations/gritlm_models.py,sha256=XmKNIyIAJUpmfT5r_cqm7DjacbLFeGygX9IIe3k3dfw,3119
|
|
1518
|
+
mteb/models/model_implementations/gte_models.py,sha256=A9woaY4doCb89b5dxFpJcbwmHMXiG9NnseznoWFU-Qg,14232
|
|
1519
|
+
mteb/models/model_implementations/hinvec_models.py,sha256=PL2lJPf8r6u4duE6B0pIYDCyX1JJuQspXBi1YXRVPOk,1632
|
|
1505
1520
|
mteb/models/model_implementations/human.py,sha256=EtYa8G7Dc8fDcelBVw0xTpxGGx1YKKuprVgksY5ZOcE,558
|
|
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=
|
|
1521
|
+
mteb/models/model_implementations/ibm_granite_models.py,sha256=ljHjuPuBkIwJvp5WZ3csjTOIb14nLh1h3OYkW-CEeHY,8464
|
|
1522
|
+
mteb/models/model_implementations/inf_models.py,sha256=SXXs3s9PWo08fzrxG_WOXGc_gvbpmkt-Blt7YoGcPRo,3020
|
|
1523
|
+
mteb/models/model_implementations/jasper_models.py,sha256=buJgllGIeyi7LsxDJY3UYJs_YzdDBkU3QpuQyU6VoTc,16293
|
|
1524
|
+
mteb/models/model_implementations/jina_clip.py,sha256=0XhRSWTPR3ERAsOoVOxhB1yV6v1pEY8EQcTy1ChtSoU,6595
|
|
1525
|
+
mteb/models/model_implementations/jina_models.py,sha256=kFmkAWUFoJpq_1tRQIspk54lsik2vIoQcy5DS7YKgQ0,35198
|
|
1511
1526
|
mteb/models/model_implementations/kalm_models.py,sha256=SHqkw5p7HzmQrb_bIFjRp1rsuv2v531nXIk390h_ojY,62115
|
|
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=
|
|
1527
|
+
mteb/models/model_implementations/kblab.py,sha256=EisTJXijICN2pyfWT_89qUnNO7TH95t1LxCxjzJnzQo,1237
|
|
1528
|
+
mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=YdroUdWJtSjrua93Qo950eui38qhD6KgnSND_NlTzro,3060
|
|
1529
|
+
mteb/models/model_implementations/kfst.py,sha256=jz0Pez-NLXy2Hxt2edvVJMm9A6yn6xQacxxr2nCyOsY,949
|
|
1530
|
+
mteb/models/model_implementations/kowshik24_models.py,sha256=xm2oh0Sjbvp4Aur4XUkTxp6pYtKZIbyN1r88eE4aHpQ,1460
|
|
1516
1531
|
mteb/models/model_implementations/lens_models.py,sha256=sVgP-wyi7SrMVyXkS1msMEKkE2ZTheYrt3QwGezqqJk,1748
|
|
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/
|
|
1526
|
-
mteb/models/model_implementations/
|
|
1527
|
-
mteb/models/model_implementations/
|
|
1528
|
-
mteb/models/model_implementations/
|
|
1529
|
-
mteb/models/model_implementations/
|
|
1530
|
-
mteb/models/model_implementations/
|
|
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/octen_models.py,sha256=
|
|
1532
|
+
mteb/models/model_implementations/lgai_embedding_models.py,sha256=6XSL2h4MaA8etAE8qmrDrwKBYxUBurJq-zZ8bXdW1oE,2390
|
|
1533
|
+
mteb/models/model_implementations/linq_models.py,sha256=O4uf7U3ahSW-VsIkCke6uNV37UYEHbJtlJWKuRttfpk,1929
|
|
1534
|
+
mteb/models/model_implementations/listconranker.py,sha256=Pabs6UapPmH4CeUTZskHJ-9jQ4-6fh-j6I3l4RUimZY,4548
|
|
1535
|
+
mteb/models/model_implementations/llm2clip_models.py,sha256=VaPRxliOMViMMpNJmaal8QFJVU9F3-yiPxJoXNHyLyk,9340
|
|
1536
|
+
mteb/models/model_implementations/llm2vec_models.py,sha256=qKbTMrMXYRvmzY9bsaSgQhl6PxnSEAEQypkzU_TC46Y,12966
|
|
1537
|
+
mteb/models/model_implementations/mcinext_models.py,sha256=h-X9og2Cjj8DarHkaLOfqlIHpeCGnJZv0EuwYG61uzY,19127
|
|
1538
|
+
mteb/models/model_implementations/mdbr_models.py,sha256=gGF58m_nxwaVOq03T275VofQD3Ur9W2ZdMpYwcQ9RTg,2750
|
|
1539
|
+
mteb/models/model_implementations/misc_models.py,sha256=G42am6_tdRDFQ-0dU60OLeW2qxiQLwOoA5_NBHVN1eQ,72346
|
|
1540
|
+
mteb/models/model_implementations/mixedbread_ai_models.py,sha256=DJGYb9Twt9cuess2QS4CrW_dWEtL0LTJ5uWruHt8Gzw,10549
|
|
1541
|
+
mteb/models/model_implementations/mme5_models.py,sha256=4lbFhmKAFUpZojoLBObL0wx8dA6wJ9SGYej488Q_Fdg,1541
|
|
1542
|
+
mteb/models/model_implementations/moco_models.py,sha256=DOFXJINU3LV0gk83PRE5bXxvXs0LiKFUcznSR5lmk6E,5565
|
|
1543
|
+
mteb/models/model_implementations/mod_models.py,sha256=6Cs08pqKrvSPYGNCil-T2Q151AmOCCBKMF54KkzdxJY,6350
|
|
1544
|
+
mteb/models/model_implementations/model2vec_models.py,sha256=7O6y-8fPtaHOoOfPn2-ZqmxSNHAG3r8-DIeK7sthzBg,14568
|
|
1545
|
+
mteb/models/model_implementations/moka_models.py,sha256=M3nhjDoisunpYojtU-dEZYaLjBkndOGhWByz17_x5_w,5088
|
|
1546
|
+
mteb/models/model_implementations/nbailab.py,sha256=LM00HJIr4yrA45qh2O21BIDXku9KcoTz-mttczEx_qM,2567
|
|
1547
|
+
mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=qLiMok_OxKvIYXWnP0KNWqH1monZx-OdSZrSx3QEhtI,4049
|
|
1548
|
+
mteb/models/model_implementations/nomic_models.py,sha256=dmQC_cWg6hAmiBHK7fXoXEiGBJnJvrq0RsnCcJ2qe1Q,15137
|
|
1549
|
+
mteb/models/model_implementations/nomic_models_vision.py,sha256=usCKfZCR7aEi_DnNmVAYjH-lXx_ipQkBVtUAmhJ90QI,6870
|
|
1550
|
+
mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=pJqkKBNns6jUYlpI3aGtpmrhXOSYgEvCje1ir_yXdpc,6889
|
|
1551
|
+
mteb/models/model_implementations/nvidia_models.py,sha256=KcnH7wGhz4LQ2F_y9Q9cJTr89DNKeHjVkVgHUfftzIY,26685
|
|
1552
|
+
mteb/models/model_implementations/octen_models.py,sha256=FFR1-yG2euN-6kgL4qJNHYB6cPsds4NGYFPmc5tHhoE,8514
|
|
1538
1553
|
mteb/models/model_implementations/openai_models.py,sha256=905BajYi_XyOZgqU3AeKpwIttLoUitaAyc48sTWI6Jg,9482
|
|
1539
|
-
mteb/models/model_implementations/openclip_models.py,sha256=
|
|
1540
|
-
mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=
|
|
1541
|
-
mteb/models/model_implementations/ops_moa_models.py,sha256=
|
|
1542
|
-
mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=
|
|
1543
|
-
mteb/models/model_implementations/pawan_models.py,sha256=
|
|
1544
|
-
mteb/models/model_implementations/piccolo_models.py,sha256=
|
|
1545
|
-
mteb/models/model_implementations/
|
|
1546
|
-
mteb/models/model_implementations/
|
|
1547
|
-
mteb/models/model_implementations/
|
|
1548
|
-
mteb/models/model_implementations/
|
|
1549
|
-
mteb/models/model_implementations/
|
|
1550
|
-
mteb/models/model_implementations/
|
|
1551
|
-
mteb/models/model_implementations/
|
|
1552
|
-
mteb/models/model_implementations/
|
|
1553
|
-
mteb/models/model_implementations/
|
|
1554
|
-
mteb/models/model_implementations/
|
|
1555
|
-
mteb/models/model_implementations/
|
|
1556
|
-
mteb/models/model_implementations/
|
|
1557
|
-
mteb/models/model_implementations/
|
|
1558
|
-
mteb/models/model_implementations/
|
|
1559
|
-
mteb/models/model_implementations/
|
|
1560
|
-
mteb/models/model_implementations/
|
|
1561
|
-
mteb/models/model_implementations/
|
|
1562
|
-
mteb/models/model_implementations/
|
|
1563
|
-
mteb/models/model_implementations/
|
|
1554
|
+
mteb/models/model_implementations/openclip_models.py,sha256=MyosgeYSrgBXGuGFtI2Tyxksxpb7bADFJVSYFCLweVA,11622
|
|
1555
|
+
mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=TnIHut_IHvplvovlcTZ-PWnEldTzcru5JdUIaTH-8Do,8636
|
|
1556
|
+
mteb/models/model_implementations/ops_moa_models.py,sha256=W9DkHT5TwMys-vKmELrcKKfdV9HsHOBvaQAITneDdew,2480
|
|
1557
|
+
mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=PJx1enAWiuiQUqA0JdfpPSBZS1h8CKy7ew-GFGj4YUM,1081
|
|
1558
|
+
mteb/models/model_implementations/pawan_models.py,sha256=Fwpxqool7lHOMsim0XllWjRrQwxZP2ZU3Y9OtQ0AMvA,1192
|
|
1559
|
+
mteb/models/model_implementations/piccolo_models.py,sha256=rIdT5pLInGyjLXpLcECLPWFJ1N-XfzCte0k3Em5Vy-M,2181
|
|
1560
|
+
mteb/models/model_implementations/pixie_models.py,sha256=vm2vyCBhi5-_5iRQBmIB6KMjvJOByHDkYiPvSi8LsnQ,1798
|
|
1561
|
+
mteb/models/model_implementations/promptriever_models.py,sha256=Ck_oEuvohgPOhSbyfDGlweKXtKZasWYUwukBMBr1YMc,6492
|
|
1562
|
+
mteb/models/model_implementations/pylate_models.py,sha256=4Z48zUGtOZRnqmA0XzO8YrVPO8GcaVBpXSln8VIw21g,16960
|
|
1563
|
+
mteb/models/model_implementations/qodo_models.py,sha256=bb2iUDdLp1sOZdYojZuzAzV4CQK68Ad1Y-VJul78uho,2151
|
|
1564
|
+
mteb/models/model_implementations/qtack_models.py,sha256=GJGZ0zmJw1KT39kIyrQUlEGMkY-lUa36CY_qTN6mPJU,1265
|
|
1565
|
+
mteb/models/model_implementations/qwen3_models.py,sha256=7uRzl8Uopi_zAAeJ0G1DUxNH4bl1h5gzMqks6ltbkHE,5303
|
|
1566
|
+
mteb/models/model_implementations/qzhou_models.py,sha256=iNsSGvoJJ8XByMF-vFScResLDuqEUcps95s2UvWCPjE,3618
|
|
1567
|
+
mteb/models/model_implementations/random_baseline.py,sha256=_lUTjoEl0nJEPcnN1FNWwKEnoJc29PEpaKbnx8HJnLc,7548
|
|
1568
|
+
mteb/models/model_implementations/rasgaard_models.py,sha256=iwqLW0r12RF3tyhakZu3ZPTLx0IRXeOAxptgaJCaJKQ,1285
|
|
1569
|
+
mteb/models/model_implementations/reasonir_model.py,sha256=881oFRknIelXBJFFJWVaETol98mjXt69IDueUg1cxNE,2275
|
|
1570
|
+
mteb/models/model_implementations/repllama_models.py,sha256=0_aDjQKv-Vy1PVaHulrc6ydL_N5dJQYpgDOtYWoBOtg,7356
|
|
1571
|
+
mteb/models/model_implementations/rerankers_custom.py,sha256=2KHRYRGDWg4W4KUnUPIzlxLeDkHdj0qY7WQTu4PDYpk,10757
|
|
1572
|
+
mteb/models/model_implementations/rerankers_monot5_based.py,sha256=bGGfVJob6MOGo8R3xLMcrlTqo_VHGhYiT6C17u0L0t8,34696
|
|
1573
|
+
mteb/models/model_implementations/richinfoai_models.py,sha256=n9m6tRq1f3sRWmiQ_9yORMSTZuk9yya3jcvNJTuKh8E,1030
|
|
1574
|
+
mteb/models/model_implementations/ru_sentence_models.py,sha256=nGvJV9rkfsEMp3QtYBtDnJF2jTm1C31_kCHILnAd6wg,42269
|
|
1575
|
+
mteb/models/model_implementations/ruri_models.py,sha256=La2z2xaqYlX6arGrPz55i3-8SYokXhitiyV7DpJQODk,10453
|
|
1576
|
+
mteb/models/model_implementations/salesforce_models.py,sha256=Fc8uvamRc_fzhKLQtiiLRwtzMPqkQxveosoQul76b-k,5331
|
|
1577
|
+
mteb/models/model_implementations/samilpwc_models.py,sha256=ZYmpjsg66eTVaA7-ChDwDAk7zBU5v5JbIDdVaxmlhOk,2078
|
|
1578
|
+
mteb/models/model_implementations/sarashina_embedding_models.py,sha256=ZShwUY3SuSjm6wTYqqh5aIdhadFfFHNvbM2VzZZrOUU,8529
|
|
1579
|
+
mteb/models/model_implementations/searchmap_models.py,sha256=xVQPkO7aLp_kBFiMDAmBOx13VIAuXjgnJ2zUg_Cmed8,1961
|
|
1564
1580
|
mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=gcGKEY-n7DWGPlXYhO_kcNJ3lkBEnbw8NUxADNs3siM,18635
|
|
1565
|
-
mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=
|
|
1581
|
+
mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=OoTHcDRQGOuSzf08V62EXrSEdRsXhnMv2ZN9feJWs9s,36443
|
|
1566
1582
|
mteb/models/model_implementations/seed_models.py,sha256=9UF2AQ0Uue8DD73SjYhHn2hLxey_7Iq9ii9TkRaA3CM,14168
|
|
1567
|
-
mteb/models/model_implementations/sentence_transformers_models.py,sha256=
|
|
1568
|
-
mteb/models/model_implementations/shuu_model.py,sha256=
|
|
1569
|
-
mteb/models/model_implementations/siglip_models.py,sha256=
|
|
1583
|
+
mteb/models/model_implementations/sentence_transformers_models.py,sha256=6oULaf2mTyVe7vy9oS_QoKuxXXPaAqjQgSooMTG0xow,26071
|
|
1584
|
+
mteb/models/model_implementations/shuu_model.py,sha256=1jDFFPAfbfrSzC4vbHczO4yqy3Xh4tWiDAd3FS9-T6M,1177
|
|
1585
|
+
mteb/models/model_implementations/siglip_models.py,sha256=SOSyp-B7w6Vvqas_10D_1rvpJcKSQuJmXGy7Wdtsw7o,13012
|
|
1586
|
+
mteb/models/model_implementations/slm_models.py,sha256=JXjBio-9NFHLefU4Ny1Z-fFkyvvIz0U2kQ6t5s-PzlQ,13427
|
|
1570
1587
|
mteb/models/model_implementations/sonar_models.py,sha256=e0zG4ZxCM52mOtIpd43mMORZcX39utOiVDvzX_mz7oQ,4810
|
|
1571
|
-
mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=
|
|
1572
|
-
mteb/models/model_implementations/stella_models.py,sha256=
|
|
1573
|
-
mteb/models/model_implementations/tarka_models.py,sha256=
|
|
1574
|
-
mteb/models/model_implementations/text2vec_models.py,sha256=
|
|
1575
|
-
mteb/models/model_implementations/ua_sentence_models.py,sha256=
|
|
1576
|
-
mteb/models/model_implementations/uae_models.py,sha256=
|
|
1577
|
-
mteb/models/model_implementations/vdr_models.py,sha256=
|
|
1578
|
-
mteb/models/model_implementations/vi_vn_models.py,sha256=
|
|
1588
|
+
mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=nDfqkxdi8BlFoixWYjBQnaDyPCRb1UyPgH7792hihXs,1270
|
|
1589
|
+
mteb/models/model_implementations/stella_models.py,sha256=ts2BbEl-Qe8okYTneVeoWE-pu9VCkyO7a9oJofjjEok,8420
|
|
1590
|
+
mteb/models/model_implementations/tarka_models.py,sha256=r6H_ZLGbFwpQQrhvaepJVrsSxYXvXGChMIUDgbHaRFs,27427
|
|
1591
|
+
mteb/models/model_implementations/text2vec_models.py,sha256=WuwcmJ6Irhayz4V7F3JJosTsfUm6WjNPmCiqUlAj0Ac,4300
|
|
1592
|
+
mteb/models/model_implementations/ua_sentence_models.py,sha256=bbgwj71Y79VNiuK1hKIKq5XJy4mP71iDrd7IMeiKun8,1708
|
|
1593
|
+
mteb/models/model_implementations/uae_models.py,sha256=FEdM_7Pmx2bsx0xhExO6kZqeavpqlk8mDjTKUwWdNwo,3224
|
|
1594
|
+
mteb/models/model_implementations/vdr_models.py,sha256=8jlfABvO7Z9ebzAPFHqln3B2INFpszu_ClrcUyaVpss,1479
|
|
1595
|
+
mteb/models/model_implementations/vi_vn_models.py,sha256=Ep2zj4Xvjyu0a_YiLsYvolKdMGSOtzm-N-yNyXmfNwA,6328
|
|
1579
1596
|
mteb/models/model_implementations/vista_models.py,sha256=GkQFHIwwjxwM0wDuo-dWJBo4dLExlHtHfXwhcdKA5uQ,10884
|
|
1580
|
-
mteb/models/model_implementations/vlm2vec_models.py,sha256=
|
|
1581
|
-
mteb/models/model_implementations/voyage_models.py,sha256=
|
|
1582
|
-
mteb/models/model_implementations/voyage_v.py,sha256=
|
|
1597
|
+
mteb/models/model_implementations/vlm2vec_models.py,sha256=EeWl3kpS_1VDJs4t1QmpaWSuglLPL2GyZu27fVY1VT8,11802
|
|
1598
|
+
mteb/models/model_implementations/voyage_models.py,sha256=jwVjgx9E6-rZxd8wmuNbbQxKTobuWBNWrs0ezqp4Oik,22525
|
|
1599
|
+
mteb/models/model_implementations/voyage_v.py,sha256=JqtXnICeaODRZHBj_Xsaf3PfIG-XPKopblNxAXHqYNo,8159
|
|
1583
1600
|
mteb/models/model_implementations/xyz_models.py,sha256=gjwCx3U4AxMcJDTSWVoYV6xeyXLw7lUZI5D6Q7JjWho,1322
|
|
1584
|
-
mteb/models/model_implementations/youtu_models.py,sha256=
|
|
1585
|
-
mteb/models/model_implementations/yuan_models.py,sha256=
|
|
1586
|
-
mteb/models/model_implementations/yuan_models_en.py,sha256=
|
|
1601
|
+
mteb/models/model_implementations/youtu_models.py,sha256=THwWRabutW-qC-JZOVhxXWjKHVyMElzt_xm81ixzN50,5995
|
|
1602
|
+
mteb/models/model_implementations/yuan_models.py,sha256=j-QIKECPg4TiBW_3Bp6g5yr2UOdFziFSeoGE4uKepSM,980
|
|
1603
|
+
mteb/models/model_implementations/yuan_models_en.py,sha256=V57gbJFdHW8voN-tkrwUIWv91IkjUfmoQd6SK6AeHLc,1695
|
|
1587
1604
|
mteb/models/search_encoder_index/__init__.py,sha256=3QFacIuFyEiI7ocsSkb3Lp2S2L7MLkpHCMIJ201fowA,182
|
|
1588
1605
|
mteb/models/search_encoder_index/search_backend_protocol.py,sha256=TSjlx88stJcMldbAeVqNCf8JsQvE-B5rf5SBRw90isY,1890
|
|
1589
1606
|
mteb/models/search_encoder_index/search_indexes/__init__.py,sha256=Wm60_oUemUpFsvrCMW111dcPH2L2rt1iZrXMskXmG7o,88
|
|
1590
|
-
mteb/models/search_encoder_index/search_indexes/faiss_search_index.py,sha256=
|
|
1607
|
+
mteb/models/search_encoder_index/search_indexes/faiss_search_index.py,sha256=6C9e-bN6IzytwCTjNrwosZD7yDwhbZ-V7pR_IlPWQ2g,5671
|
|
1591
1608
|
mteb/results/__init__.py,sha256=EXQqK4Am5eIYzD52dpcGAFSdqnC38oE6JHN302oidHc,158
|
|
1592
|
-
mteb/results/benchmark_results.py,sha256=
|
|
1593
|
-
mteb/results/model_result.py,sha256=
|
|
1594
|
-
mteb/results/task_result.py,sha256=
|
|
1609
|
+
mteb/results/benchmark_results.py,sha256=Ea_JPqVIjZHgVceTO3Oa9rzYblxFZhMhpU3lr2upOY4,20219
|
|
1610
|
+
mteb/results/model_result.py,sha256=WokI7iyF3JQxawRTNQ9dJZm-5pD66oJWio0i5G9AB94,15200
|
|
1611
|
+
mteb/results/task_result.py,sha256=OwNNJN8l9sEmlwYYxuhIHwRrpafK1h7vVx0Dr5_qwHE,33710
|
|
1595
1612
|
mteb/tasks/__init__.py,sha256=izAxU0ip1F_YUwx0dFCuN35BaktdmePh6vlDiHC0kLo,503
|
|
1596
1613
|
mteb/tasks/aggregated_tasks/__init__.py,sha256=Ufgbh1AirxCQkojO3AUhUFWM8zQG10cfdVTkj_PeyLI,104
|
|
1597
1614
|
mteb/tasks/aggregated_tasks/eng/__init__.py,sha256=HgaSyAX8Is5CGE006RgJkLQQVxrx2FmMnm6NHQBDi-4,358
|
|
@@ -1666,7 +1683,7 @@ mteb/tasks/classification/dan/__init__.py,sha256=edrG5UqewQ_YfQD3KtCTs9GU5z1jo4w
|
|
|
1666
1683
|
mteb/tasks/classification/dan/angry_tweets_classification.py,sha256=GmNu5-ec_6ebMCxKIgDU54ZfaM0xFV_tYE6hYLN8ItM,3154
|
|
1667
1684
|
mteb/tasks/classification/dan/danish_political_comments_classification.py,sha256=mChj82mWgXluVC7yXXT2LqNZ_v9QHbNEWIFUGlN8LHc,3201
|
|
1668
1685
|
mteb/tasks/classification/dan/ddisco_cohesion_classification.py,sha256=8ZJUscPwhd0Y71Sd5tTeEWCuFgN2YHlgX2lQOz9bj3g,4010
|
|
1669
|
-
mteb/tasks/classification/dan/dk_hate_classification.py,sha256=
|
|
1686
|
+
mteb/tasks/classification/dan/dk_hate_classification.py,sha256=ixPt5LnWwhxKomGbZ7x5bfIuvgdjAtn_8byL2DFnwHQ,4424
|
|
1670
1687
|
mteb/tasks/classification/dan/lcc_sentiment_classification.py,sha256=wVbHXQN1I-W8YxDz_fT8Q3ZIM_mgNZDx_wm7vsIBols,1733
|
|
1671
1688
|
mteb/tasks/classification/deu/__init__.py,sha256=_mikrUfmvMBoIkAHqZoayV6o-8QssaX3E4D1TmxNt_8,454
|
|
1672
1689
|
mteb/tasks/classification/deu/german_politicians_twitter_sentiment_classification.py,sha256=wyig6rTOET2Km1fX4_LP2FTqbGzF2hgmWwV4EXM88kM,3970
|
|
@@ -1733,7 +1750,7 @@ mteb/tasks/classification/eng/wikipedia_theoretical_applied_classification.py,sh
|
|
|
1733
1750
|
mteb/tasks/classification/eng/yahoo_answers_topics_classification.py,sha256=nIuo5-VSPdoJLcOyYbIpLatBUOVpeCWUVBIualjeAb0,3565
|
|
1734
1751
|
mteb/tasks/classification/eng/yelp_review_full_classification.py,sha256=lDtPzcKlhtcT5VPyPHusb29wWExs3RZGF_AXUG24jpE,3824
|
|
1735
1752
|
mteb/tasks/classification/est/__init__.py,sha256=v2lzg7TFmXiBAp8B4WS3SAahWzkAJ2TCrGBktbI1qhI,186
|
|
1736
|
-
mteb/tasks/classification/est/estonian_valence.py,sha256=
|
|
1753
|
+
mteb/tasks/classification/est/estonian_valence.py,sha256=SDXoxEVjFTguNKGYImLkz_u_Hkf_UTvYibfKrPbtbSs,3712
|
|
1737
1754
|
mteb/tasks/classification/fas/__init__.py,sha256=igukIhFBC-lFxj-zbwaNh6ocGNTsGwY13QhM1e_cf6w,2505
|
|
1738
1755
|
mteb/tasks/classification/fas/fa_mteb_classification.py,sha256=Pa0uVXgIHhyiMf066rqq3n41RufDEX_Mx18JM_HrHjs,35052
|
|
1739
1756
|
mteb/tasks/classification/fas/persian_food_sentiment_classification.py,sha256=vydyi6mov_eAfCRH6A3Kf6nWJyJxCoyXUEoi7-MC80E,1473
|
|
@@ -1777,7 +1794,7 @@ mteb/tasks/classification/kor/kor_fin.py,sha256=3ZfN1BIud7joUllzsDMveU23Vjdkwzit
|
|
|
1777
1794
|
mteb/tasks/classification/kor/kor_hate_classification.py,sha256=V_IIham-xLAE77KoKk2RM8hXpuXnN3NYDl6aB8Renws,3997
|
|
1778
1795
|
mteb/tasks/classification/kor/kor_sarcasm_classification.py,sha256=P8AXvEopoX1axcx6A9IpKgDsDe2Xgmq4R3lcMMyFNus,3861
|
|
1779
1796
|
mteb/tasks/classification/kur/__init__.py,sha256=kBLPJVSB512KaGbwFIUjvjKiLp8_lV6K-O-0fmUJAM4,206
|
|
1780
|
-
mteb/tasks/classification/kur/kurdish_sentiment_classification.py,sha256=
|
|
1797
|
+
mteb/tasks/classification/kur/kurdish_sentiment_classification.py,sha256=p59oRCS0JhfZqP-IgKwmqb_zP48rFb069smhL74ryVM,2760
|
|
1781
1798
|
mteb/tasks/classification/mal/__init__.py,sha256=oPYnbXfC_hhDorrNOVMdoKJvo_EqVx57g6AMtETiAIs,191
|
|
1782
1799
|
mteb/tasks/classification/mal/malayalam_news_classification.py,sha256=KPSySBKHGlNY14ehDce3D1-RqFqz8DaapLgqwoTSmxM,3015
|
|
1783
1800
|
mteb/tasks/classification/mar/__init__.py,sha256=_s9c3NJ5thW7ik8tpKlbwwAan6xNuN5UIn5MqDdC8NQ,181
|
|
@@ -1811,7 +1828,7 @@ mteb/tasks/classification/multilingual/nusa_paragraph_topic_classification.py,sh
|
|
|
1811
1828
|
mteb/tasks/classification/multilingual/nusa_x_senti.py,sha256=qCWZBHdINL8CO3tucc0n3xodpLk4YMApRG5qZJT_Pvw,2259
|
|
1812
1829
|
mteb/tasks/classification/multilingual/ru_nlu_intent_classification.py,sha256=ZBouGeVgnSWnZKFl6GtCd0yl5A0WTzAwYlKg405b1i0,1643
|
|
1813
1830
|
mteb/tasks/classification/multilingual/ru_sci_bench_classification.py,sha256=K2tEYv6hsZwZjNj1RAECrO01F1G61HCtzwtC_v1XjV8,7736
|
|
1814
|
-
mteb/tasks/classification/multilingual/scala_classification.py,sha256=
|
|
1831
|
+
mteb/tasks/classification/multilingual/scala_classification.py,sha256=6cl5wZYdPiZV1gUvZW-SWyaZqzIEBQ1KxyXwBoJwWz8,2532
|
|
1815
1832
|
mteb/tasks/classification/multilingual/scandi_sent_classification.py,sha256=yNZ-Jb97GOsKtQ5GskT4F_opOATyQ3HqKL2pHAv_n5E,1812
|
|
1816
1833
|
mteb/tasks/classification/multilingual/sib200_classification.py,sha256=RcpPAUmEviNasGTR3csd5SBHSDTAFU4v15xRRTuPs_A,8063
|
|
1817
1834
|
mteb/tasks/classification/multilingual/south_african_lang_classification.py,sha256=uAhxQMWQaQIoeO6pOVGViUJdma5Z56t967W9cbZYq7E,1790
|
|
@@ -1933,7 +1950,7 @@ mteb/tasks/clustering/eng/cifar.py,sha256=CgerokQwKzrtTEQNxBPFH_vlosgtgrcZY2hmW1
|
|
|
1933
1950
|
mteb/tasks/clustering/eng/clus_trec_covid.py,sha256=z6pNWYu__6o10jNpcrRUVHWKLq9vNP_a3g1cv0LHKZs,1746
|
|
1934
1951
|
mteb/tasks/clustering/eng/hume_arxiv_clustering_p2p.py,sha256=Gb_OQUJblW37UTnFBUYGIhtVHupgeifhoYHyv0oPy4Q,1485
|
|
1935
1952
|
mteb/tasks/clustering/eng/hume_reddit_clustering_p2p.py,sha256=kNYUGPPPA2XNDlPHzhiiN8eSwUG4wLOQvejhZ2T51Wo,1618
|
|
1936
|
-
mteb/tasks/clustering/eng/hume_wiki_cities_clustering.py,sha256=
|
|
1953
|
+
mteb/tasks/clustering/eng/hume_wiki_cities_clustering.py,sha256=NCEMfMLu0lOM1Vyl7Q-OLFMOmxChJ8PvzOBQuGaSodU,1340
|
|
1937
1954
|
mteb/tasks/clustering/eng/image_net.py,sha256=21eB_MYbUKFqyzAnvThKfsh4D0t9XerIKehQl5LLMe8,3183
|
|
1938
1955
|
mteb/tasks/clustering/eng/medrxiv_clustering_p2p.py,sha256=sqRTwPAXg9IBeP5S8ngLm5Q0sMkTVoOEJK7Zf8i_mQo,2909
|
|
1939
1956
|
mteb/tasks/clustering/eng/medrxiv_clustering_s2s.py,sha256=A0d5fjOGAYZFEukBe5DufD-BJ66KVQOSlC_Bgn4OZng,2874
|
|
@@ -1943,7 +1960,7 @@ mteb/tasks/clustering/eng/stack_exchange_clustering.py,sha256=IuUlUtmAnuSo6oLJJO
|
|
|
1943
1960
|
mteb/tasks/clustering/eng/stack_exchange_clustering_p2p.py,sha256=1hluyxWoIWABLTjLCmXtEsh-h7oHLWegmoEU74OwXrY,4117
|
|
1944
1961
|
mteb/tasks/clustering/eng/tiny_image_net.py,sha256=dRr46P37XLvRa49EJK6H1x3nJmwaYVDmLtLz-q-K5kM,1135
|
|
1945
1962
|
mteb/tasks/clustering/eng/twenty_newsgroups_clustering.py,sha256=0jjIeTlDuBtOzMmGsoZye2T-l4fufsZlWeib2q00OyM,3828
|
|
1946
|
-
mteb/tasks/clustering/eng/wiki_cities_clustering.py,sha256
|
|
1963
|
+
mteb/tasks/clustering/eng/wiki_cities_clustering.py,sha256=-csEB6xiAGRDTi5gsseoZsODCSwzF5_LIe1eTUO4lHM,1250
|
|
1947
1964
|
mteb/tasks/clustering/eng/wikipedia_chemistry_specialties_clustering.py,sha256=Shs6sYPe9s-HSGeKD9_0OEC4hUn3ODS8GFvX62XSK4U,1437
|
|
1948
1965
|
mteb/tasks/clustering/eng/wikipedia_chemistry_topics_clustering.py,sha256=NQ5bmskZGElqg6vnZFKbzREufr_6IJGUwMpu6ItEWvg,1424
|
|
1949
1966
|
mteb/tasks/clustering/fas/__init__.py,sha256=_jSSYKxbHl170edjvRKYtHoNkJ1I76A8DHcjSdJ4of0,315
|
|
@@ -1999,7 +2016,7 @@ mteb/tasks/clustering/vie/stack_exchange_clustering_p2p_vn.py,sha256=Do_58DiX_DV
|
|
|
1999
2016
|
mteb/tasks/clustering/vie/stack_exchange_clustering_vn.py,sha256=bFF2iu-KBZSP6jFYLBV2ssscsaACf-noFP6wL0R5Rx4,1881
|
|
2000
2017
|
mteb/tasks/clustering/vie/twenty_newsgroups_clustering_vn.py,sha256=LADX5CLncf0AlGdfypuAfglEM6D2gGnBBSTKIhPTR0w,1825
|
|
2001
2018
|
mteb/tasks/clustering/zho/__init__.py,sha256=Z6AYBtGjILLiguzbSOML6Gi3OuM2NICABhcSpl4dk2g,481
|
|
2002
|
-
mteb/tasks/clustering/zho/cmteb_clustering.py,sha256=
|
|
2019
|
+
mteb/tasks/clustering/zho/cmteb_clustering.py,sha256=Q7uYPNXuTjxeuWduvdYQT8jog-jHUJgpyJ6x7F0ILu8,14815
|
|
2003
2020
|
mteb/tasks/image_text_pair_classification/__init__.py,sha256=nw_jS391ttByOsxjJWnxMInBd9GiJVN09ZcuDb7OmeY,19
|
|
2004
2021
|
mteb/tasks/image_text_pair_classification/eng/__init__.py,sha256=3LhP9ZsZLyK8i077ZPFrerNFtIfo5kUcUH4hQNxpL-Y,463
|
|
2005
2022
|
mteb/tasks/image_text_pair_classification/eng/aro_coco_order.py,sha256=4CrBTUKXUHuR6k7fpJKFNcwA2-cRH3gO2T7TJCEsyaQ,1746
|
|
@@ -2007,7 +2024,7 @@ mteb/tasks/image_text_pair_classification/eng/aro_flickr_order.py,sha256=UipHMZ9
|
|
|
2007
2024
|
mteb/tasks/image_text_pair_classification/eng/aro_visual_attribution.py,sha256=BnJCUW28PMHL_6bBnr0Tj09NJyUXNvHTUSre4DtrqQQ,1595
|
|
2008
2025
|
mteb/tasks/image_text_pair_classification/eng/aro_visual_relation.py,sha256=V9iYtUPjk9cehL9SKneH7rgs15RaIA3U9ZLPZhkVCy0,1586
|
|
2009
2026
|
mteb/tasks/image_text_pair_classification/eng/image_co_de.py,sha256=2lQJc8bxJUx1nLyLmQZjJNcldXk3m1rXdv8V1nQQlFA,4072
|
|
2010
|
-
mteb/tasks/image_text_pair_classification/eng/sugar_crepe.py,sha256=
|
|
2027
|
+
mteb/tasks/image_text_pair_classification/eng/sugar_crepe.py,sha256=i4gewqbknogst2p1TNQXTo_qfIeTxk0DWS-9bNOFI7M,1988
|
|
2011
2028
|
mteb/tasks/image_text_pair_classification/eng/winoground.py,sha256=zdE8xTTC16NeiyxIC8vR2eH1Mv-YMP8Fd9fAeaYlIVI,1864
|
|
2012
2029
|
mteb/tasks/instruction_reranking/__init__.py,sha256=BqfiIJ3WTB31ZeTGG-_WG-sf93PmqQB7gJbg8ESbQhg,47
|
|
2013
2030
|
mteb/tasks/instruction_reranking/eng/__init__.py,sha256=FeTyCOipqqYpLXorPGAeXjuKX96AcX4PVLU_ZIQv4bI,330
|
|
@@ -2144,7 +2161,7 @@ mteb/tasks/reranking/multilingual/esci_reranking.py,sha256=opEtarEw8JhcqVhIZ2wQo
|
|
|
2144
2161
|
mteb/tasks/reranking/multilingual/hume_wikipedia_reranking_multilingual.py,sha256=899WZdh3jEORdzSnprr9Nt5FVF16PSWcwTK9swOg7cc,1505
|
|
2145
2162
|
mteb/tasks/reranking/multilingual/miracl_reranking.py,sha256=N4YpMCcmFjWtKy1g4LjVS_Ou0jZ2fJJomRKwJQZbus8,2283
|
|
2146
2163
|
mteb/tasks/reranking/multilingual/multi_long_doc_reranking.py,sha256=igJvX4fybXUkj_qWYbc9PLh8eH7pztS9OJRonxn3ME0,2692
|
|
2147
|
-
mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py,sha256=
|
|
2164
|
+
mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py,sha256=VjNQ9Tz9fCYWxCW4PYzJT30ZEVSboZBK9dIyJNfcpEQ,1682
|
|
2148
2165
|
mteb/tasks/reranking/multilingual/x_glue_wpr_reranking.py,sha256=2fXZX27xzrn0es4TKaDFaGdo08swUHEA2Ik3pbOzCd8,11360
|
|
2149
2166
|
mteb/tasks/reranking/rus/__init__.py,sha256=Txjqg4_Pq5MgNsmlIKnTet3UZe_oyraHDJgx_W8aBYA,72
|
|
2150
2167
|
mteb/tasks/reranking/rus/ru_bq_reranking.py,sha256=cojQO9p5jYn32RdhRmuQQ_-TJnviXR_SrrAFECoMs3g,1363
|
|
@@ -2163,7 +2180,7 @@ mteb/tasks/retrieval/code/code1_retrieval.py,sha256=bFQjQtKw0Lpn5Yj_uRFbRYUKnd61
|
|
|
2163
2180
|
mteb/tasks/retrieval/code/code_edit_search_retrieval.py,sha256=pSbrwXByeL9JaUzEMYsRl-upVMrQPlWXe1QCw1FqLcM,2877
|
|
2164
2181
|
mteb/tasks/retrieval/code/code_feedback_mt_retrieval.py,sha256=CiJ8pYt3gmYR0mnk8KqdaO1jXgQbpU4aKvOe4d7lpu4,1489
|
|
2165
2182
|
mteb/tasks/retrieval/code/code_feedback_st_retrieval.py,sha256=eNV1DKxmKJzhIlBVP4u1JsxPRV_SrfKG4Uy6csbXZjM,1477
|
|
2166
|
-
mteb/tasks/retrieval/code/code_rag.py,sha256=
|
|
2183
|
+
mteb/tasks/retrieval/code/code_rag.py,sha256=QeYOO6xk8fzrzIGBkBdRQDLsbjhL04QWArMqxxGcDLg,9385
|
|
2167
2184
|
mteb/tasks/retrieval/code/code_search_net_cc_retrieval.py,sha256=81y-W4l7I8mzQJ-bvCM7rfIGykI9VdO_2MFNJIvTJDk,3816
|
|
2168
2185
|
mteb/tasks/retrieval/code/code_search_net_retrieval.py,sha256=BECmHuIQXeDjjUBKmvjYji395Ep-RnF0fCgpGXDZTus,1504
|
|
2169
2186
|
mteb/tasks/retrieval/code/code_trans_ocean_contest_retrieval.py,sha256=pkFKpaKuBbGYU-tezvSz_BMESUKY5Pp17CmSj4e0_K8,1497
|
|
@@ -2179,9 +2196,9 @@ mteb/tasks/retrieval/code/stack_overflow_qa_retrieval.py,sha256=NjD7b7234xrlA2xK
|
|
|
2179
2196
|
mteb/tasks/retrieval/code/synthetic_text2_sql_retrieval.py,sha256=TQikfAT_n65OzJEWmlxaj4mncce3hdzFpuB9ZIsBktQ,1640
|
|
2180
2197
|
mteb/tasks/retrieval/code/wiki_sql_retrieval.py,sha256=OOypL5bkQ1xX7D6SlDPcfu1KIDlKPTlMKkR2gnax2b4,3310
|
|
2181
2198
|
mteb/tasks/retrieval/dan/__init__.py,sha256=gHkyCxzEZ-Nyv5HBLsQ0VPs1y0JjoxNX5q5kOhPiCT4,280
|
|
2182
|
-
mteb/tasks/retrieval/dan/dan_fever_retrieval.py,sha256=
|
|
2183
|
-
mteb/tasks/retrieval/dan/tv2_nordretrieval.py,sha256
|
|
2184
|
-
mteb/tasks/retrieval/dan/twitter_hjerne_retrieval.py,sha256=
|
|
2199
|
+
mteb/tasks/retrieval/dan/dan_fever_retrieval.py,sha256=pCUxdj5tBJeEZzhS-8fJT6cZnVftqxuFb-WA5rnTJQg,5606
|
|
2200
|
+
mteb/tasks/retrieval/dan/tv2_nordretrieval.py,sha256=clcUDbqDMW4eqlb5PiFheNs4N13J4UaGbN8C2X1HP5U,3742
|
|
2201
|
+
mteb/tasks/retrieval/dan/twitter_hjerne_retrieval.py,sha256=Rw7jeFTd4X62ExmgQt3GgXDGzXIG7aLzLtyhGo3KhEo,3375
|
|
2185
2202
|
mteb/tasks/retrieval/deu/__init__.py,sha256=xgC4Nt2DCgcoCAkiErKSCQENs18DJtHFbocSMWS_278,719
|
|
2186
2203
|
mteb/tasks/retrieval/deu/ger_da_lir_retrieval.py,sha256=ZQFzZLguoOmrZ_pZVk4w5N7vzhiUYcg8sTvs62S4EaY,1371
|
|
2187
2204
|
mteb/tasks/retrieval/deu/ger_da_lir_small_retrieval.py,sha256=zb5SGbztP3xQI9tt-3MEFsxEvxXzVlpo-ahx1cFd-WU,1572
|
|
@@ -2194,7 +2211,7 @@ mteb/tasks/retrieval/deu/german_qu_ad_retrieval.py,sha256=RYZCPgKaNPi14ncxnvz8_7
|
|
|
2194
2211
|
mteb/tasks/retrieval/deu/legal_qu_ad_retrieval.py,sha256=l_UNVkOQxqlKp6wef2BM-GKtyYnmYLYThGZZnUsR_-c,1594
|
|
2195
2212
|
mteb/tasks/retrieval/ell/__init__.py,sha256=46naXAZtJzyezyqOQGRIlr4zQVkqGQJdj7ztjMrez9Y,72
|
|
2196
2213
|
mteb/tasks/retrieval/ell/greek_civics_qa.py,sha256=uKmiWHHZvL1o5m17XCrzi16kHWFNhlEUHrtlk-LR1as,2514
|
|
2197
|
-
mteb/tasks/retrieval/eng/__init__.py,sha256=
|
|
2214
|
+
mteb/tasks/retrieval/eng/__init__.py,sha256=dVW7pHRu8SXp2_PJwn6InbfWVQ2VVy0PJvr_-bLBrc4,16158
|
|
2198
2215
|
mteb/tasks/retrieval/eng/aila_casedocs_retrieval.py,sha256=UKoN9oE8C412REf8MV16aUDgE5NwkHxnXsh4dcLztpk,1398
|
|
2199
2216
|
mteb/tasks/retrieval/eng/aila_statutes_retrieval.py,sha256=GugjZwaWmTlNyYzK8ACKZHIiUw2YBvLaVyTngN_qQyM,1366
|
|
2200
2217
|
mteb/tasks/retrieval/eng/alpha_nli_retrieval.py,sha256=GpOkizyeOs_ZMbRu9g1yAXdKkQr8PObUepP1OulbJio,1714
|
|
@@ -2215,6 +2232,7 @@ mteb/tasks/retrieval/eng/built_bench_retrieval.py,sha256=pqsIaVMl0ugGl5wx1oHPooq
|
|
|
2215
2232
|
mteb/tasks/retrieval/eng/chat_doctor_retrieval.py,sha256=_PQYn3jXgeLKjnb_uKxzHtM9SCICV3bsmgEcEoD2OXo,3582
|
|
2216
2233
|
mteb/tasks/retrieval/eng/chem_hotpot_qa_retrieval.py,sha256=sLTfqBf967htSU7Ego7zkEC8QYVWFI12YoHxa-urWEw,2114
|
|
2217
2234
|
mteb/tasks/retrieval/eng/chem_nq_retrieval.py,sha256=8bl4PRKJwYgNF0sZPZQINgn81-r3c_2gDoMQJYdpb8I,1886
|
|
2235
|
+
mteb/tasks/retrieval/eng/chemrxiv.py,sha256=-HS_axsMPaEKr8T0d9WvgfJ_UmAr00InHFjFpt4VDVo,1404
|
|
2218
2236
|
mteb/tasks/retrieval/eng/cirr_it2i_retrieval.py,sha256=o_4fVGosZjYsfMQy7tzQGaq8aijhUwXKcV7MYIYY4SY,1583
|
|
2219
2237
|
mteb/tasks/retrieval/eng/climate_fever_retrieval.py,sha256=obIROibY5nQ8oDGbkjG5Z3jrJ-rAXVmF_1w_XN6Nqm0,4615
|
|
2220
2238
|
mteb/tasks/retrieval/eng/cqa_dupstack_android_retrieval.py,sha256=-Uj8BOIPyjl8egm34qZGRKULGgEoaoac4wOhdWXAPgE,1674
|
|
@@ -2229,7 +2247,7 @@ mteb/tasks/retrieval/eng/cqa_dupstack_tex_retrieval.py,sha256=as6ZGvtZhmwM0acxU3
|
|
|
2229
2247
|
mteb/tasks/retrieval/eng/cqa_dupstack_unix_retrieval.py,sha256=vf8ZxjpjaQZ5irDtWLifu_pIxVFveoOLmTIqWwYCzWE,1642
|
|
2230
2248
|
mteb/tasks/retrieval/eng/cqa_dupstack_webmasters_retrieval.py,sha256=zEkmPfHW2_5NEQTM0Dh3aR6dJ0PUeeiYvGCC2bLnUJM,1622
|
|
2231
2249
|
mteb/tasks/retrieval/eng/cqa_dupstack_wordpress_retrieval.py,sha256=l6IkX_gHtl3PpbcLxFvcNePwZDul-dOxRX7l0bQlzgY,1634
|
|
2232
|
-
mteb/tasks/retrieval/eng/cub200_i2i_retrieval.py,sha256=
|
|
2250
|
+
mteb/tasks/retrieval/eng/cub200_i2i_retrieval.py,sha256=vqC9e3m5Pjtk5yKV2tapOQ28lkwo-UG-HfimpFQw7LQ,1263
|
|
2233
2251
|
mteb/tasks/retrieval/eng/dapfam_patent_retrieval.py,sha256=3rJDG8Id-gcG8K92SwgfXC8XREhH6uUbjU3u_AyCzgQ,27254
|
|
2234
2252
|
mteb/tasks/retrieval/eng/dbpedia_retrieval.py,sha256=24XDQknkp_yxLUEEyEj7JnmTpqmT8hdDaLVA1Pr9PB4,3475
|
|
2235
2253
|
mteb/tasks/retrieval/eng/edis_t2it_retrieval.py,sha256=hgFPxjozfGG25YeYV1WWMNarwJAXPWuPgFPbvsX-LqY,1393
|
|
@@ -2374,15 +2392,17 @@ mteb/tasks/retrieval/jpn/nlp_journal_title_abs_retrieval.py,sha256=JOOW_5pRKHzVn
|
|
|
2374
2392
|
mteb/tasks/retrieval/jpn/nlp_journal_title_intro_retrieval.py,sha256=aVFTFiANWrIz68FjHv9KBqlhpWlsmi9EAP052gECzaU,3078
|
|
2375
2393
|
mteb/tasks/retrieval/kat/__init__.py,sha256=H4phkKqg_yZzkK7T62aCMBzjbGZzLKJ-MngrQlPbW3A,93
|
|
2376
2394
|
mteb/tasks/retrieval/kat/georgian_faq_retrieval.py,sha256=4zyodSYCtHtBW9WKIGxFZaTXDrtHuaf3uyfIsDRGBqM,2494
|
|
2377
|
-
mteb/tasks/retrieval/kor/__init__.py,sha256=
|
|
2395
|
+
mteb/tasks/retrieval/kor/__init__.py,sha256=KHCU9neGBhnAkNj7-gJ5aBTJQkp9E0AcfRBU8CuG3hY,533
|
|
2378
2396
|
mteb/tasks/retrieval/kor/auto_rag_retrieval.py,sha256=tgffW8zMpDSv1FCOdS4_4SL5zKQj70JVSt_RKs3CgKY,1576
|
|
2379
2397
|
mteb/tasks/retrieval/kor/ko_strategy_qa.py,sha256=jk13ORetYtF0q36h8ljD6TeTHUwvK5F5ZbDoMCP3eWk,1156
|
|
2398
|
+
mteb/tasks/retrieval/kor/kovidore2_bench_retrieval.py,sha256=AjOLe2l9drBWOCeGzQqxfee3gwwU6ElAJ7-5pbFr6C8,6208
|
|
2380
2399
|
mteb/tasks/retrieval/kor/squad_kor_v1_retrieval.py,sha256=M7T5FkN1efK7euRslx-LZN7hS_QdIwqtUuVlWO-dico,1631
|
|
2381
|
-
mteb/tasks/retrieval/multilingual/__init__.py,sha256=
|
|
2400
|
+
mteb/tasks/retrieval/multilingual/__init__.py,sha256=rbeuLmNYooHPjgROuEOH84Q6QmGhuXnedej0d6xAgqc,6841
|
|
2382
2401
|
mteb/tasks/retrieval/multilingual/belebele_retrieval.py,sha256=gaVLEwuLEwMutMi9V-obpiYKbpllX2QNm2j3MVeebfE,7027
|
|
2383
2402
|
mteb/tasks/retrieval/multilingual/cross_lingual_semantic_discrimination_wmt19.py,sha256=_6r34ZvRiLVENYcrd87NjilybGaetBwKFEbO29zYmBU,4676
|
|
2384
2403
|
mteb/tasks/retrieval/multilingual/cross_lingual_semantic_discrimination_wmt21.py,sha256=Puy0PjpRr4M_Bbxdl7oWfa7pQGM04zaRaTNlnhyKejM,4677
|
|
2385
2404
|
mteb/tasks/retrieval/multilingual/cur_ev1_retrieval.py,sha256=dwzo2sqjamM_xkSiC-jbapyhDFezSJpM4S8KfBsuLPk,4562
|
|
2405
|
+
mteb/tasks/retrieval/multilingual/euro_pirq_retrieval.py,sha256=rlbgWMRdQgDD8z4ZBPgGU1fRAqjmoFDzh0uD_P6qR-4,1602
|
|
2386
2406
|
mteb/tasks/retrieval/multilingual/indic_qa_retrieval.py,sha256=K7iWZ-yTftZFQiXBOlkTJXGpQXs-ZFt6OQj_L6HjEwk,1872
|
|
2387
2407
|
mteb/tasks/retrieval/multilingual/jina_vdr_bench_retrieval.py,sha256=dw2YuFrA5OWFTL5zREiix93oAj7WcpcnAhCRh8YRoHI,44579
|
|
2388
2408
|
mteb/tasks/retrieval/multilingual/mintaka_retrieval.py,sha256=SwOliONITZM679LIBSMrvx_VymqE-zRN6YiYahhzfzw,2229
|
|
@@ -2399,7 +2419,7 @@ mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py,sha256=Mmcvrt_1cIxPf
|
|
|
2399
2419
|
mteb/tasks/retrieval/multilingual/statcan_dialogue_dataset_retrieval.py,sha256=iFUQUlO_ogBdQBVYBQW3o-AJDQ792yg1pJtRxA5I3Qo,3796
|
|
2400
2420
|
mteb/tasks/retrieval/multilingual/vdr_multilingual_retrieval.py,sha256=UduWKefwP7bPYxiDlztPEvSWXmTdw0xElglMbPY6XhA,4449
|
|
2401
2421
|
mteb/tasks/retrieval/multilingual/vidore2_bench_retrieval.py,sha256=vOfiruHywYkP8pccdAuGLyYyFTw1zK0qcXDnUFA8Z5A,9091
|
|
2402
|
-
mteb/tasks/retrieval/multilingual/vidore3_bench_retrieval.py,sha256=
|
|
2422
|
+
mteb/tasks/retrieval/multilingual/vidore3_bench_retrieval.py,sha256=V3jtSlWhoKR1PCvHsH0HrONy-oFghomwqihBonQs_50,17414
|
|
2403
2423
|
mteb/tasks/retrieval/multilingual/web_faq_retrieval.py,sha256=TM-Q98yXZny_PKHAFNEvw9o9ET_L6VM3aNis1NJ9DgM,2686
|
|
2404
2424
|
mteb/tasks/retrieval/multilingual/wikipedia_retrieval_multilingual.py,sha256=zyqAt63bHXNU_I37jb891pwWUyGzZUGkXCyhWlRbed8,1569
|
|
2405
2425
|
mteb/tasks/retrieval/multilingual/wit_t2i_retrieval.py,sha256=_swZhhMRs5OhzBdJVqQF1i9ZrTvAxaVrG0TpkPWkoHo,4359
|
|
@@ -2441,8 +2461,8 @@ mteb/tasks/retrieval/nld/touche2020_nl_retrieval.py,sha256=nPLZxNvhTDWkIJU6i2EPY
|
|
|
2441
2461
|
mteb/tasks/retrieval/nld/treccovidnl_retrieval.py,sha256=d9rL10YNTUBVubdFxIVxqEhkf8tx9Iuxsp1BZ-Ctoyk,1671
|
|
2442
2462
|
mteb/tasks/retrieval/nld/vabb_retrieval.py,sha256=FoudYkcY4IY0PNHCvx87bjoUnJJolWVwNhq6xH9HE84,1834
|
|
2443
2463
|
mteb/tasks/retrieval/nob/__init__.py,sha256=6PYJtnMhN5OtRwXWLAMu5V-3JnZnbHrLxMOk8Ir-b9w,126
|
|
2444
|
-
mteb/tasks/retrieval/nob/norquad.py,sha256=
|
|
2445
|
-
mteb/tasks/retrieval/nob/snl_retrieval.py,sha256=
|
|
2464
|
+
mteb/tasks/retrieval/nob/norquad.py,sha256=Vh1r_SNctD8PIPkAIVqjomNlB51eWn2_Sk8i6v7LyfQ,3747
|
|
2465
|
+
mteb/tasks/retrieval/nob/snl_retrieval.py,sha256=ROVkl6-tKJ670s8U1Q2EEAerkLR1zqo4yhA07y_Levg,3111
|
|
2446
2466
|
mteb/tasks/retrieval/pol/__init__.py,sha256=Ha3wf63NJliq1z6cqxLE8uSZH8RlscnNV-5Sq9tqwCM,2017
|
|
2447
2467
|
mteb/tasks/retrieval/pol/argu_ana_pl_retrieval.py,sha256=ztNXnRDCp5nKCd2BhR6Fg2tgzMsx4jqIxRaNYvbU-Y8,1252
|
|
2448
2468
|
mteb/tasks/retrieval/pol/cqadupstack_pl_retrieval.py,sha256=mwBibm87FjrDgrmozkPZTVzgQiquOJ4s1a7X-j2eZk0,16558
|
|
@@ -2471,10 +2491,10 @@ mteb/tasks/retrieval/swe/__init__.py,sha256=hJ-WHS2rIU8W5VvMNPtNOtCMaG2HyNConMWI
|
|
|
2471
2491
|
mteb/tasks/retrieval/swe/swe_faq_retrieval.py,sha256=s-o7IM_l7giuK4bJMdYkq2CtE0QQrkMVq5wMtbSJXpY,1599
|
|
2472
2492
|
mteb/tasks/retrieval/swe/swedn_retrieval.py,sha256=RFcpp0u-EKIwSRXR37tJ0_haY6Jvlfj8DWCgrD-0tnU,1512
|
|
2473
2493
|
mteb/tasks/retrieval/tur/__init__.py,sha256=tAKhhsTK6meiZwRMIvbx7_ye90JAAW3dlS8iI0r_vg8,84
|
|
2474
|
-
mteb/tasks/retrieval/tur/tur_hist_quad.py,sha256=
|
|
2475
|
-
mteb/tasks/retrieval/vie/__init__.py,sha256=
|
|
2494
|
+
mteb/tasks/retrieval/tur/tur_hist_quad.py,sha256=s7S5RrdwPx-0aatUwbgFbuLtj8927yQUHp1SEODfAl0,3669
|
|
2495
|
+
mteb/tasks/retrieval/vie/__init__.py,sha256=8k8aUndynSTP72j75e2tcU-8omMuGzOVZp3KxIAGaBg,2419
|
|
2476
2496
|
mteb/tasks/retrieval/vie/argu_ana_vn_retrieval.py,sha256=wmE6syUs0sLs7xgIOxXQuiQzpxrskdsTc5sK46v1YEQ,1754
|
|
2477
|
-
mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py,sha256=
|
|
2497
|
+
mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py,sha256=eonoS9NWKw-okR9Eqe4B8YgzGSbw0t7FcNpt0JwxyKU,3788
|
|
2478
2498
|
mteb/tasks/retrieval/vie/cqa_dupstack_android_vn_retrieval.py,sha256=1c6s1C0j1x7kE92WMv9JB4I_rdsHboyP-QILU-18rQ4,1851
|
|
2479
2499
|
mteb/tasks/retrieval/vie/cqa_dupstack_gis_vn_retrieval.py,sha256=h--L4OiLIalxHnSulEiUZjMo7JRxjia-mKOnnoaOkzI,1813
|
|
2480
2500
|
mteb/tasks/retrieval/vie/cqa_dupstack_mathematica_vn_retrieval.py,sha256=Jm5-2YbfBObFW_Ygwu03PAnSNMcZkH_7SL8L18KVWvQ,1857
|
|
@@ -2485,21 +2505,22 @@ mteb/tasks/retrieval/vie/cqa_dupstack_tex_vn_retrieval.py,sha256=9EiLKJrpRXACmxZ
|
|
|
2485
2505
|
mteb/tasks/retrieval/vie/cqa_dupstack_unix_vn_retrieval.py,sha256=7Mr2sZrAKzFDeMT_7eQQ_52OKzefGFAnkcHmO4lntIo,1824
|
|
2486
2506
|
mteb/tasks/retrieval/vie/cqa_dupstack_webmasters_vn_retrieval.py,sha256=2zDcrsCfcTAcybUmTpGeJQxUxNpkY7Ha8Tf0xwfqTcQ,1810
|
|
2487
2507
|
mteb/tasks/retrieval/vie/cqa_dupstack_wordpress_vn_retrieval.py,sha256=ppFPam-3AXXVLVp_DiXeHaSr16Va44_-eRkOH0m5ypo,1821
|
|
2488
|
-
mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py,sha256=
|
|
2489
|
-
mteb/tasks/retrieval/vie/fevervn_retrieval.py,sha256=
|
|
2508
|
+
mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py,sha256=9YEubKLDCMJhck_EjY4r3VzAFDu-P4SWR5CLnHdSkTQ,3571
|
|
2509
|
+
mteb/tasks/retrieval/vie/fevervn_retrieval.py,sha256=JLrpB90G5c7ZR2jM9GsYE2YQ51qTnn5FH-LDzO99Z1Q,3768
|
|
2490
2510
|
mteb/tasks/retrieval/vie/fi_qa2018_vn_retrieval.py,sha256=FGfFuLzRCTuupRxZdjVbBiwCOSspb3vwvtNAKvyXjso,1714
|
|
2491
2511
|
mteb/tasks/retrieval/vie/green_node_table_markdown_retrieval.py,sha256=O7iIcuvqhrHjB7J1VxH9YJ3v6cuFFBQdrrnYwLgeRfE,2429
|
|
2492
|
-
mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py,sha256=
|
|
2493
|
-
mteb/tasks/retrieval/vie/msmarcovn_retrieval.py,sha256=
|
|
2512
|
+
mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py,sha256=Vg_YI8YbZpXMmwZXS-2KLRutL2Nehw5tW231S2qShd4,3753
|
|
2513
|
+
mteb/tasks/retrieval/vie/msmarcovn_retrieval.py,sha256=syDFYmXL2xK3xCQrBAopGul8_3pDZzBdIjMpk2XbA1s,3951
|
|
2494
2514
|
mteb/tasks/retrieval/vie/nf_corpus_vn_retrieval.py,sha256=4S8IDJ-TVjKEy2teM8GOeDzHIZR8txkPvX0sGDYIyqs,1780
|
|
2495
|
-
mteb/tasks/retrieval/vie/nqvn_retrieval.py,sha256=
|
|
2515
|
+
mteb/tasks/retrieval/vie/nqvn_retrieval.py,sha256=f8LmUGAmsMnCdn-ovfPcpX12X4rmdpXj3F-q6GwjBEc,3551
|
|
2496
2516
|
mteb/tasks/retrieval/vie/quora_vn_retrieval.py,sha256=VkgKCFbDkOuZAsMl36lOr-MuvbhNfE8zUmmiySW9lSY,1837
|
|
2497
2517
|
mteb/tasks/retrieval/vie/sci_fact_vn_retrieval.py,sha256=7F3wSU9N2BAj4Jmzw7sjbcxTyYDYs_3I1434X3riaZ4,1773
|
|
2498
2518
|
mteb/tasks/retrieval/vie/scidocsvn_retrieval.py,sha256=WlcfDfF43jsNf9D_Bl3k02RiiPdedORID6CEEMAYTLc,1815
|
|
2499
2519
|
mteb/tasks/retrieval/vie/touche2020_vn_retrieval.py,sha256=DKcNwCCdANt7hNr3fLao9jkIJJjfxJ0jLLbD7_b-KnE,1752
|
|
2500
2520
|
mteb/tasks/retrieval/vie/treccovidvn_retrieval.py,sha256=ZlFFL37Zd_sbKXaUZx41XTxps-nnOi3PnBNCy9KvlJU,1826
|
|
2521
|
+
mteb/tasks/retrieval/vie/tvpl_retrieval.py,sha256=CGwgT9spHONw9cOeuum_BS7khZbooqoNqJgVV6Utfic,1611
|
|
2501
2522
|
mteb/tasks/retrieval/vie/vie_qu_ad_retrieval.py,sha256=eZh1rR43iXDHoylOGKjrUCopzEujE-1GSGTn2TMrkro,3621
|
|
2502
|
-
mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py,sha256=
|
|
2523
|
+
mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py,sha256=BI2GbbkOPnWQpbn9ul6ShHugAZ994iiS7hVi5v1K17Y,1386
|
|
2503
2524
|
mteb/tasks/retrieval/zho/__init__.py,sha256=dIN-rPfrEjkCuUCha8SpQdlzWYY6IMO_HLxebcBhQxA,438
|
|
2504
2525
|
mteb/tasks/retrieval/zho/cmteb_retrieval.py,sha256=DXNkvMQQZsKv1U5L_0boKEXGLDPn4RfauIlxwb0f-EQ,10789
|
|
2505
2526
|
mteb/tasks/retrieval/zho/le_ca_r_dv2_retrieval.py,sha256=O7kNB_7rpgG7_KsKC0SUKG42dhx66Rakk77uy4Iufk0,1293
|
|
@@ -2596,15 +2617,15 @@ mteb/tasks/zeroshot_classification/eng/stl10.py,sha256=sd3nV7x7mypsP0Ipxu5TRQj6f
|
|
|
2596
2617
|
mteb/tasks/zeroshot_classification/eng/sun397.py,sha256=Nls7tXM2Svu008MmAUjt-o_NSj-VNGKbW8qi-n7C18s,1963
|
|
2597
2618
|
mteb/tasks/zeroshot_classification/eng/ucf101.py,sha256=kwNRYks-_Oe4VE3GyoHIvN-2OJ6zhkwFr76WDNL9ymU,1884
|
|
2598
2619
|
mteb/tasks/zeroshot_classification/eng/templates/__init__.py,sha256=da1PTClDMl-IBkrSvq6JC1lnS-K_BASzCvxVhNxN5Ls,13
|
|
2599
|
-
mteb/types/__init__.py,sha256=
|
|
2600
|
-
mteb/types/_encoder_io.py,sha256=
|
|
2620
|
+
mteb/types/__init__.py,sha256=O26vXPolPReX7iVUBgUsyCkCo4w8KeLs7uueQDWp3fc,1142
|
|
2621
|
+
mteb/types/_encoder_io.py,sha256=6cnr2EbPPy70UV1Ts5C3PKQU6PncWrzgiAGaYVL1jb8,5847
|
|
2601
2622
|
mteb/types/_metadata.py,sha256=NN-W0S6a5TDV7UkpRx1pyWtGF4TyyCyoPUfHOwdeci8,2290
|
|
2602
|
-
mteb/types/_result.py,sha256=
|
|
2623
|
+
mteb/types/_result.py,sha256=UKNokV9pu3G74MGebocU512aU_fFU9I9nPKnrG9Q0iE,1035
|
|
2603
2624
|
mteb/types/_string_validators.py,sha256=PY-dYq4E8O50VS3bLYdldPWp400fl_WzUjfVSkNWe8U,523
|
|
2604
|
-
mteb/types/statistics.py,sha256=
|
|
2605
|
-
mteb-2.
|
|
2606
|
-
mteb-2.
|
|
2607
|
-
mteb-2.
|
|
2608
|
-
mteb-2.
|
|
2609
|
-
mteb-2.
|
|
2610
|
-
mteb-2.
|
|
2625
|
+
mteb/types/statistics.py,sha256=GwkBPmAr18Onu-vHtzHs0PFrhCozdOMiT13HwnWL4ZM,3961
|
|
2626
|
+
mteb-2.7.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
2627
|
+
mteb-2.7.2.dist-info/METADATA,sha256=2kNRzwJXNJ2oVPUSC2qDb_Va6HWiZW_QVniAW5SZabM,14457
|
|
2628
|
+
mteb-2.7.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
2629
|
+
mteb-2.7.2.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
|
|
2630
|
+
mteb-2.7.2.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
|
|
2631
|
+
mteb-2.7.2.dist-info/RECORD,,
|