mteb 2.1.4__py3-none-any.whl → 2.5.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 +4 -0
- mteb/_create_dataloaders.py +6 -3
- mteb/_evaluators/any_sts_evaluator.py +21 -12
- mteb/_evaluators/classification_metrics.py +54 -0
- mteb/_evaluators/clustering_evaluator.py +1 -1
- mteb/_evaluators/image/imagetext_pairclassification_evaluator.py +9 -4
- mteb/_evaluators/pair_classification_evaluator.py +30 -38
- mteb/_evaluators/sklearn_evaluator.py +15 -28
- mteb/_evaluators/text/bitext_mining_evaluator.py +4 -1
- mteb/_evaluators/text/summarization_evaluator.py +4 -2
- mteb/_evaluators/zeroshot_classification_evaluator.py +2 -2
- mteb/abstasks/_data_filter/__init__.py +0 -0
- mteb/abstasks/_data_filter/filters.py +125 -0
- mteb/abstasks/_data_filter/task_pipelines.py +102 -0
- mteb/abstasks/_statistics_calculation.py +6 -2
- mteb/abstasks/classification.py +0 -2
- mteb/abstasks/clustering.py +1 -1
- mteb/abstasks/clustering_legacy.py +3 -0
- mteb/abstasks/multilabel_classification.py +10 -3
- mteb/abstasks/pair_classification.py +8 -1
- mteb/abstasks/sts.py +7 -0
- mteb/abstasks/task_metadata.py +1 -0
- mteb/benchmarks/_create_table.py +84 -37
- mteb/benchmarks/benchmark.py +74 -15
- mteb/benchmarks/benchmarks/__init__.py +8 -0
- mteb/benchmarks/benchmarks/benchmarks.py +259 -15
- mteb/benchmarks/get_benchmark.py +2 -0
- mteb/cache.py +47 -10
- mteb/deprecated_evaluator.py +8 -13
- mteb/descriptive_stats/BitextMining/RuSciBenchBitextMining.v2.json +61 -0
- mteb/descriptive_stats/Classification/HebrewSentimentAnalysis.v3.json +60 -0
- mteb/descriptive_stats/Classification/TurkishConstitutionalCourtViolation.json +54 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3ComputerScienceRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3EnergyRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3FinanceEnRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3FinanceFrRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3HrRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3IndustrialRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3NuclearRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3PharmaceuticalsRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3PhysicsRetrieval.json +214 -0
- mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3TelecomRetrieval.json +214 -0
- mteb/descriptive_stats/PairClassification/TERRa.V2.json +35 -0
- mteb/descriptive_stats/Reranking/JQaRARerankingLite.json +35 -0
- mteb/descriptive_stats/Reranking/JaCWIRRerankingLite.json +35 -0
- mteb/descriptive_stats/Reranking/MultiLongDocReranking.json +466 -0
- mteb/descriptive_stats/Retrieval/ArguAna-NL.v2.json +30 -0
- mteb/descriptive_stats/Retrieval/JaCWIRRetrievalLite.json +30 -0
- mteb/descriptive_stats/Retrieval/JaqketRetrievalLite.json +30 -0
- mteb/descriptive_stats/Retrieval/MIRACLJaRetrievalLite.json +30 -0
- mteb/descriptive_stats/Retrieval/MrTyDiJaRetrievalLite.json +30 -0
- mteb/descriptive_stats/Retrieval/NFCorpus-NL.v2.json +30 -0
- mteb/descriptive_stats/Retrieval/SCIDOCS-NL.v2.json +30 -0
- mteb/descriptive_stats/Retrieval/SQuADKorV1Retrieval.json +30 -0
- mteb/descriptive_stats/Retrieval/SciFact-NL.v2.json +30 -0
- mteb/evaluate.py +65 -45
- mteb/leaderboard/app.py +268 -133
- mteb/leaderboard/benchmark_selector.py +14 -5
- mteb/leaderboard/figures.py +13 -15
- mteb/leaderboard/table.py +82 -17
- mteb/models/__init__.py +4 -1
- mteb/models/abs_encoder.py +21 -17
- mteb/models/cache_wrappers/__init__.py +2 -1
- mteb/models/cache_wrappers/cache_backends/_hash_utils.py +2 -2
- mteb/models/cache_wrappers/cache_wrapper.py +1 -1
- mteb/models/get_model_meta.py +3 -114
- mteb/models/instruct_wrapper.py +5 -1
- mteb/models/model_implementations/align_models.py +7 -0
- mteb/models/model_implementations/amazon_models.py +1 -0
- mteb/models/model_implementations/andersborges.py +65 -0
- mteb/models/model_implementations/ara_models.py +8 -0
- mteb/models/model_implementations/arctic_models.py +8 -0
- mteb/models/model_implementations/b1ade_models.py +1 -0
- mteb/models/model_implementations/bedrock_models.py +4 -0
- mteb/models/model_implementations/bge_models.py +60 -0
- mteb/models/model_implementations/bica_model.py +35 -0
- mteb/models/model_implementations/blip2_models.py +11 -0
- mteb/models/model_implementations/blip_models.py +27 -0
- mteb/models/model_implementations/bm25.py +1 -0
- mteb/models/model_implementations/bmretriever_models.py +4 -0
- mteb/models/model_implementations/cadet_models.py +9 -0
- mteb/models/model_implementations/cde_models.py +14 -0
- mteb/models/model_implementations/clip_models.py +3 -0
- mteb/models/model_implementations/clips_models.py +100 -0
- mteb/models/model_implementations/codefuse_models.py +162 -0
- mteb/models/model_implementations/codesage_models.py +15 -0
- mteb/models/model_implementations/cohere_models.py +8 -1
- mteb/models/model_implementations/cohere_v.py +5 -0
- mteb/models/model_implementations/colpali_models.py +14 -6
- mteb/models/model_implementations/colqwen_models.py +271 -1
- mteb/models/model_implementations/colsmol_models.py +2 -0
- mteb/models/model_implementations/conan_models.py +1 -0
- mteb/models/model_implementations/dino_models.py +171 -0
- mteb/models/model_implementations/e5_instruct.py +4 -0
- mteb/models/model_implementations/e5_models.py +12 -101
- mteb/models/model_implementations/e5_v.py +1 -0
- mteb/models/model_implementations/eagerworks_models.py +164 -0
- mteb/models/model_implementations/emillykkejensen_models.py +91 -0
- mteb/models/model_implementations/en_code_retriever.py +1 -0
- mteb/models/model_implementations/euler_models.py +32 -0
- mteb/models/model_implementations/evaclip_models.py +4 -0
- mteb/models/model_implementations/fa_models.py +58 -0
- mteb/models/model_implementations/facebookai.py +193 -0
- mteb/models/model_implementations/geogpt_models.py +1 -0
- mteb/models/model_implementations/gme_v_models.py +11 -5
- mteb/models/model_implementations/google_models.py +16 -5
- mteb/models/model_implementations/granite_vision_embedding_models.py +7 -2
- mteb/models/model_implementations/gritlm_models.py +2 -0
- mteb/models/model_implementations/gte_models.py +78 -0
- mteb/models/model_implementations/hinvec_models.py +1 -0
- mteb/models/model_implementations/human.py +1 -0
- mteb/models/model_implementations/ibm_granite_models.py +6 -0
- mteb/models/model_implementations/inf_models.py +2 -0
- mteb/models/model_implementations/jasper_models.py +255 -2
- mteb/models/model_implementations/jina_clip.py +1 -0
- mteb/models/model_implementations/jina_models.py +209 -5
- mteb/models/model_implementations/kalm_models.py +203 -25
- mteb/models/model_implementations/kblab.py +31 -0
- mteb/models/model_implementations/kennethenevoldsen_models.py +74 -0
- mteb/models/model_implementations/kfst.py +25 -0
- mteb/models/model_implementations/kowshik24_models.py +32 -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 +3 -2
- mteb/models/model_implementations/listconranker.py +1 -1
- mteb/models/model_implementations/llm2clip_models.py +3 -0
- mteb/models/model_implementations/llm2vec_models.py +8 -0
- mteb/models/model_implementations/mcinext_models.py +3 -0
- mteb/models/model_implementations/mdbr_models.py +2 -0
- mteb/models/model_implementations/misc_models.py +362 -0
- mteb/models/model_implementations/mme5_models.py +1 -0
- mteb/models/model_implementations/moco_models.py +11 -0
- mteb/models/model_implementations/mod_models.py +191 -0
- mteb/models/model_implementations/model2vec_models.py +13 -0
- mteb/models/model_implementations/moka_models.py +3 -0
- mteb/models/model_implementations/mxbai_models.py +9 -0
- mteb/models/model_implementations/nbailab.py +70 -0
- mteb/models/model_implementations/no_instruct_sentence_models.py +1 -0
- mteb/models/model_implementations/nomic_models.py +156 -4
- mteb/models/model_implementations/nomic_models_vision.py +7 -2
- mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py +23 -16
- mteb/models/model_implementations/nvidia_models.py +4 -1
- mteb/models/model_implementations/octen_models.py +195 -0
- mteb/models/model_implementations/openai_models.py +20 -16
- mteb/models/model_implementations/openclip_models.py +24 -0
- mteb/models/model_implementations/opensearch_neural_sparse_models.py +5 -0
- mteb/models/model_implementations/ops_moa_models.py +4 -2
- mteb/models/model_implementations/pawan_models.py +39 -0
- mteb/models/model_implementations/piccolo_models.py +8 -0
- mteb/models/model_implementations/promptriever_models.py +8 -4
- mteb/models/model_implementations/pylate_models.py +37 -4
- 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 +6 -3
- mteb/models/model_implementations/qzhou_models.py +3 -1
- mteb/models/model_implementations/random_baseline.py +16 -21
- mteb/models/model_implementations/rasgaard_models.py +34 -0
- mteb/models/model_implementations/reasonir_model.py +1 -0
- mteb/models/model_implementations/repllama_models.py +2 -0
- mteb/models/model_implementations/rerankers_custom.py +3 -3
- mteb/models/model_implementations/rerankers_monot5_based.py +14 -14
- mteb/models/model_implementations/richinfoai_models.py +1 -0
- mteb/models/model_implementations/ru_sentence_models.py +51 -0
- mteb/models/model_implementations/ruri_models.py +322 -0
- mteb/models/model_implementations/salesforce_models.py +3 -0
- mteb/models/model_implementations/samilpwc_models.py +1 -0
- mteb/models/model_implementations/sarashina_embedding_models.py +168 -0
- mteb/models/model_implementations/searchmap_models.py +1 -0
- mteb/models/model_implementations/seed_1_6_embedding_models.py +8 -2
- mteb/models/model_implementations/seed_1_6_embedding_models_1215.py +658 -0
- mteb/models/model_implementations/seed_models.py +1 -0
- mteb/models/model_implementations/sentence_transformers_models.py +57 -0
- mteb/models/model_implementations/shuu_model.py +32 -31
- mteb/models/model_implementations/siglip_models.py +10 -0
- mteb/models/model_implementations/sonar_models.py +1 -0
- mteb/models/model_implementations/spartan8806_atles_champion.py +34 -0
- mteb/models/model_implementations/stella_models.py +6 -0
- mteb/models/model_implementations/tarka_models.py +376 -0
- mteb/models/model_implementations/ua_sentence_models.py +10 -0
- mteb/models/model_implementations/uae_models.py +1 -0
- mteb/models/model_implementations/vdr_models.py +2 -0
- mteb/models/model_implementations/vi_vn_models.py +39 -0
- mteb/models/model_implementations/vista_models.py +2 -0
- mteb/models/model_implementations/vlm2vec_models.py +2 -0
- mteb/models/model_implementations/voyage_models.py +15 -0
- mteb/models/model_implementations/voyage_v.py +8 -2
- 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 +34 -0
- mteb/models/model_implementations/yuan_models_en.py +58 -0
- mteb/models/model_meta.py +442 -22
- mteb/models/search_encoder_index/__init__.py +7 -0
- mteb/models/search_encoder_index/search_backend_protocol.py +50 -0
- mteb/models/search_encoder_index/search_indexes/__init__.py +5 -0
- mteb/models/search_encoder_index/search_indexes/faiss_search_index.py +157 -0
- mteb/models/search_wrappers.py +165 -48
- mteb/models/sentence_transformer_wrapper.py +2 -7
- mteb/results/benchmark_results.py +88 -47
- mteb/results/model_result.py +11 -4
- mteb/results/task_result.py +37 -19
- mteb/similarity_functions.py +49 -0
- mteb/tasks/bitext_mining/multilingual/__init__.py +2 -1
- mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining.py +4 -2
- mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining_fast.py +1 -1
- mteb/tasks/bitext_mining/multilingual/ru_sci_bench_bitext_mining.py +47 -5
- mteb/tasks/bitext_mining/multilingual/web_faq_bitext_mining.py +2 -6
- mteb/tasks/classification/ara/ajgt.py +1 -2
- mteb/tasks/classification/ara/hotel_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/ara/online_store_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/ara/restaurant_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/ara/tweet_emotion_classification.py +1 -2
- mteb/tasks/classification/ara/tweet_sarcasm_classification.py +1 -2
- mteb/tasks/classification/ben/bengali_document_classification.py +1 -2
- mteb/tasks/classification/ben/bengali_hate_speech_classification.py +1 -2
- mteb/tasks/classification/ben/bengali_sentiment_analysis.py +1 -2
- mteb/tasks/classification/ces/csfdcz_movie_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/ces/czech_product_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/ces/czech_so_me_sentiment_classification.py +1 -2
- mteb/tasks/classification/dan/angry_tweets_classification.py +1 -2
- mteb/tasks/classification/dan/danish_political_comments_classification.py +1 -2
- mteb/tasks/classification/dan/ddisco_cohesion_classification.py +1 -2
- mteb/tasks/classification/dan/dk_hate_classification.py +1 -2
- mteb/tasks/classification/deu/german_politicians_twitter_sentiment_classification.py +1 -2
- mteb/tasks/classification/deu/ten_k_gnad_classification.py +1 -2
- mteb/tasks/classification/eng/amazon_polarity_classification.py +1 -2
- mteb/tasks/classification/eng/arxiv_classification.py +1 -2
- mteb/tasks/classification/eng/banking77_classification.py +1 -2
- mteb/tasks/classification/eng/dbpedia_classification.py +1 -2
- mteb/tasks/classification/eng/emotion_classification.py +1 -2
- mteb/tasks/classification/eng/financial_phrasebank_classification.py +1 -2
- mteb/tasks/classification/eng/frenk_en_classification.py +1 -2
- mteb/tasks/classification/eng/gtsrb_classification.py +1 -1
- mteb/tasks/classification/eng/imdb_classification.py +1 -2
- mteb/tasks/classification/eng/legal_bench_classification.py +14 -120
- mteb/tasks/classification/eng/news_classification.py +1 -2
- mteb/tasks/classification/eng/patch_camelyon_classification.py +1 -1
- mteb/tasks/classification/eng/patent_classification.py +1 -2
- mteb/tasks/classification/eng/poem_sentiment_classification.py +1 -2
- mteb/tasks/classification/eng/sds_eye_protection_classification.py +1 -2
- mteb/tasks/classification/eng/sds_gloves_classification.py +1 -2
- mteb/tasks/classification/eng/toxic_chat_classification.py +2 -19
- mteb/tasks/classification/eng/toxic_conversations_classification.py +1 -2
- mteb/tasks/classification/eng/tweet_sentiment_extraction_classification.py +1 -2
- mteb/tasks/classification/eng/tweet_topic_single_classification.py +2 -13
- mteb/tasks/classification/eng/ucf101_classification.py +1 -5
- mteb/tasks/classification/eng/wikipedia_bio_met_chem_classification.py +1 -2
- mteb/tasks/classification/eng/wikipedia_chem_fields_classification.py +1 -2
- mteb/tasks/classification/eng/wikipedia_comp_chem_spectroscopy_classification.py +1 -2
- mteb/tasks/classification/eng/wikipedia_crystallography_analytical_classification.py +1 -2
- mteb/tasks/classification/eng/wikipedia_theoretical_applied_classification.py +1 -2
- mteb/tasks/classification/eng/yahoo_answers_topics_classification.py +1 -2
- mteb/tasks/classification/eng/yelp_review_full_classification.py +1 -2
- mteb/tasks/classification/est/estonian_valence.py +1 -2
- mteb/tasks/classification/fas/fa_mteb_classification.py +7 -14
- mteb/tasks/classification/fil/filipino_hate_speech_classification.py +1 -2
- mteb/tasks/classification/fin/fin_toxicity_classification.py +2 -11
- mteb/tasks/classification/fra/french_book_reviews.py +1 -2
- mteb/tasks/classification/fra/movie_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/guj/gujarati_news_classification.py +1 -2
- mteb/tasks/classification/heb/__init__.py +6 -1
- mteb/tasks/classification/heb/hebrew_sentiment_analysis.py +62 -4
- mteb/tasks/classification/hin/hindi_discourse_classification.py +1 -2
- mteb/tasks/classification/hin/sentiment_analysis_hindi.py +1 -2
- mteb/tasks/classification/hrv/frenk_hr_classification.py +1 -2
- mteb/tasks/classification/ind/indonesian_id_clickbait_classification.py +1 -2
- mteb/tasks/classification/ind/indonesian_mongabay_conservation_classification.py +1 -2
- mteb/tasks/classification/ita/italian_linguist_acceptability_classification.py +1 -2
- mteb/tasks/classification/jav/javanese_imdb_classification.py +1 -2
- mteb/tasks/classification/jpn/wrime_classification.py +1 -2
- mteb/tasks/classification/kan/kannada_news_classification.py +1 -2
- mteb/tasks/classification/kor/klue_tc.py +1 -2
- mteb/tasks/classification/kor/kor_hate_classification.py +2 -17
- mteb/tasks/classification/kor/kor_sarcasm_classification.py +2 -19
- mteb/tasks/classification/kur/kurdish_sentiment_classification.py +1 -2
- mteb/tasks/classification/mal/malayalam_news_classification.py +1 -2
- mteb/tasks/classification/mar/marathi_news_classification.py +1 -2
- mteb/tasks/classification/mkd/macedonian_tweet_sentiment_classification.py +1 -2
- mteb/tasks/classification/multilingual/catalonia_tweet_classification.py +1 -6
- mteb/tasks/classification/multilingual/multi_hate_classification.py +1 -4
- mteb/tasks/classification/multilingual/ru_sci_bench_classification.py +4 -23
- mteb/tasks/classification/multilingual/scala_classification.py +1 -2
- mteb/tasks/classification/multilingual/sib200_classification.py +1 -6
- mteb/tasks/classification/mya/myanmar_news.py +1 -2
- mteb/tasks/classification/nep/nepali_news_classification.py +1 -2
- mteb/tasks/classification/nld/dutch_book_review_sentiment_classification.py +4 -2
- mteb/tasks/classification/nld/dutch_cola_classification.py +3 -0
- mteb/tasks/classification/nld/dutch_government_bias_classification.py +3 -0
- mteb/tasks/classification/nld/dutch_news_articles_classification.py +3 -0
- mteb/tasks/classification/nld/dutch_sarcastic_headlines_classification.py +3 -0
- mteb/tasks/classification/nld/iconclass_classification.py +3 -0
- mteb/tasks/classification/nld/open_tender_classification.py +3 -0
- mteb/tasks/classification/nld/vaccin_chat_nl_classification.py +3 -0
- mteb/tasks/classification/nob/no_rec_classification.py +1 -2
- mteb/tasks/classification/nob/norwegian_parliament_classification.py +1 -2
- mteb/tasks/classification/ory/odia_news_classification.py +1 -2
- mteb/tasks/classification/pol/polish_classification.py +3 -6
- mteb/tasks/classification/ron/moroco.py +1 -2
- mteb/tasks/classification/ron/romanian_reviews_sentiment.py +1 -2
- mteb/tasks/classification/ron/romanian_sentiment_classification.py +1 -2
- mteb/tasks/classification/rus/georeview_classification.py +1 -2
- mteb/tasks/classification/rus/headline_classification.py +1 -2
- mteb/tasks/classification/rus/inappropriateness_classification.py +1 -2
- mteb/tasks/classification/rus/ru_reviews_classification.py +1 -2
- mteb/tasks/classification/rus/ru_toixic_classification_okmlcup.py +1 -2
- mteb/tasks/classification/rus/senti_ru_eval.py +1 -2
- mteb/tasks/classification/sin/sinhala_news_classification.py +1 -2
- mteb/tasks/classification/sin/sinhala_news_source_classification.py +1 -2
- mteb/tasks/classification/slk/csfdsk_movie_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/slk/slovak_hate_speech_classification.py +1 -2
- mteb/tasks/classification/slk/slovak_movie_review_sentiment_classification.py +1 -2
- mteb/tasks/classification/slv/frenk_sl_classification.py +1 -2
- mteb/tasks/classification/spa/spanish_news_classification.py +1 -2
- mteb/tasks/classification/spa/spanish_sentiment_classification.py +1 -2
- mteb/tasks/classification/ssw/siswati_news_classification.py +1 -2
- mteb/tasks/classification/swa/swahili_news_classification.py +1 -2
- mteb/tasks/classification/swe/dalaj_classification.py +1 -2
- mteb/tasks/classification/swe/swe_rec_classification.py +1 -2
- mteb/tasks/classification/swe/swedish_sentiment_classification.py +1 -2
- mteb/tasks/classification/tam/tamil_news_classification.py +1 -2
- mteb/tasks/classification/tel/telugu_andhra_jyoti_news_classification.py +1 -2
- mteb/tasks/classification/tha/wisesight_sentiment_classification.py +1 -2
- mteb/tasks/classification/tsn/tswana_news_classification.py +1 -2
- mteb/tasks/classification/tur/__init__.py +4 -0
- mteb/tasks/classification/tur/turkish_constitutional_court.py +41 -0
- mteb/tasks/classification/tur/turkish_movie_sentiment_classification.py +1 -2
- mteb/tasks/classification/tur/turkish_product_sentiment_classification.py +1 -2
- mteb/tasks/classification/ukr/ukr_formality_classification.py +2 -15
- mteb/tasks/classification/urd/urdu_roman_sentiment_classification.py +1 -2
- mteb/tasks/classification/vie/amazon_counterfactual_vn_classification.py +1 -6
- mteb/tasks/classification/vie/amazon_polarity_vn_classification.py +1 -6
- mteb/tasks/classification/vie/amazon_reviews_vn_classification.py +1 -5
- mteb/tasks/classification/vie/banking77_vn_classification.py +1 -5
- mteb/tasks/classification/vie/emotion_vn_classification.py +1 -5
- mteb/tasks/classification/vie/imdb_vn_classification.py +1 -5
- mteb/tasks/classification/vie/massive_intent_vn_classification.py +1 -5
- mteb/tasks/classification/vie/massive_scenario_vn_classification.py +1 -5
- mteb/tasks/classification/vie/mtop_domain_vn_classification.py +1 -5
- mteb/tasks/classification/vie/mtop_intent_vn_classification.py +1 -5
- mteb/tasks/classification/vie/toxic_conversations_vn_classification.py +1 -5
- mteb/tasks/classification/vie/tweet_sentiment_extraction_vn_classification.py +1 -5
- mteb/tasks/classification/vie/vie_student_feedback_classification.py +1 -2
- mteb/tasks/classification/zho/cmteb_classification.py +5 -10
- mteb/tasks/classification/zho/yue_openrice_review_classification.py +1 -2
- mteb/tasks/classification/zul/isi_zulu_news_classification.py +1 -2
- mteb/tasks/clustering/jpn/mews_c16_ja_clustering.py +1 -3
- mteb/tasks/clustering/multilingual/sib200_clustering_s2s.py +1 -6
- mteb/tasks/clustering/nld/dutch_news_articles_clustering_p2p.py +3 -0
- mteb/tasks/clustering/nld/dutch_news_articles_clustering_s2s.py +3 -0
- mteb/tasks/clustering/nld/iconclass_clustering_s2s.py +3 -0
- mteb/tasks/clustering/nld/open_tender_clustering_p2p.py +3 -0
- mteb/tasks/clustering/nld/open_tender_clustering_s2s.py +3 -0
- mteb/tasks/clustering/nld/vabb_clustering_p2p.py +3 -0
- mteb/tasks/clustering/nld/vabb_clustering_s2s.py +3 -0
- mteb/tasks/clustering/vie/reddit_clustering_p2p_vn.py +1 -5
- mteb/tasks/clustering/vie/reddit_clustering_vn.py +1 -5
- mteb/tasks/clustering/vie/stack_exchange_clustering_p2p_vn.py +1 -5
- mteb/tasks/clustering/vie/stack_exchange_clustering_vn.py +1 -5
- mteb/tasks/clustering/vie/twenty_newsgroups_clustering_vn.py +1 -5
- mteb/tasks/multilabel_classification/ita/emit_classification.py +1 -5
- mteb/tasks/multilabel_classification/kor/kor_hate_speech_ml_classification.py +1 -9
- mteb/tasks/multilabel_classification/mlt/maltese_news_classification.py +1 -6
- mteb/tasks/multilabel_classification/nld/covid_disinformation_nl_multi_label_classification.py +3 -0
- mteb/tasks/multilabel_classification/nld/vabb_multi_label_classification.py +3 -0
- mteb/tasks/multilabel_classification/por/brazilian_toxic_tweets_classification.py +1 -6
- mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_group_classification.py +1 -1
- mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_subclass_classification.py +1 -2
- mteb/tasks/pair_classification/dan/talemaader_pc.py +1 -6
- mteb/tasks/pair_classification/eng/legal_bench_pc.py +1 -9
- mteb/tasks/pair_classification/nld/sick_nl_pair_classification.py +3 -0
- mteb/tasks/pair_classification/nld/xlwic_nl_pair_classification.py +3 -0
- mteb/tasks/pair_classification/rus/__init__.py +2 -2
- mteb/tasks/pair_classification/rus/terra.py +51 -25
- mteb/tasks/pair_classification/vie/sprint_duplicate_questions_pcvn.py +1 -5
- mteb/tasks/pair_classification/vie/twitter_sem_eval2015_pcvn.py +1 -5
- mteb/tasks/pair_classification/vie/twitter_url_corpus_pcvn.py +1 -5
- mteb/tasks/regression/multilingual/ru_sci_bench_regression.py +2 -6
- mteb/tasks/reranking/jpn/__init__.py +9 -1
- mteb/tasks/reranking/jpn/j_qa_ra_reranking_lite.py +49 -0
- mteb/tasks/reranking/jpn/ja_cwir_reranking_lite.py +47 -0
- mteb/tasks/reranking/multilingual/__init__.py +2 -0
- mteb/tasks/reranking/multilingual/multi_long_doc_reranking.py +70 -0
- mteb/tasks/reranking/multilingual/x_glue_wpr_reranking.py +1 -2
- mteb/tasks/reranking/vie/ask_ubuntu_dup_questions_vn.py +1 -5
- mteb/tasks/reranking/vie/sci_docs_reranking_vn.py +1 -5
- mteb/tasks/reranking/vie/stack_overflow_dup_questions_vn.py +1 -5
- mteb/tasks/retrieval/code/fresh_stack_retrieval.py +8 -5
- mteb/tasks/retrieval/eng/lit_search_retrieval.py +1 -8
- mteb/tasks/retrieval/eng/vidore_bench_retrieval.py +4 -0
- mteb/tasks/retrieval/jpn/__init__.py +8 -0
- mteb/tasks/retrieval/jpn/ja_cwir_retrieval.py +1 -4
- mteb/tasks/retrieval/jpn/ja_cwir_retrieval_lite.py +47 -0
- mteb/tasks/retrieval/jpn/jaqket_retrieval_lite.py +50 -0
- mteb/tasks/retrieval/jpn/miracl_ja_retrieval_lite.py +52 -0
- mteb/tasks/retrieval/jpn/mr_tydi_ja_retrieval_lite.py +48 -0
- mteb/tasks/retrieval/kat/georgian_faq_retrieval.py +11 -4
- mteb/tasks/retrieval/kor/__init__.py +2 -1
- mteb/tasks/retrieval/kor/squad_kor_v1_retrieval.py +47 -0
- mteb/tasks/retrieval/multilingual/__init__.py +22 -0
- mteb/tasks/retrieval/multilingual/belebele_retrieval.py +5 -4
- mteb/tasks/retrieval/multilingual/jina_vdr_bench_retrieval.py +56 -42
- mteb/tasks/retrieval/multilingual/mkqa_retrieval.py +1 -2
- mteb/tasks/retrieval/multilingual/mlqa_retrieval.py +1 -4
- mteb/tasks/retrieval/multilingual/multi_long_doc_retrieval.py +1 -2
- mteb/tasks/retrieval/multilingual/public_health_qa_retrieval.py +9 -4
- mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py +2 -12
- mteb/tasks/retrieval/multilingual/vidore2_bench_retrieval.py +4 -2
- mteb/tasks/retrieval/multilingual/vidore3_bench_retrieval.py +399 -0
- mteb/tasks/retrieval/nld/__init__.py +8 -4
- mteb/tasks/retrieval/nld/argu_ana_nl_retrieval.py +46 -27
- mteb/tasks/retrieval/nld/bbsard_nl_retrieval.py +3 -0
- mteb/tasks/retrieval/nld/dutch_news_articles_retrieval.py +3 -0
- mteb/tasks/retrieval/nld/legal_qa_nl_retrieval.py +3 -0
- mteb/tasks/retrieval/nld/nf_corpus_nl_retrieval.py +42 -25
- mteb/tasks/retrieval/nld/open_tender_retrieval.py +3 -0
- mteb/tasks/retrieval/nld/sci_fact_nl_retrieval.py +42 -24
- mteb/tasks/retrieval/nld/scidocsnl_retrieval.py +44 -27
- mteb/tasks/retrieval/nld/vabb_retrieval.py +3 -0
- mteb/tasks/retrieval/slk/slovak_sum_retrieval.py +1 -7
- mteb/tasks/retrieval/vie/argu_ana_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_android_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_gis_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_mathematica_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_physics_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_programmers_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_stats_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_tex_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_unix_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_webmasters_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/cqa_dupstack_wordpress_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/fevervn_retrieval.py +1 -7
- mteb/tasks/retrieval/vie/fi_qa2018_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/green_node_table_markdown_retrieval.py +16 -1
- mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py +1 -6
- mteb/tasks/retrieval/vie/msmarcovn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/nf_corpus_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/nqvn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/quora_vn_retrieval.py +1 -6
- mteb/tasks/retrieval/vie/sci_fact_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/scidocsvn_retrieval.py +1 -6
- mteb/tasks/retrieval/vie/touche2020_vn_retrieval.py +1 -5
- mteb/tasks/retrieval/vie/treccovidvn_retrieval.py +1 -5
- mteb/tasks/sts/nld/sick_nl_sts.py +1 -0
- mteb/tasks/sts/vie/biosses_stsvn.py +1 -5
- mteb/tasks/sts/vie/sickr_stsvn.py +1 -5
- mteb/tasks/sts/vie/sts_benchmark_stsvn.py +1 -5
- mteb/tasks/zeroshot_classification/eng/gtsrb.py +1 -1
- mteb/tasks/zeroshot_classification/eng/patch_camelyon.py +1 -1
- mteb/tasks/zeroshot_classification/eng/ucf101.py +1 -5
- mteb/types/_encoder_io.py +7 -2
- {mteb-2.1.4.dist-info → mteb-2.5.2.dist-info}/METADATA +11 -5
- {mteb-2.1.4.dist-info → mteb-2.5.2.dist-info}/RECORD +457 -391
- mteb/models/model_implementations/nb_sbert.py +0 -25
- {mteb-2.1.4.dist-info → mteb-2.5.2.dist-info}/WHEEL +0 -0
- {mteb-2.1.4.dist-info → mteb-2.5.2.dist-info}/entry_points.txt +0 -0
- {mteb-2.1.4.dist-info → mteb-2.5.2.dist-info}/licenses/LICENSE +0 -0
- {mteb-2.1.4.dist-info → mteb-2.5.2.dist-info}/top_level.txt +0 -0
|
@@ -1,50 +1,54 @@
|
|
|
1
|
-
mteb/__init__.py,sha256=
|
|
1
|
+
mteb/__init__.py,sha256=h2kru--zMEC0mmLQ688kggdDpBH7dxYz1HhLVHbRjcI,1376
|
|
2
2
|
mteb/__main__.py,sha256=KKWed4HW-OpfpJhCuKDNDPuAAIoppQY1g2gRuCdAmlw,34
|
|
3
|
-
mteb/_create_dataloaders.py,sha256=
|
|
3
|
+
mteb/_create_dataloaders.py,sha256=9aUHM1q2q748XHax_YYcPBmckIOOVCrJ_N2bJYVbn3s,14338
|
|
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=
|
|
8
|
+
mteb/cache.py,sha256=EogjsGZjoD6wZmVr4R3Lrc25C0x50Oie_i29K_4iHwo,21236
|
|
9
|
+
mteb/deprecated_evaluator.py,sha256=9cJIahJHNZphoqo6KZfp30LLhIdyiR3SSLcut4FR_Ek,26778
|
|
10
|
+
mteb/evaluate.py,sha256=IcaNu3VQwoeH7F1m8_7qJ6_lffHPujRcjKOBo4A7JBI,18631
|
|
11
11
|
mteb/filter_tasks.py,sha256=5XE1OYmgDDoJYnXwFf4ma_PIT_Lekzs420sQF_kpCiY,7240
|
|
12
12
|
mteb/get_tasks.py,sha256=6Gc18a2bZoLQV1Ms_qdr2KieAqIXg8TDg4l7ZN8rW2I,14218
|
|
13
13
|
mteb/load_results.py,sha256=Xw2ZX7BToU92WwUTQUQKPAgPhX7ucyRRdoCrxAoPHdI,6414
|
|
14
|
-
mteb/similarity_functions.py,sha256=
|
|
14
|
+
mteb/similarity_functions.py,sha256=ySSnrKl4cSKOWfyIKQPVTJtxuy2ZNfcv0COXDp22QlQ,10630
|
|
15
15
|
mteb/_evaluators/__init__.py,sha256=Ag1_RWpxBGMpujzd3FZjI40gY_KQKIpY31tJPuk-hFg,1013
|
|
16
16
|
mteb/_evaluators/_download.py,sha256=jntlcURbJxcxUjTmn2D9Tu6ZnWgDc9t5bY8p9CZCqv4,586
|
|
17
|
-
mteb/_evaluators/any_sts_evaluator.py,sha256=
|
|
18
|
-
mteb/_evaluators/
|
|
17
|
+
mteb/_evaluators/any_sts_evaluator.py,sha256=f0V3NDP5Bfp8qEeBwP8E-Enj5F5NbFze-kGmzlkObQA,3762
|
|
18
|
+
mteb/_evaluators/classification_metrics.py,sha256=TI-cMPWrIpMqpsNhhwSBY4bZUu2yM469fbcu44zolW0,1926
|
|
19
|
+
mteb/_evaluators/clustering_evaluator.py,sha256=5XoKHl5LcG9jQ9oBzNAWYVpZWWUxrars3t7TdIV7xS0,2052
|
|
19
20
|
mteb/_evaluators/evaluator.py,sha256=gwaeftcAKoGcIQs8jIaafynbcYrYErj6AitHBxgjn2w,807
|
|
20
|
-
mteb/_evaluators/pair_classification_evaluator.py,sha256=
|
|
21
|
+
mteb/_evaluators/pair_classification_evaluator.py,sha256=6lgDI9wRfEK937YTS4l0W1OL1IQpHYZ4l34-Lxi9KdA,6401
|
|
21
22
|
mteb/_evaluators/retrieval_evaluator.py,sha256=HsowKZkqRCNzTwM7EcsHX18KhVKAjrm0sa_wFrreCb8,3031
|
|
22
23
|
mteb/_evaluators/retrieval_metrics.py,sha256=we0damQCJrdaRUD6JlU2MM7Ls9xERP_OBS5gHt53u9Q,23588
|
|
23
|
-
mteb/_evaluators/sklearn_evaluator.py,sha256=
|
|
24
|
-
mteb/_evaluators/zeroshot_classification_evaluator.py,sha256=
|
|
24
|
+
mteb/_evaluators/sklearn_evaluator.py,sha256=f9SgBbvgCrkltdTebQTixT7KmIagGkjQ_cNnKuHTb3w,3772
|
|
25
|
+
mteb/_evaluators/zeroshot_classification_evaluator.py,sha256=dQq6g9my-0xn_0fLJXSnhN9Qu6PuJtWCKGIDrlkeyJk,2282
|
|
25
26
|
mteb/_evaluators/image/__init__.py,sha256=CsQd7OMkeV2Phun7paPWjayZ5qRnvj8H0TYBFeqMxag,148
|
|
26
|
-
mteb/_evaluators/image/imagetext_pairclassification_evaluator.py,sha256=
|
|
27
|
+
mteb/_evaluators/image/imagetext_pairclassification_evaluator.py,sha256=lVizL_11s0yFAZzuGqv-wtkBbMaK7cArD1eUkxwG4uU,4883
|
|
27
28
|
mteb/_evaluators/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
mteb/_evaluators/text/bitext_mining_evaluator.py,sha256=
|
|
29
|
-
mteb/_evaluators/text/summarization_evaluator.py,sha256=
|
|
29
|
+
mteb/_evaluators/text/bitext_mining_evaluator.py,sha256=XS7AVml5-BpQWtG1XFHf6fx8VMVPRwibg-9si4b-A_U,6308
|
|
30
|
+
mteb/_evaluators/text/summarization_evaluator.py,sha256=l0AwjVO594mtzPV9Kcqf_xtHHpkx6uhDJ61KnolcVAo,10461
|
|
30
31
|
mteb/abstasks/__init__.py,sha256=1iAwpYTWX7U-goak2KMmacPFCzxPchLQAmZ_uI0t-p0,1130
|
|
31
|
-
mteb/abstasks/_statistics_calculation.py,sha256=
|
|
32
|
+
mteb/abstasks/_statistics_calculation.py,sha256=UP2H2Cy8yqwtqeimTWfe4unmZ4iyyr5qiBNZzzFjy9o,5669
|
|
32
33
|
mteb/abstasks/_stratification.py,sha256=zfwkIVmD7Aq7mR2Yt8jTeW1j5ZVV7CIweW842VzcfXc,14364
|
|
33
34
|
mteb/abstasks/abstask.py,sha256=nZwiY_5d0VVtUrlCATngpFLG3JAovO5AvmD0nkkWsLE,25118
|
|
34
35
|
mteb/abstasks/aggregate_task_metadata.py,sha256=vzt1z2wDl0sXD7ErZFwKojYwmFUBPAnGlXLuqLA_-6Q,5992
|
|
35
36
|
mteb/abstasks/aggregated_task.py,sha256=puY6-EAqbL5ehKvFHTMriIdy3rAuqqYHF3ezog1eYxw,6671
|
|
36
|
-
mteb/abstasks/classification.py,sha256=
|
|
37
|
-
mteb/abstasks/clustering.py,sha256=
|
|
38
|
-
mteb/abstasks/clustering_legacy.py,sha256=
|
|
37
|
+
mteb/abstasks/classification.py,sha256=k_wrM1rq2XcVEK97RpU_uEcqhiWWbV7sm3B0dtvP5yY,13376
|
|
38
|
+
mteb/abstasks/clustering.py,sha256=4KcaU8_sNLmLvMhwDpNmcY2nD3BNyx_LcM-ddSv-wtY,14410
|
|
39
|
+
mteb/abstasks/clustering_legacy.py,sha256=zkibXenniqmSfFr8B8KvGGLoALkuxNZo_vJkeu_7GWQ,8803
|
|
39
40
|
mteb/abstasks/dataset_card_template.md,sha256=aD6l8qc3_jxwoIGJNYLzse-jpRa8hu92AxpnUtNgges,5122
|
|
40
|
-
mteb/abstasks/multilabel_classification.py,sha256=
|
|
41
|
-
mteb/abstasks/pair_classification.py,sha256=
|
|
41
|
+
mteb/abstasks/multilabel_classification.py,sha256=rpIwI3jV2YKtmXlFS2_Ytg4yYjdjPy0q5OU4MsRJFqo,9211
|
|
42
|
+
mteb/abstasks/pair_classification.py,sha256=ToOBFDiokZOz9ea-klMLj_37slbVFR3lSuihP81x9Lc,13263
|
|
42
43
|
mteb/abstasks/regression.py,sha256=SeacOErZUXGLGOcwqAvht6BlbD8fcsn9QhNiFIuJGyc,8832
|
|
43
44
|
mteb/abstasks/retrieval.py,sha256=7QTKYlGaGvF1lOQkB_B4qj8Vm2FxxFXNVTHhfwZO8Bw,26439
|
|
44
45
|
mteb/abstasks/retrieval_dataset_loaders.py,sha256=WukcFAn54rUpXULCG43eysHozXHAxo2CaPhQyL_2Yg8,9401
|
|
45
|
-
mteb/abstasks/sts.py,sha256=
|
|
46
|
-
mteb/abstasks/task_metadata.py,sha256=
|
|
46
|
+
mteb/abstasks/sts.py,sha256=aKTivjvDtAaoYb1hz1NBv2o3UpDR-3AaeHgkDFHMBGI,9077
|
|
47
|
+
mteb/abstasks/task_metadata.py,sha256=7CzYK1y-vwLUiWaEGPgU3HiolpW3UCul8Y2KJ-WSpeE,26892
|
|
47
48
|
mteb/abstasks/zeroshot_classification.py,sha256=4UxBIZ1e1iRK8PRAhCWnnSDirK2vi5-w2N5ZomCnaIM,5882
|
|
49
|
+
mteb/abstasks/_data_filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
mteb/abstasks/_data_filter/filters.py,sha256=p1QLy7V9jYVFicef61fwzCpbSpTA6rOv8CxkwEUTMvc,4585
|
|
51
|
+
mteb/abstasks/_data_filter/task_pipelines.py,sha256=L56nKTGwLH3QqmzkO-Wx4Vi5vfovnnKIDN_f3M8FSiA,3078
|
|
48
52
|
mteb/abstasks/image/__init__.py,sha256=NgvMJnp1g2mUv27RL-TvzA7s1BOdMG-EB1CrZfdbWdg,136
|
|
49
53
|
mteb/abstasks/image/image_text_pair_classification.py,sha256=SejETTXc3g2VSWYafTe-VAHZcNpX98bgzsWsqQisIzI,7712
|
|
50
54
|
mteb/abstasks/text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -52,11 +56,11 @@ mteb/abstasks/text/bitext_mining.py,sha256=8m86XHJ3TxguC9itxZRq2Bt_p0NYojojS2Btk
|
|
|
52
56
|
mteb/abstasks/text/reranking.py,sha256=rfRGRBeSjZLgkh8pneMgRm-vd9NHr5jSFH92YfOHfmU,7776
|
|
53
57
|
mteb/abstasks/text/summarization.py,sha256=KYEb8gh4JjpSsrvGUmQ2VlrVdzzVxIWcitXOJUaHhO4,6954
|
|
54
58
|
mteb/benchmarks/__init__.py,sha256=MQEVeli-zLaJ7Xg0z7RhXQwsdmm7Ht_W2Ln0rZo1Szc,225
|
|
55
|
-
mteb/benchmarks/_create_table.py,sha256=
|
|
56
|
-
mteb/benchmarks/benchmark.py,sha256=
|
|
57
|
-
mteb/benchmarks/get_benchmark.py,sha256
|
|
58
|
-
mteb/benchmarks/benchmarks/__init__.py,sha256=
|
|
59
|
-
mteb/benchmarks/benchmarks/benchmarks.py,sha256=
|
|
59
|
+
mteb/benchmarks/_create_table.py,sha256=b2RqGqi0ZonKbHecEcZiF4pkfE96smFRIzxOI82ETA8,22304
|
|
60
|
+
mteb/benchmarks/benchmark.py,sha256=E6hydDE9rkm4egsj52aDjQ0w4BQ1TBBP9gOAvw_Uh48,5583
|
|
61
|
+
mteb/benchmarks/get_benchmark.py,sha256=-n_O-gitRKZi48gJKNgGuI36hsP7yLVSiwulnMHN7Gw,3935
|
|
62
|
+
mteb/benchmarks/benchmarks/__init__.py,sha256=73NYNv98q-tRCqf2YHabvElz_a8g_mF75HTup0J-E5E,2220
|
|
63
|
+
mteb/benchmarks/benchmarks/benchmarks.py,sha256=_8zds06sQj41JzR6BHGWk33DZE2VGvabhBoyty5oAHk,97949
|
|
60
64
|
mteb/benchmarks/benchmarks/rteb_benchmarks.py,sha256=QnCSrTTaBfcRlAQp2Nu81tgv1idMXqiM16Fp2zKJ5Ys,10607
|
|
61
65
|
mteb/cli/__init__.py,sha256=v-csUr3eUZElIvrGB6QGtaIdndDfNWEe9oZchsGsJpg,64
|
|
62
66
|
mteb/cli/_display_tasks.py,sha256=7A06dT9sSoTz6shyMvskPxuc5eHY_H7PGPlROzMP0yw,2196
|
|
@@ -83,6 +87,7 @@ mteb/descriptive_stats/BitextMining/PhincBitextMining.json,sha256=bC31IS_N3-eehB
|
|
|
83
87
|
mteb/descriptive_stats/BitextMining/PubChemSMILESBitextMining.json,sha256=v4OzVwYV3Q-J3VitfK8zX_t2ZOZzvD4WtPeJoFeVNgI,3737
|
|
84
88
|
mteb/descriptive_stats/BitextMining/RomaTalesBitextMining.json,sha256=ciHSHuKgi4Ip0eH4f6G52w4MQ0BFvjizBN1Mh-2tPNE,1415
|
|
85
89
|
mteb/descriptive_stats/BitextMining/RuSciBenchBitextMining.json,sha256=f_lS0ua_dtwhmw-zqqZGGPJ4b_4u82VDicM8a71SId8,2209
|
|
90
|
+
mteb/descriptive_stats/BitextMining/RuSciBenchBitextMining.v2.json,sha256=jm6tsOyOooX64kgPl_rLTv_aiHy34Nc1MudlqXgrSpQ,2214
|
|
86
91
|
mteb/descriptive_stats/BitextMining/SAMSumFa.json,sha256=A1o7RjIwoNwjxRoMS6Qmn-4VGy5vX_QDK4sQAjJCM5Y,613
|
|
87
92
|
mteb/descriptive_stats/BitextMining/SRNCorpusBitextMining.json,sha256=41u--q1IXxBXqFb8f_BXYdv9fIlUkbfSPldzwCNbo-w,2136
|
|
88
93
|
mteb/descriptive_stats/BitextMining/SynPerChatbotRAGSumSRetrieval.json,sha256=nNEK8VHlRxDRmMjwuBA4U5RuXNZwxWyCHFCJHQbqIAQ,612
|
|
@@ -252,6 +257,7 @@ mteb/descriptive_stats/Classification/HeadlineClassification.json,sha256=VfTqah7
|
|
|
252
257
|
mteb/descriptive_stats/Classification/HeadlineClassification.v2.json,sha256=n-KiCmlKXb5QOzNG9QTdjwYR-cRV3Qvn96KOF2so7Cs,2110
|
|
253
258
|
mteb/descriptive_stats/Classification/HebrewSentimentAnalysis.json,sha256=j517xsonPntbr4k5Pa9ftGGIZqzaOLDvPqeGjWngdyI,1659
|
|
254
259
|
mteb/descriptive_stats/Classification/HebrewSentimentAnalysis.v2.json,sha256=FaxgCr_lbS-ppsd_cEp_87kbCRCGqFUDMZv375XGvdk,1658
|
|
260
|
+
mteb/descriptive_stats/Classification/HebrewSentimentAnalysis.v3.json,sha256=75u2ZWek2BT8JQElPqBHvCqTEXbeTwlrXcyQC5NK-wU,1658
|
|
255
261
|
mteb/descriptive_stats/Classification/HinDialectClassification.json,sha256=HK13-QJaWc0uC4wOqhZHKzT6i05_wJhURdUJ6Upq8OQ,4745
|
|
256
262
|
mteb/descriptive_stats/Classification/HindiDiscourseClassification.json,sha256=4XMoJL46RHYKYKdndxD5lZ2b3hGjL2CArx3eRalO8eg,1049
|
|
257
263
|
mteb/descriptive_stats/Classification/HindiDiscourseClassification.v2.json,sha256=MGz2Ntd2JxyHtlP3GhkhbMQ_yH2Eladd4vZSFOme2K8,2088
|
|
@@ -508,6 +514,7 @@ mteb/descriptive_stats/Classification/ToxicConversationsVNClassification.json,sh
|
|
|
508
514
|
mteb/descriptive_stats/Classification/TswanaNewsClassification.json,sha256=ve0LsVS9DKfqeXE3vwQD5yCtZE5EA209-g2BpJ-5Kn0,2703
|
|
509
515
|
mteb/descriptive_stats/Classification/TswanaNewsClassification.v2.json,sha256=ve0LsVS9DKfqeXE3vwQD5yCtZE5EA209-g2BpJ-5Kn0,2703
|
|
510
516
|
mteb/descriptive_stats/Classification/TurkicClassification.json,sha256=Vc4ZRF1j0eyasJLMIW-0vN4HhVtfDxU1nzS-y8P0FWU,19509
|
|
517
|
+
mteb/descriptive_stats/Classification/TurkishConstitutionalCourtViolation.json,sha256=EMEEd5F1RdDTYBRBD-oyYXtf87K_yufblqIFFm051U8,1508
|
|
511
518
|
mteb/descriptive_stats/Classification/TurkishMovieSentimentClassification.json,sha256=e0SE-SCDiioi8zkEIjKGAzHHpWoZJ41HT0igJRkK6Vs,1507
|
|
512
519
|
mteb/descriptive_stats/Classification/TurkishMovieSentimentClassification.v2.json,sha256=IhXQYsjSXHdpAdnJMLfM5etS7VeKeorQofv6aNFePU0,1509
|
|
513
520
|
mteb/descriptive_stats/Classification/TurkishProductSentimentClassification.json,sha256=cgpSg-LW1fPVVPuOkOl-d3cDXr5T5JVIwEnXjW3EKEc,1499
|
|
@@ -780,6 +787,16 @@ mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2BioMedicalLecturesRetr
|
|
|
780
787
|
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2ESGReportsHLRetrieval.json,sha256=DWI0Au4nsfUCSNWkAhK_ffGfmcRdgIHc_JYekjFlXKg,1091
|
|
781
788
|
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2ESGReportsRetrieval.json,sha256=KkXggOA5gKdMixYP5AYuVLL6KWkNkIWU6t9mwJiLtJs,6469
|
|
782
789
|
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2EconomicsReportsRetrieval.json,sha256=m9HPPB3Tcpv4jYeWIpj1RVTe0PABF94jWeF0bwIfB9Y,6443
|
|
790
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3ComputerScienceRetrieval.json,sha256=f_y7ispKHYN9theAndylaNriV0qZkUbCYh74eQ24Dk8,8985
|
|
791
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3EnergyRetrieval.json,sha256=VfkVR3Gb8we-w5gAzncPxoIzThu3sliSyZ8QdSdU6Dk,9141
|
|
792
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3FinanceEnRetrieval.json,sha256=-P-wMCQUhbCHxcQwU3KyjAOoB9Qa4NoF5GFVyM4lc3Q,8986
|
|
793
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3FinanceFrRetrieval.json,sha256=Z2Kd8_GAIT9gs99B4KcEmSX0RwrpMrP6UhIRb8Ei3YE,9026
|
|
794
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3HrRetrieval.json,sha256=Zlic-x7795meyH9HtFI1XDmP1bGS_VwppizGuigx8Kk,9153
|
|
795
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3IndustrialRetrieval.json,sha256=J3vyZdO3ENRFJeCjwLuzyz837yoZSMwAMkSekZpzkXQ,9151
|
|
796
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3NuclearRetrieval.json,sha256=iGQfW_Xiz3ls8eUnkBZt05AJvXeFIjCVFZKqo8TtWxA,9153
|
|
797
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3PharmaceuticalsRetrieval.json,sha256=WGCushRYslK44ENPob9j5AN-DZrdC0KmD8Mn3Ls-ZvA,9161
|
|
798
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3PhysicsRetrieval.json,sha256=EzrOi5Y0e_HzhaPVHXQtyhbyWwlZxpiAykWAC-Mn1Q0,8992
|
|
799
|
+
mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore3TelecomRetrieval.json,sha256=g1zONOaTPiWDVZCgjlRmlhtKzybZaVif887pJf2G0AI,9153
|
|
783
800
|
mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreArxivQARetrieval.json,sha256=enSBasFp7N6iaecl8TKZphJHCM7tguIPZGTt_-Gv7-U,1040
|
|
784
801
|
mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreDocVQARetrieval.json,sha256=k4kmjHaTraBGxCen4MIKi2t5RZ5p4bj5PTTRF6Z2PhM,1066
|
|
785
802
|
mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreInfoVQARetrieval.json,sha256=e2fhMwJfz2VzFO_JKb32CmIww4HHSJ_lubyIJxCZoec,1068
|
|
@@ -913,6 +930,7 @@ mteb/descriptive_stats/PairClassification/SprintDuplicateQuestions.json,sha256=S
|
|
|
913
930
|
mteb/descriptive_stats/PairClassification/SynPerChatbotRAGFAQPC.json,sha256=tH_5-4r-BtbpuPmR-dy_HDZ2-XoDtY5BUN2OS3pKUIQ,988
|
|
914
931
|
mteb/descriptive_stats/PairClassification/SynPerQAPC.json,sha256=_oV9WyPr3O93S0yd4PKnxVfEGZjkQ8eFGAyXnrgO4BY,995
|
|
915
932
|
mteb/descriptive_stats/PairClassification/SynPerTextKeywordsPC.json,sha256=X3syICEpIKwT__cEUqafPEEb5IbHKPe4o8qXfQJffKQ,987
|
|
933
|
+
mteb/descriptive_stats/PairClassification/TERRa.V2.json,sha256=ZN6JfpkVsay8rqp7SmgkP9TgjXx3_tN9pimu2W6APZw,976
|
|
916
934
|
mteb/descriptive_stats/PairClassification/TERRa.json,sha256=ZN6JfpkVsay8rqp7SmgkP9TgjXx3_tN9pimu2W6APZw,976
|
|
917
935
|
mteb/descriptive_stats/PairClassification/TalemaaderPC.json,sha256=2NE271xQXD7ZPvgmxRLB12eKmDPI51R7ODDVlLor6wU,960
|
|
918
936
|
mteb/descriptive_stats/PairClassification/TwitterSemEval2015-VN.json,sha256=moqTs9Pdns2c4ya1UqwOw3yuNk-Enx7zZ1cvDh83-2Q,985
|
|
@@ -942,11 +960,14 @@ mteb/descriptive_stats/Reranking/HUMENews21InstructionReranking.json,sha256=8R-4
|
|
|
942
960
|
mteb/descriptive_stats/Reranking/HUMERobust04InstructionReranking.json,sha256=Wk9-8xNePKEImoy3UkRasid58gai-e6gIlkzO_VIjIc,1156
|
|
943
961
|
mteb/descriptive_stats/Reranking/HUMEWikipediaRerankingMultilingual.json,sha256=7HSs-XvtdORejbHXbBu6GjPSRPYnemI-r3aWIdauwUo,5448
|
|
944
962
|
mteb/descriptive_stats/Reranking/JQaRAReranking.json,sha256=jH5RuOb36a-gH_QNh0DZQpofpyoYGkjKQm9iFn7-VUM,1201
|
|
963
|
+
mteb/descriptive_stats/Reranking/JQaRARerankingLite.json,sha256=pQFLnAx3zUt1AzlpkQhvI-Hix9rr_3dQ0WEmdUPKL6o,1205
|
|
945
964
|
mteb/descriptive_stats/Reranking/JaCWIRReranking.json,sha256=N4djULyJD_lgJa8x-qoACiaL33hUjdLK02hqXv7Bv5M,1169
|
|
965
|
+
mteb/descriptive_stats/Reranking/JaCWIRRerankingLite.json,sha256=CC6F5QTDt5dwroOBvm6h2FObxeCHifraGAZTzwLnUcc,1175
|
|
946
966
|
mteb/descriptive_stats/Reranking/LocBenchRR.json,sha256=k3Jck8QfSBxrsDenSgT06T2CbTSs8SGH2Y_RBrDWiTs,1227
|
|
947
967
|
mteb/descriptive_stats/Reranking/MIRACLReranking.json,sha256=boUEIFlFgCUG40M2-mXuXkJluK2POQYuoJYMXPdatVQ,27457
|
|
948
968
|
mteb/descriptive_stats/Reranking/MMarcoReranking.json,sha256=XF75mWbGFkCCOxgvgy04PWgd7AiHBvCrBGPumK_gKIk,1173
|
|
949
969
|
mteb/descriptive_stats/Reranking/MindSmallReranking.json,sha256=7_f4AvJnUdAU9dp41f5J3vhy-7rwTUw78ntq5oYQRdY,1213
|
|
970
|
+
mteb/descriptive_stats/Reranking/MultiLongDocReranking.json,sha256=WjjOHfMQSA0wURXsA07LpsRSIH5D04iOQC0IF8Xcd0g,19626
|
|
950
971
|
mteb/descriptive_stats/Reranking/MultiSWEbenchRR.json,sha256=a4AwlFiLI9Un10uoqeqkKf8Wvkvgza11z1tELL9nBgA,1229
|
|
951
972
|
mteb/descriptive_stats/Reranking/NamaaMrTydiReranking.json,sha256=j7gFd9-1dl8iqNEbINyQN6CIFZFMkniWOcQ7QhbYPCA,1177
|
|
952
973
|
mteb/descriptive_stats/Reranking/NevIR.json,sha256=fKQ8j_NUqPeqoYvBVBRobl7-rXs2el1yszpsKdkSReM,1165
|
|
@@ -974,6 +995,7 @@ mteb/descriptive_stats/Retrieval/AppsRetrieval.json,sha256=aDBlI0xzeOIFUn6a7ylFI
|
|
|
974
995
|
mteb/descriptive_stats/Retrieval/ArguAna-Fa.json,sha256=0Nug1fXP5u4mue6aLgHHilOoUbmI9s4491NTTbkqLsw,993
|
|
975
996
|
mteb/descriptive_stats/Retrieval/ArguAna-Fa.v2.json,sha256=NNCJfL5SpqUn5JHdWr4QiIKAnm6qEIdh9kDEIHp-37U,993
|
|
976
997
|
mteb/descriptive_stats/Retrieval/ArguAna-NL.json,sha256=MJfSGq8QAqbL_mjQXqtYGoxV2u0O_sIvc0ywHdlhO1c,994
|
|
998
|
+
mteb/descriptive_stats/Retrieval/ArguAna-NL.v2.json,sha256=MJfSGq8QAqbL_mjQXqtYGoxV2u0O_sIvc0ywHdlhO1c,994
|
|
977
999
|
mteb/descriptive_stats/Retrieval/ArguAna-PL.json,sha256=WtaqLTUsMBoobvdwyqmTEMB2FFc9ULgrdLX7wufn7DU,994
|
|
978
1000
|
mteb/descriptive_stats/Retrieval/ArguAna-VN.json,sha256=BAAAPBe_vwIKGFbmy_pVaKSiaAtsHP_UdeVB8lhzxMU,994
|
|
979
1001
|
mteb/descriptive_stats/Retrieval/ArguAna.json,sha256=pX57RjspcrVBDsf4iHDI5zJcQpoqfPQutSGtwkLmPW0,995
|
|
@@ -1161,11 +1183,13 @@ mteb/descriptive_stats/Retrieval/HumanEvalRetrieval.json,sha256=aiW3AaImNrsEfUUp
|
|
|
1161
1183
|
mteb/descriptive_stats/Retrieval/HunSum2AbstractiveRetrieval.json,sha256=o3FOm7CJmMUGsdfOc8fC2yln3C69WOnG78K13tq90Q0,992
|
|
1162
1184
|
mteb/descriptive_stats/Retrieval/IndicQARetrieval.json,sha256=Ao6BLg1DeZG0QLGerXX8YlqtoqMqw--G2QvaP2-9wtA,14374
|
|
1163
1185
|
mteb/descriptive_stats/Retrieval/JaCWIRRetrieval.json,sha256=sJH2BuaFdoxHH0MSqxdE1DCYSyGslvAbrWaanMSqOUA,985
|
|
1186
|
+
mteb/descriptive_stats/Retrieval/JaCWIRRetrievalLite.json,sha256=67G5OL3dGxPgk_oAClj4IYFgo28Zf_GZ4OnMdRy044c,986
|
|
1164
1187
|
mteb/descriptive_stats/Retrieval/JaGovFaqsRetrieval.json,sha256=CfZmdZfVDZjMqnAcCmgIFKoNHhIENxh0KVPVQe_lDi0,987
|
|
1165
1188
|
mteb/descriptive_stats/Retrieval/JaQuADRetrieval.json,sha256=-IxLNwbqC0ZSICvLnICXcANdefo-YrE8GSjU5Ir_vsY,986
|
|
1166
1189
|
mteb/descriptive_stats/Retrieval/JapaneseCode1Retrieval.json,sha256=DkRoV776czj5-d2-ehjZDHDzQhDwA0WVnjuVjRG-h4w,998
|
|
1167
1190
|
mteb/descriptive_stats/Retrieval/JapaneseLegal1Retrieval.json,sha256=LMZQX5p24p3mGkwqIYbqzGU76_nSGCtRP9aMXjAIc9s,1012
|
|
1168
1191
|
mteb/descriptive_stats/Retrieval/JaqketRetrieval.json,sha256=LJ0tsK1pov8gtcmfHl7-X8jqi8fIr_tjIMUMEK9YlJ0,993
|
|
1192
|
+
mteb/descriptive_stats/Retrieval/JaqketRetrievalLite.json,sha256=78u8XUaxtWViVgE6TWQRhUljNKx_XJX14S9FQuWzCzM,991
|
|
1169
1193
|
mteb/descriptive_stats/Retrieval/Ko-StrategyQA.json,sha256=DRJ8rW7y58wIlm8dRHlEiYnrR03Fz-Q9P_Y7y3BOEaw,1001
|
|
1170
1194
|
mteb/descriptive_stats/Retrieval/LEMBNarrativeQARetrieval.json,sha256=bGyt0faJEvh2TILMC_2qmrCRG37utjOayw3ZpjDNX9Q,1001
|
|
1171
1195
|
mteb/descriptive_stats/Retrieval/LEMBNeedleRetrieval.json,sha256=f-PHx91WO4YC6q0SqfbMWsH3S1zfhnXYCJZ2kwnQ17M,7685
|
|
@@ -1184,6 +1208,7 @@ mteb/descriptive_stats/Retrieval/LegalSummarization.json,sha256=wOTo3a35f0hcHwfw
|
|
|
1184
1208
|
mteb/descriptive_stats/Retrieval/LitSearchRetrieval.json,sha256=ws1aeRMer8XyiuYjsBoSgafej46zkeEf3XidAViWbNM,1003
|
|
1185
1209
|
mteb/descriptive_stats/Retrieval/LoTTE.json,sha256=L4lPCphR0r3_xN4IXQklQdE5NsLo97LsNvRv79rz5ZE,27011
|
|
1186
1210
|
mteb/descriptive_stats/Retrieval/MBPPRetrieval.json,sha256=jfOr5rVx4304Icglrh-94dXNuGjnxPIqP7e5_v6WRLs,983
|
|
1211
|
+
mteb/descriptive_stats/Retrieval/MIRACLJaRetrievalLite.json,sha256=rcXFC5tqA5KdU8J8mxCKqkpUMY_-qVEgKjCO7yuVZxU,1008
|
|
1187
1212
|
mteb/descriptive_stats/Retrieval/MIRACLRetrieval.json,sha256=a_tOrkxHdINJY_hXF24COOs5WF39NOgXGGTZgmN_ZpY,23211
|
|
1188
1213
|
mteb/descriptive_stats/Retrieval/MIRACLRetrievalHardNegatives.json,sha256=bcifWI51GUSkrhbIPCYT7ieV21Wsr1eBSCmZbXkjXCs,23040
|
|
1189
1214
|
mteb/descriptive_stats/Retrieval/MIRACLRetrievalHardNegatives.v2.json,sha256=bcifWI51GUSkrhbIPCYT7ieV21Wsr1eBSCmZbXkjXCs,23040
|
|
@@ -1203,9 +1228,11 @@ mteb/descriptive_stats/Retrieval/MedicalQARetrieval.json,sha256=3mN6T82PDSlpUJB0
|
|
|
1203
1228
|
mteb/descriptive_stats/Retrieval/MedicalRetrieval.json,sha256=vMa94jsIhkoTXMsPoHaJuXbBRaPuKto-KYlyHkOKHLM,980
|
|
1204
1229
|
mteb/descriptive_stats/Retrieval/MintakaRetrieval.json,sha256=1XcaYZBo5VHD6SVmKKzSCUk3FlJQK4uopnBV2epQeWk,10698
|
|
1205
1230
|
mteb/descriptive_stats/Retrieval/MrTidyRetrieval.json,sha256=X2Jp5nByCv_UNmeeHOpLbE20iGnos9nB_E28D4ZIvhg,14653
|
|
1231
|
+
mteb/descriptive_stats/Retrieval/MrTyDiJaRetrievalLite.json,sha256=Y_6lLFpRcqXCrGYCs19VfwMvpdVFrkqJVBsJvEfokt4,1004
|
|
1206
1232
|
mteb/descriptive_stats/Retrieval/MultiLongDocRetrieval.json,sha256=MGBeQevI03sxAK3qldfye3yRxQ7O5URV90NFyCNUr_k,33239
|
|
1207
1233
|
mteb/descriptive_stats/Retrieval/NFCorpus-Fa.json,sha256=rqHqn43MBaA4cni5FbCD5CK_TmQ5z3SiXDmfGx7GIUg,1002
|
|
1208
1234
|
mteb/descriptive_stats/Retrieval/NFCorpus-NL.json,sha256=x5eYhzWMKToA0ayxP3h10FyegCrbirrCywRQCzMI9SM,1003
|
|
1235
|
+
mteb/descriptive_stats/Retrieval/NFCorpus-NL.v2.json,sha256=x5eYhzWMKToA0ayxP3h10FyegCrbirrCywRQCzMI9SM,1003
|
|
1209
1236
|
mteb/descriptive_stats/Retrieval/NFCorpus-PL.json,sha256=gY7QM-fjnAnaMdfdRtHaMLzugzUDKMGM-xMomtuq2Qg,1005
|
|
1210
1237
|
mteb/descriptive_stats/Retrieval/NFCorpus-VN.json,sha256=S-oi9KTAmpfqWbN7aAfh6_E2QP34l9FT8c6x-UOKi4I,1002
|
|
1211
1238
|
mteb/descriptive_stats/Retrieval/NFCorpus.json,sha256=bRUA4qS0L3UekskKHRRVHsV28EPMQJ3i5CuCY6FA0J8,1004
|
|
@@ -1278,16 +1305,19 @@ mteb/descriptive_stats/Retrieval/RuSciBenchCociteRetrieval.json,sha256=_Op8mcXjv
|
|
|
1278
1305
|
mteb/descriptive_stats/Retrieval/SCIDOCS-Fa.json,sha256=CAXjSpSoy3V3TQM2PKtZtumi3fCUizc8Dlb89VEa620,986
|
|
1279
1306
|
mteb/descriptive_stats/Retrieval/SCIDOCS-Fa.v2.json,sha256=G7sucOO-wWsSV0oP_jhf3AKrv5MItE9P7Xauq0M4-_I,987
|
|
1280
1307
|
mteb/descriptive_stats/Retrieval/SCIDOCS-NL.json,sha256=qYFAgsJ7FT-qDLUStkHTmAu46PxesfIVEGU-DxEpf3c,987
|
|
1308
|
+
mteb/descriptive_stats/Retrieval/SCIDOCS-NL.v2.json,sha256=qYFAgsJ7FT-qDLUStkHTmAu46PxesfIVEGU-DxEpf3c,987
|
|
1281
1309
|
mteb/descriptive_stats/Retrieval/SCIDOCS-PL.json,sha256=-N7x2MkyRMCbN2fa3D0cnNbhZftGQt1BdiZezYo7fm0,988
|
|
1282
1310
|
mteb/descriptive_stats/Retrieval/SCIDOCS-VN.json,sha256=mzaXUR3KxBZBZoJ-hImEz9x6XEX-cu_WyKlb0ccx2mQ,988
|
|
1283
1311
|
mteb/descriptive_stats/Retrieval/SCIDOCS.json,sha256=Xa2HtyeuWVV9xJOT1YwhrM32RubiMql1lkz-d1moKSc,988
|
|
1284
1312
|
mteb/descriptive_stats/Retrieval/SIQA.json,sha256=Z8lTLsbrSCdGiYFOQ_yrb3bXxlkHOZ1uYZCGorvBDHQ,991
|
|
1285
1313
|
mteb/descriptive_stats/Retrieval/SKQuadRetrieval.json,sha256=VQXzc7XquS3pxJXlP0qovigYdleNgHBzwJIuHkCSXpM,1005
|
|
1286
1314
|
mteb/descriptive_stats/Retrieval/SNLRetrieval.json,sha256=3IHnPHydwVU_68lP5EM6OpHBM5CRuUQFPeny2bIVOEg,990
|
|
1315
|
+
mteb/descriptive_stats/Retrieval/SQuADKorV1Retrieval.json,sha256=-TLf6e9WKfnK_52TsTXCBRqd7xRgzD7sllWq91dhNhc,984
|
|
1287
1316
|
mteb/descriptive_stats/Retrieval/SadeemQuestionRetrieval.json,sha256=xvMLI0XiyWb7IKHUxFzyOUsRLj7oLFaG8R2cszLkwkw,995
|
|
1288
1317
|
mteb/descriptive_stats/Retrieval/SciFact-Fa.json,sha256=BZHK8KUj5ShBzfomQxUbH8GBVpWYpepwdNaOZ1DHUE0,988
|
|
1289
1318
|
mteb/descriptive_stats/Retrieval/SciFact-Fa.v2.json,sha256=1U8zTDU24TBaZ2cVX6puKT_oQx_vdLBeVz6MRswOrJE,976
|
|
1290
1319
|
mteb/descriptive_stats/Retrieval/SciFact-NL.json,sha256=ncSxx1APRy-i0Sh_x7uEmJAPCSm9cRgLBbyUd02t0QI,989
|
|
1320
|
+
mteb/descriptive_stats/Retrieval/SciFact-NL.v2.json,sha256=ncSxx1APRy-i0Sh_x7uEmJAPCSm9cRgLBbyUd02t0QI,989
|
|
1291
1321
|
mteb/descriptive_stats/Retrieval/SciFact-PL.json,sha256=UwPs1wwErZcNU6y5sNbKpuOOTnvXSGhgQY8IUKvjsas,977
|
|
1292
1322
|
mteb/descriptive_stats/Retrieval/SciFact-VN.json,sha256=iUldliZZHxc3sEbMVqmjWk9Z36-WhMJSvIk9Ep57DH0,1002
|
|
1293
1323
|
mteb/descriptive_stats/Retrieval/SciFact.json,sha256=1Gh0ph7_m5oc5hjlKw7KvslEd4qgJL8NgxtEkERTNXw,987
|
|
@@ -1408,134 +1438,160 @@ mteb/languages/language_family.json,sha256=OUGcHeOIPcZPb2FWmYLhxTS0JxjK5y3Fo6x0P
|
|
|
1408
1438
|
mteb/languages/language_scripts.py,sha256=5wix9HTYolNIpTiS5oXf2pGJyL7ftdGKs_m432w81V8,3998
|
|
1409
1439
|
mteb/languages/programming_languages.py,sha256=zxAakT3OSUnAuTnQ34VyeFIECnNXMlleZmAake6jsZE,211
|
|
1410
1440
|
mteb/leaderboard/__init__.py,sha256=991roXmtRwEQysV-37hWEzWpkvPgMCGRqZTHR-hm2io,88
|
|
1411
|
-
mteb/leaderboard/app.py,sha256=
|
|
1412
|
-
mteb/leaderboard/benchmark_selector.py,sha256=
|
|
1413
|
-
mteb/leaderboard/figures.py,sha256=
|
|
1414
|
-
mteb/leaderboard/table.py,sha256=
|
|
1441
|
+
mteb/leaderboard/app.py,sha256=5n17etnkh6TNgzPxOVhRx3vFmoji8ymBU-BVFZXUIFM,37157
|
|
1442
|
+
mteb/leaderboard/benchmark_selector.py,sha256=qd-2L20RQ4ACke01UlytkhZok1dkWgfUlXzfET52kGc,7956
|
|
1443
|
+
mteb/leaderboard/figures.py,sha256=cfOK82rRf-7sCjyP7GBxh4ezhOIt0OhD0_86mKtzLrg,7530
|
|
1444
|
+
mteb/leaderboard/table.py,sha256=KqU8aAbZ_tDp1O_qXRGWR32QnB7v_lsF6k5jxLcQVN0,10366
|
|
1415
1445
|
mteb/leaderboard/text_segments.py,sha256=iMIkS04QQjPbT-SkU0x6fOcS8xRbUYevryu9HydipKM,6570
|
|
1416
|
-
mteb/models/__init__.py,sha256=
|
|
1417
|
-
mteb/models/abs_encoder.py,sha256=
|
|
1418
|
-
mteb/models/get_model_meta.py,sha256=
|
|
1419
|
-
mteb/models/instruct_wrapper.py,sha256=
|
|
1420
|
-
mteb/models/model_meta.py,sha256=
|
|
1446
|
+
mteb/models/__init__.py,sha256=ABTuoqiBjBtBWW3LYY7ItBHdylR6jWoy06HH0g6j6fU,910
|
|
1447
|
+
mteb/models/abs_encoder.py,sha256=XblcGJYJlbTwhX43wvRft_XqnSq2WpzjFcNIwOyRjYo,16443
|
|
1448
|
+
mteb/models/get_model_meta.py,sha256=BMzlqTuzzhIFmfzmtshnRu2KCWxw9mCPyClJfe4oGdQ,5396
|
|
1449
|
+
mteb/models/instruct_wrapper.py,sha256=G4dMcmD5A4M3hmKATf5OYezmZv8-Ie189BrdmipBo7Y,9091
|
|
1450
|
+
mteb/models/model_meta.py,sha256=FkAgijAyfDBUK9Dn00o3zPVNtj2NPZ1717G0iO2Z3tU,29740
|
|
1421
1451
|
mteb/models/models_protocols.py,sha256=D2hYWn_UBGMaKtRwBx3u0B0ni6lHJjSzTxX21XFNwIc,8917
|
|
1422
|
-
mteb/models/search_wrappers.py,sha256=
|
|
1423
|
-
mteb/models/sentence_transformer_wrapper.py,sha256=
|
|
1424
|
-
mteb/models/cache_wrappers/__init__.py,sha256=
|
|
1452
|
+
mteb/models/search_wrappers.py,sha256=zpCvxUVNQWekyC4Fiz7mvlI0VPdSrFq41A0GrCDvBK4,20331
|
|
1453
|
+
mteb/models/sentence_transformer_wrapper.py,sha256=xSkFcw6EiCmPJeeMPYm0A0jONRIi0lQc0jBSEhUgXN8,12144
|
|
1454
|
+
mteb/models/cache_wrappers/__init__.py,sha256=1w1TnMwulWJSzNkLXjbh5MY3sqgHWc6vUntYn49i9X8,169
|
|
1425
1455
|
mteb/models/cache_wrappers/cache_backend_protocol.py,sha256=TR7kD7KbN1J4piszIecpegtLZYGy7sRHZt3SDWlImKk,1665
|
|
1426
|
-
mteb/models/cache_wrappers/cache_wrapper.py,sha256=
|
|
1456
|
+
mteb/models/cache_wrappers/cache_wrapper.py,sha256=KLDeOCe_ndQshbZa5ep2u3jovsl--tfpQzvt9EXyxCA,6589
|
|
1427
1457
|
mteb/models/cache_wrappers/cache_backends/__init__.py,sha256=hN2Tq7cpTxoOYSCJ1Wnpvb8dEm-kQLfCCahT1N9Bacw,123
|
|
1428
|
-
mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=
|
|
1458
|
+
mteb/models/cache_wrappers/cache_backends/_hash_utils.py,sha256=zAp7BDuYyGETn2kX58uk8_tn1G2B7bgcsItDDxgyn-w,488
|
|
1429
1459
|
mteb/models/cache_wrappers/cache_backends/faiss_cache.py,sha256=i9IfaCv1-_BvVokXFW1UZ9hMLCuM6rZ0tI-ZesoBkt4,3734
|
|
1430
1460
|
mteb/models/cache_wrappers/cache_backends/numpy_cache.py,sha256=GyTVC5DLph3EeRnDMO1EEQzBDoOgk2J1hPqpl07lefM,7442
|
|
1431
1461
|
mteb/models/model_implementations/__init__.py,sha256=BZDdde6ajKv-yroy9mqE2YS3Hw1KBdKoxBPg8aPTZEs,1164
|
|
1432
|
-
mteb/models/model_implementations/align_models.py,sha256=
|
|
1433
|
-
mteb/models/model_implementations/amazon_models.py,sha256=
|
|
1434
|
-
mteb/models/model_implementations/
|
|
1435
|
-
mteb/models/model_implementations/
|
|
1436
|
-
mteb/models/model_implementations/
|
|
1437
|
-
mteb/models/model_implementations/
|
|
1438
|
-
mteb/models/model_implementations/
|
|
1439
|
-
mteb/models/model_implementations/
|
|
1440
|
-
mteb/models/model_implementations/
|
|
1441
|
-
mteb/models/model_implementations/
|
|
1442
|
-
mteb/models/model_implementations/
|
|
1443
|
-
mteb/models/model_implementations/
|
|
1444
|
-
mteb/models/model_implementations/
|
|
1445
|
-
mteb/models/model_implementations/
|
|
1446
|
-
mteb/models/model_implementations/
|
|
1447
|
-
mteb/models/model_implementations/
|
|
1448
|
-
mteb/models/model_implementations/
|
|
1449
|
-
mteb/models/model_implementations/
|
|
1450
|
-
mteb/models/model_implementations/
|
|
1451
|
-
mteb/models/model_implementations/
|
|
1452
|
-
mteb/models/model_implementations/
|
|
1453
|
-
mteb/models/model_implementations/
|
|
1454
|
-
mteb/models/model_implementations/
|
|
1455
|
-
mteb/models/model_implementations/
|
|
1456
|
-
mteb/models/model_implementations/
|
|
1457
|
-
mteb/models/model_implementations/
|
|
1458
|
-
mteb/models/model_implementations/
|
|
1459
|
-
mteb/models/model_implementations/
|
|
1460
|
-
mteb/models/model_implementations/
|
|
1461
|
-
mteb/models/model_implementations/
|
|
1462
|
-
mteb/models/model_implementations/
|
|
1463
|
-
mteb/models/model_implementations/
|
|
1464
|
-
mteb/models/model_implementations/
|
|
1465
|
-
mteb/models/model_implementations/
|
|
1466
|
-
mteb/models/model_implementations/
|
|
1467
|
-
mteb/models/model_implementations/
|
|
1468
|
-
mteb/models/model_implementations/
|
|
1469
|
-
mteb/models/model_implementations/
|
|
1470
|
-
mteb/models/model_implementations/
|
|
1471
|
-
mteb/models/model_implementations/
|
|
1472
|
-
mteb/models/model_implementations/
|
|
1473
|
-
mteb/models/model_implementations/
|
|
1474
|
-
mteb/models/model_implementations/
|
|
1475
|
-
mteb/models/model_implementations/
|
|
1476
|
-
mteb/models/model_implementations/
|
|
1477
|
-
mteb/models/model_implementations/
|
|
1478
|
-
mteb/models/model_implementations/
|
|
1479
|
-
mteb/models/model_implementations/
|
|
1480
|
-
mteb/models/model_implementations/
|
|
1481
|
-
mteb/models/model_implementations/
|
|
1482
|
-
mteb/models/model_implementations/
|
|
1483
|
-
mteb/models/model_implementations/
|
|
1484
|
-
mteb/models/model_implementations/
|
|
1485
|
-
mteb/models/model_implementations/
|
|
1486
|
-
mteb/models/model_implementations/
|
|
1487
|
-
mteb/models/model_implementations/
|
|
1488
|
-
mteb/models/model_implementations/
|
|
1489
|
-
mteb/models/model_implementations/
|
|
1490
|
-
mteb/models/model_implementations/
|
|
1491
|
-
mteb/models/model_implementations/
|
|
1492
|
-
mteb/models/model_implementations/
|
|
1493
|
-
mteb/models/model_implementations/
|
|
1494
|
-
mteb/models/model_implementations/
|
|
1495
|
-
mteb/models/model_implementations/
|
|
1496
|
-
mteb/models/model_implementations/
|
|
1497
|
-
mteb/models/model_implementations/
|
|
1498
|
-
mteb/models/model_implementations/
|
|
1462
|
+
mteb/models/model_implementations/align_models.py,sha256=hKnheWaRqpAcPo1SJa_c2vBbB1ayrKjWmSjbZ5bwGAw,4544
|
|
1463
|
+
mteb/models/model_implementations/amazon_models.py,sha256=a9bLYQ1ZGWDo4RdyaPNsBqadMrBm550fLIFr1Zfp2Nk,720
|
|
1464
|
+
mteb/models/model_implementations/andersborges.py,sha256=AsVkRjIQKxJPdGW0ASRw_9hbfoDOYnROytV2Es-53BU,2413
|
|
1465
|
+
mteb/models/model_implementations/ara_models.py,sha256=UUTvLOZyKlF0-pTDniwQ-ItDONdH2JsyJKUdwtZ6aZI,1447
|
|
1466
|
+
mteb/models/model_implementations/arctic_models.py,sha256=Ca4OzC89F0kKb5CRd-r2Wo65MF2dsS5GiB6bCWnjfQY,10558
|
|
1467
|
+
mteb/models/model_implementations/b1ade_models.py,sha256=voOc0gTpqE31UxzaMZq_8AnWULJZwQBiFzViVx-m2Lk,1635
|
|
1468
|
+
mteb/models/model_implementations/bedrock_models.py,sha256=KKs_0_Cl6f0nzzmxmmKJ1vR2r3B7xRKMbNehov4EGjQ,8813
|
|
1469
|
+
mteb/models/model_implementations/bge_models.py,sha256=L98iw0GkSY5BDBVC3LELf2MYwjNG_sANlVwKxObD2xY,24528
|
|
1470
|
+
mteb/models/model_implementations/bica_model.py,sha256=Q2dg0w_lrcBhnOUjI4ej9ec9U82aWUyzNx7ezRv81vQ,1253
|
|
1471
|
+
mteb/models/model_implementations/blip2_models.py,sha256=F55NYHrK-rprWblIfkKg3GRsOuTqBNZlOY1R33UnLms,7687
|
|
1472
|
+
mteb/models/model_implementations/blip_models.py,sha256=AIVaMfXngIUxYV_HKeq4I531zKlDkiPMbadb8jDrelI,11724
|
|
1473
|
+
mteb/models/model_implementations/bm25.py,sha256=gsAHQSt10cU40Q-SOfmHCnzc4EY7GZyU0HzOVC-LhJQ,4862
|
|
1474
|
+
mteb/models/model_implementations/bmretriever_models.py,sha256=54OO8DJxlN3Fq-AfURZiFIbVMKisrnkOf59NNEKpYB0,6659
|
|
1475
|
+
mteb/models/model_implementations/cadet_models.py,sha256=wzbPmhsvBogFAEukubUir8EItlcmjcmfIGNMhtj-p7Y,2251
|
|
1476
|
+
mteb/models/model_implementations/cde_models.py,sha256=WdpoL_59fgRv2qq1nw9-oqkIvL8KAhHdSTxe5GB17fc,9064
|
|
1477
|
+
mteb/models/model_implementations/clip_models.py,sha256=A4AyhjDiTtFTqFC_Ae6oVuWoRbjVHkoe_c9YWFOsoV0,6185
|
|
1478
|
+
mteb/models/model_implementations/clips_models.py,sha256=QV9fIoyP2dKrra9aS04TE6rveUecVggr3jfXwNeSAOw,3488
|
|
1479
|
+
mteb/models/model_implementations/codefuse_models.py,sha256=NXkFqb1Pdp-HLWkzhh0ZzjVxd45fP0cQgGZ1KvXBk_s,14053
|
|
1480
|
+
mteb/models/model_implementations/codesage_models.py,sha256=ZPr2475aZI0vPbbLbetH2kDEY-1yNeO7OjzEfvykvg8,3076
|
|
1481
|
+
mteb/models/model_implementations/cohere_models.py,sha256=d2CjfrVLvkb1AATf5D1el5iMbRwW62bbZq02SwVXgvU,13936
|
|
1482
|
+
mteb/models/model_implementations/cohere_v.py,sha256=OM0Euckp4B0H8WI_xWfL1HrwC0gOS4NwYC3h-fpOPhk,15890
|
|
1483
|
+
mteb/models/model_implementations/colpali_models.py,sha256=9SooeNDU12nsisM6RIT9B9TOe56qX5vnL1rOctA4Wrc,9219
|
|
1484
|
+
mteb/models/model_implementations/colqwen_models.py,sha256=JOhrLlGBF1VEq-KqU6F8wAw80U96RWrGvXl3Ue6rBak,15886
|
|
1485
|
+
mteb/models/model_implementations/colsmol_models.py,sha256=TCxNsllRkI6DIb-JLtBlD5s9SrJhVLraP-DT1CNy0EQ,3041
|
|
1486
|
+
mteb/models/model_implementations/conan_models.py,sha256=AJJ8_Mv4QR1kQoKamjoZqgjLsosLb3AzNWNuWwvoNq4,6528
|
|
1487
|
+
mteb/models/model_implementations/dino_models.py,sha256=XMlcjKOpiM9PXqb35Ve1NpgxIsDnYsGNCVST7bYYpQY,25512
|
|
1488
|
+
mteb/models/model_implementations/e5_instruct.py,sha256=6bQLMC8Nea59qSu8RSqZp9n8XuQokBJHoxfZb2l6BQM,7780
|
|
1489
|
+
mteb/models/model_implementations/e5_models.py,sha256=18--kpfMSKxgflGjB3GvyDHOjzOpuooc3iSVe-no2U0,9607
|
|
1490
|
+
mteb/models/model_implementations/e5_v.py,sha256=Ko0ImRjhkzRM9kAvJozmHzUJg5pUtT4xf22f0AjXHI4,6716
|
|
1491
|
+
mteb/models/model_implementations/eagerworks_models.py,sha256=7bSInJGHOUqc9N-yzq0KUAtJZDX0zZkmEkzbCG_Pz0c,5770
|
|
1492
|
+
mteb/models/model_implementations/emillykkejensen_models.py,sha256=OveUjIikL81na6Qr8U0AcBfr9gzc0mnEKPqJXwBFSXc,3743
|
|
1493
|
+
mteb/models/model_implementations/en_code_retriever.py,sha256=6sSJ7l8Zrf71fYlcGaWAdF0vcZ9OAFeC1IsVtM2W_i8,1069
|
|
1494
|
+
mteb/models/model_implementations/euler_models.py,sha256=ftNTnLJ42cjvcUCuM5VyYcm3cQBHk6la5Gezj67_gt8,1132
|
|
1495
|
+
mteb/models/model_implementations/evaclip_models.py,sha256=oEoHnKQ4W09EQUCnNwpEd1ieDZGbth4j6lXfC-9jVBc,8104
|
|
1496
|
+
mteb/models/model_implementations/fa_models.py,sha256=Hnw2E2D1ahleS15kkC0aGDIKW1Y-0wIMOlXtqEG6Bks,9818
|
|
1497
|
+
mteb/models/model_implementations/facebookai.py,sha256=0x2c8LmvIFg6kGXtmDa9cbJeTmG3tia12vyr7lgycI0,4886
|
|
1498
|
+
mteb/models/model_implementations/geogpt_models.py,sha256=X85_jeFzBZMjNRsyqwFbIQBgXXP7rZAr5PI-wbuy828,1949
|
|
1499
|
+
mteb/models/model_implementations/gme_v_models.py,sha256=5hWzk2cuuxoQq6IbGbHu_BngVS4F7BT7epak3g6dHk0,13709
|
|
1500
|
+
mteb/models/model_implementations/google_models.py,sha256=lEpk1pOkp30kg6xljw8Gtkf-QGXAe8oJVp7JZhzWlik,11143
|
|
1501
|
+
mteb/models/model_implementations/granite_vision_embedding_models.py,sha256=A9yWcQezu_2yVxSm3pv0Da76Hl_uNUfrDVtPK1uqYFo,7341
|
|
1502
|
+
mteb/models/model_implementations/gritlm_models.py,sha256=FKz9AHPaelomNMZP282F5vwsMjEBV3C2IuL3XTxXKCA,3057
|
|
1503
|
+
mteb/models/model_implementations/gte_models.py,sha256=-4uVx1PuqmgYWo-puMcDiFPGhjyRwNTmlMSD6QiWwDo,13895
|
|
1504
|
+
mteb/models/model_implementations/hinvec_models.py,sha256=r1ChD3cpcllHO9ZsVyV29vnjobq4Q7hAKioidbX4D4g,1601
|
|
1505
|
+
mteb/models/model_implementations/human.py,sha256=EtYa8G7Dc8fDcelBVw0xTpxGGx1YKKuprVgksY5ZOcE,558
|
|
1506
|
+
mteb/models/model_implementations/ibm_granite_models.py,sha256=--8N-8Nk2V5TZqGUAo9B-qoDeVTbKIU_jy03ccotmbM,8058
|
|
1507
|
+
mteb/models/model_implementations/inf_models.py,sha256=IBC3TaEkOxrUDXkhXaVnxerjWOZZv1v1eEqhweGWKMY,2958
|
|
1508
|
+
mteb/models/model_implementations/jasper_models.py,sha256=K2DC0JfMVG8Fa822-xemKNhtuL2fZgiKYTTpXp2yBGg,16263
|
|
1509
|
+
mteb/models/model_implementations/jina_clip.py,sha256=Ulmy5lU7bROwaCq54YsxgFehWa8-qUSvzDF_SyvKrnc,5144
|
|
1510
|
+
mteb/models/model_implementations/jina_models.py,sha256=5HEUfHqozrrvWHjOyj2CEU6xAM3kduLbXl4GQG9aByc,35021
|
|
1511
|
+
mteb/models/model_implementations/kalm_models.py,sha256=SHqkw5p7HzmQrb_bIFjRp1rsuv2v531nXIk390h_ojY,62115
|
|
1512
|
+
mteb/models/model_implementations/kblab.py,sha256=n6sMGorSIBQlRHipPC3j2UiKA3r7avriwPvw0wuQKe4,1161
|
|
1513
|
+
mteb/models/model_implementations/kennethenevoldsen_models.py,sha256=ETKkFHRTSGR951YqU0TAJa2P--cZ7aaFV0CC6fdq5gU,3045
|
|
1514
|
+
mteb/models/model_implementations/kfst.py,sha256=sqlEUfAl84EPw1WjTZdlB4ps6GgkY3dCk3n8U9_YtV0,918
|
|
1515
|
+
mteb/models/model_implementations/kowshik24_models.py,sha256=i8fDs8Vm5vcpRTW3kI8P1odyDbogFMlMqGK5AOqXaes,1445
|
|
1516
|
+
mteb/models/model_implementations/lens_models.py,sha256=sVgP-wyi7SrMVyXkS1msMEKkE2ZTheYrt3QwGezqqJk,1748
|
|
1517
|
+
mteb/models/model_implementations/lgai_embedding_models.py,sha256=aigHsDVY1yhN4hhmaxUlsxbPXe9S8JhfpNq6XSY17s0,2359
|
|
1518
|
+
mteb/models/model_implementations/linq_models.py,sha256=huy7c95uYmhmjf6VZtx30YtMiSNrqhm7PJE3Vb3W-5g,1898
|
|
1519
|
+
mteb/models/model_implementations/listconranker.py,sha256=EwUAvWefDmx4x_YCIJRVsKI3j3konQIHOiJ4paG2lvY,4492
|
|
1520
|
+
mteb/models/model_implementations/llm2clip_models.py,sha256=BatYnh6y1w0zF24Fsp1z30kqmXf3FAKeq6_MEKdzEF8,9343
|
|
1521
|
+
mteb/models/model_implementations/llm2vec_models.py,sha256=0I_UydxopC41lKWcIpCMaKADXcFVUfPwKwk0vZFG2zY,12846
|
|
1522
|
+
mteb/models/model_implementations/mcinext_models.py,sha256=tjDFnPpFjSeytcrvGmMeTjSV-vXxyNHgV1r33RsBmUk,19058
|
|
1523
|
+
mteb/models/model_implementations/mdbr_models.py,sha256=knDaM_j_kL9uq1Ng5s6InsTEZ-Cu0jBux8zmrbDnrig,2561
|
|
1524
|
+
mteb/models/model_implementations/misc_models.py,sha256=djB2ySEBiCvxwWGZUXIwzeH9eaXtlqV7ttQEDUFlKQQ,70754
|
|
1525
|
+
mteb/models/model_implementations/mme5_models.py,sha256=Fuge1fqGbaWqw-Hbd75Xr31JTqJTL45yJ4DAw3QJuyE,1510
|
|
1526
|
+
mteb/models/model_implementations/moco_models.py,sha256=mfn7JetQByzN09NY30O5KAOlNPYCe7BYfGkS3Uk8xDg,5535
|
|
1527
|
+
mteb/models/model_implementations/mod_models.py,sha256=jt33SfV476FIQJ-W-FRi_ocyRY1u8ldRFuo-PgejJDU,6335
|
|
1528
|
+
mteb/models/model_implementations/model2vec_models.py,sha256=eSHjo_X3I_6MGJdT8Hz_b8RQlO5nL9VUatQgbO2yr04,14103
|
|
1529
|
+
mteb/models/model_implementations/moka_models.py,sha256=xY3geXKZwefqVsDZq95AB75GlZpvA9mJKSyPMvb75Us,5073
|
|
1530
|
+
mteb/models/model_implementations/mxbai_models.py,sha256=YcgOdcx_vv5UpPi7k7PBuq_M0eqCaktfWfQV5NTlNoc,3929
|
|
1531
|
+
mteb/models/model_implementations/nbailab.py,sha256=DtfHjQgGX1YPnlceqZDqDr6IlFwKCJjWN-BEcNt5m-s,2474
|
|
1532
|
+
mteb/models/model_implementations/no_instruct_sentence_models.py,sha256=oH_ReS5_q7xzJT26p84uzGiszTATbPU3E-mIy4QKgrk,4002
|
|
1533
|
+
mteb/models/model_implementations/nomic_models.py,sha256=S5H03E6YdOccq7fh9Ej-gCE88OdR5Cdj3cpQ63HRSCg,14892
|
|
1534
|
+
mteb/models/model_implementations/nomic_models_vision.py,sha256=9AQRJkPkFDPjuSqdIh8wJ0-pqS2fe_oDZzPR4Y0tOSg,6831
|
|
1535
|
+
mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py,sha256=phbwPnRfrEuJTlrUucI1qxcViMQWogeXQkTZbUkNsQc,6388
|
|
1536
|
+
mteb/models/model_implementations/nvidia_models.py,sha256=OKRnlhlMyBASe-RpU_8j4_ENFdjOtNsZm5fKlnAtcAo,21633
|
|
1537
|
+
mteb/models/model_implementations/octen_models.py,sha256=TT87UHZRK6UDenoIXaarR5oCZ6wgILivu-gondkNqDM,6500
|
|
1538
|
+
mteb/models/model_implementations/openai_models.py,sha256=905BajYi_XyOZgqU3AeKpwIttLoUitaAyc48sTWI6Jg,9482
|
|
1539
|
+
mteb/models/model_implementations/openclip_models.py,sha256=KrLzLtpudqVSEFHaGqY_dOGfC3ZkjYT4_02DYWMUeI0,11644
|
|
1540
|
+
mteb/models/model_implementations/opensearch_neural_sparse_models.py,sha256=hS33RteHexhkIekQVKsjx6czKr6YdWINaVa60J91Wnk,8481
|
|
1541
|
+
mteb/models/model_implementations/ops_moa_models.py,sha256=EFEDwYuKiLzaSAg2_wWesyqRkaCtTcsa-B8Pu2NvEus,2465
|
|
1499
1542
|
mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py,sha256=qGXv71qRjNCIFluZOwvfBlFlKKyN2bXBokwUPk4KHmM,1066
|
|
1500
|
-
mteb/models/model_implementations/
|
|
1501
|
-
mteb/models/model_implementations/
|
|
1502
|
-
mteb/models/model_implementations/
|
|
1503
|
-
mteb/models/model_implementations/
|
|
1504
|
-
mteb/models/model_implementations/
|
|
1505
|
-
mteb/models/model_implementations/
|
|
1506
|
-
mteb/models/model_implementations/
|
|
1507
|
-
mteb/models/model_implementations/
|
|
1508
|
-
mteb/models/model_implementations/
|
|
1509
|
-
mteb/models/model_implementations/
|
|
1510
|
-
mteb/models/model_implementations/
|
|
1511
|
-
mteb/models/model_implementations/
|
|
1512
|
-
mteb/models/model_implementations/
|
|
1513
|
-
mteb/models/model_implementations/
|
|
1514
|
-
mteb/models/model_implementations/
|
|
1515
|
-
mteb/models/model_implementations/
|
|
1516
|
-
mteb/models/model_implementations/
|
|
1517
|
-
mteb/models/model_implementations/
|
|
1518
|
-
mteb/models/model_implementations/
|
|
1519
|
-
mteb/models/model_implementations/
|
|
1520
|
-
mteb/models/model_implementations/
|
|
1521
|
-
mteb/models/model_implementations/
|
|
1522
|
-
mteb/models/model_implementations/
|
|
1523
|
-
mteb/models/model_implementations/
|
|
1543
|
+
mteb/models/model_implementations/pawan_models.py,sha256=5Oruum3FczgkxjpCS_ilTFQd1B_aaHao_yXnOjE4qck,1177
|
|
1544
|
+
mteb/models/model_implementations/piccolo_models.py,sha256=Y8jDNzp3VAdwIsT_fGG1ulWVyV7NTWs7_jpmWK036gw,2165
|
|
1545
|
+
mteb/models/model_implementations/promptriever_models.py,sha256=pSlOQaem5tnLn9k9_WoJm4Cmw_Wj5oBvwfr5zMvykC0,6432
|
|
1546
|
+
mteb/models/model_implementations/pylate_models.py,sha256=S5X8FMCVoYPU0jHhsqV1mK6OmIrx_QxbKFjRsqywoPU,16826
|
|
1547
|
+
mteb/models/model_implementations/qodo_models.py,sha256=jMGlDYyAYp87zOwDN_WNqsU_PVLv2Tlrkbpe_sb5iiw,2089
|
|
1548
|
+
mteb/models/model_implementations/qtack_models.py,sha256=YEuK7Qi1e3NyB1tbOmuqV-BIQIaarhQK-33WejupJiA,1250
|
|
1549
|
+
mteb/models/model_implementations/qwen3_models.py,sha256=98yCMHTg8ueCT1fXkaNWMBleSLS-ygcJEnjQmcacGmI,5210
|
|
1550
|
+
mteb/models/model_implementations/qzhou_models.py,sha256=TZBX9WXn2X5JyFALx2aSZLGsIseNnhrCVMycHU8LUXk,3588
|
|
1551
|
+
mteb/models/model_implementations/random_baseline.py,sha256=Ei6YZWhhJuPI60iUzBCHB9FevtlW02VFOslpz1_-8-4,7596
|
|
1552
|
+
mteb/models/model_implementations/rasgaard_models.py,sha256=eGe_J_osCOQ4CRBU4e3-OQbfQL4Ab98Abk98Pv6iWtE,1286
|
|
1553
|
+
mteb/models/model_implementations/reasonir_model.py,sha256=o9-DufwMG3gutecFsX6OwTio9LKCJbAXuBV4fD-Q5p4,2244
|
|
1554
|
+
mteb/models/model_implementations/repllama_models.py,sha256=o5qW7zZ8l1XZF8VwcLuPRHVJs30_FYUE3DR-Gj-BVU0,7373
|
|
1555
|
+
mteb/models/model_implementations/rerankers_custom.py,sha256=1C3_7GxBf-9B8QjesJMLsGyJFRLWdBgn-5d_AlGUNXc,10672
|
|
1556
|
+
mteb/models/model_implementations/rerankers_monot5_based.py,sha256=DiTX1CPVZvH57MHjqs01ke7S0EOKji_vvz3MreAMXLg,34400
|
|
1557
|
+
mteb/models/model_implementations/richinfoai_models.py,sha256=YQHVXVg2Wmb8m6nirLx6vwde_1xjOtlgftTv48asnww,1015
|
|
1558
|
+
mteb/models/model_implementations/ru_sentence_models.py,sha256=-CbCCy5JRuDZAsWS7FBS7OOPaziFXjwiJdko9241KgI,41758
|
|
1559
|
+
mteb/models/model_implementations/ruri_models.py,sha256=QW_Mk5_4U45RyC-CvwjT2MUWtobrZ37wHNxpJGGJmos,10303
|
|
1560
|
+
mteb/models/model_implementations/salesforce_models.py,sha256=0miQqhSkJKfdKxLv-xl3BL-sCSgkKg1FX-gVu43cdr4,5238
|
|
1561
|
+
mteb/models/model_implementations/samilpwc_models.py,sha256=ZcMUO_pWXARqzBa_2G6qAsSaq-_lCPo8a_XG0G_H_f0,2047
|
|
1562
|
+
mteb/models/model_implementations/sarashina_embedding_models.py,sha256=LmJAsZ_zXywQwpQspQRB83jThRq2Lc8wxZt8K8UYzRw,8467
|
|
1563
|
+
mteb/models/model_implementations/searchmap_models.py,sha256=WpwYwv0xWmig-rTGK0Li7m8ppADV-Qhy9BiHPlhGZug,1930
|
|
1564
|
+
mteb/models/model_implementations/seed_1_6_embedding_models.py,sha256=gcGKEY-n7DWGPlXYhO_kcNJ3lkBEnbw8NUxADNs3siM,18635
|
|
1565
|
+
mteb/models/model_implementations/seed_1_6_embedding_models_1215.py,sha256=O0BlsOHaxF0EEGaoas4AdzB8f-_9W9lwfoxLypexKEo,37516
|
|
1566
|
+
mteb/models/model_implementations/seed_models.py,sha256=9UF2AQ0Uue8DD73SjYhHn2hLxey_7Iq9ii9TkRaA3CM,14168
|
|
1567
|
+
mteb/models/model_implementations/sentence_transformers_models.py,sha256=_4MbkdjZ58bell8Ss0JkyCAkLzUxTLBMofnHckRtWs0,23252
|
|
1568
|
+
mteb/models/model_implementations/shuu_model.py,sha256=8-hoGqELHQRQ1QFhjwyuOY_8rqj_6f9vhE1Xi8OJ8aw,1162
|
|
1569
|
+
mteb/models/model_implementations/siglip_models.py,sha256=yHfhk5rHC1as0UG7EdEIaqemNxg3e5DRbZnNOunfXS8,12862
|
|
1570
|
+
mteb/models/model_implementations/sonar_models.py,sha256=e0zG4ZxCM52mOtIpd43mMORZcX39utOiVDvzX_mz7oQ,4810
|
|
1571
|
+
mteb/models/model_implementations/spartan8806_atles_champion.py,sha256=ucTQMRhwSWzzIohVN8Zd7qehqllReG6WFTnD2rkGTLI,1239
|
|
1572
|
+
mteb/models/model_implementations/stella_models.py,sha256=9nKuiMXkUE58KGpoDx1Ft29x80oCkLQr8GucsM6c4Fw,8218
|
|
1573
|
+
mteb/models/model_implementations/tarka_models.py,sha256=lTA4oIKDKqU8FQ7nBDkQM-L4_945SnBGK499TkMALVk,27397
|
|
1524
1574
|
mteb/models/model_implementations/text2vec_models.py,sha256=zaHWRc2W0RYZAOetinqRzug9UGW0HmY5U-jYsLXA8wo,4160
|
|
1525
|
-
mteb/models/model_implementations/ua_sentence_models.py,sha256=
|
|
1526
|
-
mteb/models/model_implementations/uae_models.py,sha256=
|
|
1527
|
-
mteb/models/model_implementations/vdr_models.py,sha256=
|
|
1528
|
-
mteb/models/model_implementations/vi_vn_models.py,sha256=
|
|
1529
|
-
mteb/models/model_implementations/vista_models.py,sha256=
|
|
1530
|
-
mteb/models/model_implementations/vlm2vec_models.py,sha256=
|
|
1531
|
-
mteb/models/model_implementations/voyage_models.py,sha256=
|
|
1532
|
-
mteb/models/model_implementations/voyage_v.py,sha256=
|
|
1533
|
-
mteb/models/model_implementations/xyz_models.py,sha256=
|
|
1534
|
-
mteb/models/model_implementations/youtu_models.py,sha256=
|
|
1575
|
+
mteb/models/model_implementations/ua_sentence_models.py,sha256=vgBJbXR8-6xau78MMTJ985Uj46_VoRIFatGW8vuOllc,1693
|
|
1576
|
+
mteb/models/model_implementations/uae_models.py,sha256=_OLyy5veJJunBewWafkN_FUl2Hv_qqmU1zr2DGs94ek,3138
|
|
1577
|
+
mteb/models/model_implementations/vdr_models.py,sha256=1yEkK_5w7rEd4O-8DTjQYc6Ip_h51WxkQcI3vQ2puTs,1448
|
|
1578
|
+
mteb/models/model_implementations/vi_vn_models.py,sha256=UZ0bC-inqwL52TjWKfXijyeOyZRIycj1bHJs3t-jjrQ,6198
|
|
1579
|
+
mteb/models/model_implementations/vista_models.py,sha256=GkQFHIwwjxwM0wDuo-dWJBo4dLExlHtHfXwhcdKA5uQ,10884
|
|
1580
|
+
mteb/models/model_implementations/vlm2vec_models.py,sha256=xG5Lp-v4eB08_iPIcKK11iB7-zOHIPk6T4lWU2OoCcI,11776
|
|
1581
|
+
mteb/models/model_implementations/voyage_models.py,sha256=5A5RD2A6B20qLDVEpWL0TNMQOf5hnTVXdBugdh5q4d0,20214
|
|
1582
|
+
mteb/models/model_implementations/voyage_v.py,sha256=pkDmyLcj3XCzMJI7AJ86YS14S6_GUqfhFg7cf_otMfw,8188
|
|
1583
|
+
mteb/models/model_implementations/xyz_models.py,sha256=gjwCx3U4AxMcJDTSWVoYV6xeyXLw7lUZI5D6Q7JjWho,1322
|
|
1584
|
+
mteb/models/model_implementations/youtu_models.py,sha256=U2PbAg4QnNZfQSORDm-I-uhYZr3XRQvWiOAU9uO8SQc,5964
|
|
1585
|
+
mteb/models/model_implementations/yuan_models.py,sha256=7_nwkXwh3tyoz7wo7pCq9ryHPVX0_uE1wJBNQRsKp-o,965
|
|
1586
|
+
mteb/models/model_implementations/yuan_models_en.py,sha256=xliuxqPPiCPLdEDhs8OsBKQgOLp3qBwO6806aKSeRdc,1680
|
|
1587
|
+
mteb/models/search_encoder_index/__init__.py,sha256=3QFacIuFyEiI7ocsSkb3Lp2S2L7MLkpHCMIJ201fowA,182
|
|
1588
|
+
mteb/models/search_encoder_index/search_backend_protocol.py,sha256=TSjlx88stJcMldbAeVqNCf8JsQvE-B5rf5SBRw90isY,1890
|
|
1589
|
+
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=WMs3QbbYV13fRuT3dakmdVMZLFdc_9ZzSupS3QxlbVQ,5555
|
|
1535
1591
|
mteb/results/__init__.py,sha256=EXQqK4Am5eIYzD52dpcGAFSdqnC38oE6JHN302oidHc,158
|
|
1536
|
-
mteb/results/benchmark_results.py,sha256=
|
|
1537
|
-
mteb/results/model_result.py,sha256=
|
|
1538
|
-
mteb/results/task_result.py,sha256=
|
|
1592
|
+
mteb/results/benchmark_results.py,sha256=yyZux1KMecHI9DE9Vya8bxr4IljxgkNoPiAFvrELbko,19846
|
|
1593
|
+
mteb/results/model_result.py,sha256=Y6b_xfJlw8EFZq464ZVhyw0Rryv111hvMjnXbEZJpXk,14059
|
|
1594
|
+
mteb/results/task_result.py,sha256=1ezwdxY9ibU4uIcaj6IxjSEkrTQn-2eO3e-hzLHgALQ,32339
|
|
1539
1595
|
mteb/tasks/__init__.py,sha256=izAxU0ip1F_YUwx0dFCuN35BaktdmePh6vlDiHC0kLo,503
|
|
1540
1596
|
mteb/tasks/aggregated_tasks/__init__.py,sha256=Ufgbh1AirxCQkojO3AUhUFWM8zQG10cfdVTkj_PeyLI,104
|
|
1541
1597
|
mteb/tasks/aggregated_tasks/eng/__init__.py,sha256=HgaSyAX8Is5CGE006RgJkLQQVxrx2FmMnm6NHQBDi-4,358
|
|
@@ -1561,10 +1617,10 @@ mteb/tasks/bitext_mining/fas/__init__.py,sha256=srw2I-yfcLgIkRzJv-p_qZ9fg0cCKr-D
|
|
|
1561
1617
|
mteb/tasks/bitext_mining/fas/fa_mteb_summary_retrieval.py,sha256=yj8l1K3CIdESwl4sl2M4HhyOrZZYQZb_EDo-EgCAJdg,3330
|
|
1562
1618
|
mteb/tasks/bitext_mining/kat/__init__.py,sha256=a-KcFJ3Ol7R8yq02RcGjaOxEfqnwJeo7AAib-RU-JFw,116
|
|
1563
1619
|
mteb/tasks/bitext_mining/kat/tbilisi_city_hall_bitext_mining.py,sha256=xVCxpJr7UW2KadNdn7Gsw-wZ65uz5vhRDhQZ7eILokQ,1918
|
|
1564
|
-
mteb/tasks/bitext_mining/multilingual/__init__.py,sha256=
|
|
1620
|
+
mteb/tasks/bitext_mining/multilingual/__init__.py,sha256=LcPygeOuvrka67aDkktT-2lSqcxpWPSMmd_BaxIsl24,2012
|
|
1565
1621
|
mteb/tasks/bitext_mining/multilingual/bible_nlp_bitext_mining.py,sha256=lNbCz3dN9o3F04Y7vtNBhF-lPUNyVbAOKgUR-QKZn_8,29082
|
|
1566
|
-
mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining.py,sha256=
|
|
1567
|
-
mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining_fast.py,sha256=
|
|
1622
|
+
mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining.py,sha256=tTKvS-v7d9V_zymCn_ZonUKlo9NI7vTyppxS9iAu8I0,2873
|
|
1623
|
+
mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining_fast.py,sha256=P_UHMWh2gKG6CloXmP5J2kjrCTQwoJAU1MKdLl6JFKc,1836
|
|
1568
1624
|
mteb/tasks/bitext_mining/multilingual/danish_medicines_agency_bitext_mining.py,sha256=5iengckKv1NCHILjrX6WDEgBNJlmbSV5y-WWdaLZYrs,1703
|
|
1569
1625
|
mteb/tasks/bitext_mining/multilingual/diabla_bitext_mining.py,sha256=Ua6DfpJYgoaIRSWB284WNj6wQWqxPiC3kUPcmKNGDWQ,1498
|
|
1570
1626
|
mteb/tasks/bitext_mining/multilingual/flores_bitext_mining.py,sha256=Dh43H2NWZIAzN9Zeib3TtKhUcK1jldUQX-GvTsm1MnI,5616
|
|
@@ -1580,160 +1636,160 @@ mteb/tasks/bitext_mining/multilingual/nusa_translation_bitext_mining.py,sha256=e
|
|
|
1580
1636
|
mteb/tasks/bitext_mining/multilingual/nusa_x_bitext_mining.py,sha256=BphnEDdG1-IsCklJWRCs2yK7I1zVuPh7PQrrYAI540c,2309
|
|
1581
1637
|
mteb/tasks/bitext_mining/multilingual/phinc_bitext_mining.py,sha256=53xLXpgIDk55JfCoe3pa93T_9T9sfRJAryBVcWZx5co,1477
|
|
1582
1638
|
mteb/tasks/bitext_mining/multilingual/roma_tales_bitext_mining.py,sha256=5uwf4vhud5bQuPAcufWGcA7UBmp5YPKsyvc5OUYgK-M,1730
|
|
1583
|
-
mteb/tasks/bitext_mining/multilingual/ru_sci_bench_bitext_mining.py,sha256=
|
|
1639
|
+
mteb/tasks/bitext_mining/multilingual/ru_sci_bench_bitext_mining.py,sha256=09e8XDy-zvqpvGMuj8AIbYUGmrggPi6XvOZi9Fbw0G4,4162
|
|
1584
1640
|
mteb/tasks/bitext_mining/multilingual/tatoeba_bitext_mining.py,sha256=Y6QnjbmL4fIuTgK8tuZfNnWmM-GwBVaAjUiAtTSgPqM,5898
|
|
1585
|
-
mteb/tasks/bitext_mining/multilingual/web_faq_bitext_mining.py,sha256=
|
|
1641
|
+
mteb/tasks/bitext_mining/multilingual/web_faq_bitext_mining.py,sha256=vWoRmAJKR0ed8mUKDqLUMe_IpFjj7Xlsw0NFhcIOJOc,14978
|
|
1586
1642
|
mteb/tasks/bitext_mining/srn/__init__.py,sha256=XaMVvUagmgLUG6tZw2jo6fMKiVTfQpaaWZGQZo-1YYk,97
|
|
1587
1643
|
mteb/tasks/bitext_mining/srn/srn_corpus_bitext_mining.py,sha256=6svN1Ny1MJVaBhEFguYAGZnm8ciuLqBxUfhGaAjR88w,1507
|
|
1588
1644
|
mteb/tasks/bitext_mining/vie/__init__.py,sha256=AbM2aeSHvlY_fNsPWKchyyHBrSvhBwASOWFht74HQcg,95
|
|
1589
1645
|
mteb/tasks/bitext_mining/vie/vie_med_ev_bitext_mining.py,sha256=tHnLLMoWUG1j25TwWFQ1cgBtCYcvKbCmquu_mNRZaGw,1494
|
|
1590
1646
|
mteb/tasks/classification/__init__.py,sha256=6KrsJhJ6YbffNiAY3IWamJ5s4ipiIWHqO4cCD0ncWoI,1092
|
|
1591
1647
|
mteb/tasks/classification/ara/__init__.py,sha256=PZ2njVzpxUwqB-yx-lajl2uf3yGYBc05a5q77scr4kA,1161
|
|
1592
|
-
mteb/tasks/classification/ara/ajgt.py,sha256=
|
|
1593
|
-
mteb/tasks/classification/ara/hotel_review_sentiment_classification.py,sha256=
|
|
1594
|
-
mteb/tasks/classification/ara/online_store_review_sentiment_classification.py,sha256=
|
|
1595
|
-
mteb/tasks/classification/ara/restaurant_review_sentiment_classification.py,sha256=
|
|
1596
|
-
mteb/tasks/classification/ara/tweet_emotion_classification.py,sha256=
|
|
1597
|
-
mteb/tasks/classification/ara/tweet_sarcasm_classification.py,sha256=
|
|
1648
|
+
mteb/tasks/classification/ara/ajgt.py,sha256=TfcsGZbdp2Y7ksrhEPYpY37e_iAvTMGEt9e8-kwFq4U,3091
|
|
1649
|
+
mteb/tasks/classification/ara/hotel_review_sentiment_classification.py,sha256=VNv6uICgYVsQiCreNiczEjDq2-dLtTmNVp0ZF2tA-Kg,3050
|
|
1650
|
+
mteb/tasks/classification/ara/online_store_review_sentiment_classification.py,sha256=hN9dImEZWs9LLYSDWhyKDFJ-Ph2ZZQgxh5K0VXGiP8I,2451
|
|
1651
|
+
mteb/tasks/classification/ara/restaurant_review_sentiment_classification.py,sha256=xlq-rEzWei8onOJWOzSxJtNuyeHWczf1cDz7m3-5j-Y,3312
|
|
1652
|
+
mteb/tasks/classification/ara/tweet_emotion_classification.py,sha256=MpLxj0WOuHYV6LIaAwBg__jcOmzsApPxPRBKgkO3RhA,3258
|
|
1653
|
+
mteb/tasks/classification/ara/tweet_sarcasm_classification.py,sha256=55SxUtNUECLT9liyJztPh-MPuN9PnQzkQ89Izg7JlU4,3938
|
|
1598
1654
|
mteb/tasks/classification/ben/__init__.py,sha256=j_vQLxEOUKR8hLBgTe2sSzvLyoVXRByF0g_f5-i1mRQ,592
|
|
1599
|
-
mteb/tasks/classification/ben/bengali_document_classification.py,sha256=
|
|
1600
|
-
mteb/tasks/classification/ben/bengali_hate_speech_classification.py,sha256=
|
|
1601
|
-
mteb/tasks/classification/ben/bengali_sentiment_analysis.py,sha256=
|
|
1655
|
+
mteb/tasks/classification/ben/bengali_document_classification.py,sha256=K4KTkca4HwKa77045kY7hMxHxRklyC44RzfNKOP0C4I,3636
|
|
1656
|
+
mteb/tasks/classification/ben/bengali_hate_speech_classification.py,sha256=xmlPgQfWqEFPOboY6Ix5ZXTz48D1TqUeWV3-ip9dsKA,3350
|
|
1657
|
+
mteb/tasks/classification/ben/bengali_sentiment_analysis.py,sha256=NYtZBO8BYHPAkLOwof8a8v9Xa5YnRYITvAxrAP4EP_A,2978
|
|
1602
1658
|
mteb/tasks/classification/bul/__init__.py,sha256=2-wLDHKcyykalSp9zWCgOaqMh4nnDo92lYdiUgJIP04,170
|
|
1603
1659
|
mteb/tasks/classification/bul/bulgarian_store_review_sentiment_classfication.py,sha256=T9OjawyJbfYmDh-c4qArRzsuJ3HgbhbCAgHndXN3VVI,1843
|
|
1604
1660
|
mteb/tasks/classification/ces/__init__.py,sha256=0vuGRyaBaW-V6_3pdGGLIEwQh3uB5UpewY6NdJZ3vrw,860
|
|
1605
|
-
mteb/tasks/classification/ces/csfdcz_movie_review_sentiment_classification.py,sha256=
|
|
1606
|
-
mteb/tasks/classification/ces/czech_product_review_sentiment_classification.py,sha256=
|
|
1607
|
-
mteb/tasks/classification/ces/czech_so_me_sentiment_classification.py,sha256=
|
|
1661
|
+
mteb/tasks/classification/ces/csfdcz_movie_review_sentiment_classification.py,sha256=ujuUGruDRbcMDY3SXvN6dFsR2qs3iYF7x-bc8_W-hAA,3542
|
|
1662
|
+
mteb/tasks/classification/ces/czech_product_review_sentiment_classification.py,sha256=gVcg6m6Pikhi5DY2HSpj7iMcd5QRw_iZfVFlXX97m0g,4119
|
|
1663
|
+
mteb/tasks/classification/ces/czech_so_me_sentiment_classification.py,sha256=NthCj4xcDnSwSe5mMX3a6ldELv_qmkN5wuM4UAdE3js,3618
|
|
1608
1664
|
mteb/tasks/classification/ces/czech_subjectivity_classification.py,sha256=31lTpWh0adXA8C6TY64NbSKi4pVbnH7ocEDEQCd5JEA,1520
|
|
1609
1665
|
mteb/tasks/classification/dan/__init__.py,sha256=edrG5UqewQ_YfQD3KtCTs9GU5z1jo4wjlkSEHuQg1ww,864
|
|
1610
|
-
mteb/tasks/classification/dan/angry_tweets_classification.py,sha256=
|
|
1611
|
-
mteb/tasks/classification/dan/danish_political_comments_classification.py,sha256=
|
|
1612
|
-
mteb/tasks/classification/dan/ddisco_cohesion_classification.py,sha256=
|
|
1613
|
-
mteb/tasks/classification/dan/dk_hate_classification.py,sha256=
|
|
1666
|
+
mteb/tasks/classification/dan/angry_tweets_classification.py,sha256=GmNu5-ec_6ebMCxKIgDU54ZfaM0xFV_tYE6hYLN8ItM,3154
|
|
1667
|
+
mteb/tasks/classification/dan/danish_political_comments_classification.py,sha256=mChj82mWgXluVC7yXXT2LqNZ_v9QHbNEWIFUGlN8LHc,3201
|
|
1668
|
+
mteb/tasks/classification/dan/ddisco_cohesion_classification.py,sha256=8ZJUscPwhd0Y71Sd5tTeEWCuFgN2YHlgX2lQOz9bj3g,4010
|
|
1669
|
+
mteb/tasks/classification/dan/dk_hate_classification.py,sha256=Kx7mx5HcEkoisV4-Sb0aCgOLaz2FOkGaet0tprDpOkk,4440
|
|
1614
1670
|
mteb/tasks/classification/dan/lcc_sentiment_classification.py,sha256=wVbHXQN1I-W8YxDz_fT8Q3ZIM_mgNZDx_wm7vsIBols,1733
|
|
1615
1671
|
mteb/tasks/classification/deu/__init__.py,sha256=_mikrUfmvMBoIkAHqZoayV6o-8QssaX3E4D1TmxNt_8,454
|
|
1616
|
-
mteb/tasks/classification/deu/german_politicians_twitter_sentiment_classification.py,sha256=
|
|
1617
|
-
mteb/tasks/classification/deu/ten_k_gnad_classification.py,sha256=
|
|
1672
|
+
mteb/tasks/classification/deu/german_politicians_twitter_sentiment_classification.py,sha256=wyig6rTOET2Km1fX4_LP2FTqbGzF2hgmWwV4EXM88kM,3970
|
|
1673
|
+
mteb/tasks/classification/deu/ten_k_gnad_classification.py,sha256=FB0K2Th6kQql-xPHE3Is27Cfax9I_C5mq1-fWNPi30Q,3200
|
|
1618
1674
|
mteb/tasks/classification/ell/__init__.py,sha256=ex9crkO5u0jpP--73on-beegAZ6368MLPtMpf7ko6sk,118
|
|
1619
1675
|
mteb/tasks/classification/ell/greek_legal_code_classification.py,sha256=aLiD-sUv6iOunzuHoJubWyhPdhmYrGi9qZUkt0Vw5Og,1977
|
|
1620
1676
|
mteb/tasks/classification/eng/__init__.py,sha256=gVlsr0YIe84-wvluhXWJuP7R-2wDc53xdJkbvuYVEZE,21065
|
|
1621
|
-
mteb/tasks/classification/eng/amazon_polarity_classification.py,sha256=
|
|
1622
|
-
mteb/tasks/classification/eng/arxiv_classification.py,sha256=
|
|
1623
|
-
mteb/tasks/classification/eng/banking77_classification.py,sha256=
|
|
1677
|
+
mteb/tasks/classification/eng/amazon_polarity_classification.py,sha256=xYTp78UBpsTwqEAw1BhAUkrAUwg3IcZbbsjYvm5wCrM,3120
|
|
1678
|
+
mteb/tasks/classification/eng/arxiv_classification.py,sha256=N1YhT35mG5SiDkm7C8Cph87vHTqGVZ7QCnahypCA7hg,2752
|
|
1679
|
+
mteb/tasks/classification/eng/banking77_classification.py,sha256=a39NHycvoblomhYJIJg5I3TYUB_wA2YHgOH63VsGtcA,3924
|
|
1624
1680
|
mteb/tasks/classification/eng/birdsnap_classification.py,sha256=_OQsYUUwF2t3sOTIvvI2uI98dAG_ropoxtUTq3Yt3KE,1629
|
|
1625
1681
|
mteb/tasks/classification/eng/caltech101_classification.py,sha256=4Y_Ez0UHGK3l7mHlBCIhr-djrc9F3hkO5g15Bn0-Vfw,1715
|
|
1626
1682
|
mteb/tasks/classification/eng/cifar.py,sha256=PyO1bTtXtzoyRmYBD8RX5fruTwRqDTl56nWbkmK2liQ,2536
|
|
1627
1683
|
mteb/tasks/classification/eng/country211_classification.py,sha256=gYGX2HjPn6lxnDFTE4LtvxjA1lYmfbv8tnG1fStcxuQ,1575
|
|
1628
|
-
mteb/tasks/classification/eng/dbpedia_classification.py,sha256=
|
|
1684
|
+
mteb/tasks/classification/eng/dbpedia_classification.py,sha256=_eIM37pft2AMTIi9R7z9ruxPoaAZYxKyAtFPLeZ0O9I,3717
|
|
1629
1685
|
mteb/tasks/classification/eng/dtd_classification.py,sha256=jbZrYFGfhLvd5YK8wsbIp-C_K52U5wPomMbJ0PofrH4,1412
|
|
1630
|
-
mteb/tasks/classification/eng/emotion_classification.py,sha256=
|
|
1686
|
+
mteb/tasks/classification/eng/emotion_classification.py,sha256=oNkStKgfwNcfLlXtEeku1_LX0zhVwiGOj0rHW1x5rEA,4144
|
|
1631
1687
|
mteb/tasks/classification/eng/euro_sat_classification.py,sha256=5bsJpp_jwwcKxPMdSP0TQtNfMxumr7Y0zb2vZIVyELc,1872
|
|
1632
1688
|
mteb/tasks/classification/eng/fer2013_classification.py,sha256=tvUNndRVxddNvIsQmaUg_rYOfs1BFxGiAHM4Scz9HUs,1487
|
|
1633
1689
|
mteb/tasks/classification/eng/fgvc_aircraft_classification.py,sha256=qEJFXxeuo-uBy1HDeDYE4XtJayX53EwmnhNTeB9V214,1641
|
|
1634
|
-
mteb/tasks/classification/eng/financial_phrasebank_classification.py,sha256=
|
|
1690
|
+
mteb/tasks/classification/eng/financial_phrasebank_classification.py,sha256=r7CguZZc0oxH-GXwFK61drDRH3xYMJT1r3V4mrqjG7Q,3032
|
|
1635
1691
|
mteb/tasks/classification/eng/food101_classification.py,sha256=G3xxqJv5GQQpnI5HZ_zMZ16-l2E4f1mRDwPkjo-jtos,1366
|
|
1636
|
-
mteb/tasks/classification/eng/frenk_en_classification.py,sha256=
|
|
1637
|
-
mteb/tasks/classification/eng/gtsrb_classification.py,sha256=
|
|
1692
|
+
mteb/tasks/classification/eng/frenk_en_classification.py,sha256=EQxVRWqmQhMLIv8MfaQ1OdBMAFR6fH4utlyupJjpD80,2715
|
|
1693
|
+
mteb/tasks/classification/eng/gtsrb_classification.py,sha256=EuR8F2uh3ajB2tErzcbrrgF4Do7QxcxEpA44JsgbOVg,1849
|
|
1638
1694
|
mteb/tasks/classification/eng/hume_emotion_classification.py,sha256=IjuiZtSMQiVCV5DY8OHUzVtMORUwjDK2uOXkV_CYgAc,2092
|
|
1639
1695
|
mteb/tasks/classification/eng/hume_toxic_conversations_classification.py,sha256=cSPg3KzLXwY0HnZS0BzpWydkW393TIVXEJmI_PfofQk,1797
|
|
1640
1696
|
mteb/tasks/classification/eng/hume_tweet_sentiment_extraction_classification.py,sha256=hiOXpCGAHXLm4duu94ptT9l0uWsyw3SRB7w3SqyvxKc,1602
|
|
1641
1697
|
mteb/tasks/classification/eng/imagenet1k.py,sha256=n6YlgVBG7fudRzv5BI0JWiSjpbWIaOLEGQws8VHn0O8,1574
|
|
1642
|
-
mteb/tasks/classification/eng/imdb_classification.py,sha256=
|
|
1643
|
-
mteb/tasks/classification/eng/legal_bench_classification.py,sha256=
|
|
1698
|
+
mteb/tasks/classification/eng/imdb_classification.py,sha256=UEcsVpcIUtE-WaAIaewHVpquyIMmuhqwvghOwjf3l1w,3619
|
|
1699
|
+
mteb/tasks/classification/eng/legal_bench_classification.py,sha256=blNlvV1TykQvvPwMzsc7Hl9rik7JqtRok-jUvKDAyZ0,304818
|
|
1644
1700
|
mteb/tasks/classification/eng/mnist_classification.py,sha256=hmQfHKKkw2ezFYr26350DCD0-_ZO6uPn7BN4fSZgoAY,1360
|
|
1645
|
-
mteb/tasks/classification/eng/news_classification.py,sha256=
|
|
1701
|
+
mteb/tasks/classification/eng/news_classification.py,sha256=exvLhhqSctXHdnoC2yVOu-Nlk94Nogw44a-lkjqxZZ0,3339
|
|
1646
1702
|
mteb/tasks/classification/eng/oxford_flowers_classification.py,sha256=1Qlma1B3rJXRZNiyh0n4b0At-nusKKAdEIXw2eSTv-Q,1673
|
|
1647
1703
|
mteb/tasks/classification/eng/oxford_pets_classification.py,sha256=fvTlRex48bY9Dy9iUuWnTSn8XUfS1V_gOKCNM_KSFcU,1574
|
|
1648
|
-
mteb/tasks/classification/eng/patch_camelyon_classification.py,sha256=
|
|
1649
|
-
mteb/tasks/classification/eng/patent_classification.py,sha256=
|
|
1650
|
-
mteb/tasks/classification/eng/poem_sentiment_classification.py,sha256=
|
|
1704
|
+
mteb/tasks/classification/eng/patch_camelyon_classification.py,sha256=Su0lUUlA57DSHYJ8EVtbU4WCIavExp0OnuU_Rl5Mi5s,1777
|
|
1705
|
+
mteb/tasks/classification/eng/patent_classification.py,sha256=HwPgGVT-T-Usq07M2ePP8P3mNqID6yLxruhfLK1pLtk,3223
|
|
1706
|
+
mteb/tasks/classification/eng/poem_sentiment_classification.py,sha256=XKf7xO9OMgHRmDlOtdPlRzUzMMLSXXScOuUp5VSr3pw,2771
|
|
1651
1707
|
mteb/tasks/classification/eng/resisc45_classification.py,sha256=_0k3eZyS_vVmvMIBtc2q9Wv2W7ItfQeM3yAQrOWAFlQ,1807
|
|
1652
|
-
mteb/tasks/classification/eng/sds_eye_protection_classification.py,sha256=
|
|
1653
|
-
mteb/tasks/classification/eng/sds_gloves_classification.py,sha256=
|
|
1708
|
+
mteb/tasks/classification/eng/sds_eye_protection_classification.py,sha256=Kco2Y7Ysx5ND16xwGvsceBSzVmhCt7nXenhKwU6XDos,3453
|
|
1709
|
+
mteb/tasks/classification/eng/sds_gloves_classification.py,sha256=5NQjCHRKsRXPDmZlxjmlwVACO1qwSLPWKtRNxY0NTis,3396
|
|
1654
1710
|
mteb/tasks/classification/eng/stanford_cars_classification.py,sha256=73lWRD87ovMd4ELwRCMH6lb3mvAlDTf9qu2HQd-j0_M,1439
|
|
1655
1711
|
mteb/tasks/classification/eng/stl10_classification.py,sha256=jqDm6_5iwrfcpzEFtALEv3iYF15Ykt3WLxL3oGkpePw,1745
|
|
1656
1712
|
mteb/tasks/classification/eng/sun397_classification.py,sha256=KeFOof2Lp2mB3pAVcmebena7VSlafdL64AlPDXF6Tx0,1564
|
|
1657
|
-
mteb/tasks/classification/eng/toxic_chat_classification.py,sha256=
|
|
1658
|
-
mteb/tasks/classification/eng/toxic_conversations_classification.py,sha256=
|
|
1659
|
-
mteb/tasks/classification/eng/tweet_sentiment_extraction_classification.py,sha256=
|
|
1660
|
-
mteb/tasks/classification/eng/tweet_topic_single_classification.py,sha256=
|
|
1661
|
-
mteb/tasks/classification/eng/ucf101_classification.py,sha256=
|
|
1662
|
-
mteb/tasks/classification/eng/wikipedia_bio_met_chem_classification.py,sha256=
|
|
1713
|
+
mteb/tasks/classification/eng/toxic_chat_classification.py,sha256=9C7mgV0VvOAFwgcSVdok5Zf09UK9CCOX2J9Sb2GF4LI,4743
|
|
1714
|
+
mteb/tasks/classification/eng/toxic_conversations_classification.py,sha256=ZnYI-caR8A8Qp6qP6rcubsEfOIeamO0rHjY0RPxw1eA,3868
|
|
1715
|
+
mteb/tasks/classification/eng/tweet_sentiment_extraction_classification.py,sha256=W29AZXv-b9tQaWVQbVmIpOzvrA1Oj0BixpujZ6WZVG8,3097
|
|
1716
|
+
mteb/tasks/classification/eng/tweet_topic_single_classification.py,sha256=rqgwiASWK5T0sMRvL289_4KrF0KcWGnvj1pGhZr7lPw,3991
|
|
1717
|
+
mteb/tasks/classification/eng/ucf101_classification.py,sha256=KiNA3U_6T-fTPnkgViH6jZBENzG9UmL9gDF7rz28eis,1711
|
|
1718
|
+
mteb/tasks/classification/eng/wikipedia_bio_met_chem_classification.py,sha256=wC-wrqAFur68L1acHiLyJZd9a9cJ0x9FvNooy13wjhw,3015
|
|
1663
1719
|
mteb/tasks/classification/eng/wikipedia_biolum_neurochem_classification.py,sha256=HU-yE0RsbPQMA2Rsc4wrqrRPMuiOaqsgC33xOe5bD1c,1464
|
|
1664
1720
|
mteb/tasks/classification/eng/wikipedia_chem_eng_specialties_classification.py,sha256=_oIZGOfWaZsWDJmczJOb7Y8kCpWgm_17lxqkQOhiGQ0,1439
|
|
1665
|
-
mteb/tasks/classification/eng/wikipedia_chem_fields_classification.py,sha256=
|
|
1721
|
+
mteb/tasks/classification/eng/wikipedia_chem_fields_classification.py,sha256=7xavizR0EGAvIhQpPr2hR4KT6-wYwC6louClvJOuJAI,2987
|
|
1666
1722
|
mteb/tasks/classification/eng/wikipedia_chemistry_topics_classification.py,sha256=gbnQdfFh3mvqrIdsX9zjTlO-_9t8ucl2kfpm9md0OU0,1432
|
|
1667
|
-
mteb/tasks/classification/eng/wikipedia_comp_chem_spectroscopy_classification.py,sha256=
|
|
1723
|
+
mteb/tasks/classification/eng/wikipedia_comp_chem_spectroscopy_classification.py,sha256=pj6gdTK-BTWRIVGybkjOgzmSHtnTCB95lVONSpSlvZQ,3091
|
|
1668
1724
|
mteb/tasks/classification/eng/wikipedia_cryobiology_separation_classification.py,sha256=UBbf4CEkohhu7g5sosmDjuQY9ZSNPDeO1NQNwrlxJSQ,1443
|
|
1669
|
-
mteb/tasks/classification/eng/wikipedia_crystallography_analytical_classification.py,sha256=
|
|
1725
|
+
mteb/tasks/classification/eng/wikipedia_crystallography_analytical_classification.py,sha256=SpAGkBG-7d3TzRACe9HL01wE17QX3EuZeDbUN9ZAFwg,3137
|
|
1670
1726
|
mteb/tasks/classification/eng/wikipedia_greenhouse_enantiopure_classification.py,sha256=IQezAhbWYSIAPvy6zdNjKt1i75dOvNFqza5l_-IG3w8,1466
|
|
1671
1727
|
mteb/tasks/classification/eng/wikipedia_isotopes_fission_classification.py,sha256=uR617mRcO4PxY3h90DnoXEd5-bRTSRP0bR7OkjO0DUc,1470
|
|
1672
1728
|
mteb/tasks/classification/eng/wikipedia_luminescence_classification.py,sha256=ddTH0Xmbc_-r06C7Z86yBsQWs3vZ6O3VfR5o74vr_zw,1454
|
|
1673
1729
|
mteb/tasks/classification/eng/wikipedia_organic_inorganic_classification.py,sha256=3Dx7lF9GIN7jkMfbX93CrF6PHjpsuxnkMDOs9Bmc6GU,1440
|
|
1674
1730
|
mteb/tasks/classification/eng/wikipedia_salts_semiconductors_classification.py,sha256=LCtDbN7ZvvIhKNDCKiMxPP3z4C9db_v-LUhUXDmeekE,1468
|
|
1675
1731
|
mteb/tasks/classification/eng/wikipedia_solid_state_colloidal_classification.py,sha256=vs6kYuxH_wXhl_67GCyFcaQdYW8vLozVKI4i2nCVlzk,1460
|
|
1676
|
-
mteb/tasks/classification/eng/wikipedia_theoretical_applied_classification.py,sha256=
|
|
1677
|
-
mteb/tasks/classification/eng/yahoo_answers_topics_classification.py,sha256=
|
|
1678
|
-
mteb/tasks/classification/eng/yelp_review_full_classification.py,sha256=
|
|
1732
|
+
mteb/tasks/classification/eng/wikipedia_theoretical_applied_classification.py,sha256=qgSZFtyTuIrpyfBwGq5wllR7eMlD6uSPRNj2_NW53no,3042
|
|
1733
|
+
mteb/tasks/classification/eng/yahoo_answers_topics_classification.py,sha256=nIuo5-VSPdoJLcOyYbIpLatBUOVpeCWUVBIualjeAb0,3565
|
|
1734
|
+
mteb/tasks/classification/eng/yelp_review_full_classification.py,sha256=lDtPzcKlhtcT5VPyPHusb29wWExs3RZGF_AXUG24jpE,3824
|
|
1679
1735
|
mteb/tasks/classification/est/__init__.py,sha256=v2lzg7TFmXiBAp8B4WS3SAahWzkAJ2TCrGBktbI1qhI,186
|
|
1680
|
-
mteb/tasks/classification/est/estonian_valence.py,sha256=
|
|
1736
|
+
mteb/tasks/classification/est/estonian_valence.py,sha256=8JtG2OV4JvvE3Xl3-DZiRFeFfkJjv7cAfI8DxmrrY_4,3728
|
|
1681
1737
|
mteb/tasks/classification/fas/__init__.py,sha256=igukIhFBC-lFxj-zbwaNh6ocGNTsGwY13QhM1e_cf6w,2505
|
|
1682
|
-
mteb/tasks/classification/fas/fa_mteb_classification.py,sha256=
|
|
1738
|
+
mteb/tasks/classification/fas/fa_mteb_classification.py,sha256=Pa0uVXgIHhyiMf066rqq3n41RufDEX_Mx18JM_HrHjs,35052
|
|
1683
1739
|
mteb/tasks/classification/fas/persian_food_sentiment_classification.py,sha256=vydyi6mov_eAfCRH6A3Kf6nWJyJxCoyXUEoi7-MC80E,1473
|
|
1684
1740
|
mteb/tasks/classification/fil/__init__.py,sha256=5ReJp52hkwCf3RBen6Tjwj2YA2FN176IoVFx_LOa4mE,359
|
|
1685
|
-
mteb/tasks/classification/fil/filipino_hate_speech_classification.py,sha256=
|
|
1741
|
+
mteb/tasks/classification/fil/filipino_hate_speech_classification.py,sha256=h3LEFzP1pJKDjwVOgZyf0gmla8WLxkOViobwNSNfIuY,3181
|
|
1686
1742
|
mteb/tasks/classification/fil/filipino_shopee_reviews_classification.py,sha256=rKyMe2N3lbckbLJyYuXjJXr2aM4Gb5lrP_AXcbmrVMA,1831
|
|
1687
1743
|
mteb/tasks/classification/fin/__init__.py,sha256=U-tSwAQUxeAZMF2fgw6QwzJlxiLnHk2RRyKZVF-BQxQ,181
|
|
1688
|
-
mteb/tasks/classification/fin/fin_toxicity_classification.py,sha256=
|
|
1744
|
+
mteb/tasks/classification/fin/fin_toxicity_classification.py,sha256=G3rLO2c0BmdPvsk5xvtYwH-OUHQtlePKwTZNTIdxjkA,4055
|
|
1689
1745
|
mteb/tasks/classification/fra/__init__.py,sha256=P59IyoKLEZi0_h5TDu6Qidm9EmPl-ElQcXGhRktOtIA,362
|
|
1690
|
-
mteb/tasks/classification/fra/french_book_reviews.py,sha256=
|
|
1691
|
-
mteb/tasks/classification/fra/movie_review_sentiment_classification.py,sha256=
|
|
1746
|
+
mteb/tasks/classification/fra/french_book_reviews.py,sha256=Fsx8UznQVNDNUhcdsTeNMAAlj2q65Ubd9zjHalTS9uM,2738
|
|
1747
|
+
mteb/tasks/classification/fra/movie_review_sentiment_classification.py,sha256=ov-fbReWP9T_RqhxFtS-gjNaZmbM9J8gQdBQyci5yqU,3290
|
|
1692
1748
|
mteb/tasks/classification/guj/__init__.py,sha256=HZfimpBCywBLi5VGof_A9Ua6bqtMUoWGRhM1eqAEWKE,186
|
|
1693
|
-
mteb/tasks/classification/guj/gujarati_news_classification.py,sha256=
|
|
1694
|
-
mteb/tasks/classification/heb/__init__.py,sha256=
|
|
1695
|
-
mteb/tasks/classification/heb/hebrew_sentiment_analysis.py,sha256=
|
|
1749
|
+
mteb/tasks/classification/guj/gujarati_news_classification.py,sha256=VEdbzqlw8b8N8R3TQc275iiCxqGLAMAM8Nf_N7FnUGA,2303
|
|
1750
|
+
mteb/tasks/classification/heb/__init__.py,sha256=xQNtDxjUsCXQhA_ZYO_4kpBtHWQSBhWhQwAuWcTo6GE,246
|
|
1751
|
+
mteb/tasks/classification/heb/hebrew_sentiment_analysis.py,sha256=2wmKwq4Z4YKTG3QieuxmUE56ofiSOV63kV-jh8Zomh4,7281
|
|
1696
1752
|
mteb/tasks/classification/hin/__init__.py,sha256=KdScMtYYmjsali0InoHP0PKQ8yCbaD-j2tLqc7_lhlo,356
|
|
1697
|
-
mteb/tasks/classification/hin/hindi_discourse_classification.py,sha256=
|
|
1698
|
-
mteb/tasks/classification/hin/sentiment_analysis_hindi.py,sha256=
|
|
1753
|
+
mteb/tasks/classification/hin/hindi_discourse_classification.py,sha256=HXLJZFEpnI7UjwA-NuadhrCplqaLiSb8Npla_6oXC48,3717
|
|
1754
|
+
mteb/tasks/classification/hin/sentiment_analysis_hindi.py,sha256=YIeEuNa2UTr8Jwh_wx15broRuD3NHNansGq7Bl9Vjl0,3101
|
|
1699
1755
|
mteb/tasks/classification/hrv/__init__.py,sha256=vJXR8TISYR7ySWdPUnb4Y4QxGqZd19NT7yNSVKP_vPI,148
|
|
1700
|
-
mteb/tasks/classification/hrv/frenk_hr_classification.py,sha256=
|
|
1756
|
+
mteb/tasks/classification/hrv/frenk_hr_classification.py,sha256=Clui-LXY-3m7Df1kehZCvwUlrZ19tptOMgthBVtg5xU,2717
|
|
1701
1757
|
mteb/tasks/classification/ind/__init__.py,sha256=GJuXzPFYgB-hOne14ViJOcysxT_U1zsPXvliN4E6Ejw,516
|
|
1702
|
-
mteb/tasks/classification/ind/indonesian_id_clickbait_classification.py,sha256=
|
|
1703
|
-
mteb/tasks/classification/ind/indonesian_mongabay_conservation_classification.py,sha256=
|
|
1758
|
+
mteb/tasks/classification/ind/indonesian_id_clickbait_classification.py,sha256=N7p_5fdDsXM0MAzkjw3PmULlN6nqJ1nbGYj4PWoBdco,3816
|
|
1759
|
+
mteb/tasks/classification/ind/indonesian_mongabay_conservation_classification.py,sha256=8pPHWVSEVYNmtN7sbmVs231xbKS5-dUPXZvAOPsHWdE,5529
|
|
1704
1760
|
mteb/tasks/classification/ita/__init__.py,sha256=zn_5k4iGZ3Mr3bRgk97GTUnIuaRqZNEcNoEAtPEr2zM,596
|
|
1705
1761
|
mteb/tasks/classification/ita/dado_eval_coarse_classification.py,sha256=MrmOz94NzT76HFoEMt4zH79HbKjHmoyrqUxhmM17_7g,1904
|
|
1706
1762
|
mteb/tasks/classification/ita/ita_casehold_classification.py,sha256=7UHCF68ecz6G5qB7R_SGZi18V2dv-ZZGWa06yGb_DJ0,2147
|
|
1707
|
-
mteb/tasks/classification/ita/italian_linguist_acceptability_classification.py,sha256=
|
|
1763
|
+
mteb/tasks/classification/ita/italian_linguist_acceptability_classification.py,sha256=AIwecYzAIuCyfw5Gc21xCCiNGpIPj8BJgh0dg-WurU8,3620
|
|
1708
1764
|
mteb/tasks/classification/ita/sardi_stance_classification.py,sha256=eExpj0jn0KlLnbqr_jtSoulZqs_wRwd0nfAOqRVhY8Y,1795
|
|
1709
1765
|
mteb/tasks/classification/jav/__init__.py,sha256=ZDXaSpyUFHfEy8AYM4FHeZh2v2trUftpj-JTih7DCok,186
|
|
1710
|
-
mteb/tasks/classification/jav/javanese_imdb_classification.py,sha256=
|
|
1766
|
+
mteb/tasks/classification/jav/javanese_imdb_classification.py,sha256=VwI5GJQa5DDRPVet5KX70eek-pw1WBvw99LhUd4-PZU,3351
|
|
1711
1767
|
mteb/tasks/classification/jpn/__init__.py,sha256=HSRntEt-mH56lbtMFE_0Pn8p_eF49pqhAhf7lyJGMy8,266
|
|
1712
1768
|
mteb/tasks/classification/jpn/japanese_sentiment_classification.py,sha256=BuS49H0EAC_4-w5W-wgwpQdR0cP5o-_gMGj6gmLuRq8,2121
|
|
1713
|
-
mteb/tasks/classification/jpn/wrime_classification.py,sha256=
|
|
1769
|
+
mteb/tasks/classification/jpn/wrime_classification.py,sha256=tLBkVKghnfzxDxOjUCldhTwWCLU86P0vKCr6Dm7T_yU,4166
|
|
1714
1770
|
mteb/tasks/classification/kan/__init__.py,sha256=N6IH-AFoWCAkL92grURYdjTdOcI4Gslyl7uTjxbrptQ,181
|
|
1715
|
-
mteb/tasks/classification/kan/kannada_news_classification.py,sha256=
|
|
1771
|
+
mteb/tasks/classification/kan/kannada_news_classification.py,sha256=JkgVAFhFaGvjvJ3FgIygtKoET4gW0L_NQrdOzHdiR-A,3873
|
|
1716
1772
|
mteb/tasks/classification/kat/__init__.py,sha256=urXsTJt_7ipiDeBVyolOtwIHldBmw8eEPkgqG16C83A,126
|
|
1717
1773
|
mteb/tasks/classification/kat/georgian_sentiment_classification.py,sha256=Jya3W-pJLgQ8x0x-4KEHAVYwRPTJK3sF7qpbWMG4aP4,1796
|
|
1718
1774
|
mteb/tasks/classification/kor/__init__.py,sha256=J28RhyNostxLHhl3PBgzd0VbfHnOqc-0p2pR44-QuAo,441
|
|
1719
|
-
mteb/tasks/classification/kor/klue_tc.py,sha256=
|
|
1775
|
+
mteb/tasks/classification/kor/klue_tc.py,sha256=TebhHt2g79itFqZQgJg3Gg6xEtc43dp5gyXm_kzmFHY,4311
|
|
1720
1776
|
mteb/tasks/classification/kor/kor_fin.py,sha256=3ZfN1BIud7joUllzsDMveU23Vjdkwzit7BCBxs6LCDo,1893
|
|
1721
|
-
mteb/tasks/classification/kor/kor_hate_classification.py,sha256=
|
|
1722
|
-
mteb/tasks/classification/kor/kor_sarcasm_classification.py,sha256=
|
|
1777
|
+
mteb/tasks/classification/kor/kor_hate_classification.py,sha256=V_IIham-xLAE77KoKk2RM8hXpuXnN3NYDl6aB8Renws,3997
|
|
1778
|
+
mteb/tasks/classification/kor/kor_sarcasm_classification.py,sha256=P8AXvEopoX1axcx6A9IpKgDsDe2Xgmq4R3lcMMyFNus,3861
|
|
1723
1779
|
mteb/tasks/classification/kur/__init__.py,sha256=kBLPJVSB512KaGbwFIUjvjKiLp8_lV6K-O-0fmUJAM4,206
|
|
1724
|
-
mteb/tasks/classification/kur/kurdish_sentiment_classification.py,sha256=
|
|
1780
|
+
mteb/tasks/classification/kur/kurdish_sentiment_classification.py,sha256=6OWal7aXxVF6XWJO31d2vySPYgrWpDWSqJQaG2ruQbU,2736
|
|
1725
1781
|
mteb/tasks/classification/mal/__init__.py,sha256=oPYnbXfC_hhDorrNOVMdoKJvo_EqVx57g6AMtETiAIs,191
|
|
1726
|
-
mteb/tasks/classification/mal/malayalam_news_classification.py,sha256=
|
|
1782
|
+
mteb/tasks/classification/mal/malayalam_news_classification.py,sha256=KPSySBKHGlNY14ehDce3D1-RqFqz8DaapLgqwoTSmxM,3015
|
|
1727
1783
|
mteb/tasks/classification/mar/__init__.py,sha256=_s9c3NJ5thW7ik8tpKlbwwAan6xNuN5UIn5MqDdC8NQ,181
|
|
1728
|
-
mteb/tasks/classification/mar/marathi_news_classification.py,sha256=
|
|
1784
|
+
mteb/tasks/classification/mar/marathi_news_classification.py,sha256=EnAtbKLJNXWaaZxvAIgcazd9XUcgmzKWJOJniT_KMhs,3058
|
|
1729
1785
|
mteb/tasks/classification/mkd/__init__.py,sha256=Uy0WzTj00jq3mKfBX1OSAO84LgiCfxnzkd2B4oDjp5c,258
|
|
1730
|
-
mteb/tasks/classification/mkd/macedonian_tweet_sentiment_classification.py,sha256=
|
|
1786
|
+
mteb/tasks/classification/mkd/macedonian_tweet_sentiment_classification.py,sha256=9zX8v5seyBhcAVzXcHxQDNaFD4FYUn0qYUyU7jzsRWs,3357
|
|
1731
1787
|
mteb/tasks/classification/multilingual/__init__.py,sha256=KldHM_1QG9o8RjaPr14_3jHXYLXDne8Ot1v5VJ6RDWQ,3676
|
|
1732
1788
|
mteb/tasks/classification/multilingual/afri_senti_classification.py,sha256=D76fGCgnjr1Gf6pAb7G6XRwuRSIiPRHfhNmv1rt_ilM,2803
|
|
1733
1789
|
mteb/tasks/classification/multilingual/afri_senti_lang_classification.py,sha256=tvcFtIyd009zEh_6WxL9j9pV456zz2fnQ-T2yK7LItE,1992
|
|
1734
1790
|
mteb/tasks/classification/multilingual/amazon_counterfactual_classification.py,sha256=FVwcb96N3zzS4WcXy3UlNq8C_DJl-sHtVTVP2Tb0MBg,2249
|
|
1735
1791
|
mteb/tasks/classification/multilingual/amazon_reviews_classification.py,sha256=ZmJqujSsL34RrVLYI9_hlzDTR57r44-FB1yqL3pggoA,1639
|
|
1736
|
-
mteb/tasks/classification/multilingual/catalonia_tweet_classification.py,sha256=
|
|
1792
|
+
mteb/tasks/classification/multilingual/catalonia_tweet_classification.py,sha256=o6Wyg1cavXOcN2Bl4zcPu3lryDLd-LoZ__acH_GvAL8,2814
|
|
1737
1793
|
mteb/tasks/classification/multilingual/cyrillic_turkic_lang_classification.py,sha256=n_5ABMkYQPL2ynPZuJfwWA6HLX6Vd6m8irim5DnYywo,1893
|
|
1738
1794
|
mteb/tasks/classification/multilingual/hin_dialect_classification.py,sha256=PphXUzMLB1NS9mb9qNQFdP1JmSrJ9SIpiqP2g4_T1I4,2276
|
|
1739
1795
|
mteb/tasks/classification/multilingual/hume_multilingual_sentiment_classification.py,sha256=-EmXnWOuBbVdiuM3kjgo41EkRuOtMsrSTr-HAglsoJA,2130
|
|
@@ -1746,7 +1802,7 @@ mteb/tasks/classification/multilingual/massive_intent_classification.py,sha256=R
|
|
|
1746
1802
|
mteb/tasks/classification/multilingual/massive_scenario_classification.py,sha256=2GnRe2D2ZXLWLdulPAJIusOo-_gK8BoAiyhTfUq0aeE,3014
|
|
1747
1803
|
mteb/tasks/classification/multilingual/mtop_domain_classification.py,sha256=6ZYJJIhB1Q6UogabAAasvlJUm1S85rjw9baqntbQ6dM,1945
|
|
1748
1804
|
mteb/tasks/classification/multilingual/mtop_intent_classification.py,sha256=5Ffh6zs7BSxcaOJbUhACyONBqea90I4a4Jr2ChVfuOs,1938
|
|
1749
|
-
mteb/tasks/classification/multilingual/multi_hate_classification.py,sha256=
|
|
1805
|
+
mteb/tasks/classification/multilingual/multi_hate_classification.py,sha256=M5g81DZjnndseTR1SuQZe0ZPz5QyMIj8kZNv0a_fOKk,3647
|
|
1750
1806
|
mteb/tasks/classification/multilingual/multilingual_sentiment_classification.py,sha256=qKoK2bP5VLsOwNyfDTVJWjNPlqoi-Ct1RgJuCEP4mYo,3515
|
|
1751
1807
|
mteb/tasks/classification/multilingual/naija_senti.py,sha256=MHKsVUArhFYtFmF7L84PAjPCKVBp_MX1tzmvcAsFmx0,2103
|
|
1752
1808
|
mteb/tasks/classification/multilingual/nordic_lang_classification.py,sha256=pTGQ3u33p2yDFXL4K4BFR9GzWA51ReAQzFmuJvoBKYw,1872
|
|
@@ -1754,109 +1810,110 @@ mteb/tasks/classification/multilingual/nusa_paragraph_emotion_classification.py,
|
|
|
1754
1810
|
mteb/tasks/classification/multilingual/nusa_paragraph_topic_classification.py,sha256=nh5qxJdRcIYtq_tv4J1r1tsNan9RW0yLecUwzFCzaZ8,2485
|
|
1755
1811
|
mteb/tasks/classification/multilingual/nusa_x_senti.py,sha256=qCWZBHdINL8CO3tucc0n3xodpLk4YMApRG5qZJT_Pvw,2259
|
|
1756
1812
|
mteb/tasks/classification/multilingual/ru_nlu_intent_classification.py,sha256=ZBouGeVgnSWnZKFl6GtCd0yl5A0WTzAwYlKg405b1i0,1643
|
|
1757
|
-
mteb/tasks/classification/multilingual/ru_sci_bench_classification.py,sha256=
|
|
1758
|
-
mteb/tasks/classification/multilingual/scala_classification.py,sha256=
|
|
1813
|
+
mteb/tasks/classification/multilingual/ru_sci_bench_classification.py,sha256=K2tEYv6hsZwZjNj1RAECrO01F1G61HCtzwtC_v1XjV8,7736
|
|
1814
|
+
mteb/tasks/classification/multilingual/scala_classification.py,sha256=tKwtKart9bUi9gVV-O4h4R9z0I8kayGmWWpf424eWAw,2548
|
|
1759
1815
|
mteb/tasks/classification/multilingual/scandi_sent_classification.py,sha256=yNZ-Jb97GOsKtQ5GskT4F_opOATyQ3HqKL2pHAv_n5E,1812
|
|
1760
|
-
mteb/tasks/classification/multilingual/sib200_classification.py,sha256=
|
|
1816
|
+
mteb/tasks/classification/multilingual/sib200_classification.py,sha256=RcpPAUmEviNasGTR3csd5SBHSDTAFU4v15xRRTuPs_A,8063
|
|
1761
1817
|
mteb/tasks/classification/multilingual/south_african_lang_classification.py,sha256=uAhxQMWQaQIoeO6pOVGViUJdma5Z56t967W9cbZYq7E,1790
|
|
1762
1818
|
mteb/tasks/classification/multilingual/swiss_judgement_classification.py,sha256=vcPSMLduwmvt0VpAFN0dlA2DnobTlqR0wqI1ZxLN7rU,1513
|
|
1763
1819
|
mteb/tasks/classification/multilingual/turkic_classification.py,sha256=SB-17gT866bE3Py01pdioIcqzFC2EdxdoiwZ2N11HbE,2356
|
|
1764
1820
|
mteb/tasks/classification/multilingual/tweet_sentiment_classification.py,sha256=E1AR4BgGdhw7jdMZy96RNUb1uvHaFFx9JsKJo60QZRw,2072
|
|
1765
1821
|
mteb/tasks/classification/mya/__init__.py,sha256=lFTf0bNTeMsXTHlnKJM7c-VsnQM_3Il6gZehbVz-3xA,97
|
|
1766
|
-
mteb/tasks/classification/mya/myanmar_news.py,sha256=
|
|
1822
|
+
mteb/tasks/classification/mya/myanmar_news.py,sha256=76fQ-rmHZ0yympvvhM2jQy_XUErhoqwuffVJfYpqdoo,3214
|
|
1767
1823
|
mteb/tasks/classification/nep/__init__.py,sha256=Sj3bPg2KXOui4nwgVhSdz6JUpjadQJ1ZJjxxpMyMLfQ,176
|
|
1768
|
-
mteb/tasks/classification/nep/nepali_news_classification.py,sha256=
|
|
1824
|
+
mteb/tasks/classification/nep/nepali_news_classification.py,sha256=T0XeLmAR_i_y2-vqU4q_ltu1iEz7B88rnDLftN_yQgU,3649
|
|
1769
1825
|
mteb/tasks/classification/nld/__init__.py,sha256=a_YlxI4tL8joDa1RF-ctbA4kw_8kHhM0sWBNtX1FTcQ,1037
|
|
1770
|
-
mteb/tasks/classification/nld/dutch_book_review_sentiment_classification.py,sha256=
|
|
1771
|
-
mteb/tasks/classification/nld/dutch_cola_classification.py,sha256=
|
|
1772
|
-
mteb/tasks/classification/nld/dutch_government_bias_classification.py,sha256=
|
|
1773
|
-
mteb/tasks/classification/nld/dutch_news_articles_classification.py,sha256=
|
|
1774
|
-
mteb/tasks/classification/nld/dutch_sarcastic_headlines_classification.py,sha256=
|
|
1775
|
-
mteb/tasks/classification/nld/iconclass_classification.py,sha256=
|
|
1776
|
-
mteb/tasks/classification/nld/open_tender_classification.py,sha256=
|
|
1777
|
-
mteb/tasks/classification/nld/vaccin_chat_nl_classification.py,sha256=
|
|
1826
|
+
mteb/tasks/classification/nld/dutch_book_review_sentiment_classification.py,sha256=ndnmZgfXZlsv47t4FHPKVH5eZTPHq1YsPLeupikZ68s,3546
|
|
1827
|
+
mteb/tasks/classification/nld/dutch_cola_classification.py,sha256=_mRNluXpo91ChJXIOGwRNsimQqotmhnk0dwW4DZjEX0,1601
|
|
1828
|
+
mteb/tasks/classification/nld/dutch_government_bias_classification.py,sha256=pDU6zS7u69Pz1AiEAT0na-3haUAJtvMqywFgDoqKImU,1594
|
|
1829
|
+
mteb/tasks/classification/nld/dutch_news_articles_classification.py,sha256=OU0C_k06iIP3EZ_8PMEeRk29q_Fp0G64j1jRwHNGFXs,1343
|
|
1830
|
+
mteb/tasks/classification/nld/dutch_sarcastic_headlines_classification.py,sha256=_uSrF4qTwiiPq0x3eJ3puaF0RbzqVwPwGAtKLywBB38,1569
|
|
1831
|
+
mteb/tasks/classification/nld/iconclass_classification.py,sha256=YlrA74ePG5ijAAj-wwIU-Gom5j5cyWDSCPYbVYLspd8,1655
|
|
1832
|
+
mteb/tasks/classification/nld/open_tender_classification.py,sha256=ObtvxZjMhzJkaSOLniyWFtHgVdIOFBq7C84_VTRLT50,1525
|
|
1833
|
+
mteb/tasks/classification/nld/vaccin_chat_nl_classification.py,sha256=QjYdEFbDMGCM5PhKR1ydpErTj35ttnOjg0Q7sg3vlo0,1921
|
|
1778
1834
|
mteb/tasks/classification/nob/__init__.py,sha256=axgfxU9oueXuBJgbnyb0B5coAqxiCv543SsMEYcQm7o,366
|
|
1779
|
-
mteb/tasks/classification/nob/no_rec_classification.py,sha256=
|
|
1780
|
-
mteb/tasks/classification/nob/norwegian_parliament_classification.py,sha256=
|
|
1835
|
+
mteb/tasks/classification/nob/no_rec_classification.py,sha256=37WN5XZMML8RoC1cODPmfKNxxJ5VJKq4CTnUIe11ExA,4174
|
|
1836
|
+
mteb/tasks/classification/nob/norwegian_parliament_classification.py,sha256=m02gcEid8anhVe4VdaYZ_EScLVU7Vyvq2RSSTG8l5gA,3995
|
|
1781
1837
|
mteb/tasks/classification/ory/__init__.py,sha256=V70ULmvJDSTZwbNjgUmTw3qNo9aOm6U28mgGigK2dhQ,153
|
|
1782
|
-
mteb/tasks/classification/ory/odia_news_classification.py,sha256=
|
|
1838
|
+
mteb/tasks/classification/ory/odia_news_classification.py,sha256=poz-5r0NA6D8P-9dx_SY1aoyhRRUqRW9t5UE_XVIeX8,3131
|
|
1783
1839
|
mteb/tasks/classification/pan/__init__.py,sha256=t1lRdXLm9NHF1kmkAd4xhmqHdgprVAZUX8b95BcIeNM,108
|
|
1784
1840
|
mteb/tasks/classification/pan/punjabi_news_classification.py,sha256=1dk0N8tGcH2yt-oniiIxoZh-s7uypiD7ZlByGNhR5A4,1542
|
|
1785
1841
|
mteb/tasks/classification/pol/__init__.py,sha256=ebboDlcw2THwh7qzTyfvddOMh09B8h9I9GrPftQj16o,650
|
|
1786
|
-
mteb/tasks/classification/pol/polish_classification.py,sha256=
|
|
1842
|
+
mteb/tasks/classification/pol/polish_classification.py,sha256=JdKNtMVHOWjZ4nrchabuShZtW0rwt9DYW3XglH3Yya0,15060
|
|
1787
1843
|
mteb/tasks/classification/por/__init__.py,sha256=YtARRvys_j2BLk4RhndceR4CTuCiHnyhBvoElTn1__o,136
|
|
1788
1844
|
mteb/tasks/classification/por/hate_speech_portuguese_classification.py,sha256=vI0t9IbVEsUwdF2FmvUO_wN320zrz9Qi6axQoP_WkJQ,1747
|
|
1789
1845
|
mteb/tasks/classification/ron/__init__.py,sha256=XI2eqobcWBBjmDEJGHaDIRFfJWf5nrkiQjFhUJ1Ml_k,461
|
|
1790
|
-
mteb/tasks/classification/ron/moroco.py,sha256=
|
|
1791
|
-
mteb/tasks/classification/ron/romanian_reviews_sentiment.py,sha256=
|
|
1792
|
-
mteb/tasks/classification/ron/romanian_sentiment_classification.py,sha256=
|
|
1846
|
+
mteb/tasks/classification/ron/moroco.py,sha256=NFFfpzvRzp0djPzMtvgl7i1JW_CXwCqEkTEbE9gem4k,3526
|
|
1847
|
+
mteb/tasks/classification/ron/romanian_reviews_sentiment.py,sha256=7KtfYmsI45VHmdR6fmjSfDRHCx2zRh36m35hG4LNmHQ,2904
|
|
1848
|
+
mteb/tasks/classification/ron/romanian_sentiment_classification.py,sha256=t5HR5MJZAf1QnIL6-RmHqFQRI3kYFjtzJ6If8ct1zco,2804
|
|
1793
1849
|
mteb/tasks/classification/rus/__init__.py,sha256=MXhJGRXsD-XrLVYE6Yf8hstLf8M5Am5A6erOsB0lNvY,1460
|
|
1794
|
-
mteb/tasks/classification/rus/georeview_classification.py,sha256=
|
|
1795
|
-
mteb/tasks/classification/rus/headline_classification.py,sha256=
|
|
1796
|
-
mteb/tasks/classification/rus/inappropriateness_classification.py,sha256=
|
|
1850
|
+
mteb/tasks/classification/rus/georeview_classification.py,sha256=ssgBSuq13zih4h8yBDPS8AsdHvWvCFLMw8S1LiKbLb0,2470
|
|
1851
|
+
mteb/tasks/classification/rus/headline_classification.py,sha256=yryCgwEIQHqOY5595qHO538JXT5xAraMPJfTwxVuN4Q,4045
|
|
1852
|
+
mteb/tasks/classification/rus/inappropriateness_classification.py,sha256=tdym3PV34RQJ1dAGdGPN2E4y4R5TWIyWUXSRzbsP1mw,6363
|
|
1797
1853
|
mteb/tasks/classification/rus/kinopoisk_classification.py,sha256=-gw134UyzSuXiHAcH1seqYvxUDpT15ab_YYDzI2pAIo,1453
|
|
1798
|
-
mteb/tasks/classification/rus/ru_reviews_classification.py,sha256=
|
|
1854
|
+
mteb/tasks/classification/rus/ru_reviews_classification.py,sha256=1lKl2kMm09ovU3oJ0Xyd06GuJvfFUSqsdDBZU8rXw_s,3485
|
|
1799
1855
|
mteb/tasks/classification/rus/ru_sci_bench_grnti_classification.py,sha256=G4jli_baouKaWCaN0D6DL1Fih4BruIDr1a_EHQzs6Mg,1367
|
|
1800
1856
|
mteb/tasks/classification/rus/ru_sci_bench_oecd_classification.py,sha256=xGjR2Tzcrqk66SzvLnEHp-weL5KAa_TTPPW8lIhiR90,1363
|
|
1801
|
-
mteb/tasks/classification/rus/ru_toixic_classification_okmlcup.py,sha256=
|
|
1802
|
-
mteb/tasks/classification/rus/senti_ru_eval.py,sha256=
|
|
1857
|
+
mteb/tasks/classification/rus/ru_toixic_classification_okmlcup.py,sha256=lk6KLqYTMj3pC-GGOeJ7_WkZ8OO4BQOLVmac0Fm_6eA,2366
|
|
1858
|
+
mteb/tasks/classification/rus/senti_ru_eval.py,sha256=jSrDBchf92aKUG587o3p4GcuemMoWkJOdMuimfbj0yg,3056
|
|
1803
1859
|
mteb/tasks/classification/san/__init__.py,sha256=aWgJCsbhb95gTgHUCfR6qRJvMU42pO_YxbGhMZJW5Z4,120
|
|
1804
1860
|
mteb/tasks/classification/san/sanskrit_shlokas_classification.py,sha256=uWgGvyGzPYgF0wsa88S9eXD_GD0DGioZ2vqefbnV4V0,1722
|
|
1805
1861
|
mteb/tasks/classification/sin/__init__.py,sha256=nph8HDJzt-d7Lns4gvqI9TLsg7jx4lAKbN1G-qzAusc,400
|
|
1806
|
-
mteb/tasks/classification/sin/sinhala_news_classification.py,sha256=
|
|
1807
|
-
mteb/tasks/classification/sin/sinhala_news_source_classification.py,sha256=
|
|
1862
|
+
mteb/tasks/classification/sin/sinhala_news_classification.py,sha256=CcRjFs2AXtBUUm-51ynCHKrZ7T4sjt_Liz9f_Whi9K4,4013
|
|
1863
|
+
mteb/tasks/classification/sin/sinhala_news_source_classification.py,sha256=1IhbWujAzZJOe8HIQ4BTxJZzGds8dwKxRFaZ3fahbgs,3393
|
|
1808
1864
|
mteb/tasks/classification/slk/__init__.py,sha256=UJKOGK5cfdo3Qd2e769ghbphpPE9aK1ZG4NZpcZmDGI,726
|
|
1809
|
-
mteb/tasks/classification/slk/csfdsk_movie_review_sentiment_classification.py,sha256=
|
|
1810
|
-
mteb/tasks/classification/slk/slovak_hate_speech_classification.py,sha256=
|
|
1811
|
-
mteb/tasks/classification/slk/slovak_movie_review_sentiment_classification.py,sha256=
|
|
1865
|
+
mteb/tasks/classification/slk/csfdsk_movie_review_sentiment_classification.py,sha256=5XKXBSHbgja-2KCbyOtWcNX2h3k2pSfWvVj4tJ6LSEc,3574
|
|
1866
|
+
mteb/tasks/classification/slk/slovak_hate_speech_classification.py,sha256=C7I1PtNkw9TOSlhf5Zc_Bq_WKpLsjhtz0DS4yLbtbcw,2349
|
|
1867
|
+
mteb/tasks/classification/slk/slovak_movie_review_sentiment_classification.py,sha256=suh4Uc2pJQRpjvtDZNeh8qCyMEIdCe7Wkqwjbd6C0w4,3314
|
|
1812
1868
|
mteb/tasks/classification/slv/__init__.py,sha256=BwsXnZBq2EudbPz0AGUnonVe4bmNUHSeIfEIyTVQXcg,148
|
|
1813
|
-
mteb/tasks/classification/slv/frenk_sl_classification.py,sha256=
|
|
1869
|
+
mteb/tasks/classification/slv/frenk_sl_classification.py,sha256=SoArMyn9Xl8UzmfYQAoX9YeH3cQ0FJZUlIBVgo-_m_o,3027
|
|
1814
1870
|
mteb/tasks/classification/spa/__init__.py,sha256=-FRjuZqV_8uVdnL9GmzTP3Y7zr7ktkHE9ugsTMgZqC8,394
|
|
1815
|
-
mteb/tasks/classification/spa/spanish_news_classification.py,sha256=
|
|
1816
|
-
mteb/tasks/classification/spa/spanish_sentiment_classification.py,sha256=
|
|
1871
|
+
mteb/tasks/classification/spa/spanish_news_classification.py,sha256=2uPbtemvlnvVJoWDt2qPo6tzpq2xTuUnLi8l93VjgG8,2701
|
|
1872
|
+
mteb/tasks/classification/spa/spanish_sentiment_classification.py,sha256=dayQOZFfwOpJZsK8hg-vbT4bN1VLMjD3Sbk6tbIWsl4,3750
|
|
1817
1873
|
mteb/tasks/classification/ssw/__init__.py,sha256=4PzlaxBkbg2yMqJBmkBZVO1ArZQoefiFLx03rJNU6TQ,181
|
|
1818
|
-
mteb/tasks/classification/ssw/siswati_news_classification.py,sha256=
|
|
1874
|
+
mteb/tasks/classification/ssw/siswati_news_classification.py,sha256=p1QwKdPebcPdJ3X5ZXLnMkXqA5dv5uyk5uY-lOm3Mcw,3059
|
|
1819
1875
|
mteb/tasks/classification/swa/__init__.py,sha256=gIM7OBbNAWRJUa7_ElWc4EHEvVX2TUrs0jXYxnKETPY,181
|
|
1820
|
-
mteb/tasks/classification/swa/swahili_news_classification.py,sha256=
|
|
1876
|
+
mteb/tasks/classification/swa/swahili_news_classification.py,sha256=xamx-C0hwOq57MoRd8n9n4a_LXniFH4SMDU1MzSixc4,3593
|
|
1821
1877
|
mteb/tasks/classification/swe/__init__.py,sha256=phSBojx1lLs7Ow8fAsxFaewkc-_bKqZqZT03okvqRbg,489
|
|
1822
|
-
mteb/tasks/classification/swe/dalaj_classification.py,sha256=
|
|
1823
|
-
mteb/tasks/classification/swe/swe_rec_classification.py,sha256=
|
|
1824
|
-
mteb/tasks/classification/swe/swedish_sentiment_classification.py,sha256=
|
|
1878
|
+
mteb/tasks/classification/swe/dalaj_classification.py,sha256=x1GajvgbWwxqi85PBXh3CzPxpwf0UGQ6-klLvcEn678,2950
|
|
1879
|
+
mteb/tasks/classification/swe/swe_rec_classification.py,sha256=f4qe5IOY2yw-Ud-wxWej35Hqrgn_dcCJ3TZY1ElEIgE,3302
|
|
1880
|
+
mteb/tasks/classification/swe/swedish_sentiment_classification.py,sha256=k6LxJ7HJZ9VaN44dkKwD9pE7jqs5BSR7MGM0b5UaM-M,2259
|
|
1825
1881
|
mteb/tasks/classification/tam/__init__.py,sha256=cj6Zi2IoXH2GrsKrFfS6xqiC_BYXNhyMBPTjET5owrg,171
|
|
1826
|
-
mteb/tasks/classification/tam/tamil_news_classification.py,sha256=
|
|
1882
|
+
mteb/tasks/classification/tam/tamil_news_classification.py,sha256=RWO717yhpI7lAtphz6igB0i_Ir7Y5gXJEX2TOdX6C0s,3223
|
|
1827
1883
|
mteb/tasks/classification/tel/__init__.py,sha256=DicrFxq-N9dDqF-WZ64mbH2jvz_be8ZSWRnvaVdn_GI,244
|
|
1828
|
-
mteb/tasks/classification/tel/telugu_andhra_jyoti_news_classification.py,sha256=
|
|
1884
|
+
mteb/tasks/classification/tel/telugu_andhra_jyoti_news_classification.py,sha256=yPl47FzmNxsvmi0gfn6Fb9T3EU-7fNFY_jpX9UKHurA,2578
|
|
1829
1885
|
mteb/tasks/classification/tha/__init__.py,sha256=L17uVKPwwwEcHvhWuA9-ZZ7cEsEovM-oqGY35FAdb6c,336
|
|
1830
|
-
mteb/tasks/classification/tha/wisesight_sentiment_classification.py,sha256=
|
|
1886
|
+
mteb/tasks/classification/tha/wisesight_sentiment_classification.py,sha256=CdTFVbTi5t7VQrlPydV7xfVEKRLcQVeajQy1avHgeg4,3095
|
|
1831
1887
|
mteb/tasks/classification/tha/wongnai_reviews_classification.py,sha256=0qy4fHUf5i6Kgfxve1NneelB9gNas_7lMRs6pwgce1Q,1736
|
|
1832
1888
|
mteb/tasks/classification/tsn/__init__.py,sha256=pHxOFshsfTp_CkIowXYcDtpZsxihcnPewREjFOzwHH4,176
|
|
1833
|
-
mteb/tasks/classification/tsn/tswana_news_classification.py,sha256=
|
|
1834
|
-
mteb/tasks/classification/tur/__init__.py,sha256=
|
|
1835
|
-
mteb/tasks/classification/tur/
|
|
1836
|
-
mteb/tasks/classification/tur/
|
|
1889
|
+
mteb/tasks/classification/tsn/tswana_news_classification.py,sha256=wO3FD7JLaV9gycHVySmVjJUMwGbYd73pZfZEtSiknrw,3106
|
|
1890
|
+
mteb/tasks/classification/tur/__init__.py,sha256=viCR9s3exQyQDKEbgi1ESBiMPF07cG_TssN3oXc9_GA,611
|
|
1891
|
+
mteb/tasks/classification/tur/turkish_constitutional_court.py,sha256=F-lY7I46Zo8SoCPq2N9rz4yUy84icI0hIvPuI8XRarU,1626
|
|
1892
|
+
mteb/tasks/classification/tur/turkish_movie_sentiment_classification.py,sha256=eWPoX2uK06GsmgrteInkiC0uw0mF4dnkPiR249jBDpg,3069
|
|
1893
|
+
mteb/tasks/classification/tur/turkish_product_sentiment_classification.py,sha256=9_AxxYWNCVqCuFN1_uCbwid9ox7KNKRSWbpfLMQrFII,2781
|
|
1837
1894
|
mteb/tasks/classification/ukr/__init__.py,sha256=Tk8r98fjAhLigvXSu2v3vhq3aJVepreg7k7hVxlpIYo,186
|
|
1838
|
-
mteb/tasks/classification/ukr/ukr_formality_classification.py,sha256=
|
|
1895
|
+
mteb/tasks/classification/ukr/ukr_formality_classification.py,sha256=yoVswuHpklImy6xhTHNribGqSjzGRnNuYQC1cdq9LaM,4412
|
|
1839
1896
|
mteb/tasks/classification/urd/__init__.py,sha256=CxO1ERWJxvYlmNUsXSGs3oPKqAtjrP0MTInCl6NV3oM,217
|
|
1840
|
-
mteb/tasks/classification/urd/urdu_roman_sentiment_classification.py,sha256=
|
|
1897
|
+
mteb/tasks/classification/urd/urdu_roman_sentiment_classification.py,sha256=uELwmACR5NRMBcyP9kCF28zjV1z6VW-Op3sGomNqF28,2801
|
|
1841
1898
|
mteb/tasks/classification/vie/__init__.py,sha256=C590nbZwTwxtP-46xS1NYgcH0UJcELA9TDxiJO-o67o,1603
|
|
1842
|
-
mteb/tasks/classification/vie/amazon_counterfactual_vn_classification.py,sha256=
|
|
1843
|
-
mteb/tasks/classification/vie/amazon_polarity_vn_classification.py,sha256
|
|
1844
|
-
mteb/tasks/classification/vie/amazon_reviews_vn_classification.py,sha256=
|
|
1845
|
-
mteb/tasks/classification/vie/banking77_vn_classification.py,sha256=
|
|
1846
|
-
mteb/tasks/classification/vie/emotion_vn_classification.py,sha256=
|
|
1847
|
-
mteb/tasks/classification/vie/imdb_vn_classification.py,sha256=
|
|
1848
|
-
mteb/tasks/classification/vie/massive_intent_vn_classification.py,sha256=
|
|
1849
|
-
mteb/tasks/classification/vie/massive_scenario_vn_classification.py,sha256=
|
|
1850
|
-
mteb/tasks/classification/vie/mtop_domain_vn_classification.py,sha256=
|
|
1851
|
-
mteb/tasks/classification/vie/mtop_intent_vn_classification.py,sha256=
|
|
1852
|
-
mteb/tasks/classification/vie/toxic_conversations_vn_classification.py,sha256=
|
|
1853
|
-
mteb/tasks/classification/vie/tweet_sentiment_extraction_vn_classification.py,sha256=
|
|
1854
|
-
mteb/tasks/classification/vie/vie_student_feedback_classification.py,sha256=
|
|
1899
|
+
mteb/tasks/classification/vie/amazon_counterfactual_vn_classification.py,sha256=sWx7RpJsY_E-n9H-XfTTxlsxgJdUlviaSCrCJgBkPlQ,1886
|
|
1900
|
+
mteb/tasks/classification/vie/amazon_polarity_vn_classification.py,sha256=-FZZwFSLN8p9ddKKWpt8-i_mVJdXIaXgo4cb2Paj7Qs,1831
|
|
1901
|
+
mteb/tasks/classification/vie/amazon_reviews_vn_classification.py,sha256=NZuwMLmt1AmqnLaMXIQonHLvIJCZy1pUYx3sGtI2cSo,1846
|
|
1902
|
+
mteb/tasks/classification/vie/banking77_vn_classification.py,sha256=smnfmE_aCL5JmbRwql8e3DVrCr2lvtSe9rj8Fj2lxZU,1771
|
|
1903
|
+
mteb/tasks/classification/vie/emotion_vn_classification.py,sha256=JFq65-sIIHRrm5o4cQONgXlgkQYnf7JwlD4J4N5QWK8,1889
|
|
1904
|
+
mteb/tasks/classification/vie/imdb_vn_classification.py,sha256=mwmKbei2K-O0ff5SS7LYyPrrjuU13tWxVI43z5fCp04,1777
|
|
1905
|
+
mteb/tasks/classification/vie/massive_intent_vn_classification.py,sha256=W69N1r9G94p17lZS9-w0RJvpkCrWKBReNzBfKch4RGY,1934
|
|
1906
|
+
mteb/tasks/classification/vie/massive_scenario_vn_classification.py,sha256=URvW6kI7q_Njx9eDqH9yDIRqHAYEfGRYYmYq0lXgl2c,1942
|
|
1907
|
+
mteb/tasks/classification/vie/mtop_domain_vn_classification.py,sha256=HVrfQVeM1icgcqT26I_W-Hc8B26GDkeEcQKNLDTkVdw,1765
|
|
1908
|
+
mteb/tasks/classification/vie/mtop_intent_vn_classification.py,sha256=utdySQ5kCQ4GkZn0HU8rqW_-koBe6ShMz5V2-fuvUdw,1765
|
|
1909
|
+
mteb/tasks/classification/vie/toxic_conversations_vn_classification.py,sha256=NAra_89GulEqJ_2AwRpzvWCej2_JIXaiaZU1HbQa9D8,2123
|
|
1910
|
+
mteb/tasks/classification/vie/tweet_sentiment_extraction_vn_classification.py,sha256=PDMEokdODsfN5ULnlyo3HNO_2JFESLYaQuPxGxXlnO4,1897
|
|
1911
|
+
mteb/tasks/classification/vie/vie_student_feedback_classification.py,sha256=9g1u2bmnSFO3yf1KbRfG7ZOLIzQi8ckw6u900mMe3zA,3259
|
|
1855
1912
|
mteb/tasks/classification/zho/__init__.py,sha256=lwB6j0YFdKF5mnBwcTBW_QP-Es7o0Qur6cwT6ZKKAG8,651
|
|
1856
|
-
mteb/tasks/classification/zho/cmteb_classification.py,sha256=
|
|
1857
|
-
mteb/tasks/classification/zho/yue_openrice_review_classification.py,sha256=
|
|
1913
|
+
mteb/tasks/classification/zho/cmteb_classification.py,sha256=YS9jNJYBCuen3X78Z0TKID9ekjDpHcRZ1kbrsYke1EU,16556
|
|
1914
|
+
mteb/tasks/classification/zho/yue_openrice_review_classification.py,sha256=rMerItD7XYtDsif4g9vktQxC_qpcSV4yOJWT_aJUvRU,3304
|
|
1858
1915
|
mteb/tasks/classification/zul/__init__.py,sha256=iPm0kTxJ6R-R48cULXZtpebvD8IzyWbVokhgCvKT0c4,182
|
|
1859
|
-
mteb/tasks/classification/zul/isi_zulu_news_classification.py,sha256=
|
|
1916
|
+
mteb/tasks/classification/zul/isi_zulu_news_classification.py,sha256=awjyfjdtG6DQa2WPmfm_jAZWO0Iyy9scfpGv6izk1bA,3060
|
|
1860
1917
|
mteb/tasks/clustering/__init__.py,sha256=on2FxT3bKFn4-ttmyd13nqKCPHGw1UYV5X2lsrIuC6Y,313
|
|
1861
1918
|
mteb/tasks/clustering/deu/__init__.py,sha256=7vq3Nqz34nS1JSuS_Izm7vBpkDN8q4-uf809yPw3RF8,591
|
|
1862
1919
|
mteb/tasks/clustering/deu/blurbs_clustering_p2p.py,sha256=KtaktUJQg2RcvN6DMclFfKqjc02vFw_keGyAoeOYCWA,3337
|
|
@@ -1897,7 +1954,7 @@ mteb/tasks/clustering/fra/allo_prof_clustering_s2s.py,sha256=U_yNmKbD5ZZLQISUzuF
|
|
|
1897
1954
|
mteb/tasks/clustering/fra/hal_clustering_s2s.py,sha256=H-YZdBAv2CzXqvFc36OTmzgJZEgPwrqdOCd1sJZMWJ8,4675
|
|
1898
1955
|
mteb/tasks/clustering/jpn/__init__.py,sha256=WFar8GZnEqUf5fgXKqY2JXW7INOANo32uNRVrNQ8hAk,232
|
|
1899
1956
|
mteb/tasks/clustering/jpn/livedoor_news_clustering.py,sha256=ee6ZrU_89FX5oHbOAdwjLwdB2TrBn-FhP1RQoGzmInk,2457
|
|
1900
|
-
mteb/tasks/clustering/jpn/mews_c16_ja_clustering.py,sha256=
|
|
1957
|
+
mteb/tasks/clustering/jpn/mews_c16_ja_clustering.py,sha256=r5rE6zbasAf_Xk21sf8Tw1R-yootjICTwYoynMYPMiQ,1894
|
|
1901
1958
|
mteb/tasks/clustering/kor/__init__.py,sha256=UlC3CzwvNgTgPrk9KMw_Ne9M6zTqXVMl2vBbYAk_5hs,213
|
|
1902
1959
|
mteb/tasks/clustering/kor/klue_mrc_domain_clustering.py,sha256=dwwAPDeWexd-0rsn_psBj7zSgFiLpkaWR75x2KwBES8,1879
|
|
1903
1960
|
mteb/tasks/clustering/kor/klue_ynat_mrc_category_clustering.py,sha256=4yDomAm_JIHn5xiJDcznQpwj85RFo3hcWMYZ1EYb_ow,1915
|
|
@@ -1908,16 +1965,16 @@ mteb/tasks/clustering/multilingual/masakha_news_clustering_p2p.py,sha256=SmxlWKS
|
|
|
1908
1965
|
mteb/tasks/clustering/multilingual/masakha_news_clustering_s2s.py,sha256=-Xq_MyuEukwq8S9drb6uy8KQGvIXIeCWbXl1RkN3e5c,3167
|
|
1909
1966
|
mteb/tasks/clustering/multilingual/mlsum_clustering_p2p.py,sha256=NY5J-UWGc2z5pBPwo-o6jODC6nR16axP7gKmxmlT2H8,6388
|
|
1910
1967
|
mteb/tasks/clustering/multilingual/mlsum_clustering_s2s.py,sha256=4UfRF82DLNLLvDkazaiW_lT3eGuSe5-QP0IW0xb8rtg,5988
|
|
1911
|
-
mteb/tasks/clustering/multilingual/sib200_clustering_s2s.py,sha256=
|
|
1968
|
+
mteb/tasks/clustering/multilingual/sib200_clustering_s2s.py,sha256=EoUCaZ69BcxSf4chXIyA8M4NCsVC2nmaM4D0HEImgdY,8528
|
|
1912
1969
|
mteb/tasks/clustering/multilingual/wiki_clustering_p2p.py,sha256=XgMqPZ74tWjxU169qN8ri_aZVQ_kaR6xFVNJYyWBt4E,4384
|
|
1913
1970
|
mteb/tasks/clustering/nld/__init__.py,sha256=_KwG_aTmQpSAek4clgtkV7MQ5dpUOmbgIQWZoux5T-w,682
|
|
1914
|
-
mteb/tasks/clustering/nld/dutch_news_articles_clustering_p2p.py,sha256=
|
|
1915
|
-
mteb/tasks/clustering/nld/dutch_news_articles_clustering_s2s.py,sha256=
|
|
1916
|
-
mteb/tasks/clustering/nld/iconclass_clustering_s2s.py,sha256=
|
|
1917
|
-
mteb/tasks/clustering/nld/open_tender_clustering_p2p.py,sha256=
|
|
1918
|
-
mteb/tasks/clustering/nld/open_tender_clustering_s2s.py,sha256=
|
|
1919
|
-
mteb/tasks/clustering/nld/vabb_clustering_p2p.py,sha256=
|
|
1920
|
-
mteb/tasks/clustering/nld/vabb_clustering_s2s.py,sha256=
|
|
1971
|
+
mteb/tasks/clustering/nld/dutch_news_articles_clustering_p2p.py,sha256=xFiTQPZosUR8iYwHG3T1-SGwtMReMg5ofQvkrvIHjiE,1580
|
|
1972
|
+
mteb/tasks/clustering/nld/dutch_news_articles_clustering_s2s.py,sha256=07i07z9-Iu6d_PGtS4uFBNGte0PXqWmif-x_B5PxndE,1568
|
|
1973
|
+
mteb/tasks/clustering/nld/iconclass_clustering_s2s.py,sha256=k1S7Cx3n9kYg2jmQGydaYFC6zbb-D--S6hbxYQ6bIVg,1865
|
|
1974
|
+
mteb/tasks/clustering/nld/open_tender_clustering_p2p.py,sha256=Yek6Y9ITCJ95Yhg48ryItfxx0e_Um2s8OtBvv2zZ0YU,2052
|
|
1975
|
+
mteb/tasks/clustering/nld/open_tender_clustering_s2s.py,sha256=9DlFx_VQHFrRR5Gi6zDg0OYnmxeXYSPMlFKpFhjFvco,1715
|
|
1976
|
+
mteb/tasks/clustering/nld/vabb_clustering_p2p.py,sha256=TDGBUwN6AAQ8U0S0Whp5OiU0_XAsNsonrCeqxNnYFCg,2191
|
|
1977
|
+
mteb/tasks/clustering/nld/vabb_clustering_s2s.py,sha256=2UXW5pk95meD5FNHuMY4S1mhlaPl0NfrKDAV9N4_uCY,2193
|
|
1921
1978
|
mteb/tasks/clustering/nob/__init__.py,sha256=de-t3amIyZAo0iPjy33xVMFKCQlcDNmS4M8dgfWsr1U,503
|
|
1922
1979
|
mteb/tasks/clustering/nob/snl_clustering.py,sha256=n4-cHyAgJUEckqvEO1fk-o4rdXeIALNe2-enpvW4M9o,3580
|
|
1923
1980
|
mteb/tasks/clustering/nob/snl_hierarchical_clustering.py,sha256=OfdGmodK0eHTQMLo22SMI4FxM47wUCJmYYL8OOPqrCg,3328
|
|
@@ -1936,11 +1993,11 @@ mteb/tasks/clustering/spa/spanish_news_clustering_p2p.py,sha256=uf_UeDEdO8UCLy5b
|
|
|
1936
1993
|
mteb/tasks/clustering/swe/__init__.py,sha256=Dlo6wABqkU8BcXNQAlx3QmrT9yT3BorO1OBsCEfOuFw,186
|
|
1937
1994
|
mteb/tasks/clustering/swe/swedn_clustering.py,sha256=F-sYyolk8nQOXcdvGB5GqsPqRwsh_K1ZBaVC6X2MZag,4623
|
|
1938
1995
|
mteb/tasks/clustering/vie/__init__.py,sha256=ubFXlHoGT7Fm2dkCkfYjftu4wMJXLw6QFg-7-qgKGp8,505
|
|
1939
|
-
mteb/tasks/clustering/vie/reddit_clustering_p2p_vn.py,sha256=
|
|
1940
|
-
mteb/tasks/clustering/vie/reddit_clustering_vn.py,sha256=
|
|
1941
|
-
mteb/tasks/clustering/vie/stack_exchange_clustering_p2p_vn.py,sha256=
|
|
1942
|
-
mteb/tasks/clustering/vie/stack_exchange_clustering_vn.py,sha256=
|
|
1943
|
-
mteb/tasks/clustering/vie/twenty_newsgroups_clustering_vn.py,sha256=
|
|
1996
|
+
mteb/tasks/clustering/vie/reddit_clustering_p2p_vn.py,sha256=CtGwN1raoYMO91Mg2oklYt_-pok6TgcaesCnKhJhFzM,1850
|
|
1997
|
+
mteb/tasks/clustering/vie/reddit_clustering_vn.py,sha256=C5MiypLNZfXvzP7KGaOdHr4uSyvwvs8XhMTkL4pcOgs,1859
|
|
1998
|
+
mteb/tasks/clustering/vie/stack_exchange_clustering_p2p_vn.py,sha256=Do_58DiX_DVgqodYnKQT3gZRqrKICpKZjifodRtlXQY,1858
|
|
1999
|
+
mteb/tasks/clustering/vie/stack_exchange_clustering_vn.py,sha256=bFF2iu-KBZSP6jFYLBV2ssscsaACf-noFP6wL0R5Rx4,1881
|
|
2000
|
+
mteb/tasks/clustering/vie/twenty_newsgroups_clustering_vn.py,sha256=LADX5CLncf0AlGdfypuAfglEM6D2gGnBBSTKIhPTR0w,1825
|
|
1944
2001
|
mteb/tasks/clustering/zho/__init__.py,sha256=Z6AYBtGjILLiguzbSOML6Gi3OuM2NICABhcSpl4dk2g,481
|
|
1945
2002
|
mteb/tasks/clustering/zho/cmteb_clustering.py,sha256=YEceqUqwTPUB7UWE7YMdP_3ZWn8DbqJGrF8nfXwDHXE,14801
|
|
1946
2003
|
mteb/tasks/image_text_pair_classification/__init__.py,sha256=nw_jS391ttByOsxjJWnxMInBd9GiJVN09ZcuDb7OmeY,19
|
|
@@ -1978,36 +2035,36 @@ mteb/tasks/multilabel_classification/__init__.py,sha256=D93vfKwD5Q5VSlpTysUIbkvA
|
|
|
1978
2035
|
mteb/tasks/multilabel_classification/eng/__init__.py,sha256=mcgoX0OxpR0UNftBXc4HJr27Tsxmjg0cMhBb5swN5Aw,87
|
|
1979
2036
|
mteb/tasks/multilabel_classification/eng/pascal_voc2007.py,sha256=Lf29mv60xsbLscjmFUzTMbPYWyiJHAgivRzGafIOguA,1901
|
|
1980
2037
|
mteb/tasks/multilabel_classification/ita/__init__.py,sha256=07xCrfm2mILOwe8KYHdkZLLGnVuiTcjZuTNIjdfqbrU,86
|
|
1981
|
-
mteb/tasks/multilabel_classification/ita/emit_classification.py,sha256=
|
|
2038
|
+
mteb/tasks/multilabel_classification/ita/emit_classification.py,sha256=k_bo8HNkYKva8AfBHz-pR0yoSbed9M1uUCBdFzyl8Nw,2090
|
|
1982
2039
|
mteb/tasks/multilabel_classification/kor/__init__.py,sha256=EBO57GMpXNw49hD1UHEc14lx8pTHvGohu_1KstnGvNo,122
|
|
1983
|
-
mteb/tasks/multilabel_classification/kor/kor_hate_speech_ml_classification.py,sha256=
|
|
2040
|
+
mteb/tasks/multilabel_classification/kor/kor_hate_speech_ml_classification.py,sha256=reuzDUxrVZ3A44BirEQkiFQ4wjp_0Aa-S7_8I6gVKW8,2382
|
|
1984
2041
|
mteb/tasks/multilabel_classification/mlt/__init__.py,sha256=HC_nIigyK7DLdojnAfUZdlRAaoW5AStAauCxFpPdMMU,108
|
|
1985
|
-
mteb/tasks/multilabel_classification/mlt/maltese_news_classification.py,sha256=
|
|
2042
|
+
mteb/tasks/multilabel_classification/mlt/maltese_news_classification.py,sha256=ZXUear2ZIWKURTyY2BF35I_o_ssCoSNRWUMLDrouIYo,2102
|
|
1986
2043
|
mteb/tasks/multilabel_classification/multilingual/__init__.py,sha256=gYOJftJq07gP6SH5QMn-SZQ83MQINfWlz1fvFRDdqmI,139
|
|
1987
2044
|
mteb/tasks/multilabel_classification/multilingual/multi_eurlex_multilabel_classification.py,sha256=vfnIfW_oOy8dnrXd2zKBNmhTfg8ydVtYIJqZxRMsqr0,2405
|
|
1988
2045
|
mteb/tasks/multilabel_classification/nld/__init__.py,sha256=84hVtfQAZNYt1lGzf0Oc_Hrx6vBKHjN2L_h2ilcIKRk,297
|
|
1989
|
-
mteb/tasks/multilabel_classification/nld/covid_disinformation_nl_multi_label_classification.py,sha256=
|
|
1990
|
-
mteb/tasks/multilabel_classification/nld/vabb_multi_label_classification.py,sha256=
|
|
2046
|
+
mteb/tasks/multilabel_classification/nld/covid_disinformation_nl_multi_label_classification.py,sha256=LgRBPVW6gMHtlpfYDs4TTl7E1QJYNOKeuH1kszFjNrM,3085
|
|
2047
|
+
mteb/tasks/multilabel_classification/nld/vabb_multi_label_classification.py,sha256=_eapD0SUYG8ZUhnc3-NmN86Qer8qkTGRnrSn_T-Ch5Y,1939
|
|
1991
2048
|
mteb/tasks/multilabel_classification/por/__init__.py,sha256=mJW70APO6ofl6XiPEbsRgL1qVi_RMsWpJwHrdx5_wmw,136
|
|
1992
|
-
mteb/tasks/multilabel_classification/por/brazilian_toxic_tweets_classification.py,sha256=
|
|
2049
|
+
mteb/tasks/multilabel_classification/por/brazilian_toxic_tweets_classification.py,sha256=Ke5roy0MYEYgRsdNDL4q_AwmY_rYKpo0H_k8wFnt2s8,1929
|
|
1993
2050
|
mteb/tasks/multilabel_classification/rus/__init__.py,sha256=skzrIGJ4giqi0tIiwCZux3JAYDlmu_vYZWrEBlusC6Q,355
|
|
1994
2051
|
mteb/tasks/multilabel_classification/rus/cedr_classification.py,sha256=xHj99e90__WH6zJ8AaUggAw098aSUc0N_b90N_pUKHA,1549
|
|
1995
2052
|
mteb/tasks/multilabel_classification/rus/ru_toixic_multilabelclassification_okmlcup.py,sha256=VoXnFSrT2xipV7i7dX6CwR7ApMdq94IKyFhg5FLXvn4,1228
|
|
1996
2053
|
mteb/tasks/multilabel_classification/rus/sensitive_topics_classification.py,sha256=WHqBuGWpTBdO2HGcIrKAQr7v_gefvglXWcxEzMqUSks,2034
|
|
1997
2054
|
mteb/tasks/multilabel_classification/swe/__init__.py,sha256=lXR_6OxipZLTevntJj2Ilbac7KMtN-FDxGmrIWOtsEM,297
|
|
1998
|
-
mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_group_classification.py,sha256=
|
|
1999
|
-
mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_subclass_classification.py,sha256=
|
|
2055
|
+
mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_group_classification.py,sha256=kqK-tmDIpOMziUGavfoCSnL5cLTZA0MCrNBJACPaiOY,2835
|
|
2056
|
+
mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_subclass_classification.py,sha256=o1_sgy1_k0pHDpii3RLU4dM_ZddaTjMEdIn5NRnT_nc,2818
|
|
2000
2057
|
mteb/tasks/pair_classification/__init__.py,sha256=wShARe6hEVXt0fbuyIRuCD5FU_DBZswaQVAhEvrKHW8,332
|
|
2001
2058
|
mteb/tasks/pair_classification/ara/__init__.py,sha256=nDoH7v49LUuZnF2xP6u7O4fpnAHBPdN1qxDyeZNbXrA,56
|
|
2002
2059
|
mteb/tasks/pair_classification/ara/ar_entail.py,sha256=8ROjVjAlbn6GtMtjYaUpNwoloPAFGguWafCOrS3Z1MI,1868
|
|
2003
2060
|
mteb/tasks/pair_classification/ces/__init__.py,sha256=a5LKNqekw88onEBY8akJTPXwn4WvF1OWdTpWBwySTvE,66
|
|
2004
2061
|
mteb/tasks/pair_classification/ces/ctk_facts_nli.py,sha256=jdArX0bXSYVute6JFoGm40_C_auNf2eKxrbkUMCLVOA,1581
|
|
2005
2062
|
mteb/tasks/pair_classification/dan/__init__.py,sha256=EYRr1bXjQ-4y38SIfvXGnc4ZC_WYAv8V8hFEUr4nvsI,68
|
|
2006
|
-
mteb/tasks/pair_classification/dan/talemaader_pc.py,sha256=
|
|
2063
|
+
mteb/tasks/pair_classification/dan/talemaader_pc.py,sha256=FY1zgJagIHKA7hWW--tRAUKoqZeT_b-E6Iu6h_Z_Lek,2052
|
|
2007
2064
|
mteb/tasks/pair_classification/deu/__init__.py,sha256=glcMGZQtd2r4tT2sA2b7vg6Fxrj0RY2HnghnURxD3Ug,89
|
|
2008
2065
|
mteb/tasks/pair_classification/deu/false_friends_de_en_pc.py,sha256=UHsQNRmWHyKRbLMVMZADbh3EI8yDyVHgjkC0X-xyrnM,1771
|
|
2009
2066
|
mteb/tasks/pair_classification/eng/__init__.py,sha256=ME_1M0sfZ36vVSHSNnKKEB5-Cm7EtdkZML69OIHcl0M,697
|
|
2010
|
-
mteb/tasks/pair_classification/eng/legal_bench_pc.py,sha256=
|
|
2067
|
+
mteb/tasks/pair_classification/eng/legal_bench_pc.py,sha256=k24kzLMZWB486eBVO9vpBEC15o49BuMUipt2HmUOqgk,5733
|
|
2011
2068
|
mteb/tasks/pair_classification/eng/pub_chem_ai_sentence_paraphrase_pc.py,sha256=FI9chUNQMijS6uCuY2uzcs33UzUaPMnuk4sXLjpLZFQ,2268
|
|
2012
2069
|
mteb/tasks/pair_classification/eng/pub_chem_smilespc.py,sha256=fLPx-s48kyKTzPqrq-_rN2xtOsiNIalD1ylt6eBEv2o,4050
|
|
2013
2070
|
mteb/tasks/pair_classification/eng/pub_chem_synonym_pc.py,sha256=dJYGOwQEBqpJdTFNWzeTRl-spyORqkubMz3taQwVCWE,2228
|
|
@@ -2035,24 +2092,24 @@ mteb/tasks/pair_classification/multilingual/rte3.py,sha256=ZR3kpz8Y2AxyLe0uIYORo
|
|
|
2035
2092
|
mteb/tasks/pair_classification/multilingual/x_stance.py,sha256=NPLzF8j_d_Y8kLocfIr8qaeJzJBwWE-1uveXxmGYI8M,1536
|
|
2036
2093
|
mteb/tasks/pair_classification/multilingual/xnli.py,sha256=q7erc3tCbamua46CuhJc36jPKOoIs4KCzD91zBPG-Y4,4677
|
|
2037
2094
|
mteb/tasks/pair_classification/nld/__init__.py,sha256=H65VNZnmBDsyupF4PtYVz-PwYD9b0xXb-9e6ODK2-DM,214
|
|
2038
|
-
mteb/tasks/pair_classification/nld/sick_nl_pair_classification.py,sha256=
|
|
2039
|
-
mteb/tasks/pair_classification/nld/xlwic_nl_pair_classification.py,sha256=
|
|
2095
|
+
mteb/tasks/pair_classification/nld/sick_nl_pair_classification.py,sha256=l420srn-nm1wbo361ogCU-Fq2B0Gv97FiN9UXSUrElY,1459
|
|
2096
|
+
mteb/tasks/pair_classification/nld/xlwic_nl_pair_classification.py,sha256=YZ9yG4Lyh9jd7DgbBzo0sd7QNmjZZ64eR7rMiA0STxE,2006
|
|
2040
2097
|
mteb/tasks/pair_classification/pol/__init__.py,sha256=3bEzEe4yom2SL3XaqNwSs_0eCv6LKFEAoOOoD9FK-gk,110
|
|
2041
2098
|
mteb/tasks/pair_classification/pol/polish_pc.py,sha256=vUkkYqewzNcRQkZ_wLM63xH21PKtBGhiVGLPas5XN6o,6782
|
|
2042
2099
|
mteb/tasks/pair_classification/por/__init__.py,sha256=E_dD1BZfjS0gBjzmkhUnl8SrqiGegLRfPhcItUAn6b8,104
|
|
2043
2100
|
mteb/tasks/pair_classification/por/assin2_rte.py,sha256=4k--kU2r3LS05TXdtVo4991Y6ayGbsOc--UL-bkW2Yo,2011
|
|
2044
2101
|
mteb/tasks/pair_classification/por/sick_br_pc.py,sha256=aGsDQFyTQr0vI6GOoZ6fO4npB8gT8zYrjwKymEcm6bQ,2734
|
|
2045
|
-
mteb/tasks/pair_classification/rus/__init__.py,sha256=
|
|
2046
|
-
mteb/tasks/pair_classification/rus/terra.py,sha256=
|
|
2102
|
+
mteb/tasks/pair_classification/rus/__init__.py,sha256=Y6Rl-zlzdtOnEX_Gb_k_NlJ_HuRMvz5IsVvnavBEE7M,66
|
|
2103
|
+
mteb/tasks/pair_classification/rus/terra.py,sha256=HYFiSD1h1S9-9OotPrDm7oVoODXGDyHKtFEJGze1naQ,2662
|
|
2047
2104
|
mteb/tasks/pair_classification/vie/__init__.py,sha256=_sAoiOFXvdGjKGP1FU6Bex0OFuje9Um6QfOIlMStTzE,299
|
|
2048
|
-
mteb/tasks/pair_classification/vie/sprint_duplicate_questions_pcvn.py,sha256=
|
|
2049
|
-
mteb/tasks/pair_classification/vie/twitter_sem_eval2015_pcvn.py,sha256=
|
|
2050
|
-
mteb/tasks/pair_classification/vie/twitter_url_corpus_pcvn.py,sha256=
|
|
2105
|
+
mteb/tasks/pair_classification/vie/sprint_duplicate_questions_pcvn.py,sha256=5g6yusxcWwwkapo7Abov7QEzZWJHhBLjOGWox0SvdAk,2037
|
|
2106
|
+
mteb/tasks/pair_classification/vie/twitter_sem_eval2015_pcvn.py,sha256=2Ms_1qIK5GQd7RpV3fi-_u8wJhVQs_6bZncYkvP5i-o,1982
|
|
2107
|
+
mteb/tasks/pair_classification/vie/twitter_url_corpus_pcvn.py,sha256=ACddNtLNIly0FvfrmweqxhMTVUCQtydoN225ObzPous,1932
|
|
2051
2108
|
mteb/tasks/pair_classification/zho/__init__.py,sha256=Ie7KdwH7ui_Kjn9I13dH7Po8y9p0IFWiR0lOpLJQwSI,82
|
|
2052
2109
|
mteb/tasks/pair_classification/zho/cmteb_pair_classification.py,sha256=yisKgPwh59Q0S5oQURDQvu77kOpfT2pkHf9nkvyp3cQ,3419
|
|
2053
2110
|
mteb/tasks/regression/__init__.py,sha256=Ji1BSk-2BO5isA3N-vaAnsUcrI32y0LLz8nFkx7E2Kk,28
|
|
2054
2111
|
mteb/tasks/regression/multilingual/__init__.py,sha256=fFX9zwn0XCGmVVel5d2u0X_LLOHzmET1tjxb_Y48vEA,189
|
|
2055
|
-
mteb/tasks/regression/multilingual/ru_sci_bench_regression.py,sha256=
|
|
2112
|
+
mteb/tasks/regression/multilingual/ru_sci_bench_regression.py,sha256=OltZvAdH3x8yZf2narSzk9X7fiW32TE-rSX1qNWLPhk,3628
|
|
2056
2113
|
mteb/tasks/reranking/__init__.py,sha256=BAHINlVPQgz-3nwFN7m9jXPrDKpfyLnTRXfZhcUrBmA,161
|
|
2057
2114
|
mteb/tasks/reranking/ara/__init__.py,sha256=JhBuhiMun7sAxJQP9U5XhXpRDuMlCSyxipnOBfBfehQ,94
|
|
2058
2115
|
mteb/tasks/reranking/ara/namaa_mr_tydi_reranking.py,sha256=CzNdzt-8fIO4gHUdwr2UBRBK03rrzkqzTF8Nv6knFhc,1623
|
|
@@ -2076,22 +2133,25 @@ mteb/tasks/reranking/eng/web_linx_candidates_reranking.py,sha256=dGRRkf8GaPIAZAO
|
|
|
2076
2133
|
mteb/tasks/reranking/fra/__init__.py,sha256=YhiXArWFZr_zxXFdKas0xkwxKrU45EbssiYF9c3D9FQ,148
|
|
2077
2134
|
mteb/tasks/reranking/fra/alloprof_reranking.py,sha256=Evsf0YG2pJveP9qrXdJkRqNkfhGrKtXxGTEYfvk2bzU,1784
|
|
2078
2135
|
mteb/tasks/reranking/fra/syntec_reranking.py,sha256=YqB1OPrcMDbfHEOrkCFd8W_Ve7Fm5b5ezY3FdT82Gd4,1290
|
|
2079
|
-
mteb/tasks/reranking/jpn/__init__.py,sha256=
|
|
2136
|
+
mteb/tasks/reranking/jpn/__init__.py,sha256=DBVF5VoKwnxZ0vcGaUEfrZUFz4zJjE9dG8L31Gv3Xg8,399
|
|
2080
2137
|
mteb/tasks/reranking/jpn/j_qa_ra_reranking.py,sha256=8AhdHQSOzf0WgGCOXNhjG77RZjTtxMHrc1oBY38b13I,1648
|
|
2138
|
+
mteb/tasks/reranking/jpn/j_qa_ra_reranking_lite.py,sha256=RlX6Q4ie07UCAIlxhVmFqUTgSTt3a_H1edvMvXzw-Zk,1948
|
|
2081
2139
|
mteb/tasks/reranking/jpn/ja_cwir_reranking.py,sha256=Us06popt1VSS5zoUUWfg52oTaX3F-6uUmCFYNIcs4i8,1630
|
|
2140
|
+
mteb/tasks/reranking/jpn/ja_cwir_reranking_lite.py,sha256=H9Y0u1O5icnnNJZnAFdMtVhEIS4VmYhkb4ctfFK9ULY,1904
|
|
2082
2141
|
mteb/tasks/reranking/jpn/m_marco_reranking.py,sha256=T0kJC1u7OPem1Lg68czKzFb99C6dVpm115T8cg2vdAc,1392
|
|
2083
|
-
mteb/tasks/reranking/multilingual/__init__.py,sha256=
|
|
2142
|
+
mteb/tasks/reranking/multilingual/__init__.py,sha256=xM-ZicCKPBtpfqkoeMGlhn76vLFOe49B1x27et42uQw,556
|
|
2084
2143
|
mteb/tasks/reranking/multilingual/esci_reranking.py,sha256=opEtarEw8JhcqVhIZ2wQoFP0FFhXhKYXCsubFqM5BX0,1439
|
|
2085
2144
|
mteb/tasks/reranking/multilingual/hume_wikipedia_reranking_multilingual.py,sha256=899WZdh3jEORdzSnprr9Nt5FVF16PSWcwTK9swOg7cc,1505
|
|
2086
2145
|
mteb/tasks/reranking/multilingual/miracl_reranking.py,sha256=N4YpMCcmFjWtKy1g4LjVS_Ou0jZ2fJJomRKwJQZbus8,2283
|
|
2146
|
+
mteb/tasks/reranking/multilingual/multi_long_doc_reranking.py,sha256=igJvX4fybXUkj_qWYbc9PLh8eH7pztS9OJRonxn3ME0,2692
|
|
2087
2147
|
mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py,sha256=gZWigy-EEPkew6R-wcxt24_uPrOEFH-h9YT-0rPrXX4,1678
|
|
2088
|
-
mteb/tasks/reranking/multilingual/x_glue_wpr_reranking.py,sha256=
|
|
2148
|
+
mteb/tasks/reranking/multilingual/x_glue_wpr_reranking.py,sha256=2fXZX27xzrn0es4TKaDFaGdo08swUHEA2Ik3pbOzCd8,11360
|
|
2089
2149
|
mteb/tasks/reranking/rus/__init__.py,sha256=Txjqg4_Pq5MgNsmlIKnTet3UZe_oyraHDJgx_W8aBYA,72
|
|
2090
2150
|
mteb/tasks/reranking/rus/ru_bq_reranking.py,sha256=cojQO9p5jYn32RdhRmuQQ_-TJnviXR_SrrAFECoMs3g,1363
|
|
2091
2151
|
mteb/tasks/reranking/vie/__init__.py,sha256=4A4rr8-l9liGs63MKp161DgzHdT7OViw3Dmbs7nIE2Q,299
|
|
2092
|
-
mteb/tasks/reranking/vie/ask_ubuntu_dup_questions_vn.py,sha256=
|
|
2093
|
-
mteb/tasks/reranking/vie/sci_docs_reranking_vn.py,sha256=
|
|
2094
|
-
mteb/tasks/reranking/vie/stack_overflow_dup_questions_vn.py,sha256=
|
|
2152
|
+
mteb/tasks/reranking/vie/ask_ubuntu_dup_questions_vn.py,sha256=pTJFy3ZS6cPOgUwe_7dP6lPLOMRfwENpX--0py7N7mM,1841
|
|
2153
|
+
mteb/tasks/reranking/vie/sci_docs_reranking_vn.py,sha256=Qk0JWb7e5A5CUNiR0Hyo5W1VOrGh9W-2arTyVlE-uMI,1739
|
|
2154
|
+
mteb/tasks/reranking/vie/stack_overflow_dup_questions_vn.py,sha256=bJhCNPZKphHBF31EJByYvLDTLcyfXLFdNmi4QIMSQUY,1880
|
|
2095
2155
|
mteb/tasks/reranking/zho/__init__.py,sha256=ut3BvVt_ZNktlEvBx587CSEy-1Q7U3XZjEt8UalKBsg,148
|
|
2096
2156
|
mteb/tasks/reranking/zho/cmteb_reranking.py,sha256=Vzp_m5PRnCNth_5ibmq-y21GUuZ2qRADmagJa25r6W4,5403
|
|
2097
2157
|
mteb/tasks/retrieval/__init__.py,sha256=8FjY5EOE3dZG5FztpAKkkJLTvAvtXbDKq781fyvboRc,466
|
|
@@ -2111,7 +2171,7 @@ mteb/tasks/retrieval/code/code_trans_ocean_dl_retrieval.py,sha256=WrcLbhtJkGqWcs
|
|
|
2111
2171
|
mteb/tasks/retrieval/code/coir_code_search_net_retrieval.py,sha256=HkRZbMlBa9jhRX7mil7zKAnT7yQna2yYH1UyAJE51EY,3785
|
|
2112
2172
|
mteb/tasks/retrieval/code/cos_qa_retrieval.py,sha256=CYWty69H3aJQi3FHz-Qqj_O2usb19kH7Ct0nAcWNzlQ,1469
|
|
2113
2173
|
mteb/tasks/retrieval/code/ds1000_retrieval.py,sha256=irbW7IN3a8NNkxSnWowBmlnilV7QRCbHp0fruRW8_Ic,3398
|
|
2114
|
-
mteb/tasks/retrieval/code/fresh_stack_retrieval.py,sha256=
|
|
2174
|
+
mteb/tasks/retrieval/code/fresh_stack_retrieval.py,sha256=uoWHouYaDMbatauYFshabr7vH9jdiF8uraUcM5l0m9Q,3505
|
|
2115
2175
|
mteb/tasks/retrieval/code/human_eval_retrieval.py,sha256=FagmoGdAjyh9hdIUxqjUbE-6QkSfvZTJ47oGQ3Vo_GE,4325
|
|
2116
2176
|
mteb/tasks/retrieval/code/japanese_code1_retrieval.py,sha256=-FBDBmx2h4iYUv7b-jgwBXmHq7HguGpC6Uvc1fzbyb4,1133
|
|
2117
2177
|
mteb/tasks/retrieval/code/mbpp_retrieval.py,sha256=EgNOypt5bfgy_-q2a4Sz-3x5CB9S2KGP_qxrWs6td5s,3350
|
|
@@ -2213,7 +2273,7 @@ mteb/tasks/retrieval/eng/lemb_summ_screen_fd_retrieval.py,sha256=jO38l3-dkN22IX4
|
|
|
2213
2273
|
mteb/tasks/retrieval/eng/lemb_wikim_qa_retrieval.py,sha256=0NpKvntafhBi0WMFcNoXl-J_BJHZYQZLsFNEaxztzVg,2292
|
|
2214
2274
|
mteb/tasks/retrieval/eng/lembqm_sum_retrieval.py,sha256=ai0cI88ns7maPIvVhA3pHJ-kwIG50DOv2-ET3X2cxMU,2860
|
|
2215
2275
|
mteb/tasks/retrieval/eng/limit_retrieval.py,sha256=j2yNnXLo5ejLubU7SzbdnOEk3uofQBF3H3nqq_Ba8pE,2494
|
|
2216
|
-
mteb/tasks/retrieval/eng/lit_search_retrieval.py,sha256=
|
|
2276
|
+
mteb/tasks/retrieval/eng/lit_search_retrieval.py,sha256=CpL-LNff6QHpseLML4u9_csPNff4QhErRMjYN-42uCM,2934
|
|
2217
2277
|
mteb/tasks/retrieval/eng/llava_it2t_retrieval.py,sha256=j2W4nh5EPcbvilYqgyjJ1tfHgxLsKGG5wisSsiAVK3A,1780
|
|
2218
2278
|
mteb/tasks/retrieval/eng/lotte_retrieval.py,sha256=l5akqCc54mS1fmmhBWie-2EDpuCc0sQZRCtm2c3x3YA,2325
|
|
2219
2279
|
mteb/tasks/retrieval/eng/medical_qa_retrieval.py,sha256=tmraQ6Y6IFe_BbFb0tVtC0W_kADF0D6Fvh3xybwXyhs,1368
|
|
@@ -2276,7 +2336,7 @@ mteb/tasks/retrieval/eng/touche2020_retrieval.py,sha256=kSM06MdLTyPgSN_nvTAz4kHM
|
|
|
2276
2336
|
mteb/tasks/retrieval/eng/treccovid_retrieval.py,sha256=x5e1ejs9hCyTY8MZn9A0LtIfZCzYyTN3cvHGGeWMOBE,1483
|
|
2277
2337
|
mteb/tasks/retrieval/eng/trecdl_retrieval.py,sha256=Rbs_0kd6cHxFny1Acchba4Vy9M6Vf78jSmQX4iyPXWo,4746
|
|
2278
2338
|
mteb/tasks/retrieval/eng/tu_berlin_t2i_retrieval.py,sha256=jBocfLCA1Gp2IGG0KZ33mU8erUxrKTioeSnM-fyJn5o,1278
|
|
2279
|
-
mteb/tasks/retrieval/eng/vidore_bench_retrieval.py,sha256=
|
|
2339
|
+
mteb/tasks/retrieval/eng/vidore_bench_retrieval.py,sha256=728AC3hxFQINjF3CYap22wo3fTA8_419bHzR2UWNaww,17538
|
|
2280
2340
|
mteb/tasks/retrieval/eng/visual_news_i2t_retrieval.py,sha256=iFk5HN1DPgISrJ3k4GFJkkxdrZqyMBZZagPTDJdaH7I,1409
|
|
2281
2341
|
mteb/tasks/retrieval/eng/visual_news_t2i_retrieval.py,sha256=cNT4asxxsBjNKtNrmqZQN639Of7UKNutDv7Y5ZWB3eo,1437
|
|
2282
2342
|
mteb/tasks/retrieval/eng/viz_wiz_it2t_retrieval.py,sha256=jE70T5If62lkKnbF-CMAgRK4eyUBmUjNAdREBhbvzRA,1438
|
|
@@ -2298,42 +2358,48 @@ mteb/tasks/retrieval/fra/french_legal1_retrieval.py,sha256=yq4avXuouedGq8y8WP4os
|
|
|
2298
2358
|
mteb/tasks/retrieval/fra/syntec_retrieval.py,sha256=SZOm-z5OruxEG47zMYjApJoR2oWiHKsK5Vum41Z5hWU,2305
|
|
2299
2359
|
mteb/tasks/retrieval/hun/__init__.py,sha256=M59LTpENxaFLMSU43mNiP38lChJ_l_yZh__1giKeUDc,93
|
|
2300
2360
|
mteb/tasks/retrieval/hun/hun_sum2.py,sha256=td6lxYg_eH9J62sNNuFonHIJ_22E-XGgiFN-D3iAbFw,2373
|
|
2301
|
-
mteb/tasks/retrieval/jpn/__init__.py,sha256=
|
|
2302
|
-
mteb/tasks/retrieval/jpn/ja_cwir_retrieval.py,sha256=
|
|
2361
|
+
mteb/tasks/retrieval/jpn/__init__.py,sha256=1UA6fWOyaMieDBZxH9asudh9QLl20DW5alOGIdKDMAs,1519
|
|
2362
|
+
mteb/tasks/retrieval/jpn/ja_cwir_retrieval.py,sha256=x3rNQwi73WfpkYdGBwt24QccIWJRK_Zj9z16MUMyI3I,1603
|
|
2363
|
+
mteb/tasks/retrieval/jpn/ja_cwir_retrieval_lite.py,sha256=KXg08E250H_ueW3g8BYB-4elBaSAHt90eL4p8nDTIFo,1894
|
|
2303
2364
|
mteb/tasks/retrieval/jpn/ja_gov_faqs_retrieval.py,sha256=_9zsw9QS53NFp2EiCw3BKQdfk57agHxkSfpzKNqdJXE,1170
|
|
2304
2365
|
mteb/tasks/retrieval/jpn/ja_qu_ad_retrieval.py,sha256=qc89t-uJqzk37sTRKlSxenYOSq4Qy2E-H_namSBeGN0,1312
|
|
2305
2366
|
mteb/tasks/retrieval/jpn/japanese_legal1_retrieval.py,sha256=drUYO9QMSWgxvYWxL5QBdYPZ35HNwCF2d0ju1yQlZrI,1121
|
|
2306
2367
|
mteb/tasks/retrieval/jpn/jaqket_retrieval.py,sha256=dfSNx2QJ3bj5QZOHbGnInOxTlVXkgsFvYfMnmgU8PkE,1438
|
|
2368
|
+
mteb/tasks/retrieval/jpn/jaqket_retrieval_lite.py,sha256=HfSu6E_blhZxwzdprrA8r__vnNDur8IDMK6Kpa52XCw,2000
|
|
2369
|
+
mteb/tasks/retrieval/jpn/miracl_ja_retrieval_lite.py,sha256=uce4rZcmbyMq8q6K2UevKhW93wJzg5WGU-aTOgdzvUQ,2061
|
|
2370
|
+
mteb/tasks/retrieval/jpn/mr_tydi_ja_retrieval_lite.py,sha256=PHc3W8ftiDNhUCs8rfPDu6IYs8EzX6gp7OkXtfeFAKs,1819
|
|
2307
2371
|
mteb/tasks/retrieval/jpn/nlp_journal_abs_article_retrieval.py,sha256=PyxSS9tab2drIQI6yEMUy4BxaoRGYNo8XySjp_xHkE8,3150
|
|
2308
2372
|
mteb/tasks/retrieval/jpn/nlp_journal_abs_intro_retrieval.py,sha256=EEOQpTC6vEPULzC5_xDCt7r5LIL0K1zlExeqOC-G-E4,3068
|
|
2309
2373
|
mteb/tasks/retrieval/jpn/nlp_journal_title_abs_retrieval.py,sha256=JOOW_5pRKHzVn8wTOY0fhxLJ6Ns7wlQHoGHGIYVovAQ,3056
|
|
2310
2374
|
mteb/tasks/retrieval/jpn/nlp_journal_title_intro_retrieval.py,sha256=aVFTFiANWrIz68FjHv9KBqlhpWlsmi9EAP052gECzaU,3078
|
|
2311
2375
|
mteb/tasks/retrieval/kat/__init__.py,sha256=H4phkKqg_yZzkK7T62aCMBzjbGZzLKJ-MngrQlPbW3A,93
|
|
2312
|
-
mteb/tasks/retrieval/kat/georgian_faq_retrieval.py,sha256=
|
|
2313
|
-
mteb/tasks/retrieval/kor/__init__.py,sha256=
|
|
2376
|
+
mteb/tasks/retrieval/kat/georgian_faq_retrieval.py,sha256=4zyodSYCtHtBW9WKIGxFZaTXDrtHuaf3uyfIsDRGBqM,2494
|
|
2377
|
+
mteb/tasks/retrieval/kor/__init__.py,sha256=gstfs-sW2-qlaVrOJg_NLsQLLUYCWG2gPf64KI2LxoA,217
|
|
2314
2378
|
mteb/tasks/retrieval/kor/auto_rag_retrieval.py,sha256=tgffW8zMpDSv1FCOdS4_4SL5zKQj70JVSt_RKs3CgKY,1576
|
|
2315
2379
|
mteb/tasks/retrieval/kor/ko_strategy_qa.py,sha256=jk13ORetYtF0q36h8ljD6TeTHUwvK5F5ZbDoMCP3eWk,1156
|
|
2316
|
-
mteb/tasks/retrieval/
|
|
2317
|
-
mteb/tasks/retrieval/multilingual/
|
|
2380
|
+
mteb/tasks/retrieval/kor/squad_kor_v1_retrieval.py,sha256=M7T5FkN1efK7euRslx-LZN7hS_QdIwqtUuVlWO-dico,1631
|
|
2381
|
+
mteb/tasks/retrieval/multilingual/__init__.py,sha256=mfVGkoB4DO5ktlg8ia-4nImFVmZcqXh1XkgCkIff0tY,6765
|
|
2382
|
+
mteb/tasks/retrieval/multilingual/belebele_retrieval.py,sha256=gaVLEwuLEwMutMi9V-obpiYKbpllX2QNm2j3MVeebfE,7027
|
|
2318
2383
|
mteb/tasks/retrieval/multilingual/cross_lingual_semantic_discrimination_wmt19.py,sha256=_6r34ZvRiLVENYcrd87NjilybGaetBwKFEbO29zYmBU,4676
|
|
2319
2384
|
mteb/tasks/retrieval/multilingual/cross_lingual_semantic_discrimination_wmt21.py,sha256=Puy0PjpRr4M_Bbxdl7oWfa7pQGM04zaRaTNlnhyKejM,4677
|
|
2320
2385
|
mteb/tasks/retrieval/multilingual/cur_ev1_retrieval.py,sha256=dwzo2sqjamM_xkSiC-jbapyhDFezSJpM4S8KfBsuLPk,4562
|
|
2321
2386
|
mteb/tasks/retrieval/multilingual/indic_qa_retrieval.py,sha256=K7iWZ-yTftZFQiXBOlkTJXGpQXs-ZFt6OQj_L6HjEwk,1872
|
|
2322
|
-
mteb/tasks/retrieval/multilingual/jina_vdr_bench_retrieval.py,sha256=
|
|
2387
|
+
mteb/tasks/retrieval/multilingual/jina_vdr_bench_retrieval.py,sha256=dw2YuFrA5OWFTL5zREiix93oAj7WcpcnAhCRh8YRoHI,44579
|
|
2323
2388
|
mteb/tasks/retrieval/multilingual/mintaka_retrieval.py,sha256=SwOliONITZM679LIBSMrvx_VymqE-zRN6YiYahhzfzw,2229
|
|
2324
2389
|
mteb/tasks/retrieval/multilingual/miracl_retrieval.py,sha256=RT-zKWh6jdrr2ThnIjlFwAvA0eNaV867RwQIZQQr0EY,4121
|
|
2325
2390
|
mteb/tasks/retrieval/multilingual/miracl_vision_retrieval.py,sha256=mDp47UXPK5K99HVKIZcxTESnTIkFKLRf6AQV3NC6zQs,4763
|
|
2326
|
-
mteb/tasks/retrieval/multilingual/mkqa_retrieval.py,sha256=
|
|
2327
|
-
mteb/tasks/retrieval/multilingual/mlqa_retrieval.py,sha256=
|
|
2391
|
+
mteb/tasks/retrieval/multilingual/mkqa_retrieval.py,sha256=pbxX5puGqKUxKdU23VsakSgx6k_Wu6lNX2uzugF_7yg,2066
|
|
2392
|
+
mteb/tasks/retrieval/multilingual/mlqa_retrieval.py,sha256=UC8DsmTD7exKhETOqibO3pYegxcqybtxUCi1QjfzfEg,4261
|
|
2328
2393
|
mteb/tasks/retrieval/multilingual/mr_tidy_retrieval.py,sha256=3uGnj3O92_02zXZnPWHpgjjmyHIliWS3Mjf2SuZCIFs,3803
|
|
2329
|
-
mteb/tasks/retrieval/multilingual/multi_long_doc_retrieval.py,sha256=
|
|
2394
|
+
mteb/tasks/retrieval/multilingual/multi_long_doc_retrieval.py,sha256=xF4GjBmJVgw6c8VGVh-5QLN_4i_NKeoAzqRWmA_pfnw,2440
|
|
2330
2395
|
mteb/tasks/retrieval/multilingual/neu_clir2022_retrieval.py,sha256=bkGMvMxG2toYL98kv85BvVpSZ-rVeWvB5FFIzXhdPO4,2749
|
|
2331
2396
|
mteb/tasks/retrieval/multilingual/neu_clir2023_retrieval.py,sha256=0cALhuU3ZU5c_y7tDIyiMc7Onv-qC7YwfnimZVb8-rg,2793
|
|
2332
|
-
mteb/tasks/retrieval/multilingual/public_health_qa_retrieval.py,sha256=
|
|
2333
|
-
mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py,sha256=
|
|
2397
|
+
mteb/tasks/retrieval/multilingual/public_health_qa_retrieval.py,sha256=LJGpx4RkSJPXldN0SlMA6PbG1x8R2l-Hupc9q1xfleg,3667
|
|
2398
|
+
mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py,sha256=Mmcvrt_1cIxPfHZfUzSURPZyaaweGiB02im1ZszlS6M,6837
|
|
2334
2399
|
mteb/tasks/retrieval/multilingual/statcan_dialogue_dataset_retrieval.py,sha256=iFUQUlO_ogBdQBVYBQW3o-AJDQ792yg1pJtRxA5I3Qo,3796
|
|
2335
2400
|
mteb/tasks/retrieval/multilingual/vdr_multilingual_retrieval.py,sha256=UduWKefwP7bPYxiDlztPEvSWXmTdw0xElglMbPY6XhA,4449
|
|
2336
|
-
mteb/tasks/retrieval/multilingual/vidore2_bench_retrieval.py,sha256=
|
|
2401
|
+
mteb/tasks/retrieval/multilingual/vidore2_bench_retrieval.py,sha256=vOfiruHywYkP8pccdAuGLyYyFTw1zK0qcXDnUFA8Z5A,9091
|
|
2402
|
+
mteb/tasks/retrieval/multilingual/vidore3_bench_retrieval.py,sha256=wOoC--IVTz0dR6RMVICbz6OWxfCyVahGDSfX_TScCgA,16934
|
|
2337
2403
|
mteb/tasks/retrieval/multilingual/web_faq_retrieval.py,sha256=TM-Q98yXZny_PKHAFNEvw9o9ET_L6VM3aNis1NJ9DgM,2686
|
|
2338
2404
|
mteb/tasks/retrieval/multilingual/wikipedia_retrieval_multilingual.py,sha256=zyqAt63bHXNU_I37jb891pwWUyGzZUGkXCyhWlRbed8,1569
|
|
2339
2405
|
mteb/tasks/retrieval/multilingual/wit_t2i_retrieval.py,sha256=_swZhhMRs5OhzBdJVqQF1i9ZrTvAxaVrG0TpkPWkoHo,4359
|
|
@@ -2342,9 +2408,9 @@ mteb/tasks/retrieval/multilingual/x_market_retrieval.py,sha256=vp1Q5al9swuoChpbm
|
|
|
2342
2408
|
mteb/tasks/retrieval/multilingual/x_qu_ad_retrieval.py,sha256=o5rhMeRf9HCZQxDKU9SIibqQSR5pw4bmYV8I5nALmQ4,3971
|
|
2343
2409
|
mteb/tasks/retrieval/multilingual/xm3600_t2i_retrieval.py,sha256=IUMlMB1G1MbYOg9q81FPTk1pKnnLGS-WLgypehOOXqQ,5123
|
|
2344
2410
|
mteb/tasks/retrieval/multilingual/xpqa_retrieval.py,sha256=7ZL1cDK8OLvRwqC5r1dJKiQUkJP27RvuA_XX_Oaa--E,3029
|
|
2345
|
-
mteb/tasks/retrieval/nld/__init__.py,sha256=
|
|
2346
|
-
mteb/tasks/retrieval/nld/argu_ana_nl_retrieval.py,sha256=
|
|
2347
|
-
mteb/tasks/retrieval/nld/bbsard_nl_retrieval.py,sha256=
|
|
2411
|
+
mteb/tasks/retrieval/nld/__init__.py,sha256=kQ7eR-n63XTBnzK1lHexfsCPjJWeg2OpLi5i6M3HSDc,2798
|
|
2412
|
+
mteb/tasks/retrieval/nld/argu_ana_nl_retrieval.py,sha256=c3O3PWvv-XpHE3YNv0EGzPbR71VnSq9RhOsT57z5iRY,2048
|
|
2413
|
+
mteb/tasks/retrieval/nld/bbsard_nl_retrieval.py,sha256=4QUFjAer2WapzLZUNOUTnjZwgsKoCFi7rqX1UJnneOU,1669
|
|
2348
2414
|
mteb/tasks/retrieval/nld/climate_fevernl_retrieval.py,sha256=VQ7Z3GpmIdhM47e5Vz3p7bSzJaYBKvVf8SX9VvvLlEw,1577
|
|
2349
2415
|
mteb/tasks/retrieval/nld/cqa_dupstack_android_nl_retrieval.py,sha256=A6bTYkteMZWUSf_ocJ8bL_4PyCMeq34vavvNGuIWt-Q,2618
|
|
2350
2416
|
mteb/tasks/retrieval/nld/cqa_dupstack_english_nl_retrieval.py,sha256=6q7yzUe4Tw-BGi_lQPXMBgMMO5tqZ-y7n0NdzQ0Pm-c,2618
|
|
@@ -2359,21 +2425,21 @@ mteb/tasks/retrieval/nld/cqa_dupstack_unix_nl_retrieval.py,sha256=JgQsDdqTth9EFR
|
|
|
2359
2425
|
mteb/tasks/retrieval/nld/cqa_dupstack_webmasters_nl_retrieval.py,sha256=A_eHnC2bgmNOM_QfJJYh_salrHENYlwjmZ4A1hFmzJ4,2600
|
|
2360
2426
|
mteb/tasks/retrieval/nld/cqa_dupstack_wordpress_nl_retrieval.py,sha256=Yo0NBvNn8BJWuoNWAGvAI-2khVSreqa4XXX0r5LZ7wo,2596
|
|
2361
2427
|
mteb/tasks/retrieval/nld/db_pedia_nl_retrieval.py,sha256=bhd2ESL-roRgvDDB4cAKDmusYmOEJaJGfMfuMzFLVcw,1633
|
|
2362
|
-
mteb/tasks/retrieval/nld/dutch_news_articles_retrieval.py,sha256=
|
|
2428
|
+
mteb/tasks/retrieval/nld/dutch_news_articles_retrieval.py,sha256=RfQXg-GNSeL6ZklO3YKJ2dKG8BOCht-3mfCg94Q2iU0,1323
|
|
2363
2429
|
mteb/tasks/retrieval/nld/fevernl_retrieval.py,sha256=LZ8xofhy8xINPWdV8QYvmY1sQPtb8taHLIQ8iKJ34Iw,1694
|
|
2364
2430
|
mteb/tasks/retrieval/nld/fi_qa2018_nl_retrieval.py,sha256=Qfd2Wdnmq99Onb4iCShAc0jPQ_bTreSkRShhQWqfkJA,1503
|
|
2365
2431
|
mteb/tasks/retrieval/nld/hotpot_qanl_retrieval.py,sha256=xNPApN1CZzkhpvU4ZRf-rSSmljpSnFUQDVoqraW93X0,1635
|
|
2366
|
-
mteb/tasks/retrieval/nld/legal_qa_nl_retrieval.py,sha256=
|
|
2432
|
+
mteb/tasks/retrieval/nld/legal_qa_nl_retrieval.py,sha256=w5FL9aZB3HzoZcnNwR4GdYrUoJ2nCH9UrzBCjig4RLQ,1572
|
|
2367
2433
|
mteb/tasks/retrieval/nld/mmarconl_retrieval.py,sha256=iColk0qI_Ga3KHL_4aIGKK2X0S-WvqFXqDJqujzJaIA,1683
|
|
2368
|
-
mteb/tasks/retrieval/nld/nf_corpus_nl_retrieval.py,sha256=
|
|
2434
|
+
mteb/tasks/retrieval/nld/nf_corpus_nl_retrieval.py,sha256=6kLUAvs7w5_aximrHC93fDh_thTXppr15BnBzPH5P_E,2008
|
|
2369
2435
|
mteb/tasks/retrieval/nld/nqnl_retrieval.py,sha256=M4olYlutXu2VZUA5uMF-uga7V53GivPupyTKs4jy_bw,1394
|
|
2370
|
-
mteb/tasks/retrieval/nld/open_tender_retrieval.py,sha256=
|
|
2436
|
+
mteb/tasks/retrieval/nld/open_tender_retrieval.py,sha256=lwlGFoFkyxw7EI6tvV2RqBWGU1R6Syt-0FiRg8Qdz7c,1522
|
|
2371
2437
|
mteb/tasks/retrieval/nld/quora_nl_retrieval.py,sha256=u7v-huChD-HymugAzG0fawTVUntVOyiDdmmRxC0d0Pw,1600
|
|
2372
|
-
mteb/tasks/retrieval/nld/sci_fact_nl_retrieval.py,sha256=
|
|
2373
|
-
mteb/tasks/retrieval/nld/scidocsnl_retrieval.py,sha256=
|
|
2438
|
+
mteb/tasks/retrieval/nld/sci_fact_nl_retrieval.py,sha256=uRE-Fcfmu8BJxKgYu0p8UL58Kdue9Vv9Yove3ZeIzl4,2021
|
|
2439
|
+
mteb/tasks/retrieval/nld/scidocsnl_retrieval.py,sha256=JhQYZX-DthiYprxyzJNMETRGvRtAQwWnR0qfmC2FPJo,2226
|
|
2374
2440
|
mteb/tasks/retrieval/nld/touche2020_nl_retrieval.py,sha256=nPLZxNvhTDWkIJU6i2EPY3mp0SbLn8rZEL-7GP-XwGY,1481
|
|
2375
2441
|
mteb/tasks/retrieval/nld/treccovidnl_retrieval.py,sha256=d9rL10YNTUBVubdFxIVxqEhkf8tx9Iuxsp1BZ-Ctoyk,1671
|
|
2376
|
-
mteb/tasks/retrieval/nld/vabb_retrieval.py,sha256=
|
|
2442
|
+
mteb/tasks/retrieval/nld/vabb_retrieval.py,sha256=FoudYkcY4IY0PNHCvx87bjoUnJJolWVwNhq6xH9HE84,1834
|
|
2377
2443
|
mteb/tasks/retrieval/nob/__init__.py,sha256=6PYJtnMhN5OtRwXWLAMu5V-3JnZnbHrLxMOk8Ir-b9w,126
|
|
2378
2444
|
mteb/tasks/retrieval/nob/norquad.py,sha256=sqQLt3ajBrui2TnwvuPny5tU-aijiRUHA1kzXmF7cN8,3779
|
|
2379
2445
|
mteb/tasks/retrieval/nob/snl_retrieval.py,sha256=VXouYjek_U8jCdpuvIzQ00YRIq0gJM_5lorgVFzlI6g,3143
|
|
@@ -2397,7 +2463,7 @@ mteb/tasks/retrieval/rus/ria_news_retrieval.py,sha256=fOcDi5CutbwcJStij7COIBGG6A
|
|
|
2397
2463
|
mteb/tasks/retrieval/rus/ru_bq_retrieval.py,sha256=gmG_0IYllezCR0GL3I8Yh0OxBhi8wYsrhfAxKhk5ESs,1425
|
|
2398
2464
|
mteb/tasks/retrieval/slk/__init__.py,sha256=ak6edgong69cm7FXrcslkvli0vRRdwCQnP_qlHvRAeI,153
|
|
2399
2465
|
mteb/tasks/retrieval/slk/sk_quad_retrieval.py,sha256=Z4mSiSjSHX5F-gmHL_l-T-03mRVpc-I_u57raLYSWHA,2621
|
|
2400
|
-
mteb/tasks/retrieval/slk/slovak_sum_retrieval.py,sha256=
|
|
2466
|
+
mteb/tasks/retrieval/slk/slovak_sum_retrieval.py,sha256=VjPbGElf9S_sg4tYgDXz2rB5ZOHiH7GTvL7RpBDQrkc,2534
|
|
2401
2467
|
mteb/tasks/retrieval/spa/__init__.py,sha256=HWMvzhd7nY9LozDkpZkmUN0DyKLr9pLKvd5ycfydRj4,212
|
|
2402
2468
|
mteb/tasks/retrieval/spa/spanish_passage_retrieval_s2p.py,sha256=IRhHDVlhsZaBLMqz8CVAJ8uZK_17tEQ2fUallfisMts,1579
|
|
2403
2469
|
mteb/tasks/retrieval/spa/spanish_passage_retrieval_s2s.py,sha256=zgUdrrlHPLiTQ4E0lRQEtnv7O3X8FjK6AdM0ylHlWCA,1579
|
|
@@ -2407,31 +2473,31 @@ mteb/tasks/retrieval/swe/swedn_retrieval.py,sha256=RFcpp0u-EKIwSRXR37tJ0_haY6Jvl
|
|
|
2407
2473
|
mteb/tasks/retrieval/tur/__init__.py,sha256=tAKhhsTK6meiZwRMIvbx7_ye90JAAW3dlS8iI0r_vg8,84
|
|
2408
2474
|
mteb/tasks/retrieval/tur/tur_hist_quad.py,sha256=d03Ccol3NbSjqvDcqqLGLe0KELuOIloilpt7MMEWnO8,3685
|
|
2409
2475
|
mteb/tasks/retrieval/vie/__init__.py,sha256=j69iltc-is1oqx0oIV1RVjjM46LLH-JJQzKnxm4cYvc,2142
|
|
2410
|
-
mteb/tasks/retrieval/vie/argu_ana_vn_retrieval.py,sha256=
|
|
2411
|
-
mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py,sha256=
|
|
2412
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_android_vn_retrieval.py,sha256=
|
|
2413
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_gis_vn_retrieval.py,sha256=
|
|
2414
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_mathematica_vn_retrieval.py,sha256=
|
|
2415
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_physics_vn_retrieval.py,sha256=
|
|
2416
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_programmers_vn_retrieval.py,sha256=
|
|
2417
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_stats_vn_retrieval.py,sha256=
|
|
2418
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_tex_vn_retrieval.py,sha256=
|
|
2419
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_unix_vn_retrieval.py,sha256=
|
|
2420
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_webmasters_vn_retrieval.py,sha256=
|
|
2421
|
-
mteb/tasks/retrieval/vie/cqa_dupstack_wordpress_vn_retrieval.py,sha256=
|
|
2422
|
-
mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py,sha256=
|
|
2423
|
-
mteb/tasks/retrieval/vie/fevervn_retrieval.py,sha256=
|
|
2424
|
-
mteb/tasks/retrieval/vie/fi_qa2018_vn_retrieval.py,sha256=
|
|
2425
|
-
mteb/tasks/retrieval/vie/green_node_table_markdown_retrieval.py,sha256=
|
|
2426
|
-
mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py,sha256=
|
|
2427
|
-
mteb/tasks/retrieval/vie/msmarcovn_retrieval.py,sha256=
|
|
2428
|
-
mteb/tasks/retrieval/vie/nf_corpus_vn_retrieval.py,sha256=
|
|
2429
|
-
mteb/tasks/retrieval/vie/nqvn_retrieval.py,sha256=
|
|
2430
|
-
mteb/tasks/retrieval/vie/quora_vn_retrieval.py,sha256=
|
|
2431
|
-
mteb/tasks/retrieval/vie/sci_fact_vn_retrieval.py,sha256=
|
|
2432
|
-
mteb/tasks/retrieval/vie/scidocsvn_retrieval.py,sha256=
|
|
2433
|
-
mteb/tasks/retrieval/vie/touche2020_vn_retrieval.py,sha256=
|
|
2434
|
-
mteb/tasks/retrieval/vie/treccovidvn_retrieval.py,sha256=
|
|
2476
|
+
mteb/tasks/retrieval/vie/argu_ana_vn_retrieval.py,sha256=wmE6syUs0sLs7xgIOxXQuiQzpxrskdsTc5sK46v1YEQ,1754
|
|
2477
|
+
mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py,sha256=4GMO5qSYbP0pFtf1yklMZNqFgh8qi1Xo2IXQDl9t14s,1849
|
|
2478
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_android_vn_retrieval.py,sha256=1c6s1C0j1x7kE92WMv9JB4I_rdsHboyP-QILU-18rQ4,1851
|
|
2479
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_gis_vn_retrieval.py,sha256=h--L4OiLIalxHnSulEiUZjMo7JRxjia-mKOnnoaOkzI,1813
|
|
2480
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_mathematica_vn_retrieval.py,sha256=Jm5-2YbfBObFW_Ygwu03PAnSNMcZkH_7SL8L18KVWvQ,1857
|
|
2481
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_physics_vn_retrieval.py,sha256=t-QRo9YP6ssTQVt-p-HBhFgfbZIosMPkGvcHfTV9sJk,1841
|
|
2482
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_programmers_vn_retrieval.py,sha256=1fErtC_fD1VZQUOLYTNvAwTmO5EVQvOv11-Rh4wsXuA,1826
|
|
2483
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_stats_vn_retrieval.py,sha256=m1Hcz-q_znvbpjWXg2Jc85VZqbk0X87fmuNXDkCXm50,1833
|
|
2484
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_tex_vn_retrieval.py,sha256=9EiLKJrpRXACmxZFA_KyXWigl20XxRqlkGYk1G49T4s,1813
|
|
2485
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_unix_vn_retrieval.py,sha256=7Mr2sZrAKzFDeMT_7eQQ_52OKzefGFAnkcHmO4lntIo,1824
|
|
2486
|
+
mteb/tasks/retrieval/vie/cqa_dupstack_webmasters_vn_retrieval.py,sha256=2zDcrsCfcTAcybUmTpGeJQxUxNpkY7Ha8Tf0xwfqTcQ,1810
|
|
2487
|
+
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=hOiwz2bcayDW6VrCvsIGeYh1TT7koByM76rZZwtp9KA,1754
|
|
2489
|
+
mteb/tasks/retrieval/vie/fevervn_retrieval.py,sha256=xLGoXefGk1l1AFiOSf2Ja0fM_rAQp4tdaR8H6jJqYlI,1853
|
|
2490
|
+
mteb/tasks/retrieval/vie/fi_qa2018_vn_retrieval.py,sha256=FGfFuLzRCTuupRxZdjVbBiwCOSspb3vwvtNAKvyXjso,1714
|
|
2491
|
+
mteb/tasks/retrieval/vie/green_node_table_markdown_retrieval.py,sha256=O7iIcuvqhrHjB7J1VxH9YJ3v6cuFFBQdrrnYwLgeRfE,2429
|
|
2492
|
+
mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py,sha256=FYWj8EhnfwDuPRxZ8uTeGkfa2Q-jDU2bliTmp975Coc,1837
|
|
2493
|
+
mteb/tasks/retrieval/vie/msmarcovn_retrieval.py,sha256=xtJ1-rjx4slwSR8p6NedqItTk-79ZzT2f9FlDOhbzkE,1958
|
|
2494
|
+
mteb/tasks/retrieval/vie/nf_corpus_vn_retrieval.py,sha256=4S8IDJ-TVjKEy2teM8GOeDzHIZR8txkPvX0sGDYIyqs,1780
|
|
2495
|
+
mteb/tasks/retrieval/vie/nqvn_retrieval.py,sha256=tQT2t6XcflVRM78t_5TujWD27e9uCMrsfN0DBjDBY0E,1744
|
|
2496
|
+
mteb/tasks/retrieval/vie/quora_vn_retrieval.py,sha256=VkgKCFbDkOuZAsMl36lOr-MuvbhNfE8zUmmiySW9lSY,1837
|
|
2497
|
+
mteb/tasks/retrieval/vie/sci_fact_vn_retrieval.py,sha256=7F3wSU9N2BAj4Jmzw7sjbcxTyYDYs_3I1434X3riaZ4,1773
|
|
2498
|
+
mteb/tasks/retrieval/vie/scidocsvn_retrieval.py,sha256=WlcfDfF43jsNf9D_Bl3k02RiiPdedORID6CEEMAYTLc,1815
|
|
2499
|
+
mteb/tasks/retrieval/vie/touche2020_vn_retrieval.py,sha256=DKcNwCCdANt7hNr3fLao9jkIJJjfxJ0jLLbD7_b-KnE,1752
|
|
2500
|
+
mteb/tasks/retrieval/vie/treccovidvn_retrieval.py,sha256=ZlFFL37Zd_sbKXaUZx41XTxps-nnOi3PnBNCy9KvlJU,1826
|
|
2435
2501
|
mteb/tasks/retrieval/vie/vie_qu_ad_retrieval.py,sha256=eZh1rR43iXDHoylOGKjrUCopzEujE-1GSGTn2TMrkro,3621
|
|
2436
2502
|
mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py,sha256=Y93j0EwG6-bcc0DMLvHP9q3r9b_3xLXu6YBR0Q5HDho,985
|
|
2437
2503
|
mteb/tasks/retrieval/zho/__init__.py,sha256=dIN-rPfrEjkCuUCha8SpQdlzWYY6IMO_HLxebcBhQxA,438
|
|
@@ -2481,7 +2547,7 @@ mteb/tasks/sts/multilingual/sts22_crosslingual_sts.py,sha256=zf50mdAKKZZN_sU5Ga8
|
|
|
2481
2547
|
mteb/tasks/sts/multilingual/sts_benchmark_multilingual_sts.py,sha256=QXenk9v8Mg5pNdkTmEO1X4JFp-3OCUfhHOPO3BE32OQ,1806
|
|
2482
2548
|
mteb/tasks/sts/multilingual/sts_benchmark_multilingual_visual_sts.py,sha256=yH4DLkgrBk6Qg7LHLfAyyclynN_XrichBraNDbxRWl8,1855
|
|
2483
2549
|
mteb/tasks/sts/nld/__init__.py,sha256=NdpfPHekoMIo9sw75Gahm_YCn8hzcVHixEStny107fk,67
|
|
2484
|
-
mteb/tasks/sts/nld/sick_nl_sts.py,sha256=
|
|
2550
|
+
mteb/tasks/sts/nld/sick_nl_sts.py,sha256=rnZ9KeM4Id_eeJJrqcYYdxoH7f6-2lr9obgiuxtHnGY,1557
|
|
2485
2551
|
mteb/tasks/sts/pol/__init__.py,sha256=Ob56PuMH_-J3gH9Pygg0fdEisWYKRT_fy_D0iE2zIpo,83
|
|
2486
2552
|
mteb/tasks/sts/pol/polish_sts.py,sha256=qJCw-28dZ-o3epx44Zz-u6ZLE8HIu4ocJaJRyD0JQkc,3418
|
|
2487
2553
|
mteb/tasks/sts/por/__init__.py,sha256=mUc8zOCeFl456-AEqKqgLQ4_sLnt_eUqD-cbcowRu0U,107
|
|
@@ -2495,9 +2561,9 @@ mteb/tasks/sts/rus/ru_sts_benchmark_sts.py,sha256=3aMR5WZM4gsWh1uD73GpGSscoNSvAO
|
|
|
2495
2561
|
mteb/tasks/sts/spa/__init__.py,sha256=Hl5EWrH_tEDXP-LoTM6ZNZ50hqGe3dGMTtOb0xriPlk,46
|
|
2496
2562
|
mteb/tasks/sts/spa/stses.py,sha256=INluwoWfIGAc3ZjAigRPJV7rSxtLGnDuxW6xGgwCiKA,1851
|
|
2497
2563
|
mteb/tasks/sts/vie/__init__.py,sha256=8CPTfGVz4pnwiYPHtecKCyWloGBK2mKRoNfeXyaMTKQ,190
|
|
2498
|
-
mteb/tasks/sts/vie/biosses_stsvn.py,sha256
|
|
2499
|
-
mteb/tasks/sts/vie/sickr_stsvn.py,sha256=
|
|
2500
|
-
mteb/tasks/sts/vie/sts_benchmark_stsvn.py,sha256=
|
|
2564
|
+
mteb/tasks/sts/vie/biosses_stsvn.py,sha256=elg8qMoKfusUOQBHgimQN_tzZB9AvKU_XSEOaVcQBOM,1714
|
|
2565
|
+
mteb/tasks/sts/vie/sickr_stsvn.py,sha256=6v-4vgqKMPX_vubnacO5xKlRwm2L_0Sjl00GvHxDWY4,1741
|
|
2566
|
+
mteb/tasks/sts/vie/sts_benchmark_stsvn.py,sha256=oiLlwSWNGB84pD_G6teJJJPWOtBL7cVbXEwiIlhU0-U,1759
|
|
2501
2567
|
mteb/tasks/sts/zho/__init__.py,sha256=88femZRWMKfpd4uaJy8BId5nQZaNSEIV8Y7BPS5Pp3w,135
|
|
2502
2568
|
mteb/tasks/sts/zho/cmtebsts.py,sha256=lbvbybsBOS7NcKZ085FzdKCNkimv4rDJqCJENWbrFIg,8341
|
|
2503
2569
|
mteb/tasks/summarization/__init__.py,sha256=M_4yRgj1jR9IHCCwfPVVnwQIm_RE10I7Cp7Om8jManQ,38
|
|
@@ -2517,28 +2583,28 @@ mteb/tasks/zeroshot_classification/eng/euro_sat.py,sha256=RB-_W6956zKAe8RddOgDeg
|
|
|
2517
2583
|
mteb/tasks/zeroshot_classification/eng/fer2013.py,sha256=SQwY66faVBwDO2FVR4IQ1k9kV8RKb_MjmTNIOc38MT0,1711
|
|
2518
2584
|
mteb/tasks/zeroshot_classification/eng/fgvc_aircraft.py,sha256=MOEmuQ211n4zcCPtAwsTmxJbd6oZ5KLXSL_Dgx5LTrQ,1842
|
|
2519
2585
|
mteb/tasks/zeroshot_classification/eng/food101.py,sha256=KfG8nLYfBWF4wE76JsjoPfHVg76X3Glk6A7ZRBy8dlw,1574
|
|
2520
|
-
mteb/tasks/zeroshot_classification/eng/gtsrb.py,sha256=
|
|
2586
|
+
mteb/tasks/zeroshot_classification/eng/gtsrb.py,sha256=5CkVWUCOWkkb4s6-e-r4usplJarThhJ2DcYD5-Jb94U,2161
|
|
2521
2587
|
mteb/tasks/zeroshot_classification/eng/imagenet1k.py,sha256=M5j6k5IGW2BdLNIS0oKIHA-n2FuCax-edSXSPhuHb-U,1862
|
|
2522
2588
|
mteb/tasks/zeroshot_classification/eng/mnist.py,sha256=m2RQ98FrN5hqBDUhbxTAC-uAltn_Ti5wD61PMHn28HQ,1548
|
|
2523
2589
|
mteb/tasks/zeroshot_classification/eng/oxford_pets.py,sha256=NRrYYUFTcNuKm27lDgtwmXf_UySmqha0e8uyAwNoSJw,1661
|
|
2524
|
-
mteb/tasks/zeroshot_classification/eng/patch_camelyon.py,sha256=
|
|
2590
|
+
mteb/tasks/zeroshot_classification/eng/patch_camelyon.py,sha256=3Wb77rxyxU7bqKjm2PN2rw_z4e9FNI1g5hlUazzVXYc,2080
|
|
2525
2591
|
mteb/tasks/zeroshot_classification/eng/rendered_sst2.py,sha256=4531qrKLEVkF9J-ENGFJG6BeE31Nj5GjNWoGMauoEZk,1237
|
|
2526
2592
|
mteb/tasks/zeroshot_classification/eng/resisc45.py,sha256=EpcZgS9yr60Ywb-4ql7pXdPyAv85QFzAl-RxAUrm49o,1991
|
|
2527
2593
|
mteb/tasks/zeroshot_classification/eng/sci_mmir.py,sha256=x7osRKumPTMmVc_f2SE_eArgzDHvDHAw5vle5eE6xk0,2327
|
|
2528
2594
|
mteb/tasks/zeroshot_classification/eng/stanford_cars.py,sha256=aDKN5XSSpwjS54pz7JP2A1lTuk2J_rOeIHwiFipX87E,1605
|
|
2529
2595
|
mteb/tasks/zeroshot_classification/eng/stl10.py,sha256=sd3nV7x7mypsP0Ipxu5TRQj6fGvmERcPbpKFwUoLKi0,1986
|
|
2530
2596
|
mteb/tasks/zeroshot_classification/eng/sun397.py,sha256=Nls7tXM2Svu008MmAUjt-o_NSj-VNGKbW8qi-n7C18s,1963
|
|
2531
|
-
mteb/tasks/zeroshot_classification/eng/ucf101.py,sha256=
|
|
2597
|
+
mteb/tasks/zeroshot_classification/eng/ucf101.py,sha256=kwNRYks-_Oe4VE3GyoHIvN-2OJ6zhkwFr76WDNL9ymU,1884
|
|
2532
2598
|
mteb/tasks/zeroshot_classification/eng/templates/__init__.py,sha256=da1PTClDMl-IBkrSvq6JC1lnS-K_BASzCvxVhNxN5Ls,13
|
|
2533
2599
|
mteb/types/__init__.py,sha256=7_q6_84RvMuHeZK51GbLc5gbpTb3C1WmnqDHm6bnCzw,1104
|
|
2534
|
-
mteb/types/_encoder_io.py,sha256=
|
|
2600
|
+
mteb/types/_encoder_io.py,sha256=Q7llxv3FfiExFKiQGHtATvbSk4_DwdJolLMPTnAPrrI,5536
|
|
2535
2601
|
mteb/types/_metadata.py,sha256=NN-W0S6a5TDV7UkpRx1pyWtGF4TyyCyoPUfHOwdeci8,2290
|
|
2536
2602
|
mteb/types/_result.py,sha256=CRAUc5IvqI3_9SyXDwv-PWLCXwXdZem9RePeYESRtuw,996
|
|
2537
2603
|
mteb/types/_string_validators.py,sha256=PY-dYq4E8O50VS3bLYdldPWp400fl_WzUjfVSkNWe8U,523
|
|
2538
2604
|
mteb/types/statistics.py,sha256=YwJsxTf1eaCI_RE-J37a-gK5wDeGAsmkeZKoZCFihSo,3755
|
|
2539
|
-
mteb-2.
|
|
2540
|
-
mteb-2.
|
|
2541
|
-
mteb-2.
|
|
2542
|
-
mteb-2.
|
|
2543
|
-
mteb-2.
|
|
2544
|
-
mteb-2.
|
|
2605
|
+
mteb-2.5.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
2606
|
+
mteb-2.5.2.dist-info/METADATA,sha256=mhU8GVGbs-LZnxe-2EI1D_Y6Nq5Q83Tm8OxX1DnX3us,13990
|
|
2607
|
+
mteb-2.5.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
2608
|
+
mteb-2.5.2.dist-info/entry_points.txt,sha256=8IJoEJFKoDHmVnNev-qJ9pp4Ln7_1-ma9QsXnzVCzGU,39
|
|
2609
|
+
mteb-2.5.2.dist-info/top_level.txt,sha256=OLVIjcQAlWBz0bdmutKlWHLF42FF0hp4uVAg3ZyiG4U,5
|
|
2610
|
+
mteb-2.5.2.dist-info/RECORD,,
|