dslighting 1.7.1__py3-none-any.whl → 1.7.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dslighting/__init__.py +1 -1
- dslighting/core/agent.py +78 -62
- {dslighting-1.7.1.dist-info → dslighting-1.7.8.dist-info}/METADATA +3 -1
- {dslighting-1.7.1.dist-info → dslighting-1.7.8.dist-info}/RECORD +352 -7
- {dslighting-1.7.1.dist-info → dslighting-1.7.8.dist-info}/top_level.txt +1 -0
- mlebench/README.md +39 -0
- mlebench/__init__.py +0 -0
- mlebench/cli.py +221 -0
- mlebench/competitions/3d-object-detection-for-autonomous-vehicles/grade.py +161 -0
- mlebench/competitions/3d-object-detection-for-autonomous-vehicles/mAP_evaluation.py +425 -0
- mlebench/competitions/3d-object-detection-for-autonomous-vehicles/prepare.py +483 -0
- mlebench/competitions/3d-object-detection-for-autonomous-vehicles/prepare_val.py +719 -0
- mlebench/competitions/AI4Code/grade.py +70 -0
- mlebench/competitions/AI4Code/prepare.py +84 -0
- mlebench/competitions/AI4Code/prepare_val.py +159 -0
- mlebench/competitions/__init__.py +0 -0
- mlebench/competitions/aerial-cactus-identification/grade.py +11 -0
- mlebench/competitions/aerial-cactus-identification/prepare.py +71 -0
- mlebench/competitions/aerial-cactus-identification/prepare_val.py +133 -0
- mlebench/competitions/alaska2-image-steganalysis/grade.py +136 -0
- mlebench/competitions/alaska2-image-steganalysis/prepare.py +88 -0
- mlebench/competitions/alaska2-image-steganalysis/prepare_val.py +148 -0
- mlebench/competitions/aptos2019-blindness-detection/grade.py +35 -0
- mlebench/competitions/aptos2019-blindness-detection/prepare.py +75 -0
- mlebench/competitions/aptos2019-blindness-detection/prepare_val.py +123 -0
- mlebench/competitions/bike-sharing-demand/__init__.py +0 -0
- mlebench/competitions/bike-sharing-demand/grade.py +55 -0
- mlebench/competitions/bike-sharing-demand/prepare.py +37 -0
- mlebench/competitions/billion-word-imputation/grade.py +37 -0
- mlebench/competitions/billion-word-imputation/prepare.py +107 -0
- mlebench/competitions/billion-word-imputation/prepare_val.py +179 -0
- mlebench/competitions/bms-molecular-translation/grade.py +40 -0
- mlebench/competitions/bms-molecular-translation/prepare.py +68 -0
- mlebench/competitions/bms-molecular-translation/prepare_val.py +131 -0
- mlebench/competitions/cassava-leaf-disease-classification/grade.py +12 -0
- mlebench/competitions/cassava-leaf-disease-classification/prepare.py +113 -0
- mlebench/competitions/cassava-leaf-disease-classification/prepare_val.py +186 -0
- mlebench/competitions/cdiscount-image-classification-challenge/grade.py +11 -0
- mlebench/competitions/cdiscount-image-classification-challenge/prepare.py +144 -0
- mlebench/competitions/cdiscount-image-classification-challenge/prepare_val.py +205 -0
- mlebench/competitions/chaii-hindi-and-tamil-question-answering/grade.py +67 -0
- mlebench/competitions/chaii-hindi-and-tamil-question-answering/prepare.py +31 -0
- mlebench/competitions/chaii-hindi-and-tamil-question-answering/prepare_val.py +94 -0
- mlebench/competitions/champs-scalar-coupling/grade.py +60 -0
- mlebench/competitions/champs-scalar-coupling/prepare.py +116 -0
- mlebench/competitions/champs-scalar-coupling/prepare_val.py +155 -0
- mlebench/competitions/conways-reverse-game-of-life-2020/__init__.py +0 -0
- mlebench/competitions/conways-reverse-game-of-life-2020/grade.py +40 -0
- mlebench/competitions/conways-reverse-game-of-life-2020/prepare.py +41 -0
- mlebench/competitions/demand-forecasting-kernels-only/__init__.py +0 -0
- mlebench/competitions/demand-forecasting-kernels-only/grade.py +66 -0
- mlebench/competitions/demand-forecasting-kernels-only/prepare.py +27 -0
- mlebench/competitions/demand_forecasting_kernels_only/__init__.py +0 -0
- mlebench/competitions/demand_forecasting_kernels_only/grade.py +66 -0
- mlebench/competitions/demand_forecasting_kernels_only/prepare.py +27 -0
- mlebench/competitions/denoising-dirty-documents/grade.py +44 -0
- mlebench/competitions/denoising-dirty-documents/prepare.py +134 -0
- mlebench/competitions/denoising-dirty-documents/prepare_val.py +178 -0
- mlebench/competitions/detecting-insults-in-social-commentary/grade.py +11 -0
- mlebench/competitions/detecting-insults-in-social-commentary/prepare.py +72 -0
- mlebench/competitions/detecting-insults-in-social-commentary/prepare_val.py +128 -0
- mlebench/competitions/dog-breed-identification/dogs.py +124 -0
- mlebench/competitions/dog-breed-identification/grade.py +42 -0
- mlebench/competitions/dog-breed-identification/prepare.py +55 -0
- mlebench/competitions/dog-breed-identification/prepare_val.py +104 -0
- mlebench/competitions/dogs-vs-cats-redux-kernels-edition/grade.py +43 -0
- mlebench/competitions/dogs-vs-cats-redux-kernels-edition/prepare.py +70 -0
- mlebench/competitions/dogs-vs-cats-redux-kernels-edition/prepare_val.py +143 -0
- mlebench/competitions/ethanol-concentration/grade.py +23 -0
- mlebench/competitions/ethanol-concentration/prepare.py +90 -0
- mlebench/competitions/facebook-recruiting-iii-keyword-extraction/grade.py +60 -0
- mlebench/competitions/facebook-recruiting-iii-keyword-extraction/prepare.py +41 -0
- mlebench/competitions/facebook-recruiting-iii-keyword-extraction/prepare_val.py +92 -0
- mlebench/competitions/feedback-prize-english-language-learning/__init__.py +0 -0
- mlebench/competitions/feedback-prize-english-language-learning/grade.py +60 -0
- mlebench/competitions/feedback-prize-english-language-learning/prepare.py +39 -0
- mlebench/competitions/freesound-audio-tagging-2019/grade.py +64 -0
- mlebench/competitions/freesound-audio-tagging-2019/prepare.py +94 -0
- mlebench/competitions/freesound-audio-tagging-2019/prepare_val.py +175 -0
- mlebench/competitions/freesound-audio-tagging-2019/vocabulary.py +83 -0
- mlebench/competitions/google-quest-challenge/classes.py +32 -0
- mlebench/competitions/google-quest-challenge/grade.py +45 -0
- mlebench/competitions/google-quest-challenge/prepare.py +58 -0
- mlebench/competitions/google-quest-challenge/prepare_val.py +120 -0
- mlebench/competitions/google-research-identify-contrails-reduce-global-warming/grade.py +77 -0
- mlebench/competitions/google-research-identify-contrails-reduce-global-warming/prepare.py +155 -0
- mlebench/competitions/google-research-identify-contrails-reduce-global-warming/prepare_val.py +211 -0
- mlebench/competitions/h-and-m-personalized-fashion-recommendations/grade.py +42 -0
- mlebench/competitions/h-and-m-personalized-fashion-recommendations/prepare.py +102 -0
- mlebench/competitions/h-and-m-personalized-fashion-recommendations/prepare_val.py +132 -0
- mlebench/competitions/handwriting/grade.py +23 -0
- mlebench/competitions/handwriting/prepare.py +179 -0
- mlebench/competitions/herbarium-2020-fgvc7/grade.py +34 -0
- mlebench/competitions/herbarium-2020-fgvc7/prepare.py +251 -0
- mlebench/competitions/herbarium-2020-fgvc7/prepare_val.py +242 -0
- mlebench/competitions/herbarium-2021-fgvc8/grade.py +34 -0
- mlebench/competitions/herbarium-2021-fgvc8/prepare.py +251 -0
- mlebench/competitions/herbarium-2021-fgvc8/prepare_val.py +222 -0
- mlebench/competitions/herbarium-2022-fgvc9/grade.py +31 -0
- mlebench/competitions/herbarium-2022-fgvc9/prepare.py +233 -0
- mlebench/competitions/herbarium-2022-fgvc9/prepare_val.py +213 -0
- mlebench/competitions/histopathologic-cancer-detection/grade.py +12 -0
- mlebench/competitions/histopathologic-cancer-detection/prepare.py +59 -0
- mlebench/competitions/histopathologic-cancer-detection/prepare_val.py +131 -0
- mlebench/competitions/hms-harmful-brain-activity-classification/constants.py +9 -0
- mlebench/competitions/hms-harmful-brain-activity-classification/grade.py +43 -0
- mlebench/competitions/hms-harmful-brain-activity-classification/kaggle_metric_utilities.py +96 -0
- mlebench/competitions/hms-harmful-brain-activity-classification/kullback_leibler_divergence.py +118 -0
- mlebench/competitions/hms-harmful-brain-activity-classification/prepare.py +121 -0
- mlebench/competitions/hms-harmful-brain-activity-classification/prepare_val.py +190 -0
- mlebench/competitions/hotel-id-2021-fgvc8/grade.py +41 -0
- mlebench/competitions/hotel-id-2021-fgvc8/prepare.py +63 -0
- mlebench/competitions/hotel-id-2021-fgvc8/prepare_val.py +132 -0
- mlebench/competitions/hubmap-kidney-segmentation/grade.py +62 -0
- mlebench/competitions/hubmap-kidney-segmentation/prepare.py +108 -0
- mlebench/competitions/hubmap-kidney-segmentation/prepare_val.py +153 -0
- mlebench/competitions/icecube-neutrinos-in-deep-ice/grade.py +111 -0
- mlebench/competitions/icecube-neutrinos-in-deep-ice/prepare.py +127 -0
- mlebench/competitions/icecube-neutrinos-in-deep-ice/prepare_val.py +183 -0
- mlebench/competitions/ili/grade.py +60 -0
- mlebench/competitions/ili/prepare.py +99 -0
- mlebench/competitions/imet-2020-fgvc7/grade.py +54 -0
- mlebench/competitions/imet-2020-fgvc7/prepare.py +77 -0
- mlebench/competitions/imet-2020-fgvc7/prepare_val.py +157 -0
- mlebench/competitions/inaturalist-2019-fgvc6/grade.py +35 -0
- mlebench/competitions/inaturalist-2019-fgvc6/prepare.py +259 -0
- mlebench/competitions/inaturalist-2019-fgvc6/prepare_val.py +304 -0
- mlebench/competitions/instant-gratification/__init__.py +0 -0
- mlebench/competitions/instant-gratification/grade.py +55 -0
- mlebench/competitions/instant-gratification/prepare.py +25 -0
- mlebench/competitions/instant_gratification/__init__.py +0 -0
- mlebench/competitions/instant_gratification/grade.py +55 -0
- mlebench/competitions/instant_gratification/prepare.py +25 -0
- mlebench/competitions/invasive-species-monitoring/grade.py +11 -0
- mlebench/competitions/invasive-species-monitoring/prepare.py +97 -0
- mlebench/competitions/invasive-species-monitoring/prepare_val.py +164 -0
- mlebench/competitions/iwildcam-2019-fgvc6/grade.py +44 -0
- mlebench/competitions/iwildcam-2019-fgvc6/prepare.py +118 -0
- mlebench/competitions/iwildcam-2019-fgvc6/prepare_val.py +194 -0
- mlebench/competitions/iwildcam-2020-fgvc7/grade.py +11 -0
- mlebench/competitions/iwildcam-2020-fgvc7/prepare.py +164 -0
- mlebench/competitions/iwildcam-2020-fgvc7/prepare_val.py +245 -0
- mlebench/competitions/jigsaw-toxic-comment-classification-challenge/classes.py +1 -0
- mlebench/competitions/jigsaw-toxic-comment-classification-challenge/grade.py +54 -0
- mlebench/competitions/jigsaw-toxic-comment-classification-challenge/prepare.py +42 -0
- mlebench/competitions/jigsaw-toxic-comment-classification-challenge/prepare_val.py +88 -0
- mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/grade.py +153 -0
- mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/prepare.py +36 -0
- mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/prepare_val.py +117 -0
- mlebench/competitions/kuzushiji-recognition/grade.py +58 -0
- mlebench/competitions/kuzushiji-recognition/kuzushiji_metric.py +118 -0
- mlebench/competitions/kuzushiji-recognition/prepare.py +92 -0
- mlebench/competitions/kuzushiji-recognition/prepare_val.py +149 -0
- mlebench/competitions/leaf-classification/classes.py +101 -0
- mlebench/competitions/leaf-classification/grade.py +44 -0
- mlebench/competitions/leaf-classification/prepare.py +60 -0
- mlebench/competitions/leaf-classification/prepare_val.py +116 -0
- mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/grade.py +44 -0
- mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/prepare.py +51 -0
- mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/prepare_val.py +96 -0
- mlebench/competitions/liverpool-ion-switching/__init__.py +0 -0
- mlebench/competitions/liverpool-ion-switching/grade.py +52 -0
- mlebench/competitions/liverpool-ion-switching/prepare.py +27 -0
- mlebench/competitions/liverpool_ion_switching/__init__.py +0 -0
- mlebench/competitions/liverpool_ion_switching/grade.py +52 -0
- mlebench/competitions/liverpool_ion_switching/prepare.py +27 -0
- mlebench/competitions/lmsys-chatbot-arena/grade.py +63 -0
- mlebench/competitions/lmsys-chatbot-arena/prepare.py +52 -0
- mlebench/competitions/lmsys-chatbot-arena/prepare_val.py +115 -0
- mlebench/competitions/mcm_2024_c_test/grade.py +107 -0
- mlebench/competitions/mcm_2024_c_test/prepare.py +2 -0
- mlebench/competitions/ml2021spring-hw2/grade.py +11 -0
- mlebench/competitions/ml2021spring-hw2/prepare.py +58 -0
- mlebench/competitions/ml2021spring-hw2/prepare_val.py +135 -0
- mlebench/competitions/mlsp-2013-birds/grade.py +11 -0
- mlebench/competitions/mlsp-2013-birds/prepare.py +182 -0
- mlebench/competitions/mlsp-2013-birds/prepare_val.py +241 -0
- mlebench/competitions/movie-review-sentiment-analysis-kernels-only/grade.py +11 -0
- mlebench/competitions/movie-review-sentiment-analysis-kernels-only/prepare.py +58 -0
- mlebench/competitions/movie-review-sentiment-analysis-kernels-only/prepare_val.py +120 -0
- mlebench/competitions/multi-modal-gesture-recognition/grade.py +58 -0
- mlebench/competitions/multi-modal-gesture-recognition/prepare.py +85 -0
- mlebench/competitions/multi-modal-gesture-recognition/prepare_val.py +139 -0
- mlebench/competitions/my-custom-task-01/prepare.py +2 -0
- mlebench/competitions/new-my-task-01/prepare.py +2 -0
- mlebench/competitions/new-my-task-03/grade.py +107 -0
- mlebench/competitions/new-my-task-03/prepare.py +2 -0
- mlebench/competitions/new-york-city-taxi-fare-prediction/grade.py +28 -0
- mlebench/competitions/new-york-city-taxi-fare-prediction/prepare.py +44 -0
- mlebench/competitions/new-york-city-taxi-fare-prediction/prepare_val.py +89 -0
- mlebench/competitions/nfl-player-contact-detection/grade.py +36 -0
- mlebench/competitions/nfl-player-contact-detection/prepare.py +101 -0
- mlebench/competitions/nfl-player-contact-detection/prepare_val.py +186 -0
- mlebench/competitions/nomad2018-predict-transparent-conductors/grade.py +47 -0
- mlebench/competitions/nomad2018-predict-transparent-conductors/prepare.py +77 -0
- mlebench/competitions/nomad2018-predict-transparent-conductors/prepare_val.py +144 -0
- mlebench/competitions/osic-pulmonary-fibrosis-progression/grade.py +74 -0
- mlebench/competitions/osic-pulmonary-fibrosis-progression/prepare.py +95 -0
- mlebench/competitions/osic-pulmonary-fibrosis-progression/prepare_val.py +167 -0
- mlebench/competitions/paddy-disease-classification/grade.py +35 -0
- mlebench/competitions/paddy-disease-classification/prepare.py +69 -0
- mlebench/competitions/paddy-disease-classification/prepare_val.py +122 -0
- mlebench/competitions/petfinder-pawpularity-score/grade.py +41 -0
- mlebench/competitions/petfinder-pawpularity-score/prepare.py +76 -0
- mlebench/competitions/petfinder-pawpularity-score/prepare_val.py +154 -0
- mlebench/competitions/plant-pathology-2020-fgvc7/grade.py +41 -0
- mlebench/competitions/plant-pathology-2020-fgvc7/prepare.py +74 -0
- mlebench/competitions/plant-pathology-2020-fgvc7/prepare_val.py +160 -0
- mlebench/competitions/plant-pathology-2021-fgvc8/grade.py +54 -0
- mlebench/competitions/plant-pathology-2021-fgvc8/prepare.py +65 -0
- mlebench/competitions/plant-pathology-2021-fgvc8/prepare_val.py +130 -0
- mlebench/competitions/plant-seedlings-classification/grade.py +39 -0
- mlebench/competitions/plant-seedlings-classification/prepare.py +91 -0
- mlebench/competitions/plant-seedlings-classification/prepare_val.py +158 -0
- mlebench/competitions/playground-series-s3e1/__init__.py +0 -0
- mlebench/competitions/playground-series-s3e1/grade.py +52 -0
- mlebench/competitions/playground-series-s3e1/prepare.py +25 -0
- mlebench/competitions/playground-series-s3e11/__init__.py +0 -0
- mlebench/competitions/playground-series-s3e11/grade.py +55 -0
- mlebench/competitions/playground-series-s3e11/prepare.py +25 -0
- mlebench/competitions/playground-series-s3e18/grade.py +39 -0
- mlebench/competitions/playground-series-s3e18/prepare.py +36 -0
- mlebench/competitions/playground-series-s3e18/prepare_val.py +89 -0
- mlebench/competitions/playground_series_s3e1/__init__.py +0 -0
- mlebench/competitions/playground_series_s3e1/grade.py +52 -0
- mlebench/competitions/playground_series_s3e1/prepare.py +25 -0
- mlebench/competitions/playground_series_s3e11/__init__.py +0 -0
- mlebench/competitions/playground_series_s3e11/grade.py +55 -0
- mlebench/competitions/playground_series_s3e11/prepare.py +25 -0
- mlebench/competitions/predict-volcanic-eruptions-ingv-oe/grade.py +44 -0
- mlebench/competitions/predict-volcanic-eruptions-ingv-oe/prepare.py +68 -0
- mlebench/competitions/predict-volcanic-eruptions-ingv-oe/prepare_val.py +146 -0
- mlebench/competitions/random-acts-of-pizza/grade.py +14 -0
- mlebench/competitions/random-acts-of-pizza/prepare.py +80 -0
- mlebench/competitions/random-acts-of-pizza/prepare_val.py +144 -0
- mlebench/competitions/ranzcr-clip-catheter-line-classification/classes.py +11 -0
- mlebench/competitions/ranzcr-clip-catheter-line-classification/grade.py +31 -0
- mlebench/competitions/ranzcr-clip-catheter-line-classification/prepare.py +53 -0
- mlebench/competitions/ranzcr-clip-catheter-line-classification/prepare_val.py +113 -0
- mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/grade.py +124 -0
- mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/prepare.py +219 -0
- mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/prepare_val.py +257 -0
- mlebench/competitions/rsna-breast-cancer-detection/grade.py +65 -0
- mlebench/competitions/rsna-breast-cancer-detection/prepare.py +141 -0
- mlebench/competitions/rsna-breast-cancer-detection/prepare_val.py +201 -0
- mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/grade.py +13 -0
- mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/prepare.py +47 -0
- mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/prepare_val.py +97 -0
- mlebench/competitions/santander-customer-satisfaction/grade.py +10 -0
- mlebench/competitions/santander-customer-satisfaction/prepare.py +41 -0
- mlebench/competitions/sciencebench-001-clintox-nn/__init__.py +0 -0
- mlebench/competitions/sciencebench-001-clintox-nn/grade.py +56 -0
- mlebench/competitions/sciencebench-001-clintox-nn/prepare.py +75 -0
- mlebench/competitions/sciencebench-015-aai/grade.py +37 -0
- mlebench/competitions/sciencebench-015-aai/prepare.py +102 -0
- mlebench/competitions/sciencebench-051-brain-blood-qsar/grade.py +58 -0
- mlebench/competitions/sciencebench-051-brain-blood-qsar/prepare.py +69 -0
- mlebench/competitions/sciencebench-101-experimental-band-gap-prediction/grade.py +55 -0
- mlebench/competitions/sciencebench-101-experimental-band-gap-prediction/prepare.py +88 -0
- mlebench/competitions/see-click-predict-fix/__init__.py +0 -0
- mlebench/competitions/see-click-predict-fix/grade.py +66 -0
- mlebench/competitions/see-click-predict-fix/prepare.py +25 -0
- mlebench/competitions/see_click_predict_fix/__init__.py +0 -0
- mlebench/competitions/see_click_predict_fix/grade.py +66 -0
- mlebench/competitions/see_click_predict_fix/prepare.py +25 -0
- mlebench/competitions/seti-breakthrough-listen/grade.py +11 -0
- mlebench/competitions/seti-breakthrough-listen/prepare.py +71 -0
- mlebench/competitions/seti-breakthrough-listen/prepare_val.py +159 -0
- mlebench/competitions/siim-covid19-detection/grade.py +194 -0
- mlebench/competitions/siim-covid19-detection/prepare.py +123 -0
- mlebench/competitions/siim-covid19-detection/prepare_val.py +164 -0
- mlebench/competitions/siim-isic-melanoma-classification/grade.py +11 -0
- mlebench/competitions/siim-isic-melanoma-classification/prepare.py +127 -0
- mlebench/competitions/siim-isic-melanoma-classification/prepare_val.py +158 -0
- mlebench/competitions/smartphone-decimeter-2022/grade.py +55 -0
- mlebench/competitions/smartphone-decimeter-2022/notebook.py +86 -0
- mlebench/competitions/smartphone-decimeter-2022/prepare.py +143 -0
- mlebench/competitions/smartphone-decimeter-2022/prepare_val.py +199 -0
- mlebench/competitions/spaceship-titanic/grade.py +11 -0
- mlebench/competitions/spaceship-titanic/prepare.py +23 -0
- mlebench/competitions/spaceship-titanic/prepare_val.py +61 -0
- mlebench/competitions/spooky-author-identification/classes.py +1 -0
- mlebench/competitions/spooky-author-identification/grade.py +38 -0
- mlebench/competitions/spooky-author-identification/prepare.py +40 -0
- mlebench/competitions/spooky-author-identification/prepare_val.py +78 -0
- mlebench/competitions/stanford-covid-vaccine/grade.py +65 -0
- mlebench/competitions/stanford-covid-vaccine/prepare.py +129 -0
- mlebench/competitions/stanford-covid-vaccine/prepare_val.py +199 -0
- mlebench/competitions/statoil-iceberg-classifier-challenge/grade.py +41 -0
- mlebench/competitions/statoil-iceberg-classifier-challenge/prepare.py +105 -0
- mlebench/competitions/statoil-iceberg-classifier-challenge/prepare_val.py +157 -0
- mlebench/competitions/tabular-playground-series-dec-2021/grade.py +11 -0
- mlebench/competitions/tabular-playground-series-dec-2021/prepare.py +39 -0
- mlebench/competitions/tabular-playground-series-dec-2021/prepare_val.py +99 -0
- mlebench/competitions/tabular-playground-series-may-2022/grade.py +9 -0
- mlebench/competitions/tabular-playground-series-may-2022/prepare.py +56 -0
- mlebench/competitions/tabular-playground-series-may-2022/prepare_val.py +116 -0
- mlebench/competitions/tensorflow-speech-recognition-challenge/grade.py +11 -0
- mlebench/competitions/tensorflow-speech-recognition-challenge/prepare.py +90 -0
- mlebench/competitions/tensorflow-speech-recognition-challenge/prepare_val.py +148 -0
- mlebench/competitions/tensorflow2-question-answering/grade.py +122 -0
- mlebench/competitions/tensorflow2-question-answering/prepare.py +122 -0
- mlebench/competitions/tensorflow2-question-answering/prepare_val.py +187 -0
- mlebench/competitions/text-normalization-challenge-english-language/grade.py +49 -0
- mlebench/competitions/text-normalization-challenge-english-language/prepare.py +115 -0
- mlebench/competitions/text-normalization-challenge-english-language/prepare_val.py +213 -0
- mlebench/competitions/text-normalization-challenge-russian-language/grade.py +49 -0
- mlebench/competitions/text-normalization-challenge-russian-language/prepare.py +113 -0
- mlebench/competitions/text-normalization-challenge-russian-language/prepare_val.py +165 -0
- mlebench/competitions/tgs-salt-identification-challenge/grade.py +144 -0
- mlebench/competitions/tgs-salt-identification-challenge/prepare.py +158 -0
- mlebench/competitions/tgs-salt-identification-challenge/prepare_val.py +166 -0
- mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/grade.py +11 -0
- mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/prepare.py +95 -0
- mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/prepare_val.py +141 -0
- mlebench/competitions/tmdb-box-office-prediction/__init__.py +0 -0
- mlebench/competitions/tmdb-box-office-prediction/grade.py +55 -0
- mlebench/competitions/tmdb-box-office-prediction/prepare.py +35 -0
- mlebench/competitions/tweet-sentiment-extraction/grade.py +67 -0
- mlebench/competitions/tweet-sentiment-extraction/prepare.py +36 -0
- mlebench/competitions/tweet-sentiment-extraction/prepare_val.py +106 -0
- mlebench/competitions/us-patent-phrase-to-phrase-matching/grade.py +31 -0
- mlebench/competitions/us-patent-phrase-to-phrase-matching/prepare.py +33 -0
- mlebench/competitions/us-patent-phrase-to-phrase-matching/prepare_val.py +71 -0
- mlebench/competitions/utils.py +266 -0
- mlebench/competitions/uw-madison-gi-tract-image-segmentation/grade.py +158 -0
- mlebench/competitions/uw-madison-gi-tract-image-segmentation/prepare.py +139 -0
- mlebench/competitions/uw-madison-gi-tract-image-segmentation/prepare_val.py +193 -0
- mlebench/competitions/ventilator-pressure-prediction/__init__.py +0 -0
- mlebench/competitions/ventilator-pressure-prediction/grade.py +52 -0
- mlebench/competitions/ventilator-pressure-prediction/prepare.py +27 -0
- mlebench/competitions/ventilator-pressure-prediction/prepare_val.py +142 -0
- mlebench/competitions/ventilator_pressure_prediction/__init__.py +0 -0
- mlebench/competitions/ventilator_pressure_prediction/grade.py +52 -0
- mlebench/competitions/ventilator_pressure_prediction/prepare.py +27 -0
- mlebench/competitions/vesuvius-challenge-ink-detection/grade.py +97 -0
- mlebench/competitions/vesuvius-challenge-ink-detection/prepare.py +122 -0
- mlebench/competitions/vesuvius-challenge-ink-detection/prepare_val.py +170 -0
- mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/grade.py +220 -0
- mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/prepare.py +129 -0
- mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/prepare_val.py +204 -0
- mlebench/competitions/whale-categorization-playground/grade.py +41 -0
- mlebench/competitions/whale-categorization-playground/prepare.py +103 -0
- mlebench/competitions/whale-categorization-playground/prepare_val.py +196 -0
- mlebench/data.py +420 -0
- mlebench/grade.py +209 -0
- mlebench/grade_helpers.py +235 -0
- mlebench/metrics.py +75 -0
- mlebench/registry.py +332 -0
- mlebench/utils.py +346 -0
- {dslighting-1.7.1.dist-info → dslighting-1.7.8.dist-info}/WHEEL +0 -0
- {dslighting-1.7.1.dist-info → dslighting-1.7.8.dist-info}/entry_points.txt +0 -0
|
@@ -66,9 +66,9 @@ dsat/workflows/search/aide_workflow.py,sha256=mxIGXcueZGXpv1RXsQJ0YPWtvzICaFQeJo
|
|
|
66
66
|
dsat/workflows/search/automind_workflow.py,sha256=b2JzqUDnDOt_SQdtAvC0fBCJzgTadLylbpgmpaS63Ls,12573
|
|
67
67
|
dsat/workflows/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
68
|
dsat/workflows/templates/basic_kaggle_loop.py,sha256=e6YLEpCArgWfKViwoti7SdygHsHp43sqP6VyMqnOJaA,3128
|
|
69
|
-
dslighting/__init__.py,sha256=
|
|
69
|
+
dslighting/__init__.py,sha256=Q-q-kEjPM7UmlYlViXZX4Q8re3_Pg5eUssl-8sMbR_E,5152
|
|
70
70
|
dslighting/core/__init__.py,sha256=T4yYs0RQoz6DBarjOk12PeZq9YoPYrfl3Os0CPlzcB0,252
|
|
71
|
-
dslighting/core/agent.py,sha256=
|
|
71
|
+
dslighting/core/agent.py,sha256=nZEQcCqG4KTc3Iqz2yGdxYIJ_n6UPzyAK_Fmaa71wP8,31388
|
|
72
72
|
dslighting/core/config_builder.py,sha256=JMDW0JFj6PRCeP70D1Td8FYXC1bIupe4H6m8J1caO7Y,10294
|
|
73
73
|
dslighting/core/data_loader.py,sha256=HdcDN-10FYfViu8Z0RSYjA2ne6VXVbfKEOZO7EpxLIc,25003
|
|
74
74
|
dslighting/core/task_detector.py,sha256=xOYAV9yiboC8lDeDIEtxvucaGi6fENfeycrowWs-kP0,16300
|
|
@@ -2101,8 +2101,353 @@ dslighting/registry/whale-categorization-playground/prepare_val.py,sha256=XvdnOv
|
|
|
2101
2101
|
dslighting/utils/__init__.py,sha256=SjWP1V1ghRKI6bZ-CO7-eumCQbMfHGwIvrFPLCE_1OY,364
|
|
2102
2102
|
dslighting/utils/defaults.py,sha256=TMwQJgabA-OrHYhP6VAlYFCbDsP5i-BIFM-U_9mqq8M,4425
|
|
2103
2103
|
dslighting/utils/package_detector.py,sha256=YrY9vgdY43sYqj_C8nNAOD0_sxatxfaga57F3YKvHtE,10057
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2104
|
+
mlebench/README.md,sha256=tyV4Y8FWJ1ZhJYcEoNYhP2jcndJ9dTbQNyIV6Ubf7TU,3027
|
|
2105
|
+
mlebench/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2106
|
+
mlebench/cli.py,sha256=aJzQRGExprtwRGW5l2WVnmYST7ZiEXehxd6IOMf3pYg,7877
|
|
2107
|
+
mlebench/data.py,sha256=IUMRgf9zD-A4fQqH4jPR-4d2KPBiUsVM0I9f2FgubKQ,14462
|
|
2108
|
+
mlebench/grade.py,sha256=ykG_Ga6dJHtTEoMVX9lVhyPySe2b5iER5MzQ7zgonlQ,8877
|
|
2109
|
+
mlebench/grade_helpers.py,sha256=ILRjLFBXnRylsY8bxpFns_RsNRwX52qQ90qdQs0hn7Q,9380
|
|
2110
|
+
mlebench/metrics.py,sha256=s0Om2rKXJ9hyQYWnh_G8gLAGwKBZxHM01VdP3ZaVH54,2494
|
|
2111
|
+
mlebench/registry.py,sha256=8ZLBULzX6p4DrRH3SsWfUIP_Cdk8E_olIJDpHlbkaWw,14335
|
|
2112
|
+
mlebench/utils.py,sha256=lgwpjTx5n6eK98uTBlI4vME8R_v16EcA4l-qOGwVdeA,11686
|
|
2113
|
+
mlebench/competitions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2114
|
+
mlebench/competitions/utils.py,sha256=cPkDpfTrO9RQD0As2YF64GuFjJyjMsYHzdc1v8sJ5go,9808
|
|
2115
|
+
mlebench/competitions/3d-object-detection-for-autonomous-vehicles/grade.py,sha256=zFM1CoRfV_v6MXSc2-EhALT6EuGGxk6_vEBjBwZVcRk,6626
|
|
2116
|
+
mlebench/competitions/3d-object-detection-for-autonomous-vehicles/mAP_evaluation.py,sha256=exPpmRu-LYgMDKOXL38nGl2Rsdq0KWsKZULg_mZGjTc,13234
|
|
2117
|
+
mlebench/competitions/3d-object-detection-for-autonomous-vehicles/prepare.py,sha256=9PYVFEhaG2bU4DC4kV_w8969kF8ynUecde66CddKk0s,24207
|
|
2118
|
+
mlebench/competitions/3d-object-detection-for-autonomous-vehicles/prepare_val.py,sha256=Nk7SEYKkcuiE0phyHZnrNdRNCQ5b62wGllzDwv2H8oo,35411
|
|
2119
|
+
mlebench/competitions/AI4Code/grade.py,sha256=HFB7-M8IZCSm6Kj-trIqGR57SMDr7jB2QnaxWDBuW4c,3070
|
|
2120
|
+
mlebench/competitions/AI4Code/prepare.py,sha256=nOdUfOPkxURfbJGnWz7B3Q3otM5dxOGHEbGkTJHk3BU,3812
|
|
2121
|
+
mlebench/competitions/AI4Code/prepare_val.py,sha256=0oTvsT6gwwLRV1p3cYndKn3eOpS1gyp1x75Q0B5ndVo,6419
|
|
2122
|
+
mlebench/competitions/aerial-cactus-identification/grade.py,sha256=aRe5vJ91PAtAMYfsz_EHTotUBbf_RXVxxnqetqPcf6E,430
|
|
2123
|
+
mlebench/competitions/aerial-cactus-identification/prepare.py,sha256=q3AOFQTkK3hp84m6C-3fWQoFpVGpLX0sDFPPS08ioz8,2783
|
|
2124
|
+
mlebench/competitions/aerial-cactus-identification/prepare_val.py,sha256=dyDg85og1C0yTAgV0lpTiUl6UyFX7on2s7UzMf_3ZBI,5150
|
|
2125
|
+
mlebench/competitions/alaska2-image-steganalysis/grade.py,sha256=Jo6fe3flkNxEX27pQ9qMPqeBvGPIbr5JSQa7kcmO-U8,5486
|
|
2126
|
+
mlebench/competitions/alaska2-image-steganalysis/prepare.py,sha256=x81JeLM1ZAcpVfqliMhACKrb7DOW83KTpyUKagI6vNY,3789
|
|
2127
|
+
mlebench/competitions/alaska2-image-steganalysis/prepare_val.py,sha256=FDzW1gMxFkFGq7tzTWyNCwuOmFyHFhX2ny04UVIfqy4,6190
|
|
2128
|
+
mlebench/competitions/aptos2019-blindness-detection/grade.py,sha256=YnCpxL-WSGnG8NSCo0CGyG_LoGrg9NU30ZqkCBAtmX8,1429
|
|
2129
|
+
mlebench/competitions/aptos2019-blindness-detection/prepare.py,sha256=MDvoX0d-OFkZRTpa6aovfJ953E-Wi80VXUgwEw5gt-o,2769
|
|
2130
|
+
mlebench/competitions/aptos2019-blindness-detection/prepare_val.py,sha256=uGBExGXp4II1K_oiRlJ8avsqYa3Yjtsr1r5aiRRU6OQ,4712
|
|
2131
|
+
mlebench/competitions/bike-sharing-demand/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2132
|
+
mlebench/competitions/bike-sharing-demand/grade.py,sha256=vPflbm7Xd5yfD9aGJdFPq5eUw291MXNKdbihw0UOSMc,1865
|
|
2133
|
+
mlebench/competitions/bike-sharing-demand/prepare.py,sha256=CubW4wnh0KbNSj2Tn_jrs0F25bTfxNqL3sXymb7p1-g,1575
|
|
2134
|
+
mlebench/competitions/billion-word-imputation/grade.py,sha256=-_RywPiI4oN2rmW8FWI4OYhqJibaOPtIHhiFlus6_yc,1451
|
|
2135
|
+
mlebench/competitions/billion-word-imputation/prepare.py,sha256=l78dilVDHPLazSenX7xvEgD6eELRXOqsswIx46Flumk,4170
|
|
2136
|
+
mlebench/competitions/billion-word-imputation/prepare_val.py,sha256=XOwvNA2OUqm_i9ZrT320Y3cbe2Jm1JmifN8jZSkU28c,7931
|
|
2137
|
+
mlebench/competitions/bms-molecular-translation/grade.py,sha256=f3DAu9NFPRMokUtH-1uyRwarLbQyc4OTHbu5sxXwoZM,1509
|
|
2138
|
+
mlebench/competitions/bms-molecular-translation/prepare.py,sha256=Yo1lSFDuoJhLyQk0GUxkEVPkbvBzceD66ztQfMT9SEU,2945
|
|
2139
|
+
mlebench/competitions/bms-molecular-translation/prepare_val.py,sha256=nGNA9UH_wppOyivxwMxuA65yw9fh159aJ1Hi0Ex85nM,5458
|
|
2140
|
+
mlebench/competitions/cassava-leaf-disease-classification/grade.py,sha256=Z7I7MDyc2c9l3jE0kdOPv0p0XzJL0HZKPmNA31ENTK4,415
|
|
2141
|
+
mlebench/competitions/cassava-leaf-disease-classification/prepare.py,sha256=uoHOutbZOi54RiEz7l-e_MedYfv8zdEBgN7hF89oazo,4396
|
|
2142
|
+
mlebench/competitions/cassava-leaf-disease-classification/prepare_val.py,sha256=FIS-FCACnJaid7FAopNMVqrKBOLYPn8a_3POIf0u8WY,6992
|
|
2143
|
+
mlebench/competitions/cdiscount-image-classification-challenge/grade.py,sha256=J_DtoYTgnjC6G8Scuknd_2YG39IgQIko4XCjwXTPFz8,398
|
|
2144
|
+
mlebench/competitions/cdiscount-image-classification-challenge/prepare.py,sha256=NhAR8idAMujR_xYgkbC_8BxxhCWDtfxIryqsicNxHWU,5506
|
|
2145
|
+
mlebench/competitions/cdiscount-image-classification-challenge/prepare_val.py,sha256=25XxRhHMSMUwEkKx0FveQfc3sanPpLvYxL5nyv3r12s,8001
|
|
2146
|
+
mlebench/competitions/chaii-hindi-and-tamil-question-answering/grade.py,sha256=ipuDH863JXUZ-B1d0A2-nAZxzkhSnqnZ3RseIwWuo7M,2748
|
|
2147
|
+
mlebench/competitions/chaii-hindi-and-tamil-question-answering/prepare.py,sha256=L3iPFACU9_D4kRSzt0_CYktkIS9QvEaQKjIbytI4cxk,1104
|
|
2148
|
+
mlebench/competitions/chaii-hindi-and-tamil-question-answering/prepare_val.py,sha256=A2H724aiAYurqLx2c_XIqoHcz_v2sKz03NrLWzqQx3I,3379
|
|
2149
|
+
mlebench/competitions/champs-scalar-coupling/grade.py,sha256=DxvgXKY4p8qkren6Iv4pU-3Q9Qk6Q2b8wkVq4ZrmH2I,2419
|
|
2150
|
+
mlebench/competitions/champs-scalar-coupling/prepare.py,sha256=dbckulsjKHUxOxgE-rbgHP3X0mnQqPAkHQmlpiC5Yo0,4950
|
|
2151
|
+
mlebench/competitions/champs-scalar-coupling/prepare_val.py,sha256=BTxhHEvWxxx1hc2l-0lHu3xqKxIJD_f5j4l510CTBlc,6451
|
|
2152
|
+
mlebench/competitions/conways-reverse-game-of-life-2020/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2153
|
+
mlebench/competitions/conways-reverse-game-of-life-2020/grade.py,sha256=z_ivNRCiOquTbEeRozjtLJpwPawLMZ7Y2vsEqNCYC4Y,1465
|
|
2154
|
+
mlebench/competitions/conways-reverse-game-of-life-2020/prepare.py,sha256=zrY0enp_4QElNjFn11BS5R8Pq05s5-vM3CFRQ7vY9ik,1782
|
|
2155
|
+
mlebench/competitions/demand-forecasting-kernels-only/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2156
|
+
mlebench/competitions/demand-forecasting-kernels-only/grade.py,sha256=AC76p09Ej2kBQH6kQAXW_b7Rq853rTObAUeDONM-3vQ,2145
|
|
2157
|
+
mlebench/competitions/demand-forecasting-kernels-only/prepare.py,sha256=Yxt1HxwB24ZGSoCaZfz1oma_Scv_7xH1YBVqEGbYxK0,1057
|
|
2158
|
+
mlebench/competitions/demand_forecasting_kernels_only/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2159
|
+
mlebench/competitions/demand_forecasting_kernels_only/grade.py,sha256=AC76p09Ej2kBQH6kQAXW_b7Rq853rTObAUeDONM-3vQ,2145
|
|
2160
|
+
mlebench/competitions/demand_forecasting_kernels_only/prepare.py,sha256=Yxt1HxwB24ZGSoCaZfz1oma_Scv_7xH1YBVqEGbYxK0,1057
|
|
2161
|
+
mlebench/competitions/denoising-dirty-documents/grade.py,sha256=wWuW3GIxfV5ysM-K5WplmoygjgwHdkf3PZ9bA-6UwXo,1644
|
|
2162
|
+
mlebench/competitions/denoising-dirty-documents/prepare.py,sha256=EWPoGcAFXHN_eSENVLk-DeFgMPcygfESFvU-C3FTpk0,4814
|
|
2163
|
+
mlebench/competitions/denoising-dirty-documents/prepare_val.py,sha256=374yX6QigVybOSoXOarcOFYRpCkuiCNhbKbX0HIF1tE,6804
|
|
2164
|
+
mlebench/competitions/detecting-insults-in-social-commentary/grade.py,sha256=X5q04dH9L1E_HeAYLUwaowdVV6SHLPJpGddoe6585xo,431
|
|
2165
|
+
mlebench/competitions/detecting-insults-in-social-commentary/prepare.py,sha256=qutTsPx9vg-inCaatahyviNhJmz-cbDVBktzMlV_G_Q,3008
|
|
2166
|
+
mlebench/competitions/detecting-insults-in-social-commentary/prepare_val.py,sha256=JgVeo0ALqhUjz-u65zHgPAMbU7JjjYKYFlzw90Ezm6g,5051
|
|
2167
|
+
mlebench/competitions/dog-breed-identification/dogs.py,sha256=UHlZvVToGSZMz-44HqeRL01i-9Bw9vfzzbdpWVYJ3O8,1802
|
|
2168
|
+
mlebench/competitions/dog-breed-identification/grade.py,sha256=Kpl2Ny4czRbbhEhyP_8WUo8TodGEEcE6CKr-yh9zqUk,1714
|
|
2169
|
+
mlebench/competitions/dog-breed-identification/prepare.py,sha256=muc9dESHWmhhYQCibLPGBna6VIVx4vgF08rikzKddXI,1801
|
|
2170
|
+
mlebench/competitions/dog-breed-identification/prepare_val.py,sha256=btR24NUDzUCu8ai2PwMPFYSEWXnfZbYR0csAwObWHYY,3757
|
|
2171
|
+
mlebench/competitions/dogs-vs-cats-redux-kernels-edition/grade.py,sha256=AtQ_n3LLdmBDRC1hANV6XiKTQmL7TnpKg1WtUE1vk5U,1583
|
|
2172
|
+
mlebench/competitions/dogs-vs-cats-redux-kernels-edition/prepare.py,sha256=iwCkXQ3ErYLlfyN1OA-rrz5Y-ard3IWL2MeFxIW4LqY,2709
|
|
2173
|
+
mlebench/competitions/dogs-vs-cats-redux-kernels-edition/prepare_val.py,sha256=aRtf9MacwEIKjWSZIRE4yk4vy7ZLKUA1nzr9IN3fUoY,5463
|
|
2174
|
+
mlebench/competitions/ethanol-concentration/grade.py,sha256=oPPbDOdopfON_N6LxCKR6oI1Am5osNXbyvIboznfUI8,644
|
|
2175
|
+
mlebench/competitions/ethanol-concentration/prepare.py,sha256=Owa9Lt57WnPcZ33yGCT8kYi7Qo9guald_1yRkDfEmCw,3803
|
|
2176
|
+
mlebench/competitions/facebook-recruiting-iii-keyword-extraction/grade.py,sha256=8OMJvqkHbwJNq5jI7cJY_qHtJU83DSCBZc5MJK28fds,2195
|
|
2177
|
+
mlebench/competitions/facebook-recruiting-iii-keyword-extraction/prepare.py,sha256=lWbS_qsSmlgoxMXd6zT7kdtwbGHdZ6hNk7W3tPt6-yk,1686
|
|
2178
|
+
mlebench/competitions/facebook-recruiting-iii-keyword-extraction/prepare_val.py,sha256=g4GATdVwIoCCH5PF7oq1ZKfYSns52U4lKgRIa1VNaSQ,3736
|
|
2179
|
+
mlebench/competitions/feedback-prize-english-language-learning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2180
|
+
mlebench/competitions/feedback-prize-english-language-learning/grade.py,sha256=6fd987r6U0pAV_3N1R4iHlXf9g1zfJcdALHN_O--lsc,2083
|
|
2181
|
+
mlebench/competitions/feedback-prize-english-language-learning/prepare.py,sha256=miYnRq2PFG3Ctru9v4i4UuK5UAGUMUiPuNHTv6CZkBI,1614
|
|
2182
|
+
mlebench/competitions/freesound-audio-tagging-2019/grade.py,sha256=LFe1F8u6w7Yy5xzOYO3iTwF5ohgM0tDUDa-i5DEXhqs,2794
|
|
2183
|
+
mlebench/competitions/freesound-audio-tagging-2019/prepare.py,sha256=sSlpe4hOBBiAHRBWQEwXikW0ZlElaXrnoen2Bv1ybmo,3867
|
|
2184
|
+
mlebench/competitions/freesound-audio-tagging-2019/prepare_val.py,sha256=ywhAyQKmPEvfnQIDdvSSjAmEh2evvZLqeKY9PRFr-Es,7582
|
|
2185
|
+
mlebench/competitions/freesound-audio-tagging-2019/vocabulary.py,sha256=08flGe3onfgNvyudmdL1WeBE_-cdYCg_S40UOiwxx-4,1733
|
|
2186
|
+
mlebench/competitions/google-quest-challenge/classes.py,sha256=FPVImcY-koQtT1NTOh_Scx_lp3leWY3UIUEdSVEF6xU,975
|
|
2187
|
+
mlebench/competitions/google-quest-challenge/grade.py,sha256=4hmv3hjrLYjRscF1AiH-x-giLYMLLHYM_rAHey8W7jg,1668
|
|
2188
|
+
mlebench/competitions/google-quest-challenge/prepare.py,sha256=BdX_7QJ4_YvKKXKoldc02DD-cr37Dj_OtWTgYZnmBAg,2596
|
|
2189
|
+
mlebench/competitions/google-quest-challenge/prepare_val.py,sha256=ik0JwqSH1nN6Mws3nFQ7pV_-IHs1iX66Ohl0PxJR4FE,5018
|
|
2190
|
+
mlebench/competitions/google-research-identify-contrails-reduce-global-warming/grade.py,sha256=o3Rh2vUQkH9xIBihxR5LzcC8Qfp5d3kR1YHANUTWGfo,3082
|
|
2191
|
+
mlebench/competitions/google-research-identify-contrails-reduce-global-warming/prepare.py,sha256=-4sGDb_VSbTh1irTkI2EWvpW7JRBH4a4AbjIkB8ng9Q,6283
|
|
2192
|
+
mlebench/competitions/google-research-identify-contrails-reduce-global-warming/prepare_val.py,sha256=N__aN8FAbXOgsR0RXXkoPkdjuzpYK9sbFulccmzGEik,9742
|
|
2193
|
+
mlebench/competitions/h-and-m-personalized-fashion-recommendations/grade.py,sha256=nQAqrmCNJtB-a_eZ6fBhppJjtN4yrP9Fl9kjQXlHhvc,1692
|
|
2194
|
+
mlebench/competitions/h-and-m-personalized-fashion-recommendations/prepare.py,sha256=7-_2VRqEJzRq2ECLYeE7y88yWu3biJA0cV-VOxVKhF8,4148
|
|
2195
|
+
mlebench/competitions/h-and-m-personalized-fashion-recommendations/prepare_val.py,sha256=9sGscpCZubOdL4c4Uto4bOcEph2AmgLmrt-dfvnIDAw,5306
|
|
2196
|
+
mlebench/competitions/handwriting/grade.py,sha256=oPPbDOdopfON_N6LxCKR6oI1Am5osNXbyvIboznfUI8,644
|
|
2197
|
+
mlebench/competitions/handwriting/prepare.py,sha256=z417JBmw2AwKgohu9Usl-CMJFWqMhs4Le4oaQ4yY_7A,6422
|
|
2198
|
+
mlebench/competitions/herbarium-2020-fgvc7/grade.py,sha256=ZcglgUGRbfsu1y4Kg8hoRw0AQ4aMapzshqVVSNOe3Ss,1400
|
|
2199
|
+
mlebench/competitions/herbarium-2020-fgvc7/prepare.py,sha256=Em7wVqbmQaAwWGSn-dOtTLJahToL90ZiZx6p0vpwAJ4,11082
|
|
2200
|
+
mlebench/competitions/herbarium-2020-fgvc7/prepare_val.py,sha256=sio2UeMdgkN00CftxY8Q4UFIrcEP0EpXxxhjND1sAWU,9715
|
|
2201
|
+
mlebench/competitions/herbarium-2021-fgvc8/grade.py,sha256=ZcglgUGRbfsu1y4Kg8hoRw0AQ4aMapzshqVVSNOe3Ss,1400
|
|
2202
|
+
mlebench/competitions/herbarium-2021-fgvc8/prepare.py,sha256=tTILUNhjYSBuMrf0wl_4AqJnwY45JY6JN6crC5DyzoU,11011
|
|
2203
|
+
mlebench/competitions/herbarium-2021-fgvc8/prepare_val.py,sha256=EHA0wbrim_DYU8SU80NCAnuK7IJz9POTOer5c4Npg9s,8862
|
|
2204
|
+
mlebench/competitions/herbarium-2022-fgvc9/grade.py,sha256=QiySREdnATRkq5AXxHS8YeWMEBG78bmMj7Ip-6HxN60,1249
|
|
2205
|
+
mlebench/competitions/herbarium-2022-fgvc9/prepare.py,sha256=dXWnrvGDngDUC3EYBC0VLlS98Ch7YsJmb31AP12eiUE,10288
|
|
2206
|
+
mlebench/competitions/herbarium-2022-fgvc9/prepare_val.py,sha256=BmQl7A3m9QlWaEyEXnOPygdXJI6icCVpHU5D_wuCPKs,9945
|
|
2207
|
+
mlebench/competitions/histopathologic-cancer-detection/grade.py,sha256=pderys18NcErBD3kcBhD090cas5fqNe4-vqZJ7nIxrA,444
|
|
2208
|
+
mlebench/competitions/histopathologic-cancer-detection/prepare.py,sha256=j58OzU4D2OdLpgxTDQoqv0Hc3p-k2peRt-zgxFsYWvw,2146
|
|
2209
|
+
mlebench/competitions/histopathologic-cancer-detection/prepare_val.py,sha256=UBqPzGN7Toccr8DiTtvEk4hg6PpMLFLB0c3X-v2lDFs,5279
|
|
2210
|
+
mlebench/competitions/hms-harmful-brain-activity-classification/constants.py,sha256=2ERi1BxPllTG-0TViDKPCW3HNrzi8YoOzECqablGTVk,140
|
|
2211
|
+
mlebench/competitions/hms-harmful-brain-activity-classification/grade.py,sha256=_tQcEducbpRBriDjWyTdD3aAscMD3A0OXNYl_41zwFA,1934
|
|
2212
|
+
mlebench/competitions/hms-harmful-brain-activity-classification/kaggle_metric_utilities.py,sha256=N-OkfQnZmyYohbncwGX01poh-N-38ScK1DJt77-yNYY,3645
|
|
2213
|
+
mlebench/competitions/hms-harmful-brain-activity-classification/kullback_leibler_divergence.py,sha256=NrkQgYv5JTXKJU6Oz7qFK_8axPltlRFofux2ENDRqtM,4925
|
|
2214
|
+
mlebench/competitions/hms-harmful-brain-activity-classification/prepare.py,sha256=qsTbI6h2FCpj5MefKRD311BjqpItYi9NWa_eLn2HrtU,5172
|
|
2215
|
+
mlebench/competitions/hms-harmful-brain-activity-classification/prepare_val.py,sha256=UHTJjV_BRM_zmIoiawjThCnENyGzUyX5_DpgHf_9u58,7950
|
|
2216
|
+
mlebench/competitions/hotel-id-2021-fgvc8/grade.py,sha256=nIetwYJBJPNe8ZikHnyB3Pne6o8QEtz0LbrbO676Lak,1712
|
|
2217
|
+
mlebench/competitions/hotel-id-2021-fgvc8/prepare.py,sha256=23K3Sl5sxzu2okz25eoBKF1FXC6OhBqdzViCGMc5TQc,2663
|
|
2218
|
+
mlebench/competitions/hotel-id-2021-fgvc8/prepare_val.py,sha256=2G3AMPPtn6TlvaJDejshTzDwFKkrJRR2LN_H7ww-gWY,5185
|
|
2219
|
+
mlebench/competitions/hubmap-kidney-segmentation/grade.py,sha256=ylGds8Q4hjVEH1p6vH2N4s7TUidAXWXge6CHYFFEgQs,2479
|
|
2220
|
+
mlebench/competitions/hubmap-kidney-segmentation/prepare.py,sha256=AHRvQCbTjNYF4VNrg0MHvZPR3Op9iDBrR_A2yJWeJ-0,4669
|
|
2221
|
+
mlebench/competitions/hubmap-kidney-segmentation/prepare_val.py,sha256=GsRLXVt_EKER2lVDYQDmPL9jLUA1OsLfRdaKgHv4na0,7038
|
|
2222
|
+
mlebench/competitions/icecube-neutrinos-in-deep-ice/grade.py,sha256=BjkJrYwnp6uvBNxk5LD4l2GmDiI2vACCfCPKOBNe0Gw,4413
|
|
2223
|
+
mlebench/competitions/icecube-neutrinos-in-deep-ice/prepare.py,sha256=rl4L6g1oOXTbPRM7h6Dpgvylwi9hLsaFt5oM8NOMY2s,4815
|
|
2224
|
+
mlebench/competitions/icecube-neutrinos-in-deep-ice/prepare_val.py,sha256=mBkVYFao-P0kfCdE-9VxGkBvd754bRcbaiAFYM2ywq8,6972
|
|
2225
|
+
mlebench/competitions/ili/grade.py,sha256=3HrXAx-tWBGBBOzqZkDY2FoUGosYHdZR63NIIzPc94g,2233
|
|
2226
|
+
mlebench/competitions/ili/prepare.py,sha256=izrYpY6RbevVAICusMUi0KmprfiSQ65AFc72Lm6721M,4301
|
|
2227
|
+
mlebench/competitions/imet-2020-fgvc7/grade.py,sha256=9f8IqFC2lJvE-nizJSvbLFIXRDq9k5q1aAGWO8oyets,2261
|
|
2228
|
+
mlebench/competitions/imet-2020-fgvc7/prepare.py,sha256=eq9Cg3WI2NBa7hHWnec8p_kYo9OiWJKaO0lTwBTZX9I,2764
|
|
2229
|
+
mlebench/competitions/imet-2020-fgvc7/prepare_val.py,sha256=YqGgVMR9cMwagxDbbiK4clpGNYO-fNfpM8Va96xyJAk,5579
|
|
2230
|
+
mlebench/competitions/inaturalist-2019-fgvc6/grade.py,sha256=zMNp8exEGZmx0fmNk_1Bm-KZsz4q0FG4R5oAV7U0IWc,1468
|
|
2231
|
+
mlebench/competitions/inaturalist-2019-fgvc6/prepare.py,sha256=NLAV4g8f0C_UHITsphyf7ozNHX2Yxw_Lv5YD0zfxfMg,11110
|
|
2232
|
+
mlebench/competitions/inaturalist-2019-fgvc6/prepare_val.py,sha256=iX8IJrCjLDyw7kq0HPU_N5t-UZWzLLw72EbtZ2OifOo,11832
|
|
2233
|
+
mlebench/competitions/instant-gratification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2234
|
+
mlebench/competitions/instant-gratification/grade.py,sha256=Rq-l83I60Q_sNvUosMNHw87FFq33bUP2MuFPkCmjUIM,1814
|
|
2235
|
+
mlebench/competitions/instant-gratification/prepare.py,sha256=anpQfi0IFhWbmfbOkPU0Ez8J1D_3gooFVCldznJjmQI,889
|
|
2236
|
+
mlebench/competitions/instant_gratification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2237
|
+
mlebench/competitions/instant_gratification/grade.py,sha256=Rq-l83I60Q_sNvUosMNHw87FFq33bUP2MuFPkCmjUIM,1814
|
|
2238
|
+
mlebench/competitions/instant_gratification/prepare.py,sha256=anpQfi0IFhWbmfbOkPU0Ez8J1D_3gooFVCldznJjmQI,889
|
|
2239
|
+
mlebench/competitions/invasive-species-monitoring/grade.py,sha256=pINpKs8I7AzH7t0XbifDfs4pTMnIs3tQzlWykkU-nWM,430
|
|
2240
|
+
mlebench/competitions/invasive-species-monitoring/prepare.py,sha256=YNQ0_N_ID_VcBU8PYcd4XZGwR3_ICqnEeNCmljbwEqY,3474
|
|
2241
|
+
mlebench/competitions/invasive-species-monitoring/prepare_val.py,sha256=GuLShGPr5EI2Fij84k8v8N-85a7ZQWVjGFQWYJAvEmY,5978
|
|
2242
|
+
mlebench/competitions/iwildcam-2019-fgvc6/grade.py,sha256=DBikf4_0l5E6G57-Kqk_SubFBnH4zlZqtzEfpdPHm-I,1625
|
|
2243
|
+
mlebench/competitions/iwildcam-2019-fgvc6/prepare.py,sha256=8dGnAKeSm5tyF85noNShJ3c17yLVzsXa8Ys86BOcbdo,5286
|
|
2244
|
+
mlebench/competitions/iwildcam-2019-fgvc6/prepare_val.py,sha256=4GQJ5QV6zIfIReX5SqUk5_X6SaLnSgQDZUNhKEgFd30,7857
|
|
2245
|
+
mlebench/competitions/iwildcam-2020-fgvc7/grade.py,sha256=NBPZOqjhorwTJBknnAc4Hh5Lm5-4YvibVYz9564OR1E,394
|
|
2246
|
+
mlebench/competitions/iwildcam-2020-fgvc7/prepare.py,sha256=yDUaJINXDTG2lMybk3BlLiecBB0Sck83kqmzqk48NTM,6879
|
|
2247
|
+
mlebench/competitions/iwildcam-2020-fgvc7/prepare_val.py,sha256=DYv5IJBECU1omJsBv6c7iryGvcrU8wqOPydR0l4oVhw,10227
|
|
2248
|
+
mlebench/competitions/jigsaw-toxic-comment-classification-challenge/classes.py,sha256=udrBqhDzdlzamCWjKFUKWaY-Hs1ihnOVi6ruJV_YQeQ,84
|
|
2249
|
+
mlebench/competitions/jigsaw-toxic-comment-classification-challenge/grade.py,sha256=AfYI1V_13xrmQA5Fhzxn3Bjgf-tuFL52YB6bNLlUgFE,1869
|
|
2250
|
+
mlebench/competitions/jigsaw-toxic-comment-classification-challenge/prepare.py,sha256=Cfa6HioxRq0px2HSygT08PnrLWUoyUCZUkHdU89_1Eo,1581
|
|
2251
|
+
mlebench/competitions/jigsaw-toxic-comment-classification-challenge/prepare_val.py,sha256=tFy2OSmwHUW4OWUCALFS_D2ArPS-tHtCvVRokN4ECSM,3725
|
|
2252
|
+
mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/grade.py,sha256=Zs3y4EbKlL8ErbC152Rllow3A8OjhjRZ3qQKCY2D9Qo,7031
|
|
2253
|
+
mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/prepare.py,sha256=ZHHtO_V4XYWidggOXkoJozvoBaOITe9Wv8Aw_4lBfMw,1172
|
|
2254
|
+
mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/prepare_val.py,sha256=1C61evbieYahyu-bgNR7unQOXGFkKGKxV-zf_YQZT3U,4866
|
|
2255
|
+
mlebench/competitions/kuzushiji-recognition/grade.py,sha256=DHdC9NlijayoNqoa8zLSJXQArQX2v5RbfCnyZx9zCiw,2591
|
|
2256
|
+
mlebench/competitions/kuzushiji-recognition/kuzushiji_metric.py,sha256=_T3hUJjS1MtXVNr5XB5Qgp60QmHZr_6Xe6Xb5zQl3O0,4002
|
|
2257
|
+
mlebench/competitions/kuzushiji-recognition/prepare.py,sha256=qI1x-N1gK8accP4Hcrl4MnZDznNP4VnPfBtZqkRAY0Q,3555
|
|
2258
|
+
mlebench/competitions/kuzushiji-recognition/prepare_val.py,sha256=zwjNnWVhMOjmI1nmwAJbKDxkaUnr-bKU5HAFTjUq03A,5886
|
|
2259
|
+
mlebench/competitions/leaf-classification/classes.py,sha256=Hf3zapfKEpLEzZRmfAy37v4G1sKlr2aUw8RMnfIqUc8,2453
|
|
2260
|
+
mlebench/competitions/leaf-classification/grade.py,sha256=0lGk7AX5eMK4CXhPh7ZtYTyxBzeR0APnpY-YCMU-o84,1642
|
|
2261
|
+
mlebench/competitions/leaf-classification/prepare.py,sha256=TQFpG2BqiPQBVItx2uTpicfNVxG4AtVyJ_xQFEnCQRY,2121
|
|
2262
|
+
mlebench/competitions/leaf-classification/prepare_val.py,sha256=Mlx5PZglLqVC4GJxtSv-eSVv61t_9RAfB8ZVUrlRmT8,4243
|
|
2263
|
+
mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/grade.py,sha256=BnilfYxCfZjtGFumGd4jekmw5Gej4_bCdG0O-dUlOwY,1763
|
|
2264
|
+
mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/prepare.py,sha256=r_8bXxpFO7epFokebx1g9rQBbfcShUAt9UTvP7YxKDk,2056
|
|
2265
|
+
mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/prepare_val.py,sha256=m97q4PfTmR5Xne4OGwzr4_lT_vaLPeNXliNRVUX9Zkw,4101
|
|
2266
|
+
mlebench/competitions/liverpool-ion-switching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2267
|
+
mlebench/competitions/liverpool-ion-switching/grade.py,sha256=B5flWXx_S_iUCGX0wb55WHE_ORGsyBZY80nsdG1nkq0,1811
|
|
2268
|
+
mlebench/competitions/liverpool-ion-switching/prepare.py,sha256=WLwqkxtGnTw_51SYF0DqQvgWqbSimBF3pRrBUjuLxkE,1069
|
|
2269
|
+
mlebench/competitions/liverpool_ion_switching/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2270
|
+
mlebench/competitions/liverpool_ion_switching/grade.py,sha256=B5flWXx_S_iUCGX0wb55WHE_ORGsyBZY80nsdG1nkq0,1811
|
|
2271
|
+
mlebench/competitions/liverpool_ion_switching/prepare.py,sha256=WLwqkxtGnTw_51SYF0DqQvgWqbSimBF3pRrBUjuLxkE,1069
|
|
2272
|
+
mlebench/competitions/lmsys-chatbot-arena/grade.py,sha256=1tSJ5dVCfzIIDJogodTYqsmBDbQ1czo82evl1PItj1o,2540
|
|
2273
|
+
mlebench/competitions/lmsys-chatbot-arena/prepare.py,sha256=uTUyl2YD9PL-WSSHM9s-HXPRF5PMWX1LkTVYKncEKjM,2042
|
|
2274
|
+
mlebench/competitions/lmsys-chatbot-arena/prepare_val.py,sha256=mQ2cIsq00f_7kcdHDgpeenC-z7fe37p98tbjRzpF0j8,4326
|
|
2275
|
+
mlebench/competitions/mcm_2024_c_test/grade.py,sha256=rb9xmEzJOJlgbX7MFiEfGuXoXJ8t4WjtSD6ZB0ZYyyc,4041
|
|
2276
|
+
mlebench/competitions/mcm_2024_c_test/prepare.py,sha256=5jpzCvlK8OfXR4rb31GEGar3YVyJ41_FwH_MJBhZURE,44
|
|
2277
|
+
mlebench/competitions/ml2021spring-hw2/grade.py,sha256=d69ceXh2QYffr7D4xYgN3o2Sme8YHW0eHU5algsHhvk,442
|
|
2278
|
+
mlebench/competitions/ml2021spring-hw2/prepare.py,sha256=V-8KTis_LBYW54kQw4wfnHCchuixa7gLozcujVeYsv0,2368
|
|
2279
|
+
mlebench/competitions/ml2021spring-hw2/prepare_val.py,sha256=iCj5wOmyvosl6oF1Ffw-zYyssJQJPTHlgyXkbXwfd9g,5824
|
|
2280
|
+
mlebench/competitions/mlsp-2013-birds/grade.py,sha256=rw6x10Cv4b52ZempUGiLk_WUFohbeADz9U_DG6ZQNCk,431
|
|
2281
|
+
mlebench/competitions/mlsp-2013-birds/prepare.py,sha256=dLjb7AHz6Qybnu3ZnvwW5jW2Nz0hrKREbA7sPRCHkto,7929
|
|
2282
|
+
mlebench/competitions/mlsp-2013-birds/prepare_val.py,sha256=OLcZR7CRpMOOn-Dk8OrpRGhLt61p8rrwfdXvALfIIow,10493
|
|
2283
|
+
mlebench/competitions/movie-review-sentiment-analysis-kernels-only/grade.py,sha256=-gjHLgWE_Adkjdh32tLVJ-H8JquVur-AvGgJsnqNplQ,401
|
|
2284
|
+
mlebench/competitions/movie-review-sentiment-analysis-kernels-only/prepare.py,sha256=l1pj4eYjsG9bkG69_9GBsgaWPWz7qfoF0k-wIIhAF-c,2135
|
|
2285
|
+
mlebench/competitions/movie-review-sentiment-analysis-kernels-only/prepare_val.py,sha256=BzzlOjygCrQoZzMXGydy0ekvj4XbJR9m-o3QS3GgHaM,4746
|
|
2286
|
+
mlebench/competitions/multi-modal-gesture-recognition/grade.py,sha256=XYkclVVMyvK3Ez2EWHmgHLn5rOA7Bh57Rwh4NnRXozA,2460
|
|
2287
|
+
mlebench/competitions/multi-modal-gesture-recognition/prepare.py,sha256=RL7R2QDMwOjp4UlNeUDeskqNpfGyt1s2yuVLjAOP7bU,3440
|
|
2288
|
+
mlebench/competitions/multi-modal-gesture-recognition/prepare_val.py,sha256=J-L-Zg4Lv-H_xtujesDjHYx9RwBFQaJ06ABSQCAFoN0,5353
|
|
2289
|
+
mlebench/competitions/my-custom-task-01/prepare.py,sha256=BaQ9EnDmhha1ner9ecXmA457FHo4n9zcseAlsj8Dpxo,62
|
|
2290
|
+
mlebench/competitions/new-my-task-01/prepare.py,sha256=BaQ9EnDmhha1ner9ecXmA457FHo4n9zcseAlsj8Dpxo,62
|
|
2291
|
+
mlebench/competitions/new-my-task-03/grade.py,sha256=rb9xmEzJOJlgbX7MFiEfGuXoXJ8t4WjtSD6ZB0ZYyyc,4041
|
|
2292
|
+
mlebench/competitions/new-my-task-03/prepare.py,sha256=5jpzCvlK8OfXR4rb31GEGar3YVyJ41_FwH_MJBhZURE,44
|
|
2293
|
+
mlebench/competitions/new-york-city-taxi-fare-prediction/grade.py,sha256=rfa8LeZUv7MNJUAV8CdIjPfDnd2TRXPUPA24QfCfFOg,1035
|
|
2294
|
+
mlebench/competitions/new-york-city-taxi-fare-prediction/prepare.py,sha256=7VYmtO-p0y2O98SMdsb8ssv7RSdu40-s4SVIm_X5-KE,1789
|
|
2295
|
+
mlebench/competitions/new-york-city-taxi-fare-prediction/prepare_val.py,sha256=8LvbNWVu0Kdympxihk86CpL04OTTNZq3Kyz4FYYGOFY,3716
|
|
2296
|
+
mlebench/competitions/nfl-player-contact-detection/grade.py,sha256=KljMy_Ms0ysRUKAYcbqQAD2VTnB-wzdDVW-6VStuMNM,1356
|
|
2297
|
+
mlebench/competitions/nfl-player-contact-detection/prepare.py,sha256=NcUZzfAd6TYlWyzOOOD-6ieQiHCvrHv_bm6XzUOwJdk,4181
|
|
2298
|
+
mlebench/competitions/nfl-player-contact-detection/prepare_val.py,sha256=QcAeURP57gZ5tNHAvikie8ZP1JjoYS1pu_kD5yc1T54,7275
|
|
2299
|
+
mlebench/competitions/nomad2018-predict-transparent-conductors/grade.py,sha256=EcHl30fSn1606-IFmQxx3VmBlRCtJZcr2aUGoDkqxQs,1806
|
|
2300
|
+
mlebench/competitions/nomad2018-predict-transparent-conductors/prepare.py,sha256=vS7apUvy7hnGZxss8LA1RXJoTuKoJs9lTPw5OONOvVI,3100
|
|
2301
|
+
mlebench/competitions/nomad2018-predict-transparent-conductors/prepare_val.py,sha256=FLePdYnTC5eJgE2ftSSLsCCBM070rDsUTxxm9522KOc,5759
|
|
2302
|
+
mlebench/competitions/osic-pulmonary-fibrosis-progression/grade.py,sha256=mDnxMzN8cqb6tefy1npCeWc-B7KEaiR4i_4MsiEFwok,3483
|
|
2303
|
+
mlebench/competitions/osic-pulmonary-fibrosis-progression/prepare.py,sha256=tw1kDy_WX-H5UqGRVCvaojI18q6tfFKjVvifIsp_-gY,4028
|
|
2304
|
+
mlebench/competitions/osic-pulmonary-fibrosis-progression/prepare_val.py,sha256=zKfR8N9sdE6amfl-R1CmcBsCTspSVWWo2x06dT2PkWs,6437
|
|
2305
|
+
mlebench/competitions/paddy-disease-classification/grade.py,sha256=wIdCl7kdmkKQVGW3FdRIOjnoReoLtonxAS3774hni48,1315
|
|
2306
|
+
mlebench/competitions/paddy-disease-classification/prepare.py,sha256=ZKhTS1rm5QohzUL5gBLHEeu2YUBunO0L6TIIsHGvIKs,3104
|
|
2307
|
+
mlebench/competitions/paddy-disease-classification/prepare_val.py,sha256=rsytuyJJn2G2V9kMLcqT9lhAVIIq7hjH14ntUBesQkc,4919
|
|
2308
|
+
mlebench/competitions/petfinder-pawpularity-score/grade.py,sha256=Wzn0CGcxSXunQcoglFpD-sx4h2aWDicE0DIagGJ-lmw,1516
|
|
2309
|
+
mlebench/competitions/petfinder-pawpularity-score/prepare.py,sha256=R8xH6ms8ExQho9P8ljW4YIk2GII7c-Eua0glmtvlbOA,2877
|
|
2310
|
+
mlebench/competitions/petfinder-pawpularity-score/prepare_val.py,sha256=5dSG6_ur7dohjA4H7fd-vSAcUAaBKOCtxSIr-TCYXGk,5904
|
|
2311
|
+
mlebench/competitions/plant-pathology-2020-fgvc7/grade.py,sha256=pB8wNYouq_eTxbtrdEyLII6MTSwmua887nIhot6mHXY,1602
|
|
2312
|
+
mlebench/competitions/plant-pathology-2020-fgvc7/prepare.py,sha256=27qRllVxpu3h7-kLrVU2FddJSZ3mOI1HOgX2dYCaPec,2960
|
|
2313
|
+
mlebench/competitions/plant-pathology-2020-fgvc7/prepare_val.py,sha256=6vZTtOel1bHzW7FsyrTCxMcp7-ypmf_7Ydf_TsPFzZs,7041
|
|
2314
|
+
mlebench/competitions/plant-pathology-2021-fgvc8/grade.py,sha256=Zm-3s4Fnny6fagjh45fywri03g7IfGqNUixef6tcqzM,2132
|
|
2315
|
+
mlebench/competitions/plant-pathology-2021-fgvc8/prepare.py,sha256=tO_D48iJpgwhVe2Rpm21sWyRE9OuSlW5FvAco3f1-f0,2459
|
|
2316
|
+
mlebench/competitions/plant-pathology-2021-fgvc8/prepare_val.py,sha256=eCQ7I-E-SrweSuetJoaZsYAXcwPibBsDOUM3UJ-vhGQ,4901
|
|
2317
|
+
mlebench/competitions/plant-seedlings-classification/grade.py,sha256=2IiYwFK3VXAS2noNb9MpFjjhw_I4YOCewtnDiXAQ4Nc,1503
|
|
2318
|
+
mlebench/competitions/plant-seedlings-classification/prepare.py,sha256=WREIBJB5qo4Ukq_uKqqP5axdeRbwt3vYvQaeezXXkMw,3919
|
|
2319
|
+
mlebench/competitions/plant-seedlings-classification/prepare_val.py,sha256=QhFs6ZbkTNLtwyeExocwe8ZcRvxlVqafT3sU7o_YGv8,6621
|
|
2320
|
+
mlebench/competitions/playground-series-s3e1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2321
|
+
mlebench/competitions/playground-series-s3e1/grade.py,sha256=ya_tz1I7uzE1PFyj-IZdalQNRAtrQRvBbSWHhSTnjQg,1711
|
|
2322
|
+
mlebench/competitions/playground-series-s3e1/prepare.py,sha256=AbZpAtrN41hjgB-vPBq4hQhIReop0Ak2snvBPfa0J5Q,890
|
|
2323
|
+
mlebench/competitions/playground-series-s3e11/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2324
|
+
mlebench/competitions/playground-series-s3e11/grade.py,sha256=z7cB5QcnviGYYyQEaH6sNH1-359xzGjmyuTI4soplxI,1795
|
|
2325
|
+
mlebench/competitions/playground-series-s3e11/prepare.py,sha256=hJb_WQKnImn7K7Dw8kaAB8mEkXbF5LNipS-eUI2gOoc,891
|
|
2326
|
+
mlebench/competitions/playground-series-s3e18/grade.py,sha256=4u8liemPUcmcNVpd0oyzqtyvv6xKsoY2pRGHBy54tD4,1582
|
|
2327
|
+
mlebench/competitions/playground-series-s3e18/prepare.py,sha256=T7mIcY-34DPGwOpUk_-F1nfWId5fAK0uzebd2IUYMiA,1327
|
|
2328
|
+
mlebench/competitions/playground-series-s3e18/prepare_val.py,sha256=wgV2Fmfb8InkPAGNJ6vXdsLKZKulW4X6bdW9Ailezc0,3847
|
|
2329
|
+
mlebench/competitions/playground_series_s3e1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2330
|
+
mlebench/competitions/playground_series_s3e1/grade.py,sha256=ya_tz1I7uzE1PFyj-IZdalQNRAtrQRvBbSWHhSTnjQg,1711
|
|
2331
|
+
mlebench/competitions/playground_series_s3e1/prepare.py,sha256=AbZpAtrN41hjgB-vPBq4hQhIReop0Ak2snvBPfa0J5Q,890
|
|
2332
|
+
mlebench/competitions/playground_series_s3e11/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2333
|
+
mlebench/competitions/playground_series_s3e11/grade.py,sha256=z7cB5QcnviGYYyQEaH6sNH1-359xzGjmyuTI4soplxI,1795
|
|
2334
|
+
mlebench/competitions/playground_series_s3e11/prepare.py,sha256=hJb_WQKnImn7K7Dw8kaAB8mEkXbF5LNipS-eUI2gOoc,891
|
|
2335
|
+
mlebench/competitions/predict-volcanic-eruptions-ingv-oe/grade.py,sha256=6Tv6paOmtdqCeSogMbBf99A4LDE9gPtHB6QrJpoTo0I,1815
|
|
2336
|
+
mlebench/competitions/predict-volcanic-eruptions-ingv-oe/prepare.py,sha256=o5GaRZ16u0ZJuu57vzOD_T9ZSlz5rIONr-IpIC5J3_I,2456
|
|
2337
|
+
mlebench/competitions/predict-volcanic-eruptions-ingv-oe/prepare_val.py,sha256=iwB4J3fXbcLIPCEd_FlXO9uMQjLOUKzeq_73pWC9Zi4,5603
|
|
2338
|
+
mlebench/competitions/random-acts-of-pizza/grade.py,sha256=QOan2rIWWR1jkjcBVcb1tv4Fij2w54hmq1d7ssckCFs,477
|
|
2339
|
+
mlebench/competitions/random-acts-of-pizza/prepare.py,sha256=t4G3WWBMmhoP_dAdRjcvCEalx_IIZ7VhODVTmK_mo5g,3270
|
|
2340
|
+
mlebench/competitions/random-acts-of-pizza/prepare_val.py,sha256=rDQSYI_KNMj2HgA6OxKxtIXW1u7W9MelUum3ydV7wI4,5619
|
|
2341
|
+
mlebench/competitions/ranzcr-clip-catheter-line-classification/classes.py,sha256=9_y0Ze__BWL38hwImqSDHYIV7ole5iUdSodeaDiW8QM,225
|
|
2342
|
+
mlebench/competitions/ranzcr-clip-catheter-line-classification/grade.py,sha256=hz5AYyK_L-dfdWnbgprLGXT6jkxAwfV2062w_cnoRiQ,1102
|
|
2343
|
+
mlebench/competitions/ranzcr-clip-catheter-line-classification/prepare.py,sha256=1bB3R8bILM5sUkWKuUEmLDk-V7c-msaqTmN6yf77j_Q,1928
|
|
2344
|
+
mlebench/competitions/ranzcr-clip-catheter-line-classification/prepare_val.py,sha256=5AYi_1zon8nlYhhjCB4d47XwCqpgysF0UogOcX5YfoE,4424
|
|
2345
|
+
mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/grade.py,sha256=4J7QW-of9sPCsmdELGRRP8ZeCs_bMtc17pFW2hYi10c,5126
|
|
2346
|
+
mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/prepare.py,sha256=GfeJcvU6btKXzB-LKVE2xWWg9dIZqXcn8cILSosdKyI,9073
|
|
2347
|
+
mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/prepare_val.py,sha256=nvF4137r31GJYx6qbbpVprXj-fbnvUjhlG7n5i0Ssmo,10921
|
|
2348
|
+
mlebench/competitions/rsna-breast-cancer-detection/grade.py,sha256=F3j92GB3aGI7gKqBDaWoK9UXLtlLp6dvf4G6nfZK80M,2154
|
|
2349
|
+
mlebench/competitions/rsna-breast-cancer-detection/prepare.py,sha256=wiP9eeR9HaHkdCnQnKqEcmxNqcbYYQNo_3O9HQtxVjA,5480
|
|
2350
|
+
mlebench/competitions/rsna-breast-cancer-detection/prepare_val.py,sha256=8fRRbjXV1PVqZTS1l9O3NvWhfz5AXIUCURYK2mW-P3Y,7747
|
|
2351
|
+
mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/grade.py,sha256=zcG1SudUvRvupWQz3DWHyZmIyaO5enOjotV3VlZhfD4,513
|
|
2352
|
+
mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/prepare.py,sha256=3lRn-E8r2JeCuMXLnuuvnIzV1PjlCxSxw7gj2Wh6BqU,1670
|
|
2353
|
+
mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/prepare_val.py,sha256=K-Mr0GH_Y_HaGZjHVSFH_bM_eoKMGlB3-ttCW80-ia0,3696
|
|
2354
|
+
mlebench/competitions/santander-customer-satisfaction/grade.py,sha256=3p9HiNaWUsiHLnNOYZIpG0XGgIOY1wF73s78XB8Kh-U,469
|
|
2355
|
+
mlebench/competitions/santander-customer-satisfaction/prepare.py,sha256=yfPrFnXy-tQS2C05A8JtvSrYAOZdxCC-ep4E6pFjSkc,1706
|
|
2356
|
+
mlebench/competitions/sciencebench-001-clintox-nn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2357
|
+
mlebench/competitions/sciencebench-001-clintox-nn/grade.py,sha256=vT_WOln-1NwJYT8jyVvhIkYACzyqZW6QM1hAQVhTO5E,1592
|
|
2358
|
+
mlebench/competitions/sciencebench-001-clintox-nn/prepare.py,sha256=45-XfR_w4wCuT-xtKXW2HXwaCRtAOPxN4lBVGDjJKk4,2867
|
|
2359
|
+
mlebench/competitions/sciencebench-015-aai/grade.py,sha256=tZCxeuCX--N-FL65SwobbTojsGCPh7Sm0KGyZDkelCE,1135
|
|
2360
|
+
mlebench/competitions/sciencebench-015-aai/prepare.py,sha256=bDFjeyjjxwGVWYuGCqcM-gRJpdngxO4ubP-ULzauj_A,3629
|
|
2361
|
+
mlebench/competitions/sciencebench-051-brain-blood-qsar/grade.py,sha256=VCMZsG2CfUmT1_hys6_CGW0z88w8KLwUHHRYVyIkEls,1898
|
|
2362
|
+
mlebench/competitions/sciencebench-051-brain-blood-qsar/prepare.py,sha256=wP1GgKFaTbU7rpKKOX2kG0WFnPx6OTS2wLQCaU64C4g,2042
|
|
2363
|
+
mlebench/competitions/sciencebench-101-experimental-band-gap-prediction/grade.py,sha256=a5ToM1wGj9NparA-lyJNgA_akzHGaEjIdsReo9qheOE,1414
|
|
2364
|
+
mlebench/competitions/sciencebench-101-experimental-band-gap-prediction/prepare.py,sha256=dOp1RBIfB-T5HoBmrqPcKbY4fYlXB3Tb3AvbEzgYeAs,2429
|
|
2365
|
+
mlebench/competitions/see-click-predict-fix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2366
|
+
mlebench/competitions/see-click-predict-fix/grade.py,sha256=HG7EsLHXsyyxLgC4YLLCVMAC3njg4nLOoken3ko0U8k,2220
|
|
2367
|
+
mlebench/competitions/see-click-predict-fix/prepare.py,sha256=NgUTLqFDNwL8yGx8RkFYi3TZLZu5EdYwsBDsjm5hLks,889
|
|
2368
|
+
mlebench/competitions/see_click_predict_fix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2369
|
+
mlebench/competitions/see_click_predict_fix/grade.py,sha256=HG7EsLHXsyyxLgC4YLLCVMAC3njg4nLOoken3ko0U8k,2220
|
|
2370
|
+
mlebench/competitions/see_click_predict_fix/prepare.py,sha256=NgUTLqFDNwL8yGx8RkFYi3TZLZu5EdYwsBDsjm5hLks,889
|
|
2371
|
+
mlebench/competitions/seti-breakthrough-listen/grade.py,sha256=ZVMhSlNbAtwr15R0p_Tf30cCJvKDX_jM5lr7_5AhzGg,426
|
|
2372
|
+
mlebench/competitions/seti-breakthrough-listen/prepare.py,sha256=scf0XYm9kQuCxHasoeHzJMQtW5okip_4n42WTV4hn4w,2508
|
|
2373
|
+
mlebench/competitions/seti-breakthrough-listen/prepare_val.py,sha256=oUv-A2o39SpAkAYuHTwSW5RtmJ37IuUme_wRW9i3bsU,6374
|
|
2374
|
+
mlebench/competitions/siim-covid19-detection/grade.py,sha256=1W-8qQPc-_V9LcZ6vmBzfEgOMK9B1QEAe9beltwMP6o,8594
|
|
2375
|
+
mlebench/competitions/siim-covid19-detection/prepare.py,sha256=sun_FEFipQlUVB1P1SCH9-BXo3dJdVyN3MA_D2kRLAg,5775
|
|
2376
|
+
mlebench/competitions/siim-covid19-detection/prepare_val.py,sha256=_NvSYe6ewJMVx6KvAWc1zMKuhm2m5OC7B7x0lXJLEjc,7194
|
|
2377
|
+
mlebench/competitions/siim-isic-melanoma-classification/grade.py,sha256=gtFNJGKon9JwT4F2FGbSRsGfefNkEjlGsbNIQo7jeT0,415
|
|
2378
|
+
mlebench/competitions/siim-isic-melanoma-classification/prepare.py,sha256=s3Q9fyxqOPmFiPpS7f-XeoCnV4sMD03rmXA8TtAc4mQ,5271
|
|
2379
|
+
mlebench/competitions/siim-isic-melanoma-classification/prepare_val.py,sha256=Vw0casKcTztkEege5kNZuOaJU3MGkG4QwmT9p8wavF0,7156
|
|
2380
|
+
mlebench/competitions/smartphone-decimeter-2022/grade.py,sha256=HI5rcHN2EKoK6WXid3HL1hXUd-bGb7T48tedyOuuALA,2177
|
|
2381
|
+
mlebench/competitions/smartphone-decimeter-2022/notebook.py,sha256=laBPHyKko2L3rK23aoOFIRnUHT7LchWxpRXUTydGtgI,2144
|
|
2382
|
+
mlebench/competitions/smartphone-decimeter-2022/prepare.py,sha256=pjDB1DRuiS38xLn_CIWU3q2_uMxTtHWvRrjQ_TnSExg,5508
|
|
2383
|
+
mlebench/competitions/smartphone-decimeter-2022/prepare_val.py,sha256=3XFeZlobS8cQEzB3XgIzYNekzdONj5B-6XVRkYMgJnU,7624
|
|
2384
|
+
mlebench/competitions/spaceship-titanic/grade.py,sha256=Udo7b08pv7Yje3qp3ZdJ5yXFk1bZ1C8Q4nzcX0wYqY4,406
|
|
2385
|
+
mlebench/competitions/spaceship-titanic/prepare.py,sha256=9vbgQk2YeYxQ9ZWL9xtNxkYpdlWx5jxfo8_mSyFmgLo,860
|
|
2386
|
+
mlebench/competitions/spaceship-titanic/prepare_val.py,sha256=b7gdoSrfie9lMxVGLk6-3PYvD_uyBkGx9BJaLazmVjw,2412
|
|
2387
|
+
mlebench/competitions/spooky-author-identification/classes.py,sha256=L2qbgkHYcW9dJt6UnSs-4yxBqGVrWGQHmtL64FnC3eU,32
|
|
2388
|
+
mlebench/competitions/spooky-author-identification/grade.py,sha256=qVvVlpVy_k0iJN0BBkDzFqg-pVgQvf-Rs5pwXbAwX1k,1385
|
|
2389
|
+
mlebench/competitions/spooky-author-identification/prepare.py,sha256=Vs2BUshIxl30ZtaJfTlq-ABFmUlKL09ML7QapwS3pAE,1399
|
|
2390
|
+
mlebench/competitions/spooky-author-identification/prepare_val.py,sha256=5zmICL-5xiRf4abRREk0kB2F3RmR0qHMS9ju6Gevijw,3434
|
|
2391
|
+
mlebench/competitions/stanford-covid-vaccine/grade.py,sha256=c7XTIbx666JeXf5ykfyWb5WW6seoqw_0Slgead3FUBM,2609
|
|
2392
|
+
mlebench/competitions/stanford-covid-vaccine/prepare.py,sha256=exc-S-mmjGQ_cmpZBNmTTgad56yrdgk5zi2Xg45y1Aw,5361
|
|
2393
|
+
mlebench/competitions/stanford-covid-vaccine/prepare_val.py,sha256=azP2DseCIRPZFDg4hgjDGOsFbaICCkI6HLP5gd_H0BA,7969
|
|
2394
|
+
mlebench/competitions/statoil-iceberg-classifier-challenge/grade.py,sha256=xtZFPY6vTbDv5Ptep5uwvfndu3R3NYaDN7GVkvNWAmE,1481
|
|
2395
|
+
mlebench/competitions/statoil-iceberg-classifier-challenge/prepare.py,sha256=4U6oww3KhZAYVv3qgm0aWddkNzlCmduumRjBdmNy2Co,4291
|
|
2396
|
+
mlebench/competitions/statoil-iceberg-classifier-challenge/prepare_val.py,sha256=0VUDH3nwPrtPEXKQolOx2xdR3a73Kaf0gJCTowwjJ54,6215
|
|
2397
|
+
mlebench/competitions/tabular-playground-series-dec-2021/grade.py,sha256=-dcEtqw0Zcd-3yKcPnLI798MTHvGfREVCFr9aBauC_g,396
|
|
2398
|
+
mlebench/competitions/tabular-playground-series-dec-2021/prepare.py,sha256=6gYOR7i2fU1MYpHkabuTqGmDbftAtKrErrrGt-piikA,1410
|
|
2399
|
+
mlebench/competitions/tabular-playground-series-dec-2021/prepare_val.py,sha256=WceMRV9y3vHCwIbmWyi-TnKIHC9tU5a63U3FgXib9iE,3606
|
|
2400
|
+
mlebench/competitions/tabular-playground-series-may-2022/grade.py,sha256=VLWAb72OGfTwmUhKk96yoVK71qrnq4JopU-Vbt9Dt6A,393
|
|
2401
|
+
mlebench/competitions/tabular-playground-series-may-2022/prepare.py,sha256=fFBpUNsZePfnsP5GAHEBYIAQdNNM2KH0hPPGOBXLLbg,2387
|
|
2402
|
+
mlebench/competitions/tabular-playground-series-may-2022/prepare_val.py,sha256=Cfa0_8Mg1hvFVO5XmLHQMY2fcdvljyuh8DuiMLcADEo,4642
|
|
2403
|
+
mlebench/competitions/tensorflow-speech-recognition-challenge/grade.py,sha256=6dYldtGWloUsTBDDvYM_64GoI4_tsp5XjPxYwyYf9Ns,394
|
|
2404
|
+
mlebench/competitions/tensorflow-speech-recognition-challenge/prepare.py,sha256=gSMax-g9dbp2s-0qfHrUHSvTjvLP1vmb-bQ60n8_OUM,2703
|
|
2405
|
+
mlebench/competitions/tensorflow-speech-recognition-challenge/prepare_val.py,sha256=P9Wjq2gNiUvpCJQdNTrcsgdbY8rLbQY2l009puPypTU,4857
|
|
2406
|
+
mlebench/competitions/tensorflow2-question-answering/grade.py,sha256=e5aDQi7nf6T-vp_ZOEuGHjamrwpVPJDMev-tmLfidSc,5261
|
|
2407
|
+
mlebench/competitions/tensorflow2-question-answering/prepare.py,sha256=clgQeVmPYpgSrBdmFxni_xrZizPdrvkuszTN2LR_1iM,4739
|
|
2408
|
+
mlebench/competitions/tensorflow2-question-answering/prepare_val.py,sha256=tpjfHCHZWEytGGoLa6eQsmsxRGWmX7b6iRPHIz8mS-8,8153
|
|
2409
|
+
mlebench/competitions/text-normalization-challenge-english-language/grade.py,sha256=UqvUHSSDmkC3YiWut3eKfZ0vHV7ZqplcRejKbB9o7_8,1796
|
|
2410
|
+
mlebench/competitions/text-normalization-challenge-english-language/prepare.py,sha256=yxqFme5z1iMJp_VvILzcDbjy6liwtvaaK2CaR1wtskQ,4605
|
|
2411
|
+
mlebench/competitions/text-normalization-challenge-english-language/prepare_val.py,sha256=7-_tDOTFBRx7EUEDtgiDQ89K6bQ3N1Jdr2xJPwcrNBE,7764
|
|
2412
|
+
mlebench/competitions/text-normalization-challenge-russian-language/grade.py,sha256=UqvUHSSDmkC3YiWut3eKfZ0vHV7ZqplcRejKbB9o7_8,1796
|
|
2413
|
+
mlebench/competitions/text-normalization-challenge-russian-language/prepare.py,sha256=O8m0P5_EFwdbiqrmXbBt0VX-YI6R5ik339FAkub202E,4520
|
|
2414
|
+
mlebench/competitions/text-normalization-challenge-russian-language/prepare_val.py,sha256=UrQ-w9km0sRT8VMoDd2W6wqUcZSiyQSAU_dldhtyRiU,6702
|
|
2415
|
+
mlebench/competitions/tgs-salt-identification-challenge/grade.py,sha256=PkyjMvjGEoHrw0V8f7VQNAHjLpoQP-18S66wRnvES0Q,4547
|
|
2416
|
+
mlebench/competitions/tgs-salt-identification-challenge/prepare.py,sha256=Ycz-AYD7pDIS5WbDxgeC7eim6C2rDI0BDfRTVSrskbM,6261
|
|
2417
|
+
mlebench/competitions/tgs-salt-identification-challenge/prepare_val.py,sha256=eBhArEolm5qNnEJsw-z50HIExjp-62FT-v85_N3bM8w,7417
|
|
2418
|
+
mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/grade.py,sha256=D3bcm3yyGElLaArut1M2MgaHJ0-i_o3z1LHsbtdPFvY,414
|
|
2419
|
+
mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/prepare.py,sha256=Lsx2OpN-Cr6n2szWurOSj_Cv4rx6RJ5KXCi10xXSa2U,3912
|
|
2420
|
+
mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/prepare_val.py,sha256=rg3yGZfYsw5x_tzxKW7ZwBnR-b_rLnF1NlPXgOkDL2Q,5600
|
|
2421
|
+
mlebench/competitions/tmdb-box-office-prediction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2422
|
+
mlebench/competitions/tmdb-box-office-prediction/grade.py,sha256=ckiiZYKfD5H7PO366V9IlunZK6h-oJl9w7-FSx1YL2o,1820
|
|
2423
|
+
mlebench/competitions/tmdb-box-office-prediction/prepare.py,sha256=hDsSUKhn8oEpabKJJipIwvbzmQnKAYeqcxsbV-VIPaU,1480
|
|
2424
|
+
mlebench/competitions/tweet-sentiment-extraction/grade.py,sha256=EtAYSTgLj27wQPKHtx9wL5iSeASaMQOX5xM7YloXs4M,2455
|
|
2425
|
+
mlebench/competitions/tweet-sentiment-extraction/prepare.py,sha256=lB0FJ5YjQfkMTuhW1yVDAZrYbtSRmrrVYj12kNYZV3U,1414
|
|
2426
|
+
mlebench/competitions/tweet-sentiment-extraction/prepare_val.py,sha256=jNxSi2eral0YZcbyu7TzcRXXF_3_inmHv6n6zQ_2yJ8,3956
|
|
2427
|
+
mlebench/competitions/us-patent-phrase-to-phrase-matching/grade.py,sha256=2pdASAG4eiDK_IgYuJcbfVDQJv8xp6_MnszXjfC8g50,1263
|
|
2428
|
+
mlebench/competitions/us-patent-phrase-to-phrase-matching/prepare.py,sha256=GF5oLRN761HbLFW2XWIP3FolUmKvU4jjw-pAPAWVgWM,1155
|
|
2429
|
+
mlebench/competitions/us-patent-phrase-to-phrase-matching/prepare_val.py,sha256=wcpzjP4BUYbZOn8gZVM4ULiLXDJE7xIDZbjemnp2Bbc,2926
|
|
2430
|
+
mlebench/competitions/uw-madison-gi-tract-image-segmentation/grade.py,sha256=qS_PP5dDSNXwj_iccuGbwPrJXhcOKSxGLoB_gC-LUZs,6685
|
|
2431
|
+
mlebench/competitions/uw-madison-gi-tract-image-segmentation/prepare.py,sha256=IAQwAN5_7fpyAor714hbj4v6HWkhSkDBFSdql_aiiNQ,6566
|
|
2432
|
+
mlebench/competitions/uw-madison-gi-tract-image-segmentation/prepare_val.py,sha256=UR-Rh9yZ09K-jBJpwCmOI2tZGY11UJmR0jv9JI1sX0U,8755
|
|
2433
|
+
mlebench/competitions/ventilator-pressure-prediction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2434
|
+
mlebench/competitions/ventilator-pressure-prediction/grade.py,sha256=o4tAjqdtC_t4KsZc681M7unfrnC8XK9i1Mw0oYbDkL0,1687
|
|
2435
|
+
mlebench/competitions/ventilator-pressure-prediction/prepare.py,sha256=x0ZLwc2KZpzTlyshzXP8JzZZmB9ZS7ywRtlm3Cmm0t0,1062
|
|
2436
|
+
mlebench/competitions/ventilator-pressure-prediction/prepare_val.py,sha256=PhW-TWHnZzS1zx9-2HE06ErfcxDN5fB2Qy-PDLp2nCU,5510
|
|
2437
|
+
mlebench/competitions/ventilator_pressure_prediction/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2438
|
+
mlebench/competitions/ventilator_pressure_prediction/grade.py,sha256=o4tAjqdtC_t4KsZc681M7unfrnC8XK9i1Mw0oYbDkL0,1687
|
|
2439
|
+
mlebench/competitions/ventilator_pressure_prediction/prepare.py,sha256=x0ZLwc2KZpzTlyshzXP8JzZZmB9ZS7ywRtlm3Cmm0t0,1062
|
|
2440
|
+
mlebench/competitions/vesuvius-challenge-ink-detection/grade.py,sha256=tMJn32xgPR5bw5Rke0z6vZCwtnmgkoQXvzo1Soj1t88,3676
|
|
2441
|
+
mlebench/competitions/vesuvius-challenge-ink-detection/prepare.py,sha256=gQ4PrmlyaLJeAK5QpTirVe5oF4bayfpEX5PYeQTMIZ4,4183
|
|
2442
|
+
mlebench/competitions/vesuvius-challenge-ink-detection/prepare_val.py,sha256=6cliDvfBi7V_mMX1RuZWFyhzW4RqutCg_G1Dpw4NZro,6462
|
|
2443
|
+
mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/grade.py,sha256=D_YChiUFwNrul69_UMM4CqEs-RmsI79PiPAOBVyQ7j4,6799
|
|
2444
|
+
mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/prepare.py,sha256=9rJhQRR_XMG9aDZW7nKpPVjNX3FAm8Lwlt82RsRegb8,5655
|
|
2445
|
+
mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/prepare_val.py,sha256=_KxaH-i9rI7jTqXIa6eKboxFqYxbo4SQX4sJt6qqMwc,8176
|
|
2446
|
+
mlebench/competitions/whale-categorization-playground/grade.py,sha256=Wl1fNvpapAmc_Cdy2Cp68nEqeHB2XKnN91U9t-YLlXQ,1562
|
|
2447
|
+
mlebench/competitions/whale-categorization-playground/prepare.py,sha256=huo8fDBcGR413JF8m8Js8l8gkFCZpWL1st7Yd57Rjg8,4199
|
|
2448
|
+
mlebench/competitions/whale-categorization-playground/prepare_val.py,sha256=XvdnOvEJyTxovXQsoKLMKA_J6EMdxkpOe_SIgEdoOx8,7486
|
|
2449
|
+
dslighting-1.7.8.dist-info/METADATA,sha256=_aT7IWO_N5aRJYEj0RAIJVdiZSPA89UHKiiUEUzgh1M,18239
|
|
2450
|
+
dslighting-1.7.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
2451
|
+
dslighting-1.7.8.dist-info/entry_points.txt,sha256=1xqIWL9-EG9t7nkERVeNRtMoRyIQe-6CJZJN-rdCYFQ,91
|
|
2452
|
+
dslighting-1.7.8.dist-info/top_level.txt,sha256=cmZU3ri0tz1IjiTKrz85Ih9614QlCrYqSqzlPMgaSM0,25
|
|
2453
|
+
dslighting-1.7.8.dist-info/RECORD,,
|
mlebench/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# MLE-Bench Competitions
|
|
2
|
+
|
|
3
|
+
This directory hosts the official competition definitions for the MLE-Bench workflow. Each competition bundles the metadata required for orchestration together with the scripts used to prepare data, validate submissions, and score results.
|
|
4
|
+
|
|
5
|
+
## Adding a New Competition
|
|
6
|
+
|
|
7
|
+
To register an additional competition, add a new folder under `mlebench/competitions/<competition-name>` and include the following files:
|
|
8
|
+
|
|
9
|
+
1. `config.yaml` – top-level competition metadata (IDs, task type, modality, scoring, and expected file layout).
|
|
10
|
+
2. `description.md` – human-readable overview: problem statement, dataset details, and submission format.
|
|
11
|
+
3. `prepare.py` – data preparation hook that downloads/loads the raw data and materializes the prepared artifacts into the public/private directories defined in `config.yaml`.
|
|
12
|
+
4. `grade.py` – scoring logic that consumes a submission and the private ground-truth labels, then returns the configured metric.
|
|
13
|
+
5. `checksums.yaml` – SHA256 hashes for every artifact emitted by `prepare.py` to guard against accidental drift.
|
|
14
|
+
6. `leaderboard.csv` – optional sample leaderboard with historical submissions or reference baselines.
|
|
15
|
+
|
|
16
|
+
Place the actual dataset (usually `.npy`, `.csv`, or other assets) inside the paired DSFlow repository at `DSFlow/data/competitions/<competition-name>`. Follow the public/private split defined by the configuration:
|
|
17
|
+
|
|
18
|
+
- `prepared/public/` – files exposed to participants (e.g., train/test splits, sample submissions). Avoid packaging executable code in this directory.
|
|
19
|
+
- `prepared/private/` – labels or other hidden assets required exclusively for scoring.
|
|
20
|
+
|
|
21
|
+
Once the folder structure and data are in place:
|
|
22
|
+
|
|
23
|
+
1. Run `prepare.py` to materialize the prepared assets.
|
|
24
|
+
2. Verify referential integrity by regenerating `checksums.yaml`.
|
|
25
|
+
3. Load the competition through `run_benchmark.py` (see the ethanol competition summary) to ensure preparation, loading, and grading complete successfully.
|
|
26
|
+
|
|
27
|
+
## Supported Modalities
|
|
28
|
+
|
|
29
|
+
- Time series – sequential data where samples are represented as `(N, T, F)` tensors (N: number of samples, T: time steps, F: feature dimensions).
|
|
30
|
+
|
|
31
|
+
## Available Competitions
|
|
32
|
+
|
|
33
|
+
| Competition | Task Type | Input Shape | Output Shape | Metric | Samples (train/test) |
|
|
34
|
+
|------------------------|-----------|----------------------|------------------------|-------------|----------------------|
|
|
35
|
+
| handwriting | Classification | `(N, 152, 3)` | `(N,)` labels | Accuracy | 150 / 850 |
|
|
36
|
+
| ethanol-concentration | Classification | `(N, 1751, 3)` | `(N,)` labels | Accuracy | 261 / 263 |
|
|
37
|
+
| ili | Forecasting | `(N, 36, 7)` | `(N, 24, 7)` sequence | MSE / MAE | 617 / 170 |
|
|
38
|
+
|
|
39
|
+
These competitions demonstrate how to translate diverse time-series problems into the MLE-Bench format, from short handwritten gesture classification to long multivariate ethanol spectroscopy and influenza forecasting tasks.
|
mlebench/__init__.py
ADDED
|
File without changes
|