mteb 2.1.5__tar.gz → 2.1.7__tar.gz
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-2.1.5 → mteb-2.1.7}/PKG-INFO +2 -2
- mteb-2.1.7/mteb/descriptive_stats/Retrieval/ArguAna-NL.v2.json +30 -0
- mteb-2.1.7/mteb/descriptive_stats/Retrieval/NFCorpus-NL.v2.json +30 -0
- mteb-2.1.7/mteb/descriptive_stats/Retrieval/SCIDOCS-NL.v2.json +30 -0
- mteb-2.1.7/mteb/descriptive_stats/Retrieval/SciFact-NL.v2.json +30 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/colqwen_models.py +57 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/kalm_models.py +159 -25
- mteb-2.1.7/mteb/models/model_implementations/rasgaard_models.py +27 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/tarka_models.py +1 -1
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/dutch_book_review_sentiment_classification.py +5 -1
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/dutch_cola_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/dutch_government_bias_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/dutch_news_articles_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/dutch_sarcastic_headlines_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/iconclass_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/open_tender_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/vaccin_chat_nl_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/dutch_news_articles_clustering_p2p.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/dutch_news_articles_clustering_s2s.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/iconclass_clustering_s2s.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/open_tender_clustering_p2p.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/open_tender_clustering_s2s.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/vabb_clustering_p2p.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/vabb_clustering_s2s.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/nld/covid_disinformation_nl_multi_label_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/nld/vabb_multi_label_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/nld/sick_nl_pair_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/nld/xlwic_nl_pair_classification.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/__init__.py +8 -4
- mteb-2.1.7/mteb/tasks/retrieval/nld/argu_ana_nl_retrieval.py +61 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/bbsard_nl_retrieval.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/dutch_news_articles_retrieval.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/legal_qa_nl_retrieval.py +3 -0
- mteb-2.1.7/mteb/tasks/retrieval/nld/nf_corpus_nl_retrieval.py +57 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/open_tender_retrieval.py +3 -0
- mteb-2.1.7/mteb/tasks/retrieval/nld/sci_fact_nl_retrieval.py +57 -0
- mteb-2.1.7/mteb/tasks/retrieval/nld/scidocsnl_retrieval.py +59 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/vabb_retrieval.py +3 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/nld/sick_nl_sts.py +1 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb.egg-info/PKG-INFO +2 -2
- {mteb-2.1.5 → mteb-2.1.7}/mteb.egg-info/SOURCES.txt +5 -0
- {mteb-2.1.5 → mteb-2.1.7}/pyproject.toml +2 -2
- mteb-2.1.5/mteb/tasks/retrieval/nld/argu_ana_nl_retrieval.py +0 -42
- mteb-2.1.5/mteb/tasks/retrieval/nld/nf_corpus_nl_retrieval.py +0 -40
- mteb-2.1.5/mteb/tasks/retrieval/nld/sci_fact_nl_retrieval.py +0 -39
- mteb-2.1.5/mteb/tasks/retrieval/nld/scidocsnl_retrieval.py +0 -42
- {mteb-2.1.5 → mteb-2.1.7}/LICENSE +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/README.md +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/__main__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_create_dataloaders.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/_download.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/any_sts_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/clustering_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/image/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/image/imagetext_pairclassification_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/pair_classification_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/retrieval_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/retrieval_metrics.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/sklearn_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/text/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/text/bitext_mining_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/text/summarization_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_evaluators/zeroshot_classification_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_helpful_enum.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_log_once.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_requires_package.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/_set_seed.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/_statistics_calculation.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/_stratification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/abstask.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/aggregate_task_metadata.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/aggregated_task.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/clustering_legacy.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/dataset_card_template.md +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/image/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/image/image_text_pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/multilabel_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/regression.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/retrieval_dataset_loaders.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/task_metadata.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/text/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/text/bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/text/reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/text/summarization.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/abstasks/zeroshot_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/benchmarks/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/benchmarks/_create_table.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/benchmarks/benchmark.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/benchmarks/benchmarks/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/benchmarks/benchmarks/benchmarks.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/benchmarks/benchmarks/rteb_benchmarks.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/benchmarks/get_benchmark.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/cache.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/cli/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/cli/_display_tasks.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/cli/build_cli.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/cli/generate_model_card.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/deprecated_evaluator.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/BUCC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/BUCC.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/BibleNLPBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/BornholmBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/DanishMedicinesAgencyBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/DiaBlaBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/FloresBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/IN22ConvBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/IN22GenBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/IWSLT2017BitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/IndicGenBenchFloresBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/LinceMTBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/NTREXBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/NollySentiBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/NorwegianCourtsBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/NusaTranslationBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/NusaXBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/PhincBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/PubChemSMILESBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/RomaTalesBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/RuSciBenchBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/SAMSumFa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/SRNCorpusBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/SynPerChatbotRAGSumSRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/SynPerChatbotSumSRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/Tatoeba.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/TbilisiCityHallBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/VieMedEVBitextMining.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/WebFAQBitextMiningQAs.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/BitextMining/WebFAQBitextMiningQuestions.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AJGT.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AJGT.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AfriSentiClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AfriSentiLangClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AllegroReviews.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AllegroReviews.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AmazonCounterfactualClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AmazonCounterfactualVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AmazonPolarityClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AmazonPolarityClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AmazonPolarityVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AmazonReviewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AmazonReviewsVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AngryTweetsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/AngryTweetsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ArxivClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ArxivClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Banking77Classification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Banking77Classification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Banking77VNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/BengaliDocumentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/BengaliDocumentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/BengaliHateSpeechClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/BengaliHateSpeechClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/BengaliSentimentAnalysis.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/BengaliSentimentAnalysis.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/BulgarianStoreReviewSentimentClassfication.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CBD.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CBD.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CSFDCZMovieReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CSFDCZMovieReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CSFDSKMovieReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CSFDSKMovieReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADAffiliateLicenseLicenseeLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADAffiliateLicenseLicensorLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADAntiAssignmentLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADAuditRightsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADCapOnLiabilityLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADChangeOfControlLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADCompetitiveRestrictionExceptionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADCovenantNotToSueLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADEffectiveDateLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADExclusivityLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADExpirationDateLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADGoverningLawLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADIPOwnershipAssignmentLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADInsuranceLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADIrrevocableOrPerpetualLicenseLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADJointIPOwnershipLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADLicenseGrantLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADLiquidatedDamagesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADMinimumCommitmentLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADMostFavoredNationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADNoSolicitOfCustomersLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADNoSolicitOfEmployeesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADNonCompeteLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADNonDisparagementLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADNonTransferableLicenseLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADNoticePeriodToTerminateRenewalLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADPostTerminationServicesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADPriceRestrictionsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADRenewalTermLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADRevenueProfitSharingLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADRofrRofoRofnLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADSourceCodeEscrowLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADTerminationForConvenienceLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADThirdPartyBeneficiaryLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADUncappedLiabilityLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADUnlimitedAllYouCanEatLicenseLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADVolumeRestrictionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CUADWarrantyDurationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CanadaTaxCourtOutcomesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CataloniaTweetClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIConfidentialityOfAgreementLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIExplicitIdentificationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIInclusionOfVerballyConveyedInformationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLILimitedUseLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLINoLicensingLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLINoticeOnCompelledDisclosureLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIPermissibleAcquirementOfSimilarInformationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIPermissibleCopyLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIPermissibleDevelopmentOfSimilarInformationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIPermissiblePostAgreementPossessionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLIReturnOfConfidentialInformationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLISharingWithEmployeesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLISharingWithThirdPartiesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ContractNLISurvivalOfObligationsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CorporateLobbyingLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CyrillicTurkicLangClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CzechProductReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CzechProductReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CzechSoMeSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CzechSoMeSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/CzechSubjectivityClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DBpediaClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DBpediaClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DKHateClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DKHateClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DadoEvalCoarseClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DalajClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DalajClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DanishPoliticalCommentsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DanishPoliticalCommentsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Ddisco.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Ddisco.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DeepSentiPers.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DeepSentiPers.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DefinitionClassificationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DigikalamagClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Diversity1LegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Diversity2LegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Diversity3LegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Diversity4LegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Diversity5LegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Diversity6LegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DutchBookReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DutchBookReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DutchColaClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DutchGovernmentBiasClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DutchNewsArticlesClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/DutchSarcasticHeadlinesClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/EmotionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/EmotionClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/EmotionVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/EstonianValenceClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/EstonianValenceClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FaIntentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FilipinoHateSpeechClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FilipinoHateSpeechClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FilipinoShopeeReviewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FinToxicityClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FinToxicityClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FinancialPhrasebankClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FinancialPhrasebankClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenchBookReviews.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenchBookReviews.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenkEnClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenkEnClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenkHrClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenkHrClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenkSlClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FrenkSlClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/FunctionOfDecisionSectionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GeoreviewClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GeoreviewClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GeorgianSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GermanPoliticiansTwitterSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GermanPoliticiansTwitterSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GreekLegalCodeClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GujaratiNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/GujaratiNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HUMEEmotionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HUMEMultilingualSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HUMEToxicConversationsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HUMETweetSentimentExtractionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HateSpeechPortugueseClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HeadlineClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HeadlineClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HebrewSentimentAnalysis.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HebrewSentimentAnalysis.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HinDialectClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HindiDiscourseClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HindiDiscourseClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HotelReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/HotelReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IFlyTek.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IFlyTek.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IconclassClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ImdbClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ImdbClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ImdbVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/InappropriatenessClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/InappropriatenessClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/InappropriatenessClassificationv2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IndicLangClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IndicNLPNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IndicSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IndonesianIdClickbaitClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IndonesianIdClickbaitClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IndonesianMongabayConservationClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IndonesianMongabayConservationClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/InsurancePolicyInterpretationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/InternationalCitizenshipQuestionsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IsiZuluNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/IsiZuluNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ItaCaseholdClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Itacola.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Itacola.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/JCrewBlockerLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/JCrewBlockerLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/JDReview.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/JDReview.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/JapaneseSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/JavaneseIMDBClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/JavaneseIMDBClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KLUE-TC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KLUE-TC.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KannadaNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KannadaNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KinopoiskClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KorFin.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KorHateClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KorHateClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KorSarcasmClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KorSarcasmClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KurdishSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/KurdishSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LanguageClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LccSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsBenefitsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsBusinessLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsConsumerLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsCourtsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsCrimeLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsDivorceLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsDomesticViolenceLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsEducationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsEmploymentLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsEstatesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsFamilyLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsHealthLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsHousingLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsImmigrationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsTortsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LearnedHandsTrafficLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LegalReasoningCausalityLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/LegalReasoningCausalityLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MAUDLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MAUDLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MTOPDomainClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MTOPDomainVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MTOPIntentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MTOPIntentVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MacedonianTweetSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MacedonianTweetSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MalayalamNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MalayalamNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MarathiNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MarathiNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MasakhaNEWSClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MassiveIntentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MassiveIntentVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MassiveScenarioClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MassiveScenarioVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Moroco.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Moroco.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MovieReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MovieReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MultiHateClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MultilingualSentiment.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MultilingualSentiment.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MultilingualSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MyanmarNews.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/MyanmarNews.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NLPTwitterAnalysisClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NLPTwitterAnalysisClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NYSJudicialEthicsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NaijaSenti.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NepaliNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NepaliNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NoRecClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NoRecClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NordicLangClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NorwegianParliamentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NorwegianParliamentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NusaParagraphEmotionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NusaParagraphTopicClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/NusaX-senti.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115DataRetentionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115DataSecurityLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115DataSecurityLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115DoNotTrackLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115DoNotTrackLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115FirstPartyCollectionUseLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115InternationalAndSpecificAudiencesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115PolicyChangeLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115ThirdPartySharingCollectionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115UserAccessEditAndDeletionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115UserChoiceControlLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OPP115UserChoiceControlLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OdiaNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OdiaNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OnlineShopping.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OnlineStoreReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OnlineStoreReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OpenTenderClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OralArgumentQuestionPurposeLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OralArgumentQuestionPurposeLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OverrulingLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/OverrulingLegalBenchClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PAC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PAC.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PROALegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PatentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PatentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PerShopDomainClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PerShopIntentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PersianFoodSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PersianTextEmotion.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PersianTextEmotion.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PersonalJurisdictionLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PoemSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PoemSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PolEmo2.0-IN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PolEmo2.0-IN.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PolEmo2.0-OUT.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PolEmo2.0-OUT.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/PunjabiNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RestaurantReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RestaurantReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RomanianReviewsSentiment.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RomanianReviewsSentiment.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RomanianSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RomanianSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuNLUIntentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuReviewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuReviewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuSciBenchCoreRiscClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuSciBenchGRNTIClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuSciBenchGRNTIClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuSciBenchOECDClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuSciBenchOECDClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuSciBenchPubTypeClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuToxicOKMLCUPClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuToxicOKMLCUPClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/RuToxicOKMLCUPMultilabelClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDBPAccountabilityLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDBPAuditsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDBPCertificationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDBPTrainingLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDBPVerificationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDDAccountabilityLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDDAuditsLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDDCertificationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDDTrainingLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SCDDVerificationLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SDSEyeProtectionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SDSEyeProtectionClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SDSGlovesClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SDSGlovesClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SIB200Classification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SIDClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SIDClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SanskritShlokasClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SardiStanceClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ScalaClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ScandiSentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SentiRuEval2016.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SentiRuEval2016.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SentimentAnalysisHindi.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SentimentAnalysisHindi.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SentimentDKSF.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SentimentDKSF.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SinhalaNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SinhalaNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SinhalaNewsSourceClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SinhalaNewsSourceClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SiswatiNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SiswatiNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SlovakHateSpeechClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SlovakHateSpeechClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SlovakMovieReviewSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SlovakMovieReviewSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SouthAfricanLangClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SpanishNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SpanishNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SpanishSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SpanishSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/StyleClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SwahiliNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SwahiliNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SweRecClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SweRecClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SwedishSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SwedishSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SwissJudgementClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSAAnger.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSAFear.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSAFriendship.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSAHappiness.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSAJealousy.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSALove.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSASadness.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSASatisfaction.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSASurprise.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSAToneChatbotClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotConvSAToneUserClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotRAGToneChatbotClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotRAGToneUserClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotSatisfactionLevelClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotToneChatbotClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerChatbotToneUserClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerTextToneClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerTextToneClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/SynPerTextToneClassification.v3.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TNews.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TNews.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TamilNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TamilNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TelemarketingSalesRuleLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TeluguAndhraJyotiNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TeluguAndhraJyotiNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TenKGnadClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TenKGnadClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TextualismToolDictionariesLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TextualismToolPlainLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ToxicChatClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ToxicChatClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ToxicConversationsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ToxicConversationsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/ToxicConversationsVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TswanaNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TswanaNewsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TurkicClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TurkishMovieSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TurkishMovieSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TurkishProductSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TurkishProductSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetEmotionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetEmotionClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetSarcasmClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetSarcasmClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetSentimentExtractionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetSentimentExtractionClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetSentimentExtractionVNClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetTopicSingleClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/TweetTopicSingleClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/UCCVCommonLawLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/UkrFormalityClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/UkrFormalityClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/UnfairTOSLegalBenchClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/UrduRomanSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/UrduRomanSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/VaccinChatNLClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/VieStudentFeedbackClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/VieStudentFeedbackClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WRIMEClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WRIMEClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Waimai.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/Waimai.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaBioMetChemClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaBioMetChemClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaBiolumNeurochemClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaChemEngSpecialtiesClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaChemFieldsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaChemFieldsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaChemistryTopicsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaCompChemSpectroscopyClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaCompChemSpectroscopyClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaCryobiologySeparationClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaCrystallographyAnalyticalClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaCrystallographyAnalyticalClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaGreenhouseEnantiopureClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaIsotopesFissionClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaLuminescenceClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaOrganicInorganicClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaSaltsSemiconductorsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaSolidStateColloidalClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaTheoreticalAppliedClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WikipediaTheoreticalAppliedClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WisesightSentimentClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WisesightSentimentClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/WongnaiReviewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/YahooAnswersTopicsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/YahooAnswersTopicsClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/YelpReviewFullClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/YelpReviewFullClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/YueOpenriceReviewClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Classification/YueOpenriceReviewClassification.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/AlloProfClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/AlloProfClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/AlloProfClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/AlloProfClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ArXivHierarchicalClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ArXivHierarchicalClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ArxivClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ArxivClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ArxivClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BeytooteClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BigPatentClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BigPatentClustering.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BiorxivClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BiorxivClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BiorxivClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BiorxivClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BlurbsClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BlurbsClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BlurbsClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BlurbsClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BuiltBenchClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/BuiltBenchClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/CLSClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/CLSClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/CLSClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/CLSClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ClusTREC-Covid.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/DigikalamagClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/DutchNewsArticlesClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/DutchNewsArticlesClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/EightTagsClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/EightTagsClustering.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/GeoreviewClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/HALClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/HALClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/HUMEArxivClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/HUMERedditClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/HUMESIB200ClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/HUMEWikiCitiesClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/HamshahriClustring.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/IconclassClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/IndicReviewsClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/KlueMrcDomainClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/KlueYnatMrcCategoryClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/LivedoorNewsClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/LivedoorNewsClustering.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MLSUMClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MLSUMClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MLSUMClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MLSUMClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MasakhaNEWSClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MasakhaNEWSClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MedrxivClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MedrxivClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MedrxivClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MedrxivClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/MewsC16JaClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/NLPTwitterAnalysisClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/OpenTenderClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/OpenTenderClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/PlscClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/PlscClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/PlscClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/PlscClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RedditClustering-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RedditClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RedditClustering.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RedditClusteringP2P-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RedditClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RedditClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RomaniBibleClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RuSciBenchGRNTIClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/RuSciBenchOECDClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SIB200ClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SIDClustring.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SNLClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SNLHierarchicalClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SNLHierarchicalClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SpanishNewsClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/StackExchangeClustering-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/StackExchangeClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/StackExchangeClustering.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/StackExchangeClusteringP2P-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/StackExchangeClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/StackExchangeClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SwednClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SwednClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/SwednClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/TenKGnadClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/TenKGnadClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/TenKGnadClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/TenKGnadClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ThuNewsClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ThuNewsClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ThuNewsClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/ThuNewsClusteringS2S.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/TwentyNewsgroupsClustering-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/TwentyNewsgroupsClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/TwentyNewsgroupsClustering.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/VABBClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/VABBClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/VGClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/VGHierarchicalClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/VGHierarchicalClusteringS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/WikiCitiesClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/WikiClusteringP2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/WikiClusteringP2P.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/WikipediaChemistryTopicsClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Clustering/WikipediaSpecialtiesInChemistryClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyMultilingualRetrieval/WITT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyMultilingualRetrieval/XFlickr30kCoT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyMultilingualRetrieval/XM3600T2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/BLINKIT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/BLINKIT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/CIRRIT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/CUB200I2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/EDIST2ITRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/EncyclopediaVQAIT2ITRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/FORBI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/Fashion200kI2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/Fashion200kT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/FashionIQIT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/Flickr30kI2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/Flickr30kT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/GLDv2I2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/GLDv2I2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/HatefulMemesI2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/HatefulMemesT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/ImageCoDeT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/InfoSeekIT2ITRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/InfoSeekIT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/LLaVAIT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/METI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/MSCOCOI2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/MSCOCOT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/MemotionI2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/MemotionT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/NIGHTSI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/OKVQAIT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/OVENIT2ITRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/OVENIT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/ROxfordEasyI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/ROxfordHardI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/ROxfordMediumI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/RP2kI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/RParisEasyI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/RParisHardI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/RParisMediumI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/ReMuQIT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/SOPI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/SciMMIRI2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/SciMMIRT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/SketchyI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/StanfordCarsI2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/TUBerlinT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/VQA2IT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/VisualNewsI2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/VisualNewsT2IRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/VizWizIT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/WebQAT2ITRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Any2AnyRetrieval/WebQAT2TRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Compositionality/AROCocoOrder.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Compositionality/AROFlickrOrder.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Compositionality/AROVisualAttribution.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Compositionality/AROVisualRelation.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Compositionality/ImageCoDe.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Compositionality/SugarCrepe.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/Compositionality/Winoground.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRAirbnbSyntheticRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRArabicChartQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRArabicInfographicsVQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRArxivQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRAutomobileCatelogRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRBeveragesCatalogueRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRCharXivOCRRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRChartQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRDocQAAI.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRDocQAEnergyRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRDocQAGovReportRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRDocQAHealthcareIndustryRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRDocVQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRDonutVQAISynHMPRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDREuropeanaDeNewsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDREuropeanaEsNewsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDREuropeanaFrNewsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDREuropeanaItScansRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDREuropeanaNlLegalRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRGitHubReadmeRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRHindiGovVQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRHungarianDocQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRInfovqaRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRJDocQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRJina2024YearlyBookRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRMMTabRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRMPMQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRMedicalPrescriptionsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDROWIDChartsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDROpenAINewsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRPlotQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRRamensBenchmarkRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRShanghaiMasterPlanRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRShiftProjectRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRStanfordSlideRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRStudentEnrollmentSyntheticRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRTQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRTabFQuadRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRTableVQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRTatQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRTweetStockSyntheticsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRWikimediaCommonsDocumentsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/JinaVDRWikimediaCommonsMapsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/MIRACLVisionRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2BioMedicalLecturesRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2ESGReportsHLRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2ESGReportsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/Vidore2EconomicsReportsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreArxivQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreDocVQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreInfoVQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreShiftProjectRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreSyntheticDocQAAIRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreSyntheticDocQAEnergyRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreSyntheticDocQAGovernmentReportsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreSyntheticDocQAHealthcareIndustryRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreTabfquadRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/DocumentUnderstanding/VidoreTatdqaRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/Birdsnap.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/CIFAR10.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/CIFAR100.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/Caltech101.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/Country211.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/DTD.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/EuroSAT.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/FER2013.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/FGVCAircraft.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/Food101Classification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/GTSRB.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/Imagenet1k.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/MNIST.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/OxfordFlowersClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/OxfordPets.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/PatchCamelyon.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/RESISC45.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/STL10.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/SUN397.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/StanfordCars.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/UCF101.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClassification/VOC2007.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClustering/CIFAR100Clustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClustering/CIFAR10Clustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClustering/ImageNet10Clustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClustering/ImageNetDog15Clustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ImageClustering/TinyImageNetClustering.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisionCentricQA/BLINKIT2IMultiChoice.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisionCentricQA/BLINKIT2TMultiChoice.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisionCentricQA/CVBenchCount.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisionCentricQA/CVBenchDepth.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisionCentricQA/CVBenchDistance.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisionCentricQA/CVBenchRelation.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisualSTS(eng)/STS12VisualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisualSTS(eng)/STS13VisualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisualSTS(eng)/STS14VisualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisualSTS(eng)/STS15VisualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisualSTS(eng)/STS16VisualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisualSTS(multi)/STS17MultilingualVisualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/VisualSTS(multi)/STSBenchmarkMultilingualVisualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/BirdsnapZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/CIFAR100ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/CIFAR10ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/CLEVRCountZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/CLEVRZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/Caltech101ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/Country211ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/DTDZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/EuroSATZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/FER2013ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/FGVCAircraftZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/Food101ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/GTSRBZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/Imagenet1kZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/MNISTZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/OxfordPetsZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/PatchCamelyonZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/RESISC45ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/RenderedSST2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/STL10ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/SUN397ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/SciMMIR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/StanfordCarsZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Image/ZeroShotClassification/UCF101ZeroShot.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionReranking/Core17InstructionRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionReranking/News21InstructionRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionReranking/Robust04InstructionRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionReranking/mFollowIR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionReranking/mFollowIRCrossLingual.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/IFIRAila.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/IFIRCds.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/IFIRFiQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/IFIRFire.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/IFIRNFCorpus.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/IFIRPm.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/IFIRScifact.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/InstructionRetrieval/InstructIR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/BrazilianToxicTweetsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/CEDRClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/CovidDisinformationNLMultiLabelClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/EmitClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/KorHateSpeechMLClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/MalteseNewsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/MultiEURLEXMultilabelClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/SensitiveTopicsClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/SwedishPatentCPCGroupClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/SwedishPatentCPCSubclassClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/MultilabelClassification/VABBMultiLabelClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/ArEntail.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/ArmenianParaphrasePC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/Assin2RTE.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/CDSC-E.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/CExaPPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/CTKFactsNLI.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/Cmnli.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/DisCoTexPairClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/FalseFriendsGermanEnglish.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/FarsTail.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/FarsiParaphraseDetection.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/IndicXnliPairClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/KLUE-NLI.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/LegalBenchPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/Ocnli.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/OpusparcusPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PSC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/ParsinluEntail.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/ParsinluQueryParaphPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PawsXPairClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PpcPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PubChemAISentenceParaphrasePC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PubChemSMILESPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PubChemSynonymPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PubChemWikiPairClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/PubChemWikiParagraphsPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/RTE3.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SICK-BR-PC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SICK-E-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SICKNLPairClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SprintDuplicateQuestions-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SprintDuplicateQuestions.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SynPerChatbotRAGFAQPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SynPerQAPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/SynPerTextKeywordsPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/TERRa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/TalemaaderPC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/TwitterSemEval2015-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/TwitterSemEval2015.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/TwitterURLCorpus-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/TwitterURLCorpus.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/XLWICNLPairClassification.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/XNLI.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/XNLIV2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/XStance.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/PairClassification/indonli.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Regression/RuSciBenchCitedCountRegression.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Regression/RuSciBenchYearPublRegression.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/AlloprofReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/AskUbuntuDupQuestions-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/AskUbuntuDupQuestions.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/BuiltBenchReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/CMedQAv1-reranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/CMedQAv2-reranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/CodeRAGLibraryDocumentationSolutions.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/CodeRAGOnlineTutorials.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/CodeRAGProgrammingSolutions.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/CodeRAGStackoverflowPosts.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/ESCIReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/HUMECore17InstructionReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/HUMENews21InstructionReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/HUMERobust04InstructionReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/HUMEWikipediaRerankingMultilingual.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/JQaRAReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/JaCWIRReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/LocBenchRR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/MIRACLReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/MMarcoReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/MindSmallReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/MultiSWEbenchRR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/NamaaMrTydiReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/NevIR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/RuBQReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/SWEPolyBenchRR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/SWEbenchLiteRR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/SWEbenchMultilingualRR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/SWEbenchVerifiedRR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/SciDocsRR-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/SciDocsRR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/StackOverflowDupQuestions-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/StackOverflowDupQuestions.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/SyntecReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/T2Reranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/VoyageMMarcoReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/WebLINXCandidatesReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/WikipediaRerankingMultilingual.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Reranking/XGlueWPRReranking.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/AILACasedocs.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/AILAStatutes.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ARCChallenge.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/AlloprofRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/AlphaNLI.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/AppsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ArguAna-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ArguAna-Fa.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ArguAna-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ArguAna-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ArguAna-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ArguAna.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/AutoRAGRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BIRCO-ArguAna.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BIRCO-ClinicalTrial.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BIRCO-DorisMae.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BIRCO-Relic.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BIRCO-WTB.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BSARDRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BSARDRetrieval.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BarExamQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BelebeleRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BillSumCA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BillSumUS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BrightLongRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BrightRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/BuiltBenchRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/COIRCodeSearchNetRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Android-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-English-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Gaming-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Gis-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Mathematica-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Physics-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Programmers-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Stats-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Tex-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Unix-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Webmasters-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstack-Wordpress-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackAndroid-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackAndroid-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackAndroidRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackAndroidRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackEnglish-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackEnglishRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackEnglishRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackGaming-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackGamingRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackGamingRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackGis-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackGis-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackGisRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackGisRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackMathematica-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackMathematica-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackMathematicaRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackMathematicaRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackPhysics-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackPhysics-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackPhysicsRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackPhysicsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackProgrammers-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackProgrammers-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackProgrammersRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackProgrammersRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackStats-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackStats-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackStatsRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackStatsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackTex-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackTex-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackTexRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackTexRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackUnix-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackUnix-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackUnixRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackUnixRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWebmasters-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWebmasters-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWebmastersRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWebmastersRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWordpress-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWordpress-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWordpressRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CQADupstackWordpressRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CUREv1.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ChatDoctorRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ChemHotpotQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ChemNQRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ClimateFEVER-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ClimateFEVER-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ClimateFEVER-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ClimateFEVER.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ClimateFEVER.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ClimateFEVERHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ClimateFEVERHardNegatives.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CmedqaRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Code1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CodeEditSearchRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CodeFeedbackMT.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CodeFeedbackST.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CodeSearchNetCCRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CodeSearchNetRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CodeTransOceanContest.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CodeTransOceanDL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CosQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CovidRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CrossLingualSemanticDiscriminationWMT19.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/CrossLingualSemanticDiscriminationWMT21.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMAllTitlAbsClmToFullTextRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMAllTitlAbsClmToTitlAbsClmRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMAllTitlAbsClmToTitlAbsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMAllTitlAbsToFullTextRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMAllTitlAbsToTitlAbsClmRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMAllTitlAbsToTitlAbsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMInTitlAbsClmToFullTextRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMInTitlAbsClmToTitlAbsClmRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMInTitlAbsClmToTitlAbsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMInTitlAbsToFullTextRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMInTitlAbsToTitlAbsClmRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMInTitlAbsToTitlAbsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMOutTitlAbsClmToFullTextRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMOutTitlAbsClmToTitlAbsClmRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMOutTitlAbsClmToTitlAbsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMOutTitlAbsToFullTextRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMOutTitlAbsToTitlAbsClmRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DAPFAMOutTitlAbsToTitlAbsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPedia-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPedia-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPedia-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPedia-PLHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPedia-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPedia.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPediaHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DBPediaHardNegatives.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DS1000Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DanFEVER.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DanFeverRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DuRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/DutchNewsArticlesRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/EcomRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/EnglishFinance1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/EnglishFinance2Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/EnglishFinance3Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/EnglishFinance4Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/EnglishHealthcare1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/EstQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FEVER-FaHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FEVER-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FEVER-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FEVER.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FEVERHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FEVERHardNegatives.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FQuADRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FaithDial.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FeedbackQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FiQA-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FiQA2018-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FiQA2018-Fa.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FiQA2018-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FiQA2018-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FiQA2018.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FinQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FinanceBenchRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/French1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FrenchLegal1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/FreshStackRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GeorgianFAQRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GerDaLIR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GerDaLIRSmall.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/German1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GermanDPR.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GermanGovServiceRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GermanHealthcare1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GermanLegal1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GermanQuAD-Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GovReport.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GreekCivicsQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/GreenNodeTableMarkdownRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HC3FinanceRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HagridRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HellaSwag.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQA-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQA-FaHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQA-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQA-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQA-PLHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQA-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQAHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HotpotQAHardNegatives.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HumanEvalRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/HunSum2AbstractiveRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/IndicQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/JaCWIRRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/JaGovFaqsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/JaQuADRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/JapaneseCode1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/JapaneseLegal1Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/JaqketRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Ko-StrategyQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LEMBNarrativeQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LEMBNeedleRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LEMBPasskeyRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LEMBQMSumRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LEMBSummScreenFDRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LEMBWikimQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LIMITRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LIMITSmallRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LeCaRDv2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LegalBenchConsumerContractsQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LegalBenchCorporateLobbying.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LegalQANLRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LegalQuAD.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LegalSummarization.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LitSearchRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/LoTTE.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MBPPRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MIRACLRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MIRACLRetrievalHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MIRACLRetrievalHardNegatives.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MKQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MLQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MLQuestions.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MMarcoRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCO-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCO-FaHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCO-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCO-PLHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCO-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCO.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCOHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MSMARCOv2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MedicalQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MedicalRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MintakaRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MrTidyRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/MultiLongDocRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NFCorpus-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NFCorpus-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NFCorpus-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NFCorpus-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NFCorpus.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalAbsArticleRetrieval.V2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalAbsArticleRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalAbsIntroRetrieval.V2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalAbsIntroRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalTitleAbsRetrieval.V2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalTitleAbsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalTitleIntroRetrieval.V2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NLPJournalTitleIntroRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQ-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQ-FaHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQ-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQ-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQ-PLHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQ-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQ.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NQHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoArguAnaRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoClimateFeverRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoDBPediaRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoFEVERRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoFiQA2018Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoHotpotQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoMSMARCORetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoNFCorpusRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoNQRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoQuoraRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoSCIDOCSRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoSciFactRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NanoTouche2020Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NarrativeQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NeuCLIR2022Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NeuCLIR2022RetrievalHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NeuCLIR2023Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NeuCLIR2023RetrievalHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/NorQuadRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/OpenTenderRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/PIQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/PUGGRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/PersianWebDocumentRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/PublicHealthQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Quail.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Quora-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Quora-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Quora-PLHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Quora-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/QuoraRetrieval-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/QuoraRetrieval-Fa.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/QuoraRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/QuoraRetrievalHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/QuoraRetrievalHardNegatives.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDBioinformaticsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDBiologyRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDIIYiClinicalRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDMedQADiagRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDMedXpertQAExamRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDMedicalSciencesRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDPMCClinicalRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/R2MEDPMCTreatmentRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RARbCode.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RARbMath.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RiaNewsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RiaNewsRetrievalHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RiaNewsRetrievalHardNegatives.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RuBQRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RuSciBenchCiteRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/RuSciBenchCociteRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SCIDOCS-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SCIDOCS-Fa.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SCIDOCS-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SCIDOCS-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SCIDOCS-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SCIDOCS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SIQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SKQuadRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SNLRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SadeemQuestionRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SciFact-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SciFact-Fa.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SciFact-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SciFact-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SciFact-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SciFact.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SlovakSumRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SpanishPassageRetrievalS2P.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SpanishPassageRetrievalS2S.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SpartQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/StackOverflowQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/StatcanDialogueDatasetRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SweFaqRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SwednRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SynPerChatbotRAGFAQRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SynPerChatbotRAGTopicsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SynPerChatbotTopicsRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SynPerQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SyntecRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/SyntheticText2SQL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/T2Retrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECCOVID-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECCOVID-Fa.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECCOVID-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECCOVID-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECCOVID-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECCOVID.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECDL2019.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TRECDL2020.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TV2Nordretrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TempReasonL1.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TempReasonL2Context.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TempReasonL2Fact.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TempReasonL2Pure.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TempReasonL3Context.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TempReasonL3Fact.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TempReasonL3Pure.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TopiOCQA.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TopiOCQAHardNegatives.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Touche2020-Fa.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Touche2020-Fa.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Touche2020-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Touche2020-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Touche2020-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Touche2020.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/Touche2020Retrieval.v3.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TurHistQuadRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/TwitterHjerneRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/VABBRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/VDRMultilingualRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/VideoRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/VieQuADRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/WebFAQRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/WikiSQLRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/WikipediaRetrievalMultilingual.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/WinoGrande.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/XMarket.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/XPQARetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/XQuADRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/ZacLegalTextRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/bBSARDNLRetrieval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Retrieval/mMARCO-NL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/AFQMC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/ATEC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/Assin2STS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/BIOSSES-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/BIOSSES.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/BQ.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/CDSC-R.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/FaroeseSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/Farsick.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/FinParaSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/GermanSTSBenchmark.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/HUMESICK-R.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/HUMESTS12.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/HUMESTS22.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/HUMESTSBenchmark.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/IndicCrosslingualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/JSICK.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/JSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/KLUE-STS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/KorSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/LCQMC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/PAWSX.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/QBQTC.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/Query2Query.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/RUParaPhraserSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/RonSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/RuSTSBenchmarkSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SICK-BR-STS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SICK-NL-STS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SICK-R-PL.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SICK-R-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SICK-R.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SICKFr.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS12.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS13.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS14.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS15.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS16.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS17.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS22.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STS22.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STSB.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STSBenchmark-VN.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STSBenchmark.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STSBenchmarkMultilingualSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/STSES.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SemRel24STS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/STS/SynPerSTS.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Summarization/SummEval.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Summarization/SummEvalFr.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Summarization/SummEvalFrSummarization.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/descriptive_stats/Summarization/SummEvalSummarization.v2.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/evaluate.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/filter_tasks.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/get_tasks.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/check_language_code.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/iso_15924_to_script.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/iso_639_3_to_language.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/iso_mappings.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/language_family.json +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/language_scripts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/languages/programming_languages.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/leaderboard/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/leaderboard/app.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/leaderboard/benchmark_selector.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/leaderboard/figures.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/leaderboard/table.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/leaderboard/text_segments.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/load_results.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/abs_encoder.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/cache_wrappers/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/cache_wrappers/cache_backend_protocol.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/cache_wrappers/cache_backends/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/cache_wrappers/cache_backends/_hash_utils.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/cache_wrappers/cache_backends/faiss_cache.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/cache_wrappers/cache_backends/numpy_cache.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/cache_wrappers/cache_wrapper.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/get_model_meta.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/instruct_wrapper.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/align_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/amazon_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/ara_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/arctic_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/b1ade_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/bedrock_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/bge_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/blip2_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/blip_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/bm25.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/bmretriever_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/cadet_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/cde_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/clip_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/codefuse_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/codesage_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/cohere_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/cohere_v.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/colpali_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/colsmol_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/conan_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/dino_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/e5_instruct.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/e5_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/e5_v.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/en_code_retriever.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/evaclip_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/fa_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/geogpt_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/gme_v_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/google_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/granite_vision_embedding_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/gritlm_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/gte_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/hinvec_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/human.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/ibm_granite_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/inf_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/jasper_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/jina_clip.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/jina_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/lens_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/lgai_embedding_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/linq_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/listconranker.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/llm2clip_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/llm2vec_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/mcinext_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/mdbr_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/misc_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/mme5_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/moco_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/model2vec_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/moka_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/mxbai_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/nb_sbert.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/no_instruct_sentence_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/nomic_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/nomic_models_vision.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/nvidia_llama_nemoretriever_colemb.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/nvidia_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/openai_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/openclip_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/opensearch_neural_sparse_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/ops_moa_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/ordalietech_solon_embeddings_mini_beta_1_1.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/piccolo_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/promptriever_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/pylate_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/qodo_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/qtack_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/qwen3_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/qzhou_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/random_baseline.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/reasonir_model.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/repllama_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/rerankers_custom.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/rerankers_monot5_based.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/richinfoai_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/ru_sentence_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/salesforce_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/samilpwc_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/searchmap_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/seed_1_6_embedding_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/seed_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/sentence_transformers_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/shuu_model.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/siglip_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/sonar_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/stella_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/text2vec_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/ua_sentence_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/uae_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/vdr_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/vi_vn_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/vista_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/vlm2vec_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/voyage_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/voyage_v.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/xyz_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_implementations/youtu_models.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/model_meta.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/models_protocols.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/search_wrappers.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/models/sentence_transformer_wrapper.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/results/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/results/benchmark_results.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/results/model_result.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/results/task_result.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/similarity_functions.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/eng/cqadupstack_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/eng/sts17_multilingual_visual_sts_eng.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/eng/sts_benchmark_multilingual_visual_sts_eng.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/fas/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/fas/cqadupstack_retrieval_fa.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/fas/syn_per_chatbot_conv_sa_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/multilingual/sts17_multilingual_vision_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/multilingual/sts_benchmark_multilingual_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/nld/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/nld/cqadupstack_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/pol/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/aggregated_tasks/pol/cqadupstack_retrieval_pl.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/dan/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/dan/bornholmsk_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/eng/pub_chem_smiles_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/fas/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/fas/fa_mteb_summary_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/kat/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/kat/tbilisi_city_hall_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/bible_nlp_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/bucc_bitext_mining_fast.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/danish_medicines_agency_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/diabla_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/flores_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/in22_conv_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/in22_gen_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/indic_gen_bench_flores_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/iwslt2017_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/lince_mt_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/nolly_senti_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/norwegian_courts_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/ntrex_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/nusa_translation_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/nusa_x_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/phinc_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/roma_tales_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/ru_sci_bench_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/tatoeba_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/multilingual/web_faq_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/srn/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/srn/srn_corpus_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/vie/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/bitext_mining/vie/vie_med_ev_bitext_mining.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ara/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ara/ajgt.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ara/hotel_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ara/online_store_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ara/restaurant_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ara/tweet_emotion_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ara/tweet_sarcasm_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ben/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ben/bengali_document_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ben/bengali_hate_speech_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ben/bengali_sentiment_analysis.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/bul/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/bul/bulgarian_store_review_sentiment_classfication.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ces/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ces/csfdcz_movie_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ces/czech_product_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ces/czech_so_me_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ces/czech_subjectivity_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/dan/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/dan/angry_tweets_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/dan/danish_political_comments_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/dan/ddisco_cohesion_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/dan/dk_hate_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/dan/lcc_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/deu/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/deu/german_politicians_twitter_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/deu/ten_k_gnad_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ell/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ell/greek_legal_code_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/amazon_polarity_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/arxiv_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/banking77_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/birdsnap_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/caltech101_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/cifar.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/country211_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/dbpedia_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/dtd_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/emotion_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/euro_sat_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/fer2013_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/fgvc_aircraft_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/financial_phrasebank_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/food101_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/frenk_en_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/gtsrb_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/hume_emotion_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/hume_toxic_conversations_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/hume_tweet_sentiment_extraction_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/imagenet1k.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/imdb_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/legal_bench_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/mnist_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/oxford_flowers_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/oxford_pets_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/patch_camelyon_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/patent_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/poem_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/resisc45_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/sds_eye_protection_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/sds_gloves_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/stanford_cars_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/stl10_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/sun397_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/toxic_chat_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/toxic_conversations_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/tweet_sentiment_extraction_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/tweet_topic_single_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/ucf101_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_bio_met_chem_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_biolum_neurochem_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_chem_eng_specialties_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_chem_fields_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_chemistry_topics_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_comp_chem_spectroscopy_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_cryobiology_separation_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_crystallography_analytical_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_greenhouse_enantiopure_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_isotopes_fission_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_luminescence_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_organic_inorganic_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_salts_semiconductors_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_solid_state_colloidal_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/wikipedia_theoretical_applied_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/yahoo_answers_topics_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/eng/yelp_review_full_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/est/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/est/estonian_valence.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fas/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fas/fa_mteb_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fas/persian_food_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fil/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fil/filipino_hate_speech_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fil/filipino_shopee_reviews_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fin/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fin/fin_toxicity_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fra/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fra/french_book_reviews.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/fra/movie_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/guj/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/guj/gujarati_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/heb/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/heb/hebrew_sentiment_analysis.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/hin/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/hin/hindi_discourse_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/hin/sentiment_analysis_hindi.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/hrv/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/hrv/frenk_hr_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ind/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ind/indonesian_id_clickbait_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ind/indonesian_mongabay_conservation_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ita/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ita/dado_eval_coarse_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ita/ita_casehold_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ita/italian_linguist_acceptability_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ita/sardi_stance_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/jav/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/jav/javanese_imdb_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/jpn/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/jpn/japanese_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/jpn/wrime_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kan/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kan/kannada_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kat/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kat/georgian_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kor/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kor/klue_tc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kor/kor_fin.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kor/kor_hate_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kor/kor_sarcasm_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kur/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/kur/kurdish_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mal/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mal/malayalam_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mar/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mar/marathi_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mkd/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mkd/macedonian_tweet_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/afri_senti_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/afri_senti_lang_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/amazon_counterfactual_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/amazon_reviews_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/catalonia_tweet_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/cyrillic_turkic_lang_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/hin_dialect_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/hume_multilingual_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/indic_lang_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/indic_nlp_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/indic_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/language_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/masakha_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/massive_intent_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/massive_scenario_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/mtop_domain_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/mtop_intent_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/multi_hate_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/multilingual_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/naija_senti.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/nordic_lang_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/nusa_paragraph_emotion_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/nusa_paragraph_topic_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/nusa_x_senti.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/ru_nlu_intent_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/ru_sci_bench_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/scala_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/scandi_sent_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/sib200_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/south_african_lang_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/swiss_judgement_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/turkic_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/multilingual/tweet_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mya/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/mya/myanmar_news.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nep/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nep/nepali_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nob/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nob/no_rec_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nob/norwegian_parliament_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ory/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ory/odia_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/pan/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/pan/punjabi_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/pol/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/pol/polish_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/por/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/por/hate_speech_portuguese_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ron/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ron/moroco.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ron/romanian_reviews_sentiment.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ron/romanian_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/georeview_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/headline_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/inappropriateness_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/kinopoisk_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/ru_reviews_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/ru_sci_bench_grnti_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/ru_sci_bench_oecd_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/ru_toixic_classification_okmlcup.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/rus/senti_ru_eval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/san/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/san/sanskrit_shlokas_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/sin/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/sin/sinhala_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/sin/sinhala_news_source_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/slk/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/slk/csfdsk_movie_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/slk/slovak_hate_speech_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/slk/slovak_movie_review_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/slv/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/slv/frenk_sl_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/spa/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/spa/spanish_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/spa/spanish_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ssw/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ssw/siswati_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/swa/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/swa/swahili_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/swe/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/swe/dalaj_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/swe/swe_rec_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/swe/swedish_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tam/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tam/tamil_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tel/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tel/telugu_andhra_jyoti_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tha/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tha/wisesight_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tha/wongnai_reviews_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tsn/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tsn/tswana_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tur/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tur/turkish_movie_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/tur/turkish_product_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ukr/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/ukr/ukr_formality_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/urd/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/urd/urdu_roman_sentiment_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/amazon_counterfactual_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/amazon_polarity_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/amazon_reviews_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/banking77_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/emotion_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/imdb_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/massive_intent_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/massive_scenario_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/mtop_domain_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/mtop_intent_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/toxic_conversations_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/tweet_sentiment_extraction_vn_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/vie/vie_student_feedback_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/zho/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/zho/cmteb_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/zho/yue_openrice_review_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/zul/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/zul/isi_zulu_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/deu/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/deu/blurbs_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/deu/blurbs_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/deu/ten_k_gnad_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/deu/ten_k_gnad_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/arxiv_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/arxiv_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/arxiv_hierarchical_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/big_patent_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/biorxiv_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/biorxiv_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/built_bench_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/built_bench_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/cifar.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/clus_trec_covid.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/hume_arxiv_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/hume_reddit_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/hume_wiki_cities_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/image_net.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/medrxiv_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/medrxiv_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/reddit_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/reddit_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/stack_exchange_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/stack_exchange_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/tiny_image_net.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/twenty_newsgroups_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/wiki_cities_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/wikipedia_chemistry_specialties_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/eng/wikipedia_chemistry_topics_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/fas/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/fas/fa_mteb_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/fra/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/fra/allo_prof_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/fra/allo_prof_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/fra/hal_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/jpn/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/jpn/livedoor_news_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/jpn/mews_c16_ja_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/kor/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/kor/klue_mrc_domain_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/kor/klue_ynat_mrc_category_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/humesib200_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/indic_reviews_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/masakha_news_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/masakha_news_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/mlsum_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/mlsum_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/sib200_clustering_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/multilingual/wiki_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nld/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nob/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nob/snl_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nob/snl_hierarchical_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nob/vg_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/nob/vg_hierarchical_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/pol/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/pol/polish_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/rom/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/rom/romani_bible_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/rus/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/rus/georeview_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/rus/ru_sci_bench_grnti_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/rus/ru_sci_bench_oecd_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/spa/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/spa/spanish_news_clustering_p2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/swe/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/swe/swedn_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/vie/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/vie/reddit_clustering_p2p_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/vie/reddit_clustering_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/vie/stack_exchange_clustering_p2p_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/vie/stack_exchange_clustering_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/vie/twenty_newsgroups_clustering_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/zho/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/clustering/zho/cmteb_clustering.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/aro_coco_order.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/aro_flickr_order.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/aro_visual_attribution.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/aro_visual_relation.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/image_co_de.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/sugar_crepe.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/image_text_pair_classification/eng/winoground.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_reranking/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_reranking/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_reranking/eng/core17_instruction_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_reranking/eng/news21_instruction_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_reranking/eng/robust04_instruction_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_reranking/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_reranking/multilingual/m_follow_ir.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/ifir_aila_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/ifir_cds_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/ifir_fi_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/ifir_fire_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/ifir_pm_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/ifir_scifact_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/ifirnf_corpus_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/instruction_retrieval/eng/instruct_ir.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multichoice/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multichoice/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multichoice/eng/blink_it2i_multi_choice.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multichoice/eng/blink_it2t_multi_choice.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multichoice/eng/cv_bench.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/eng/pascal_voc2007.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/ita/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/ita/emit_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/kor/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/kor/kor_hate_speech_ml_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/mlt/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/mlt/maltese_news_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/multilingual/multi_eurlex_multilabel_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/nld/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/por/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/por/brazilian_toxic_tweets_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/rus/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/rus/cedr_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/rus/ru_toixic_multilabelclassification_okmlcup.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/rus/sensitive_topics_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/swe/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_group_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/multilabel_classification/swe/swedish_patent_cpc_subclass_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ara/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ara/ar_entail.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ces/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ces/ctk_facts_nli.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/dan/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/dan/talemaader_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/deu/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/deu/false_friends_de_en_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/legal_bench_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/pub_chem_ai_sentence_paraphrase_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/pub_chem_smilespc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/pub_chem_synonym_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/pub_chem_wiki_paragraphs_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/sprint_duplicate_questions_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/twitter_sem_eval2015_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/eng/twitter_url_corpus_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/fas/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/fas/fa_mteb_pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/fas/fars_tail.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/hye/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/hye/armenian_paraphrase_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ind/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ind/indo_nli.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ita/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/ita/dis_co_tex_pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/kor/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/kor/klue_nli.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/indic_xnli_pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/opusparcus_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/paws_x_pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/pub_chem_wiki_pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/rte3.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/x_stance.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/multilingual/xnli.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/nld/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/pol/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/pol/polish_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/por/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/por/assin2_rte.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/por/sick_br_pc.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/rus/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/rus/terra.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/vie/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/vie/sprint_duplicate_questions_pcvn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/vie/twitter_sem_eval2015_pcvn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/vie/twitter_url_corpus_pcvn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/zho/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/pair_classification/zho/cmteb_pair_classification.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/regression/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/regression/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/regression/multilingual/ru_sci_bench_regression.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/ara/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/ara/namaa_mr_tydi_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/ask_ubuntu_dup_questions.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/built_bench_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/hume_core17_instruction_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/hume_news21_instruction_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/hume_robust04_instruction_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/loc_bench_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/mind_small_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/multi_swe_bench_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/nev_ir.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/sci_docs_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/stack_overflow_dup_questions.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/swe_bench_lite_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/swe_bench_multilingual_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/swe_bench_verified_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/swe_poly_bench_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/eng/web_linx_candidates_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/fra/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/fra/alloprof_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/fra/syntec_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/jpn/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/jpn/j_qa_ra_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/jpn/ja_cwir_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/jpn/m_marco_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/multilingual/esci_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/multilingual/hume_wikipedia_reranking_multilingual.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/multilingual/miracl_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/multilingual/wikipedia_reranking_multilingual.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/multilingual/x_glue_wpr_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/rus/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/rus/ru_bq_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/vie/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/vie/ask_ubuntu_dup_questions_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/vie/sci_docs_reranking_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/vie/stack_overflow_dup_questions_vn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/zho/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/reranking/zho/cmteb_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/ara/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/ara/sadeem_question_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/apps_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_edit_search_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_feedback_mt_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_feedback_st_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_rag.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_search_net_cc_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_search_net_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_trans_ocean_contest_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/code_trans_ocean_dl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/coir_code_search_net_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/cos_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/ds1000_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/fresh_stack_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/human_eval_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/japanese_code1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/mbpp_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/stack_overflow_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/synthetic_text2_sql_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/code/wiki_sql_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/dan/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/dan/dan_fever_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/dan/tv2_nordretrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/dan/twitter_hjerne_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/ger_da_lir_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/ger_da_lir_small_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/german1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/german_dpr_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/german_gov_service_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/german_healthcare1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/german_legal1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/german_qu_ad_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/deu/legal_qu_ad_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/ell/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/ell/greek_civics_qa.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/aila_casedocs_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/aila_statutes_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/alpha_nli_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/arc_challenge_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/argu_ana_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/bar_exam_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/bill_sum_ca_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/bill_sum_us_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/birco_argu_ana_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/birco_clinical_trial_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/birco_doris_mae_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/birco_relic_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/birco_whats_that_book_reranking.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/blink_it2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/blink_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/bright_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/built_bench_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/chat_doctor_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/chem_hotpot_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/chem_nq_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cirr_it2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/climate_fever_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_android_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_english_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_gaming_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_gis_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_mathematica_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_physics_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_programmers_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_stats_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_tex_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_unix_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_webmasters_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cqa_dupstack_wordpress_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/cub200_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/dapfam_patent_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/dbpedia_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/edis_t2it_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/encyclopedia_vqa_it2it_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/english_finance1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/english_finance2_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/english_finance3_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/english_finance4_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/english_healthcare1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/faith_dial_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/fashion200k_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/fashion200k_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/fashion_iq_it2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/feedback_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/fever_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/fi_qa2018_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/fin_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/finance_bench_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/flickr30k_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/flickr30k_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/forb_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/gl_dv2_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/gl_dv2_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/gov_report_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/hagrid_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/hateful_memes_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/hateful_memes_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/hc3_finance_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/hella_swag_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/hotpot_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/image_co_de_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/info_seek_it2it_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/info_seek_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/legal_bench_consumer_contracts_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/legal_bench_corporate_lobbying_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/legal_summarization_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lemb_narrative_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lemb_needle_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lemb_passkey_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lemb_summ_screen_fd_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lemb_wikim_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lembqm_sum_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/limit_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lit_search_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/llava_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/lotte_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/medical_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/memotion_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/memotion_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/met_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/ml_questions.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/mscoco_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/mscoco_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/msmarc_ov2_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/msmarco_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_argu_ana_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_climate_fever_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_db_pedia_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_fever_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_fi_qa2018_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_hotpot_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_msmarco_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_nf_corpus_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_nq_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_quora_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_sci_fact_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_scidocs_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nano_touche2020_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/narrative_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nf_corpus_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nights_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/nq_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/okvqa_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/oven_it2it_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/oven_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/piqa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/quail_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/quora_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/r2_med_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/r_oxford_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/r_paris_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/ra_rb_code_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/ra_rb_math_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/re_mu_q_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/rp2k_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/sci_fact_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/sci_mmir_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/sci_mmir_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/scidocs_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/siqa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/sketchy_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/sop_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/spart_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/stanford_cars_i2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/temp_reason_l1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/temp_reason_l2_context_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/temp_reason_l2_fact_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/temp_reason_l2_pure_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/temp_reason_l3_context_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/temp_reason_l3_fact_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/temp_reason_l3_pure_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/topi_ocqa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/touche2020_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/treccovid_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/trecdl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/tu_berlin_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/vidore_bench_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/visual_news_i2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/visual_news_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/viz_wiz_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/vqa2_it2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/web_qa_t2it_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/web_qa_t2t_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/eng/wino_grande_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/est/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/est/estqa.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fas/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fas/beir_fa.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fas/fa_mteb_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fra/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fra/alloprof_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fra/bsard_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fra/f_qu_ad_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fra/french1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fra/french_legal1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/fra/syntec_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/hun/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/hun/hun_sum2.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/ja_cwir_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/ja_gov_faqs_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/ja_qu_ad_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/japanese_legal1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/jaqket_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/nlp_journal_abs_article_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/nlp_journal_abs_intro_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/nlp_journal_title_abs_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/jpn/nlp_journal_title_intro_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/kat/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/kat/georgian_faq_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/kor/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/kor/auto_rag_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/kor/ko_strategy_qa.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/belebele_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/cross_lingual_semantic_discrimination_wmt19.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/cross_lingual_semantic_discrimination_wmt21.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/cur_ev1_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/indic_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/jina_vdr_bench_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/mintaka_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/miracl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/miracl_vision_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/mkqa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/mlqa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/mr_tidy_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/multi_long_doc_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/neu_clir2022_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/neu_clir2023_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/public_health_qa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/ru_sci_bench_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/statcan_dialogue_dataset_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/vdr_multilingual_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/vidore2_bench_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/web_faq_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/wikipedia_retrieval_multilingual.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/wit_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/x_flickr30k_co_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/x_market_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/x_qu_ad_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/xm3600_t2i_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/multilingual/xpqa_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/climate_fevernl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_android_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_english_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_gaming_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_gis_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_mathematica_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_physics_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_programmers_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_stats_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_tex_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_unix_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_webmasters_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/cqa_dupstack_wordpress_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/db_pedia_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/fevernl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/fi_qa2018_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/hotpot_qanl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/mmarconl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/nqnl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/quora_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/touche2020_nl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nld/treccovidnl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nob/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nob/norquad.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/nob/snl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/argu_ana_pl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/cqadupstack_pl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/db_pedia_pl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/fi_qapl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/hotpot_qapl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/msmarcopl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/nf_corpus_pl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/nqpl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/pugg_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/quora_pl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/sci_fact_pl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/scidocspl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/touche2020_pl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/pol/treccovidpl_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/rus/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/rus/ria_news_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/rus/ru_bq_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/slk/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/slk/sk_quad_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/slk/slovak_sum_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/spa/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/spa/spanish_passage_retrieval_s2p.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/spa/spanish_passage_retrieval_s2s.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/swe/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/swe/swe_faq_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/swe/swedn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/tur/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/tur/tur_hist_quad.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/argu_ana_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/climate_fevervn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_android_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_gis_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_mathematica_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_physics_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_programmers_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_stats_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_tex_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_unix_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_webmasters_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/cqa_dupstack_wordpress_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/db_pedia_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/fevervn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/fi_qa2018_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/green_node_table_markdown_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/hotpot_qavn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/msmarcovn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/nf_corpus_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/nqvn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/quora_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/sci_fact_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/scidocsvn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/touche2020_vn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/treccovidvn_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/vie_qu_ad_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/vie/zac_legal_text_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/zho/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/zho/cmteb_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/retrieval/zho/le_ca_r_dv2_retrieval.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/deu/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/deu/german_sts_benchmark_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/biosses_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/humesickr.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/humests12.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/humests_benchmark.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sickr_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts12_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts12_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts13_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts13_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts14_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts14_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts15_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts15_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts16_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts16_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/eng/sts_benchmark_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fao/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fao/faroese_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fas/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fas/fa_mtebsts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fin/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fin/fin_para_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fra/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/fra/sick_fr_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/jpn/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/jpn/jsick.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/jpn/jsts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/kor/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/kor/klue_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/kor/kor_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/humests22.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/indic_crosslingual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/sem_rel24_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/sts17_crosslingual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/sts17_multilingual_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/sts22_crosslingual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/sts_benchmark_multilingual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/multilingual/sts_benchmark_multilingual_visual_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/nld/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/pol/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/pol/polish_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/por/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/por/assin2_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/por/sick_br_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/ron/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/ron/ron_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/rus/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/rus/ru_para_phraser_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/rus/ru_sts_benchmark_sts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/spa/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/spa/stses.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/vie/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/vie/biosses_stsvn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/vie/sickr_stsvn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/vie/sts_benchmark_stsvn.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/zho/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/sts/zho/cmtebsts.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/summarization/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/summarization/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/summarization/eng/summ_eval_summarization.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/summarization/fra/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/summarization/fra/summ_eval_fr_summarization.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/birdsnap.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/caltech101.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/cifar.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/clevr.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/country211.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/dtd.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/euro_sat.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/fer2013.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/fgvc_aircraft.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/food101.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/gtsrb.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/imagenet1k.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/mnist.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/oxford_pets.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/patch_camelyon.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/rendered_sst2.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/resisc45.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/sci_mmir.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/stanford_cars.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/stl10.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/sun397.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/templates/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/zeroshot_classification/eng/ucf101.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/types/__init__.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/types/_encoder_io.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/types/_metadata.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/types/_result.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/types/_string_validators.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb/types/statistics.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb.egg-info/dependency_links.txt +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb.egg-info/entry_points.txt +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb.egg-info/requires.txt +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/mteb.egg-info/top_level.txt +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/setup.cfg +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/tests/test_cli.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/tests/test_evaluate.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/tests/test_filter_tasks.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/tests/test_get_tasks.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/tests/test_languages.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/tests/test_leaderboard.py +0 -0
- {mteb-2.1.5 → mteb-2.1.7}/tests/test_result_cache.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mteb
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.7
|
|
4
4
|
Summary: Massive Text Embedding Benchmark
|
|
5
5
|
Author-email: MTEB Contributors <niklas@huggingface.co>, Kenneth Enevoldsen <kenneth.enevoldsen@cas.au.dk>, Nouamane Tazi <nouamane@huggingface.co>, Nils Reimers <info@nils-reimers.de>
|
|
6
6
|
Maintainer-email: Kenneth Enevoldsen <kenneth.enevoldsen@cas.au.dk>, Roman Solomatin <risolomatin@gmail.com>, Isaac Chung <chungisaac1217@gmail.com>
|
|
@@ -16,7 +16,7 @@ Classifier: Intended Audience :: Developers
|
|
|
16
16
|
Classifier: Intended Audience :: Information Technology
|
|
17
17
|
Classifier: Operating System :: OS Independent
|
|
18
18
|
Classifier: Programming Language :: Python
|
|
19
|
-
Requires-Python: <3.
|
|
19
|
+
Requires-Python: <3.15,>=3.10
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: datasets>=2.19.0
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"test": {
|
|
3
|
+
"num_samples": 10080,
|
|
4
|
+
"number_of_characters": 11742019,
|
|
5
|
+
"documents_text_statistics": {
|
|
6
|
+
"total_text_length": 9897099,
|
|
7
|
+
"min_text_length": 1,
|
|
8
|
+
"average_text_length": 1141.0074936592114,
|
|
9
|
+
"max_text_length": 7337,
|
|
10
|
+
"unique_texts": 8624
|
|
11
|
+
},
|
|
12
|
+
"documents_image_statistics": null,
|
|
13
|
+
"queries_text_statistics": {
|
|
14
|
+
"total_text_length": 1844920,
|
|
15
|
+
"min_text_length": 252,
|
|
16
|
+
"average_text_length": 1312.176386913229,
|
|
17
|
+
"max_text_length": 6050,
|
|
18
|
+
"unique_texts": 1298
|
|
19
|
+
},
|
|
20
|
+
"queries_image_statistics": null,
|
|
21
|
+
"relevant_docs_statistics": {
|
|
22
|
+
"num_relevant_docs": 1406,
|
|
23
|
+
"min_relevant_docs_per_query": 1,
|
|
24
|
+
"average_relevant_docs_per_query": 1.0,
|
|
25
|
+
"max_relevant_docs_per_query": 1,
|
|
26
|
+
"unique_relevant_docs": 1406
|
|
27
|
+
},
|
|
28
|
+
"top_ranked_statistics": null
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"test": {
|
|
3
|
+
"num_samples": 3956,
|
|
4
|
+
"number_of_characters": 6345348,
|
|
5
|
+
"documents_text_statistics": {
|
|
6
|
+
"total_text_length": 6337710,
|
|
7
|
+
"min_text_length": 144,
|
|
8
|
+
"average_text_length": 1744.483897605285,
|
|
9
|
+
"max_text_length": 8480,
|
|
10
|
+
"unique_texts": 3593
|
|
11
|
+
},
|
|
12
|
+
"documents_image_statistics": null,
|
|
13
|
+
"queries_text_statistics": {
|
|
14
|
+
"total_text_length": 7638,
|
|
15
|
+
"min_text_length": 3,
|
|
16
|
+
"average_text_length": 23.647058823529413,
|
|
17
|
+
"max_text_length": 89,
|
|
18
|
+
"unique_texts": 323
|
|
19
|
+
},
|
|
20
|
+
"queries_image_statistics": null,
|
|
21
|
+
"relevant_docs_statistics": {
|
|
22
|
+
"num_relevant_docs": 12334,
|
|
23
|
+
"min_relevant_docs_per_query": 1,
|
|
24
|
+
"average_relevant_docs_per_query": 38.18575851393189,
|
|
25
|
+
"max_relevant_docs_per_query": 475,
|
|
26
|
+
"unique_relevant_docs": 3128
|
|
27
|
+
},
|
|
28
|
+
"top_ranked_statistics": null
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"test": {
|
|
3
|
+
"num_samples": 26657,
|
|
4
|
+
"number_of_characters": 34261482,
|
|
5
|
+
"documents_text_statistics": {
|
|
6
|
+
"total_text_length": 34181168,
|
|
7
|
+
"min_text_length": 10,
|
|
8
|
+
"average_text_length": 1332.2355692403632,
|
|
9
|
+
"max_text_length": 9275,
|
|
10
|
+
"unique_texts": 25656
|
|
11
|
+
},
|
|
12
|
+
"documents_image_statistics": null,
|
|
13
|
+
"queries_text_statistics": {
|
|
14
|
+
"total_text_length": 80314,
|
|
15
|
+
"min_text_length": 17,
|
|
16
|
+
"average_text_length": 80.314,
|
|
17
|
+
"max_text_length": 227,
|
|
18
|
+
"unique_texts": 1000
|
|
19
|
+
},
|
|
20
|
+
"queries_image_statistics": null,
|
|
21
|
+
"relevant_docs_statistics": {
|
|
22
|
+
"num_relevant_docs": 4928,
|
|
23
|
+
"min_relevant_docs_per_query": 27,
|
|
24
|
+
"average_relevant_docs_per_query": 4.928,
|
|
25
|
+
"max_relevant_docs_per_query": 30,
|
|
26
|
+
"unique_relevant_docs": 25657
|
|
27
|
+
},
|
|
28
|
+
"top_ranked_statistics": null
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"test": {
|
|
3
|
+
"num_samples": 5483,
|
|
4
|
+
"number_of_characters": 8526662,
|
|
5
|
+
"documents_text_statistics": {
|
|
6
|
+
"total_text_length": 8496576,
|
|
7
|
+
"min_text_length": 228,
|
|
8
|
+
"average_text_length": 1639.3162261238665,
|
|
9
|
+
"max_text_length": 9187,
|
|
10
|
+
"unique_texts": 5183
|
|
11
|
+
},
|
|
12
|
+
"documents_image_statistics": null,
|
|
13
|
+
"queries_text_statistics": {
|
|
14
|
+
"total_text_length": 30086,
|
|
15
|
+
"min_text_length": 24,
|
|
16
|
+
"average_text_length": 100.28666666666666,
|
|
17
|
+
"max_text_length": 228,
|
|
18
|
+
"unique_texts": 300
|
|
19
|
+
},
|
|
20
|
+
"queries_image_statistics": null,
|
|
21
|
+
"relevant_docs_statistics": {
|
|
22
|
+
"num_relevant_docs": 339,
|
|
23
|
+
"min_relevant_docs_per_query": 1,
|
|
24
|
+
"average_relevant_docs_per_query": 1.13,
|
|
25
|
+
"max_relevant_docs_per_query": 5,
|
|
26
|
+
"unique_relevant_docs": 283
|
|
27
|
+
},
|
|
28
|
+
"top_ranked_statistics": null
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -220,3 +220,60 @@ colnomic_7b = ModelMeta(
|
|
|
220
220
|
training_datasets=COLNOMIC_TRAINING_DATA,
|
|
221
221
|
citation=COLNOMIC_CITATION,
|
|
222
222
|
)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
EVOQWEN_TRAINING_DATA = {
|
|
226
|
+
"colpali_train_set",
|
|
227
|
+
"VisRAG-Ret-Train-Synthetic-data",
|
|
228
|
+
"VisRAG-Ret-Train-In-domain-data",
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
evoqwen25_vl_retriever_3b_v1 = ModelMeta(
|
|
232
|
+
loader=ColQwen2_5Wrapper,
|
|
233
|
+
loader_kwargs=dict(
|
|
234
|
+
torch_dtype=torch.float16, attn_implementation="flash_attention_2"
|
|
235
|
+
),
|
|
236
|
+
name="ApsaraStackMaaS/EvoQwen2.5-VL-Retriever-3B-v1",
|
|
237
|
+
languages=["eng-Latn"],
|
|
238
|
+
revision="aeacaa2775f2758d82721eb1cf2f5daf1a392da9",
|
|
239
|
+
release_date="2025-11-04",
|
|
240
|
+
modalities=["image", "text"],
|
|
241
|
+
n_parameters=3_000_000_000,
|
|
242
|
+
memory_usage_mb=7200,
|
|
243
|
+
max_tokens=128000,
|
|
244
|
+
embed_dim=128,
|
|
245
|
+
license="apache-2.0",
|
|
246
|
+
open_weights=True,
|
|
247
|
+
public_training_code="https://github.com/illuin-tech/colpali",
|
|
248
|
+
public_training_data="https://huggingface.co/datasets/vidore/colpali_train_set",
|
|
249
|
+
framework=["ColPali"],
|
|
250
|
+
reference="https://huggingface.co/ApsaraStackMaaS/EvoQwen2.5-VL-Retriever-3B-v1",
|
|
251
|
+
similarity_fn_name="MaxSim",
|
|
252
|
+
use_instructions=True,
|
|
253
|
+
training_datasets=EVOQWEN_TRAINING_DATA,
|
|
254
|
+
)
|
|
255
|
+
|
|
256
|
+
evoqwen25_vl_retriever_7b_v1 = ModelMeta(
|
|
257
|
+
loader=ColQwen2_5Wrapper,
|
|
258
|
+
loader_kwargs=dict(
|
|
259
|
+
torch_dtype=torch.float16, attn_implementation="flash_attention_2"
|
|
260
|
+
),
|
|
261
|
+
name="ApsaraStackMaaS/EvoQwen2.5-VL-Retriever-7B-v1",
|
|
262
|
+
languages=["eng-Latn"],
|
|
263
|
+
revision="8952ac6ee0e7de2e9211b165921518caf9202110",
|
|
264
|
+
release_date="2025-11-04",
|
|
265
|
+
modalities=["image", "text"],
|
|
266
|
+
n_parameters=7_000_000_000,
|
|
267
|
+
memory_usage_mb=14400,
|
|
268
|
+
max_tokens=128000,
|
|
269
|
+
embed_dim=128,
|
|
270
|
+
license="apache-2.0",
|
|
271
|
+
open_weights=True,
|
|
272
|
+
public_training_code="https://github.com/illuin-tech/colpali",
|
|
273
|
+
public_training_data="https://huggingface.co/datasets/vidore/colpali_train_set",
|
|
274
|
+
framework=["ColPali"],
|
|
275
|
+
reference="https://huggingface.co/ApsaraStackMaaS/EvoQwen2.5-VL-Retriever-7B-v1",
|
|
276
|
+
similarity_fn_name="MaxSim",
|
|
277
|
+
use_instructions=True,
|
|
278
|
+
training_datasets=EVOQWEN_TRAINING_DATA,
|
|
279
|
+
)
|
|
@@ -247,6 +247,40 @@ kalm_v2_training_data = {
|
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
|
|
250
|
+
KaLM_Embedding_gemma_3_12b_training_data = [
|
|
251
|
+
"BornholmBitextMining",
|
|
252
|
+
"BibleNLPBitextMining", # train[256:] to avoid the test set in MTEB
|
|
253
|
+
"FinParaSTS",
|
|
254
|
+
"SemRel24STS",
|
|
255
|
+
"STSB",
|
|
256
|
+
"GermanSTSBenchmark",
|
|
257
|
+
"TERRa",
|
|
258
|
+
"StatcanDialogueDatasetRetrieval",
|
|
259
|
+
"SwissJudgementClassification",
|
|
260
|
+
"GreekLegalCodeClassification",
|
|
261
|
+
"CataloniaTweetClassification",
|
|
262
|
+
"NordicLangClassification",
|
|
263
|
+
"CyrillicTurkicLangClassification",
|
|
264
|
+
"PoemSentimentClassification",
|
|
265
|
+
"CzechProductReviewSentimentClassification",
|
|
266
|
+
"DBpediaClassification",
|
|
267
|
+
"IndicLangClassification",
|
|
268
|
+
"NusaParagraphEmotionClassification",
|
|
269
|
+
"OdiaNewsClassification",
|
|
270
|
+
"ScalaClassification",
|
|
271
|
+
"ItaCaseholdClassification",
|
|
272
|
+
"CSFDSKMovieReviewSentimentClassification",
|
|
273
|
+
"ToxicConversationsClassification",
|
|
274
|
+
"PAC",
|
|
275
|
+
"SpartQA",
|
|
276
|
+
"WinoGrande",
|
|
277
|
+
"Quail",
|
|
278
|
+
"HellaSwag",
|
|
279
|
+
"AlphaNLI",
|
|
280
|
+
]
|
|
281
|
+
KaLM_Embedding_gemma_3_12b_training_data += kalm_training_data
|
|
282
|
+
|
|
283
|
+
|
|
250
284
|
KaLM_task_prompts = {
|
|
251
285
|
"AmazonCounterfactualClassification": "Given an Amazon review, judge whether it is counterfactual.",
|
|
252
286
|
"AmazonPolarityClassification": "Classifying Amazon reviews into positive or negative sentiment",
|
|
@@ -450,13 +484,7 @@ KaLM_v2_task_prompts = {
|
|
|
450
484
|
"SummEval-document": "Retrieve semantically similar summaries",
|
|
451
485
|
}
|
|
452
486
|
|
|
453
|
-
|
|
454
|
-
"Classification": "classify the query into different classes.",
|
|
455
|
-
"MultilabelClassification": "Instruct: classify the query into different classes.",
|
|
456
|
-
"Clustering": "classify the query into different classes.",
|
|
457
|
-
"Reranking-query": "Given a query, retrieve documents that answer the query.",
|
|
458
|
-
"Retrieval-query": "Given a query, retrieve documents that answer the query.",
|
|
459
|
-
"InstructionRetrieval-query": "Given a query, retrieve documents that answer the query.",
|
|
487
|
+
KaLM_Embedding_gemma_3_12b_task_prompts = {
|
|
460
488
|
"AmazonCounterfactualClassification": "Classify a given Amazon customer review text as either counterfactual or not-counterfactual",
|
|
461
489
|
"AmazonPolarityClassification": "Classify Amazon reviews into positive or negative sentiment",
|
|
462
490
|
"AmazonReviewsClassification": "Classify the given Amazon review into its appropriate rating category",
|
|
@@ -478,26 +506,38 @@ KaLM_X_task_prompts = {
|
|
|
478
506
|
"ArxivClusteringP2P": "Identify the main and secondary category of Arxiv papers based on the titles and abstracts",
|
|
479
507
|
"ArxivClusteringS2S": "Identify the main and secondary category of Arxiv papers based on the titles",
|
|
480
508
|
"BiorxivClusteringP2P": "Identify the main category of Biorxiv papers based on the titles and abstracts",
|
|
509
|
+
"BiorxivClusteringP2P.v2": "Identify the main category of Biorxiv papers based on the titles and abstracts",
|
|
481
510
|
"BiorxivClusteringS2S": "Identify the main category of Biorxiv papers based on the titles",
|
|
511
|
+
"BiorxivClusteringS2S.v2": "Identify the main category of Biorxiv papers based on the titles",
|
|
482
512
|
"MedrxivClusteringP2P": "Identify the main category of Medrxiv papers based on the titles and abstracts",
|
|
513
|
+
"MedrxivClusteringP2P.v2": "Identify the main category of Medrxiv papers based on the titles and abstracts",
|
|
483
514
|
"MedrxivClusteringS2S": "Identify the main category of Medrxiv papers based on the titles",
|
|
515
|
+
"MedrxivClusteringS2S.v2": "Identify the main category of Medrxiv papers based on the titles",
|
|
484
516
|
"RedditClustering": "Identify the topic or theme of Reddit posts based on the titles",
|
|
485
517
|
"RedditClusteringP2P": "Identify the topic or theme of Reddit posts based on the titles and posts",
|
|
486
518
|
"StackExchangeClustering": "Identify the topic or theme of StackExchange posts based on the titles",
|
|
519
|
+
"StackExchangeClustering.v2": "Identify the topic or theme of StackExchange posts based on the titles",
|
|
487
520
|
"StackExchangeClusteringP2P": "Identify the topic or theme of StackExchange posts based on the given paragraphs",
|
|
521
|
+
"StackExchangeClusteringP2P.v2": "Identify the topic or theme of StackExchange posts based on the given paragraphs",
|
|
488
522
|
"TwentyNewsgroupsClustering": "Identify the topic or theme of the given news articles",
|
|
489
523
|
"CLSClusteringS2S": "Identify the main category of scholar papers based on the titles",
|
|
490
524
|
"CLSClusteringP2P": "Identify the main category of scholar papers based on the titles and abstracts",
|
|
525
|
+
"CLSClusteringP2P.v2": "Identify the main category of scholar papers based on the titles and abstracts",
|
|
491
526
|
"ThuNewsClusteringS2S": "Identify the topic or theme of the given news articles based on the titles",
|
|
492
527
|
"ThuNewsClusteringP2P": "Identify the topic or theme of the given news articles based on the titles and contents",
|
|
493
528
|
"AskUbuntuDupQuestions-query": "Retrieve duplicate questions from AskUbuntu forum",
|
|
494
529
|
"MindSmallReranking-query": "Retrieve relevant news articles based on user browsing history",
|
|
495
530
|
"SciDocsRR-query": "Given a title of a scientific paper, retrieve the titles of other relevant papers",
|
|
496
531
|
"StackOverflowDupQuestions-query": "Retrieve duplicate questions from StackOverflow forum",
|
|
532
|
+
"SprintDuplicateQuestions": "Retrieve semantically duplicate questions",
|
|
533
|
+
"TwitterSemEval2015": "Retrieve tweets that are semantically similar to the given tweet",
|
|
534
|
+
"TwitterURLCorpus": "Retrieve tweets that are semantically similar to the given tweet",
|
|
497
535
|
"T2Reranking-query": "Given a Chinese search query, retrieve web passages that answer the question",
|
|
498
536
|
"MMarcoReranking-query": "Given a Chinese search query, retrieve web passages that answer the question",
|
|
499
537
|
"CMedQAv1-reranking-query": "Given a Chinese community medical question, retrieve replies that best answer the question",
|
|
500
538
|
"CMedQAv2-reranking-query": "Given a Chinese community medical question, retrieve replies that best answer the question",
|
|
539
|
+
"Ocnli": "Retrieve semantically similar text.",
|
|
540
|
+
"Cmnli": "Retrieve semantically similar text.",
|
|
501
541
|
"ArguAna-query": "Given a claim, find documents that refute the claim",
|
|
502
542
|
"ArguAna-document": "Given a claim, find documents that refute the claim",
|
|
503
543
|
"ClimateFEVER-query": "Given a claim about climate change, retrieve documents that support or refute the claim",
|
|
@@ -512,22 +552,26 @@ KaLM_X_task_prompts = {
|
|
|
512
552
|
"NFCorpus-query": "Given a question, retrieve relevant documents that best answer the question",
|
|
513
553
|
"NQ-query": "Given a question, retrieve Wikipedia passages that answer the question",
|
|
514
554
|
"QuoraRetrieval-query": "Given a question, retrieve questions that are semantically equivalent to the given question",
|
|
515
|
-
"SCIDOCS-query": "Given a scientific paper
|
|
555
|
+
"SCIDOCS-query": "Given a title of a scientific paper, retrieve the titles of other relevant papers",
|
|
516
556
|
"SciFact-query": "Given a scientific claim, retrieve documents that support or refute the claim",
|
|
517
557
|
"Touche2020-query": "Given a question, retrieve detailed and persuasive arguments that answer the question",
|
|
518
558
|
"Touche2020Retrieval.v3-query": "Given a question, retrieve detailed and persuasive arguments that answer the question",
|
|
519
|
-
"TRECCOVID-query": "Given a query
|
|
559
|
+
"TRECCOVID-query": "Given a medical query, retrieve documents that answer the query",
|
|
520
560
|
"T2Retrieval-query": "Given a Chinese search query, retrieve web passages that answer the question",
|
|
521
561
|
"MMarcoRetrieval-query": "Given a web search query, retrieve relevant passages that answer the query",
|
|
562
|
+
"VoyageMMarcoReranking-query": "Given a Japanese search query, retrieve web passages that answer the question",
|
|
522
563
|
"DuRetrieval-query": "Given a Chinese search query, retrieve web passages that answer the question",
|
|
523
564
|
"CovidRetrieval-query": "Given a question on COVID-19, retrieve news articles that answer the question",
|
|
524
565
|
"CmedqaRetrieval-query": "Given a Chinese community medical question, retrieve replies that best answer the question",
|
|
525
566
|
"EcomRetrieval-query": "Given a user query from an e-commerce website, retrieve description sentences of relevant products",
|
|
526
567
|
"MedicalRetrieval-query": "Given a medical question, retrieve user replies that best answer the question",
|
|
527
568
|
"VideoRetrieval-query": "Given a video search query, retrieve the titles of relevant videos",
|
|
569
|
+
"STSBenchmarkMultilingualSTS": "Retrieve semantically similar text",
|
|
570
|
+
"SICKFr": "Retrieve semantically similar text",
|
|
571
|
+
"SummEvalFr": "Given a news summary, retrieve other semantically similar summaries",
|
|
528
572
|
"MasakhaNEWSClassification": "Classify the News in the given texts into one of the seven category: politics,sports,health,business,entertainment,technology,religion ",
|
|
529
|
-
"
|
|
530
|
-
"
|
|
573
|
+
"OpusparcusPC": "Retrieve semantically similar text",
|
|
574
|
+
"PAWSX": "Retrieve semantically similar text",
|
|
531
575
|
"HALClusteringS2S": "Identify the main category of academic passage based on the titles and contents",
|
|
532
576
|
"MasakhaNEWSClusteringP2P": "Identify the topic or theme of the given news articles based on the titles and contents",
|
|
533
577
|
"MasakhaNEWSClusteringS2S": "Identify the topic or theme of the given news articles based on the titles",
|
|
@@ -541,10 +585,23 @@ KaLM_X_task_prompts = {
|
|
|
541
585
|
"XPQARetrieval-query": "Given a question, retrieve passages that answer the question",
|
|
542
586
|
"MintakaRetrieval-query": "Given a question, retrieve passages that answer the question",
|
|
543
587
|
"CBD": "Classify the sentiment of polish tweet reviews",
|
|
544
|
-
"PolEmo2.0-IN": "Classify the sentiment of
|
|
545
|
-
"PolEmo2.0-OUT": "Classify the sentiment of
|
|
588
|
+
"PolEmo2.0-IN": "Classify the sentiment of medicine and hotels online reviews",
|
|
589
|
+
"PolEmo2.0-OUT": "Classify the sentiment of products and school online reviews",
|
|
546
590
|
"AllegroReviews": "Classify the sentiment of reviews from e-commerce marketplace Allegro",
|
|
547
|
-
"PAC": 'Classify
|
|
591
|
+
"PAC": 'Classify Polish contract clauses into one of the following two types: "Safe Contract Clauses" and "Unfair Contract Clauses".',
|
|
592
|
+
"SICK-E-PL": "Retrieve semantically similar text",
|
|
593
|
+
"SICK-R-PL": "Retrieve semantically similar text",
|
|
594
|
+
"STS22": "Retrieve semantically similar text",
|
|
595
|
+
"AFQMC": "Retrieve semantically similar text",
|
|
596
|
+
"BQ": "Retrieve semantically similar text",
|
|
597
|
+
"LCQMC": "Retrieve semantically similar text",
|
|
598
|
+
"QBQTC": "Retrieve semantically similar text",
|
|
599
|
+
"STS12": "Retrieve semantically similar text",
|
|
600
|
+
"PpcPC": "Retrieve semantically similar text",
|
|
601
|
+
"CDSC-E": "Retrieve semantically similar text",
|
|
602
|
+
"BornholmBitextMining": "Retrieve parallel sentences",
|
|
603
|
+
"NorwegianCourtsBitextMining": "Retrieve parallel sentences",
|
|
604
|
+
"PSC": "Retrieve semantically similar text",
|
|
548
605
|
"EightTagsClustering": "Identify of headlines from social media posts in Polish into 8 categories: film, history, food, medicine, motorization, work, sport and technology",
|
|
549
606
|
"ArguAna-PL-query": "Given a claim, find documents that refute the claim",
|
|
550
607
|
"DBPedia-PL-query": "Given a query, retrieve relevant entity descriptions from DBPedia",
|
|
@@ -554,9 +611,9 @@ KaLM_X_task_prompts = {
|
|
|
554
611
|
"NFCorpus-PL-query": "Given a question, retrieve relevant documents that best answer the question",
|
|
555
612
|
"NQ-PL-query": "Given a question, retrieve Wikipedia passages that answer the question",
|
|
556
613
|
"Quora-PL-query": "Given a question, retrieve questions that are semantically equivalent to the given question",
|
|
557
|
-
"SCIDOCS-PL-query": "Given a scientific paper
|
|
614
|
+
"SCIDOCS-PL-query": "Given a title of a scientific paper, retrieve the titles of other relevant papers",
|
|
558
615
|
"SciFact-PL-query": "Given a scientific claim, retrieve documents that support or refute the claim",
|
|
559
|
-
"TRECCOVID-PL-query": "Given a query
|
|
616
|
+
"TRECCOVID-PL-query": "Given a medical query, retrieve documents that answer the query",
|
|
560
617
|
"GeoreviewClassification": "Classify the organization rating based on the reviews",
|
|
561
618
|
"HeadlineClassification": "Classify the topic or theme of the given news headline",
|
|
562
619
|
"InappropriatenessClassification": "Classify the given message as either sensitive topic or not",
|
|
@@ -567,9 +624,12 @@ KaLM_X_task_prompts = {
|
|
|
567
624
|
"GeoreviewClusteringP2P": "Identify the organization category based on the reviews",
|
|
568
625
|
"RuSciBenchGRNTIClusteringP2P": "Identify the category of scientific papers based on the titles and abstracts",
|
|
569
626
|
"RuSciBenchOECDClusteringP2P": "Identify the category of scientific papers based on the titles and abstracts",
|
|
627
|
+
"TERRa": "Given a premise, retrieve a hypothesis that is entailed by the premise",
|
|
570
628
|
"RuBQReranking-query": "Given a question, retrieve Wikipedia passages that answer the question",
|
|
571
629
|
"RiaNewsRetrieval-query": "Given a headline, retrieval relevant articles",
|
|
572
630
|
"RuBQRetrieval-query": "Given a question, retrieve Wikipedia passages that answer the question",
|
|
631
|
+
"RUParaPhraserSTS": "Retrieve semantically similar text",
|
|
632
|
+
"RuSTSBenchmarkSTS": "Retrieve semantically similar text",
|
|
573
633
|
"AppsRetrieval-query": "Given a question about code problem, retrieval code that can solve user's problem",
|
|
574
634
|
"COIRCodeSearchNetRetrieval-query": "Given a code snippet, retrieve the comment corresponding to that code.",
|
|
575
635
|
"CodeEditSearchRetrieval-query": "Given a piece of code, retrieval code that in the ",
|
|
@@ -582,8 +642,19 @@ KaLM_X_task_prompts = {
|
|
|
582
642
|
"CosQA-query": "Given a question about coding, retrieval code or passage that can solve user's question",
|
|
583
643
|
"StackOverflowQA-query": "Given a question about coding, retrieval code or passage that can solve user's question",
|
|
584
644
|
"SyntheticText2SQL-query": "Given a user's question, retrieve SQL queries that are appropriate responses to the question",
|
|
585
|
-
"
|
|
586
|
-
"
|
|
645
|
+
"BibleNLPBitextMining": "Retrieve parallel sentences",
|
|
646
|
+
"BUCC.v2": "Retrieve parallel sentences",
|
|
647
|
+
"DiaBlaBitextMining": "Retrieve parallel sentences",
|
|
648
|
+
"FloresBitextMining": "Retrieve parallel sentences",
|
|
649
|
+
"IN22GenBitextMining": "Retrieve parallel sentences",
|
|
650
|
+
"IndicGenBenchFloresBitextMining": "Retrieve parallel sentences",
|
|
651
|
+
"NollySentiBitextMining": "Retrieve parallel sentences",
|
|
652
|
+
"NTREXBitextMining": "Retrieve parallel sentences",
|
|
653
|
+
"NusaTranslationBitextMining": "Retrieve parallel sentences",
|
|
654
|
+
"NusaXBitextMining": "Retrieve parallel sentences",
|
|
655
|
+
"Tatoeba": "Retrieve parallel sentences",
|
|
656
|
+
"BulgarianStoreReviewSentimentClassfication": "Classify user reviews into positive, negative or mixed sentiment",
|
|
657
|
+
"CzechProductReviewSentimentClassification": "Classify product reviews into positive, neutral, or negative sentiment",
|
|
587
658
|
"GreekLegalCodeClassification": "Given a greek legal text, classify its topic",
|
|
588
659
|
"DBpediaClassification": "Given a Wikipedia articles, categorized it into classes based on its DBpedia ontology",
|
|
589
660
|
"FinancialPhrasebankClassification": "Given financial news, categorized by sentiment into positive, negative, or neutral",
|
|
@@ -611,7 +682,7 @@ KaLM_X_task_prompts = {
|
|
|
611
682
|
"PunjabiNewsClassification": "Given a news article, categorized it into two-classes",
|
|
612
683
|
"SinhalaNewsClassification": "Given a news article, categorized it into political, business, technology, sports and Entertainment",
|
|
613
684
|
"CSFDSKMovieReviewSentimentClassification": "Given a movie review, classify its rating on a scale from 0 to 5",
|
|
614
|
-
"SiswatiNewsClassification": "Given a news article, classify its topic",
|
|
685
|
+
"SiswatiNewsClassification": "Given a news article in Siswati, classify its topic",
|
|
615
686
|
"SlovakMovieReviewSentimentClassification": "Given a movie review, categorized it into positive or negative",
|
|
616
687
|
"SwahiliNewsClassification": "Given a news article, classify its domain",
|
|
617
688
|
"TswanaNewsClassification": "Given a news article, classify its topic",
|
|
@@ -621,7 +692,9 @@ KaLM_X_task_prompts = {
|
|
|
621
692
|
"ArXivHierarchicalClusteringP2P": "Identify the main and secondary category of Arxiv papers based on the titles and abstracts",
|
|
622
693
|
"ArXivHierarchicalClusteringS2S": "Identify the main and secondary category of Arxiv papers based on the titles",
|
|
623
694
|
"BigPatentClustering.v2": "Identify the category of documents from the Big Patent dataset",
|
|
695
|
+
"AlloProfClusteringS2S": "Identify the topic of document titles from Allo Prof dataset",
|
|
624
696
|
"AlloProfClusteringS2S.v2": "Identify the topic of document titles from Allo Prof dataset",
|
|
697
|
+
"AlloProfClusteringP2P": "Identify the topic of document titles and descriptions from Allo Prof dataset",
|
|
625
698
|
"HALClusteringS2S.v2": "Identify the topic of titles from HAL",
|
|
626
699
|
"SIB200ClusteringS2S": "Identify the category of documents",
|
|
627
700
|
"WikiClusteringP2P.v2": "Identify the category of wiki passages",
|
|
@@ -629,26 +702,60 @@ KaLM_X_task_prompts = {
|
|
|
629
702
|
"KorHateSpeechMLClassification": "Given a Korean online news comments, classify its fine-grained hate speech classes",
|
|
630
703
|
"MalteseNewsClassification": "Given a maltese new, classify its topic",
|
|
631
704
|
"MultiEURLEXMultilabelClassification": "Given a text, classify its topic",
|
|
632
|
-
"BrazilianToxicTweetsClassification": "
|
|
705
|
+
"BrazilianToxicTweetsClassification": "Classify the toxic tweets in Brazilian Portuguese into one of the six categories: LGBTQ+phobia, Xenophobia, Obscene, Insult, Misogyny and Racism.",
|
|
706
|
+
"CTKFactsNLI": "Retrieve semantically similar text",
|
|
707
|
+
"indonli": "Retrieve semantically similar text",
|
|
708
|
+
"ArmenianParaphrasePC": "Retrieve semantically similar text",
|
|
709
|
+
"PawsXPairClassification": "Retrieve semantically similar text",
|
|
710
|
+
"RTE3": "Retrieve semantically similar text",
|
|
711
|
+
"XNLI": "Retrieve semantically similar text",
|
|
712
|
+
"GermanSTSBenchmark": "Retrieve semantically similar text",
|
|
713
|
+
"SICK-R": "Retrieve semantically similar text",
|
|
714
|
+
"STS13": "Retrieve semantically similar text",
|
|
715
|
+
"STS14": "Retrieve semantically similar text",
|
|
716
|
+
"STSBenchmark": "Retrieve semantically similar text",
|
|
717
|
+
"FaroeseSTS": "Retrieve semantically similar text",
|
|
718
|
+
"FinParaSTS": "Retrieve semantically similar text",
|
|
719
|
+
"JSICK": "Retrieve semantically similar text",
|
|
720
|
+
"IndicCrosslingualSTS": "Retrieve parallel sentences",
|
|
721
|
+
"SemRel24STS": "Retrieve semantically similar text",
|
|
722
|
+
"STS17": "Retrieve semantically similar text",
|
|
723
|
+
"STS22.v2": "Retrieve semantically similar text",
|
|
724
|
+
"STSES": "Retrieve semantically similar text",
|
|
725
|
+
"STSB": "Retrieve semantically similar text",
|
|
633
726
|
"AILAStatutes-query": "Identifying the most relevant statutes for a given situation",
|
|
634
|
-
"HagridRetrieval-query": "
|
|
635
|
-
"LegalBenchCorporateLobbying-query": "
|
|
727
|
+
"HagridRetrieval-query": "Given an information-seeking question, retrieve the best replies to answer the question",
|
|
728
|
+
"LegalBenchCorporateLobbying-query": "Given a query, retrieve relevant legal bill summaries",
|
|
636
729
|
"LEMBPasskeyRetrieval-query": "Retrieval the relevant passage for the given query",
|
|
637
730
|
"BelebeleRetrieval-query": "Retrieval the relevant passage for the given query",
|
|
638
731
|
"MLQARetrieval-query": "Retrieval the relevant passage for the given query",
|
|
639
732
|
"StatcanDialogueDatasetRetrieval-query": "Retrieval the relevant passage for the given query",
|
|
640
733
|
"WikipediaRetrievalMultilingual-query": "Retrieval the relevant passage for the given query",
|
|
641
|
-
"Core17InstructionRetrieval-query": "Retrieval the relevant passage for the given query",
|
|
642
|
-
"News21InstructionRetrieval-query": "Retrieval the relevant passage for the given query",
|
|
643
|
-
"Robust04InstructionRetrieval-query": "Retrieval the relevant passage for the given query",
|
|
734
|
+
"Core17InstructionRetrieval-query": "Retrieval the relevant passage for the given query with conditions",
|
|
735
|
+
"News21InstructionRetrieval-query": "Retrieval the relevant passage for the given query with conditions",
|
|
736
|
+
"Robust04InstructionRetrieval-query": "Retrieval the relevant passage for the given query with conditions",
|
|
644
737
|
"WebLINXCandidatesReranking-query": "Retrieval the relevant passage for the given query",
|
|
645
738
|
"WikipediaRerankingMultilingual-query": "Retrieval the relevant passage for the given query",
|
|
739
|
+
"STS15": "Retrieve semantically similar text",
|
|
646
740
|
"MIRACLRetrievalHardNegatives-query": "Retrieval relevant passage for the given query",
|
|
741
|
+
"BIOSSES": "Retrieve semantically similar text",
|
|
647
742
|
"CQADupstackRetrieval-query": "Given a question, retrieve detailed question descriptions from Stackexchange that are duplicates to the given question",
|
|
648
743
|
"CQADupstackGamingRetrieval-query": "Given a question, retrieve detailed question descriptions from Stackexchange that are duplicates to the given question",
|
|
649
744
|
"CQADupstackGamingRetrieval-document": "Given a question, retrieve detailed question descriptions from Stackexchange that are duplicates to the given question",
|
|
650
745
|
"CQADupstackUnixRetrieval-query": "Given a question, retrieve detailed question descriptions from Stackexchange that are duplicates to the given question",
|
|
651
746
|
"CQADupstackUnixRetrieval-document": "Given a question, retrieve detailed question descriptions from Stackexchange that are duplicates to the given question",
|
|
747
|
+
"STS16": "Retrieve semantically similar text",
|
|
748
|
+
"SummEval": "Retrieve semantically similar text",
|
|
749
|
+
"ATEC": "Retrieve semantically similar text",
|
|
750
|
+
"ScalaClassification": "Classify passages into correct or correct in Scandinavian Languages based on linguistic acceptability",
|
|
751
|
+
"SpartQA-query": "Given the following spatial reasoning question, retrieve the right answer.",
|
|
752
|
+
"CEDRClassification": "Given a comment as query, classify expressed emotions into joy, sadness, surprise, fear, and anger",
|
|
753
|
+
"DalajClassification": "Classify texts based on linguistic acceptability in Swedish",
|
|
754
|
+
"TempReasonL1-query": "Given the following question about time, retrieve the correct answer.",
|
|
755
|
+
"WinoGrande-query": "Given the following sentence, retrieve an appropriate answer to fill in the missing underscored part.",
|
|
756
|
+
"NordicLangClassification": "Classify texts based on language",
|
|
757
|
+
"TwitterHjerneRetrieval-query": "Retrieve answers to questions asked in Danish tweets",
|
|
758
|
+
"SwednClusteringP2P": "Identify news categories in Swedish passages",
|
|
652
759
|
}
|
|
653
760
|
|
|
654
761
|
KaLM_INSTRUCTION = "Instruct: {instruction} \n Query: "
|
|
@@ -795,3 +902,30 @@ KaLM_Embedding_KaLM_embedding_multilingual_mini_instruct_v2_5 = ModelMeta(
|
|
|
795
902
|
adapted_from="HIT-TMG/KaLM-embedding-multilingual-mini-instruct-v2",
|
|
796
903
|
superseded_by=None,
|
|
797
904
|
)
|
|
905
|
+
|
|
906
|
+
KaLM_Embedding_gemma_3_12b_2511 = ModelMeta(
|
|
907
|
+
loader=InstructSentenceTransformerModel,
|
|
908
|
+
loader_kwargs=dict(
|
|
909
|
+
instruction_template=KaLM_INSTRUCTION,
|
|
910
|
+
max_seq_length=512,
|
|
911
|
+
apply_instruction_to_passages=True,
|
|
912
|
+
prompts_dict=KaLM_Embedding_gemma_3_12b_task_prompts,
|
|
913
|
+
),
|
|
914
|
+
name="tencent/KaLM-Embedding-Gemma3-12B-2511",
|
|
915
|
+
revision="edf22f4753f58b05e3f5495818d31f12db63056d",
|
|
916
|
+
languages=None,
|
|
917
|
+
open_weights=True,
|
|
918
|
+
release_date="2025-11-06",
|
|
919
|
+
n_parameters=11.76 * 1e9,
|
|
920
|
+
memory_usage_mb=44884,
|
|
921
|
+
max_tokens=32768,
|
|
922
|
+
embed_dim=3840,
|
|
923
|
+
license=None,
|
|
924
|
+
reference="https://kalm-embedding.github.io/",
|
|
925
|
+
similarity_fn_name="cosine",
|
|
926
|
+
framework=["Sentence Transformers", "PyTorch"],
|
|
927
|
+
use_instructions=True,
|
|
928
|
+
public_training_code="https://github.com/HITsz-TMG/KaLM-Embedding",
|
|
929
|
+
public_training_data=None,
|
|
930
|
+
training_datasets=KaLM_Embedding_gemma_3_12b_training_data,
|
|
931
|
+
)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import numpy as np
|
|
2
|
+
|
|
3
|
+
from mteb.models.model_implementations.model2vec_models import Model2VecModel
|
|
4
|
+
from mteb.models.model_meta import ModelMeta, ScoringFunction
|
|
5
|
+
|
|
6
|
+
potion_base_8m = ModelMeta(
|
|
7
|
+
loader=Model2VecModel, # type: ignore
|
|
8
|
+
name="rasgaard/m2v-dfm-large",
|
|
9
|
+
languages=["dan-Latn"],
|
|
10
|
+
open_weights=True,
|
|
11
|
+
revision="387897cfb09992e6d45ea9cd7b28b9fcf119e23a",
|
|
12
|
+
release_date="2025-10-08",
|
|
13
|
+
n_parameters=22893312,
|
|
14
|
+
memory_usage_mb=87,
|
|
15
|
+
max_tokens=np.inf,
|
|
16
|
+
embed_dim=256,
|
|
17
|
+
license="mit",
|
|
18
|
+
similarity_fn_name=ScoringFunction.COSINE,
|
|
19
|
+
framework=["NumPy", "Sentence Transformers"],
|
|
20
|
+
reference="https://huggingface.co/minishlab/rasgaard/m2v-dfm-large",
|
|
21
|
+
use_instructions=False,
|
|
22
|
+
adapted_from="KennethEnevoldsen/dfm-sentence-encoder-large",
|
|
23
|
+
superseded_by=None,
|
|
24
|
+
training_datasets=set(), # distilled
|
|
25
|
+
public_training_code="https://github.com/MinishLab/model2vec",
|
|
26
|
+
public_training_data="https://huggingface.co/datasets/HuggingFaceFW/fineweb-2", # distilled on this
|
|
27
|
+
)
|
|
@@ -40,7 +40,7 @@ tarka_embedding_150m_v1 = ModelMeta(
|
|
|
40
40
|
name="Tarka-AIR/Tarka-Embedding-150M-V1",
|
|
41
41
|
languages=MULTILINGUAL_EVALUATED_LANGUAGES,
|
|
42
42
|
open_weights=True,
|
|
43
|
-
revision="
|
|
43
|
+
revision="b0ffecc4ef0d873e517507ed080e43b88b2704b9",
|
|
44
44
|
release_date="2025-11-04",
|
|
45
45
|
n_parameters=155_714_304,
|
|
46
46
|
embed_dim=768,
|
|
@@ -49,7 +49,8 @@ class DutchBookReviewSentimentClassificationV2(AbsTaskClassification):
|
|
|
49
49
|
metadata = TaskMetadata(
|
|
50
50
|
name="DutchBookReviewSentimentClassification.v2",
|
|
51
51
|
description="""A Dutch book review for sentiment classification.
|
|
52
|
-
This version corrects errors found in the original data. For details, see [pull request](https://github.com/embeddings-benchmark/mteb/pull/2900)
|
|
52
|
+
This version corrects errors found in the original data. For details, see [pull request](https://github.com/embeddings-benchmark/mteb/pull/2900).
|
|
53
|
+
Additionally, a Dutch prompt was included.""",
|
|
53
54
|
reference="https://github.com/benjaminvdb/DBRD",
|
|
54
55
|
dataset={
|
|
55
56
|
"path": "mteb/dutch_book_review_sentiment",
|
|
@@ -86,4 +87,7 @@ Suzan, Verberne},
|
|
|
86
87
|
}
|
|
87
88
|
""",
|
|
88
89
|
adapted_from=["DutchBookReviewSentimentClassification"],
|
|
90
|
+
prompt={
|
|
91
|
+
"query": "Classificeer de gegeven boekrecensie als positieve of negatieve sentiment"
|
|
92
|
+
},
|
|
89
93
|
)
|
{mteb-2.1.5 → mteb-2.1.7}/mteb/tasks/classification/nld/dutch_sarcastic_headlines_classification.py
RENAMED
|
@@ -27,6 +27,9 @@ class DutchSarcasticHeadlinesClassification(AbsTaskClassification):
|
|
|
27
27
|
dialect=[],
|
|
28
28
|
sample_creation="found",
|
|
29
29
|
bibtex_citation="""""",
|
|
30
|
+
prompt={
|
|
31
|
+
"query": "Classificeer de gegeven krantenkop als sarcastisch of niet sarcastisch"
|
|
32
|
+
},
|
|
30
33
|
)
|
|
31
34
|
|
|
32
35
|
def dataset_transform(self):
|