dslighting 1.3.6__tar.gz → 1.9.8__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.
Files changed (2481) hide show
  1. dslighting-1.9.8/PIP_DOC/README_PIP.md +322 -0
  2. dslighting-1.9.8/PKG-INFO +397 -0
  3. dslighting-1.9.8/README.md +560 -0
  4. dslighting-1.9.8/dsat/common/typing.py +20 -0
  5. dslighting-1.9.8/dsat/config.py +80 -0
  6. dslighting-1.9.8/dsat/models/candidates.py +17 -0
  7. dslighting-1.9.8/dsat/models/task.py +64 -0
  8. dslighting-1.9.8/dsat/runner.py +562 -0
  9. dslighting-1.9.8/dsat/services/sandbox.py +410 -0
  10. dslighting-1.9.8/dsat/services/states/journal.py +155 -0
  11. dslighting-1.9.8/dsat/workflows/factory.py +457 -0
  12. dslighting-1.9.8/dslighting/__init__.py +636 -0
  13. dslighting-1.9.8/dslighting/core/agent.py +948 -0
  14. dslighting-1.9.8/dslighting/core/config_builder.py +380 -0
  15. dslighting-1.9.8/dslighting/core/data_loader.py +681 -0
  16. dslighting-1.9.8/dslighting/core/global_config.py +149 -0
  17. dslighting-1.9.8/dslighting/datasets/__init__.py +186 -0
  18. dslighting-1.9.8/dslighting/datasets/bike-sharing-demand/prepared/private/test_answer.csv +2179 -0
  19. dslighting-1.9.8/dslighting/datasets/bike-sharing-demand/prepared/public/sampleSubmission.csv +2179 -0
  20. dslighting-1.9.8/dslighting/datasets/bike-sharing-demand/prepared/public/test.csv +2179 -0
  21. dslighting-1.9.8/dslighting/datasets/bike-sharing-demand/prepared/public/train.csv +8709 -0
  22. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/checksums.yaml +6 -0
  23. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/config.yaml +22 -0
  24. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/description.md +157 -0
  25. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/description_obfuscated.md +66 -0
  26. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/grade.py +161 -0
  27. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/mAP_evaluation.py +425 -0
  28. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/prepare.py +483 -0
  29. dslighting-1.9.8/dslighting/registry/3d-object-detection-for-autonomous-vehicles/prepare_val.py +719 -0
  30. dslighting-1.9.8/dslighting/registry/AI4Code/checksums.yaml +7 -0
  31. dslighting-1.9.8/dslighting/registry/AI4Code/config.yaml +26 -0
  32. dslighting-1.9.8/dslighting/registry/AI4Code/description.md +122 -0
  33. dslighting-1.9.8/dslighting/registry/AI4Code/description_obfuscated.md +38 -0
  34. dslighting-1.9.8/dslighting/registry/AI4Code/grade.py +70 -0
  35. dslighting-1.9.8/dslighting/registry/AI4Code/prepare.py +84 -0
  36. dslighting-1.9.8/dslighting/registry/AI4Code/prepare_val.py +159 -0
  37. dslighting-1.9.8/dslighting/registry/README.md +466 -0
  38. dslighting-1.9.8/dslighting/registry/__init__.py +0 -0
  39. dslighting-1.9.8/dslighting/registry/aerial-cactus-identification/checksums.yaml +6 -0
  40. dslighting-1.9.8/dslighting/registry/aerial-cactus-identification/config.yaml +16 -0
  41. dslighting-1.9.8/dslighting/registry/aerial-cactus-identification/description.md +56 -0
  42. dslighting-1.9.8/dslighting/registry/aerial-cactus-identification/description_obfuscated.md +28 -0
  43. dslighting-1.9.8/dslighting/registry/aerial-cactus-identification/grade.py +11 -0
  44. dslighting-1.9.8/dslighting/registry/aerial-cactus-identification/prepare.py +71 -0
  45. dslighting-1.9.8/dslighting/registry/aerial-cactus-identification/prepare_val.py +133 -0
  46. dslighting-1.9.8/dslighting/registry/alaska2-image-steganalysis/checksums.yaml +5 -0
  47. dslighting-1.9.8/dslighting/registry/alaska2-image-steganalysis/config.yaml +22 -0
  48. dslighting-1.9.8/dslighting/registry/alaska2-image-steganalysis/description.md +91 -0
  49. dslighting-1.9.8/dslighting/registry/alaska2-image-steganalysis/description_obfuscated.md +44 -0
  50. dslighting-1.9.8/dslighting/registry/alaska2-image-steganalysis/grade.py +136 -0
  51. dslighting-1.9.8/dslighting/registry/alaska2-image-steganalysis/prepare.py +88 -0
  52. dslighting-1.9.8/dslighting/registry/alaska2-image-steganalysis/prepare_val.py +148 -0
  53. dslighting-1.9.8/dslighting/registry/aptos2019-blindness-detection/checksums.yaml +7 -0
  54. dslighting-1.9.8/dslighting/registry/aptos2019-blindness-detection/config.yaml +24 -0
  55. dslighting-1.9.8/dslighting/registry/aptos2019-blindness-detection/description.md +118 -0
  56. dslighting-1.9.8/dslighting/registry/aptos2019-blindness-detection/description_obfuscated.md +40 -0
  57. dslighting-1.9.8/dslighting/registry/aptos2019-blindness-detection/grade.py +35 -0
  58. dslighting-1.9.8/dslighting/registry/aptos2019-blindness-detection/prepare.py +75 -0
  59. dslighting-1.9.8/dslighting/registry/aptos2019-blindness-detection/prepare_val.py +123 -0
  60. dslighting-1.9.8/dslighting/registry/bike-sharing-demand/__init__.py +0 -0
  61. dslighting-1.9.8/dslighting/registry/bike-sharing-demand/config.yaml +15 -0
  62. dslighting-1.9.8/dslighting/registry/bike-sharing-demand/description.md +54 -0
  63. dslighting-1.9.8/dslighting/registry/bike-sharing-demand/grade.py +55 -0
  64. dslighting-1.9.8/dslighting/registry/bike-sharing-demand/prepare.py +37 -0
  65. dslighting-1.9.8/dslighting/registry/bike-sharing-demand/report.md +179 -0
  66. dslighting-1.9.8/dslighting/registry/billion-word-imputation/checksums.yaml +5 -0
  67. dslighting-1.9.8/dslighting/registry/billion-word-imputation/config.yaml +16 -0
  68. dslighting-1.9.8/dslighting/registry/billion-word-imputation/description.md +52 -0
  69. dslighting-1.9.8/dslighting/registry/billion-word-imputation/description_obfuscated.md +32 -0
  70. dslighting-1.9.8/dslighting/registry/billion-word-imputation/grade.py +37 -0
  71. dslighting-1.9.8/dslighting/registry/billion-word-imputation/prepare.py +107 -0
  72. dslighting-1.9.8/dslighting/registry/billion-word-imputation/prepare_val.py +179 -0
  73. dslighting-1.9.8/dslighting/registry/bms-molecular-translation/checksums.yaml +7 -0
  74. dslighting-1.9.8/dslighting/registry/bms-molecular-translation/config.yaml +22 -0
  75. dslighting-1.9.8/dslighting/registry/bms-molecular-translation/description.md +68 -0
  76. dslighting-1.9.8/dslighting/registry/bms-molecular-translation/description_obfuscated.md +26 -0
  77. dslighting-1.9.8/dslighting/registry/bms-molecular-translation/grade.py +40 -0
  78. dslighting-1.9.8/dslighting/registry/bms-molecular-translation/prepare.py +68 -0
  79. dslighting-1.9.8/dslighting/registry/bms-molecular-translation/prepare_val.py +131 -0
  80. dslighting-1.9.8/dslighting/registry/cassava-leaf-disease-classification/checksums.yaml +7 -0
  81. dslighting-1.9.8/dslighting/registry/cassava-leaf-disease-classification/config.yaml +28 -0
  82. dslighting-1.9.8/dslighting/registry/cassava-leaf-disease-classification/description.md +124 -0
  83. dslighting-1.9.8/dslighting/registry/cassava-leaf-disease-classification/description_obfuscated.md +36 -0
  84. dslighting-1.9.8/dslighting/registry/cassava-leaf-disease-classification/grade.py +12 -0
  85. dslighting-1.9.8/dslighting/registry/cassava-leaf-disease-classification/prepare.py +113 -0
  86. dslighting-1.9.8/dslighting/registry/cassava-leaf-disease-classification/prepare_val.py +186 -0
  87. dslighting-1.9.8/dslighting/registry/cdiscount-image-classification-challenge/checksums.yaml +9 -0
  88. dslighting-1.9.8/dslighting/registry/cdiscount-image-classification-challenge/config.yaml +22 -0
  89. dslighting-1.9.8/dslighting/registry/cdiscount-image-classification-challenge/description.md +100 -0
  90. dslighting-1.9.8/dslighting/registry/cdiscount-image-classification-challenge/description_obfuscated.md +25 -0
  91. dslighting-1.9.8/dslighting/registry/cdiscount-image-classification-challenge/grade.py +11 -0
  92. dslighting-1.9.8/dslighting/registry/cdiscount-image-classification-challenge/prepare.py +144 -0
  93. dslighting-1.9.8/dslighting/registry/cdiscount-image-classification-challenge/prepare_val.py +205 -0
  94. dslighting-1.9.8/dslighting/registry/chaii-hindi-and-tamil-question-answering/checksums.yaml +7 -0
  95. dslighting-1.9.8/dslighting/registry/chaii-hindi-and-tamil-question-answering/config.yaml +26 -0
  96. dslighting-1.9.8/dslighting/registry/chaii-hindi-and-tamil-question-answering/description.md +138 -0
  97. dslighting-1.9.8/dslighting/registry/chaii-hindi-and-tamil-question-answering/description_obfuscated.md +59 -0
  98. dslighting-1.9.8/dslighting/registry/chaii-hindi-and-tamil-question-answering/grade.py +67 -0
  99. dslighting-1.9.8/dslighting/registry/chaii-hindi-and-tamil-question-answering/prepare.py +31 -0
  100. dslighting-1.9.8/dslighting/registry/chaii-hindi-and-tamil-question-answering/prepare_val.py +94 -0
  101. dslighting-1.9.8/dslighting/registry/champs-scalar-coupling/checksums.yaml +13 -0
  102. dslighting-1.9.8/dslighting/registry/champs-scalar-coupling/config.yaml +26 -0
  103. dslighting-1.9.8/dslighting/registry/champs-scalar-coupling/description.md +111 -0
  104. dslighting-1.9.8/dslighting/registry/champs-scalar-coupling/description_obfuscated.md +32 -0
  105. dslighting-1.9.8/dslighting/registry/champs-scalar-coupling/grade.py +60 -0
  106. dslighting-1.9.8/dslighting/registry/champs-scalar-coupling/prepare.py +116 -0
  107. dslighting-1.9.8/dslighting/registry/champs-scalar-coupling/prepare_val.py +155 -0
  108. dslighting-1.9.8/dslighting/registry/conways-reverse-game-of-life-2020/__init__.py +0 -0
  109. dslighting-1.9.8/dslighting/registry/conways-reverse-game-of-life-2020/checksums.yaml +9 -0
  110. dslighting-1.9.8/dslighting/registry/conways-reverse-game-of-life-2020/config.yaml +17 -0
  111. dslighting-1.9.8/dslighting/registry/conways-reverse-game-of-life-2020/description.md +27 -0
  112. dslighting-1.9.8/dslighting/registry/conways-reverse-game-of-life-2020/grade.py +40 -0
  113. dslighting-1.9.8/dslighting/registry/conways-reverse-game-of-life-2020/prepare.py +41 -0
  114. dslighting-1.9.8/dslighting/registry/dabench-0-mean-fare-paid/checksums.yaml +2 -0
  115. dslighting-1.9.8/dslighting/registry/dabench-0-mean-fare-paid/config.yaml +16 -0
  116. dslighting-1.9.8/dslighting/registry/dabench-0-mean-fare-paid/description.md +43 -0
  117. dslighting-1.9.8/dslighting/registry/dabench-0-mean-fare-paid/grade.py +66 -0
  118. dslighting-1.9.8/dslighting/registry/dabench-0-mean-fare-paid/prepare.py +49 -0
  119. dslighting-1.9.8/dslighting/registry/dabench-10-total-traded-quantity/checksums.yaml +2 -0
  120. dslighting-1.9.8/dslighting/registry/dabench-10-total-traded-quantity/config.yaml +16 -0
  121. dslighting-1.9.8/dslighting/registry/dabench-10-total-traded-quantity/description.md +43 -0
  122. dslighting-1.9.8/dslighting/registry/dabench-10-total-traded-quantity/grade.py +66 -0
  123. dslighting-1.9.8/dslighting/registry/dabench-10-total-traded-quantity/prepare.py +49 -0
  124. dslighting-1.9.8/dslighting/registry/dabench-105-correlation-coefficient-between/checksums.yaml +2 -0
  125. dslighting-1.9.8/dslighting/registry/dabench-105-correlation-coefficient-between/config.yaml +16 -0
  126. dslighting-1.9.8/dslighting/registry/dabench-105-correlation-coefficient-between/description.md +43 -0
  127. dslighting-1.9.8/dslighting/registry/dabench-105-correlation-coefficient-between/grade.py +66 -0
  128. dslighting-1.9.8/dslighting/registry/dabench-105-correlation-coefficient-between/prepare.py +49 -0
  129. dslighting-1.9.8/dslighting/registry/dabench-108-generate-feature-called/checksums.yaml +2 -0
  130. dslighting-1.9.8/dslighting/registry/dabench-108-generate-feature-called/config.yaml +16 -0
  131. dslighting-1.9.8/dslighting/registry/dabench-108-generate-feature-called/description.md +43 -0
  132. dslighting-1.9.8/dslighting/registry/dabench-108-generate-feature-called/grade.py +66 -0
  133. dslighting-1.9.8/dslighting/registry/dabench-108-generate-feature-called/prepare.py +49 -0
  134. dslighting-1.9.8/dslighting/registry/dabench-109-explore-distribution-loanamount/checksums.yaml +2 -0
  135. dslighting-1.9.8/dslighting/registry/dabench-109-explore-distribution-loanamount/config.yaml +16 -0
  136. dslighting-1.9.8/dslighting/registry/dabench-109-explore-distribution-loanamount/description.md +45 -0
  137. dslighting-1.9.8/dslighting/registry/dabench-109-explore-distribution-loanamount/grade.py +66 -0
  138. dslighting-1.9.8/dslighting/registry/dabench-109-explore-distribution-loanamount/prepare.py +49 -0
  139. dslighting-1.9.8/dslighting/registry/dabench-11-correlation-coefficient-between/checksums.yaml +2 -0
  140. dslighting-1.9.8/dslighting/registry/dabench-11-correlation-coefficient-between/config.yaml +16 -0
  141. dslighting-1.9.8/dslighting/registry/dabench-11-correlation-coefficient-between/description.md +45 -0
  142. dslighting-1.9.8/dslighting/registry/dabench-11-correlation-coefficient-between/grade.py +66 -0
  143. dslighting-1.9.8/dslighting/registry/dabench-11-correlation-coefficient-between/prepare.py +49 -0
  144. dslighting-1.9.8/dslighting/registry/dabench-111-comprehensive-data-preprocessing/checksums.yaml +2 -0
  145. dslighting-1.9.8/dslighting/registry/dabench-111-comprehensive-data-preprocessing/config.yaml +16 -0
  146. dslighting-1.9.8/dslighting/registry/dabench-111-comprehensive-data-preprocessing/description.md +43 -0
  147. dslighting-1.9.8/dslighting/registry/dabench-111-comprehensive-data-preprocessing/grade.py +66 -0
  148. dslighting-1.9.8/dslighting/registry/dabench-111-comprehensive-data-preprocessing/prepare.py +49 -0
  149. dslighting-1.9.8/dslighting/registry/dabench-114-which-country-highest/checksums.yaml +2 -0
  150. dslighting-1.9.8/dslighting/registry/dabench-114-which-country-highest/config.yaml +16 -0
  151. dslighting-1.9.8/dslighting/registry/dabench-114-which-country-highest/description.md +43 -0
  152. dslighting-1.9.8/dslighting/registry/dabench-114-which-country-highest/grade.py +66 -0
  153. dslighting-1.9.8/dslighting/registry/dabench-114-which-country-highest/prepare.py +49 -0
  154. dslighting-1.9.8/dslighting/registry/dabench-116-there-outliers-happiness/checksums.yaml +2 -0
  155. dslighting-1.9.8/dslighting/registry/dabench-116-there-outliers-happiness/config.yaml +16 -0
  156. dslighting-1.9.8/dslighting/registry/dabench-116-there-outliers-happiness/description.md +43 -0
  157. dslighting-1.9.8/dslighting/registry/dabench-116-there-outliers-happiness/grade.py +66 -0
  158. dslighting-1.9.8/dslighting/registry/dabench-116-there-outliers-happiness/prepare.py +49 -0
  159. dslighting-1.9.8/dslighting/registry/dabench-117-which-variable-strongest/checksums.yaml +2 -0
  160. dslighting-1.9.8/dslighting/registry/dabench-117-which-variable-strongest/config.yaml +16 -0
  161. dslighting-1.9.8/dslighting/registry/dabench-117-which-variable-strongest/description.md +45 -0
  162. dslighting-1.9.8/dslighting/registry/dabench-117-which-variable-strongest/grade.py +66 -0
  163. dslighting-1.9.8/dslighting/registry/dabench-117-which-variable-strongest/prepare.py +49 -0
  164. dslighting-1.9.8/dslighting/registry/dabench-118-there-linear-relationship/checksums.yaml +2 -0
  165. dslighting-1.9.8/dslighting/registry/dabench-118-there-linear-relationship/config.yaml +16 -0
  166. dslighting-1.9.8/dslighting/registry/dabench-118-there-linear-relationship/description.md +43 -0
  167. dslighting-1.9.8/dslighting/registry/dabench-118-there-linear-relationship/grade.py +66 -0
  168. dslighting-1.9.8/dslighting/registry/dabench-118-there-linear-relationship/prepare.py +49 -0
  169. dslighting-1.9.8/dslighting/registry/dabench-123-which-country-highest/checksums.yaml +2 -0
  170. dslighting-1.9.8/dslighting/registry/dabench-123-which-country-highest/config.yaml +16 -0
  171. dslighting-1.9.8/dslighting/registry/dabench-123-which-country-highest/description.md +46 -0
  172. dslighting-1.9.8/dslighting/registry/dabench-123-which-country-highest/grade.py +66 -0
  173. dslighting-1.9.8/dslighting/registry/dabench-123-which-country-highest/prepare.py +49 -0
  174. dslighting-1.9.8/dslighting/registry/dabench-124-there-significant-difference/checksums.yaml +2 -0
  175. dslighting-1.9.8/dslighting/registry/dabench-124-there-significant-difference/config.yaml +16 -0
  176. dslighting-1.9.8/dslighting/registry/dabench-124-there-significant-difference/description.md +48 -0
  177. dslighting-1.9.8/dslighting/registry/dabench-124-there-significant-difference/grade.py +66 -0
  178. dslighting-1.9.8/dslighting/registry/dabench-124-there-significant-difference/prepare.py +49 -0
  179. dslighting-1.9.8/dslighting/registry/dabench-125-predict-number-people/checksums.yaml +2 -0
  180. dslighting-1.9.8/dslighting/registry/dabench-125-predict-number-people/config.yaml +16 -0
  181. dslighting-1.9.8/dslighting/registry/dabench-125-predict-number-people/description.md +52 -0
  182. dslighting-1.9.8/dslighting/registry/dabench-125-predict-number-people/grade.py +66 -0
  183. dslighting-1.9.8/dslighting/registry/dabench-125-predict-number-people/prepare.py +49 -0
  184. dslighting-1.9.8/dslighting/registry/dabench-129-mean-standard-deviation/checksums.yaml +2 -0
  185. dslighting-1.9.8/dslighting/registry/dabench-129-mean-standard-deviation/config.yaml +16 -0
  186. dslighting-1.9.8/dslighting/registry/dabench-129-mean-standard-deviation/description.md +44 -0
  187. dslighting-1.9.8/dslighting/registry/dabench-129-mean-standard-deviation/grade.py +66 -0
  188. dslighting-1.9.8/dslighting/registry/dabench-129-mean-standard-deviation/prepare.py +49 -0
  189. dslighting-1.9.8/dslighting/registry/dabench-130-passengers-follows-normal/checksums.yaml +2 -0
  190. dslighting-1.9.8/dslighting/registry/dabench-130-passengers-follows-normal/config.yaml +16 -0
  191. dslighting-1.9.8/dslighting/registry/dabench-130-passengers-follows-normal/description.md +43 -0
  192. dslighting-1.9.8/dslighting/registry/dabench-130-passengers-follows-normal/grade.py +66 -0
  193. dslighting-1.9.8/dslighting/registry/dabench-130-passengers-follows-normal/prepare.py +49 -0
  194. dslighting-1.9.8/dslighting/registry/dabench-132-identify-count-number/checksums.yaml +2 -0
  195. dslighting-1.9.8/dslighting/registry/dabench-132-identify-count-number/config.yaml +16 -0
  196. dslighting-1.9.8/dslighting/registry/dabench-132-identify-count-number/description.md +46 -0
  197. dslighting-1.9.8/dslighting/registry/dabench-132-identify-count-number/grade.py +66 -0
  198. dslighting-1.9.8/dslighting/registry/dabench-132-identify-count-number/prepare.py +49 -0
  199. dslighting-1.9.8/dslighting/registry/dabench-133-comprehensive-data-preprocessing/checksums.yaml +2 -0
  200. dslighting-1.9.8/dslighting/registry/dabench-133-comprehensive-data-preprocessing/config.yaml +16 -0
  201. dslighting-1.9.8/dslighting/registry/dabench-133-comprehensive-data-preprocessing/description.md +49 -0
  202. dslighting-1.9.8/dslighting/registry/dabench-133-comprehensive-data-preprocessing/grade.py +66 -0
  203. dslighting-1.9.8/dslighting/registry/dabench-133-comprehensive-data-preprocessing/prepare.py +49 -0
  204. dslighting-1.9.8/dslighting/registry/dabench-136-distribution-analysis-fare/checksums.yaml +2 -0
  205. dslighting-1.9.8/dslighting/registry/dabench-136-distribution-analysis-fare/config.yaml +16 -0
  206. dslighting-1.9.8/dslighting/registry/dabench-136-distribution-analysis-fare/description.md +45 -0
  207. dslighting-1.9.8/dslighting/registry/dabench-136-distribution-analysis-fare/grade.py +66 -0
  208. dslighting-1.9.8/dslighting/registry/dabench-136-distribution-analysis-fare/prepare.py +49 -0
  209. dslighting-1.9.8/dslighting/registry/dabench-137-feature-engineering-creating/checksums.yaml +2 -0
  210. dslighting-1.9.8/dslighting/registry/dabench-137-feature-engineering-creating/config.yaml +16 -0
  211. dslighting-1.9.8/dslighting/registry/dabench-137-feature-engineering-creating/description.md +43 -0
  212. dslighting-1.9.8/dslighting/registry/dabench-137-feature-engineering-creating/grade.py +66 -0
  213. dslighting-1.9.8/dslighting/registry/dabench-137-feature-engineering-creating/prepare.py +49 -0
  214. dslighting-1.9.8/dslighting/registry/dabench-139-question-percentage-votes/checksums.yaml +2 -0
  215. dslighting-1.9.8/dslighting/registry/dabench-139-question-percentage-votes/config.yaml +16 -0
  216. dslighting-1.9.8/dslighting/registry/dabench-139-question-percentage-votes/description.md +43 -0
  217. dslighting-1.9.8/dslighting/registry/dabench-139-question-percentage-votes/grade.py +66 -0
  218. dslighting-1.9.8/dslighting/registry/dabench-139-question-percentage-votes/prepare.py +49 -0
  219. dslighting-1.9.8/dslighting/registry/dabench-14-feature-called-price/checksums.yaml +2 -0
  220. dslighting-1.9.8/dslighting/registry/dabench-14-feature-called-price/config.yaml +16 -0
  221. dslighting-1.9.8/dslighting/registry/dabench-14-feature-called-price/description.md +45 -0
  222. dslighting-1.9.8/dslighting/registry/dabench-14-feature-called-price/grade.py +66 -0
  223. dslighting-1.9.8/dslighting/registry/dabench-14-feature-called-price/prepare.py +49 -0
  224. dslighting-1.9.8/dslighting/registry/dabench-140-question-there-correlation/checksums.yaml +2 -0
  225. dslighting-1.9.8/dslighting/registry/dabench-140-question-there-correlation/config.yaml +16 -0
  226. dslighting-1.9.8/dslighting/registry/dabench-140-question-there-correlation/description.md +50 -0
  227. dslighting-1.9.8/dslighting/registry/dabench-140-question-there-correlation/grade.py +66 -0
  228. dslighting-1.9.8/dslighting/registry/dabench-140-question-there-correlation/prepare.py +49 -0
  229. dslighting-1.9.8/dslighting/registry/dabench-142-question-there-relationship/checksums.yaml +2 -0
  230. dslighting-1.9.8/dslighting/registry/dabench-142-question-there-relationship/config.yaml +16 -0
  231. dslighting-1.9.8/dslighting/registry/dabench-142-question-there-relationship/description.md +45 -0
  232. dslighting-1.9.8/dslighting/registry/dabench-142-question-there-relationship/grade.py +66 -0
  233. dslighting-1.9.8/dslighting/registry/dabench-142-question-there-relationship/prepare.py +49 -0
  234. dslighting-1.9.8/dslighting/registry/dabench-144-question-mean-standard/checksums.yaml +2 -0
  235. dslighting-1.9.8/dslighting/registry/dabench-144-question-mean-standard/config.yaml +16 -0
  236. dslighting-1.9.8/dslighting/registry/dabench-144-question-mean-standard/description.md +46 -0
  237. dslighting-1.9.8/dslighting/registry/dabench-144-question-mean-standard/grade.py +66 -0
  238. dslighting-1.9.8/dslighting/registry/dabench-144-question-mean-standard/prepare.py +49 -0
  239. dslighting-1.9.8/dslighting/registry/dabench-174-determine-skewness-fares/checksums.yaml +2 -0
  240. dslighting-1.9.8/dslighting/registry/dabench-174-determine-skewness-fares/config.yaml +16 -0
  241. dslighting-1.9.8/dslighting/registry/dabench-174-determine-skewness-fares/description.md +43 -0
  242. dslighting-1.9.8/dslighting/registry/dabench-174-determine-skewness-fares/grade.py +66 -0
  243. dslighting-1.9.8/dslighting/registry/dabench-174-determine-skewness-fares/prepare.py +49 -0
  244. dslighting-1.9.8/dslighting/registry/dabench-175-identify-there-outliers/checksums.yaml +2 -0
  245. dslighting-1.9.8/dslighting/registry/dabench-175-identify-there-outliers/config.yaml +16 -0
  246. dslighting-1.9.8/dslighting/registry/dabench-175-identify-there-outliers/description.md +43 -0
  247. dslighting-1.9.8/dslighting/registry/dabench-175-identify-there-outliers/grade.py +66 -0
  248. dslighting-1.9.8/dslighting/registry/dabench-175-identify-there-outliers/prepare.py +49 -0
  249. dslighting-1.9.8/dslighting/registry/dabench-176-median-male-passengers/checksums.yaml +2 -0
  250. dslighting-1.9.8/dslighting/registry/dabench-176-median-male-passengers/config.yaml +16 -0
  251. dslighting-1.9.8/dslighting/registry/dabench-176-median-male-passengers/description.md +46 -0
  252. dslighting-1.9.8/dslighting/registry/dabench-176-median-male-passengers/grade.py +66 -0
  253. dslighting-1.9.8/dslighting/registry/dabench-176-median-male-passengers/prepare.py +49 -0
  254. dslighting-1.9.8/dslighting/registry/dabench-177-investigate-distribution-ages/checksums.yaml +2 -0
  255. dslighting-1.9.8/dslighting/registry/dabench-177-investigate-distribution-ages/config.yaml +16 -0
  256. dslighting-1.9.8/dslighting/registry/dabench-177-investigate-distribution-ages/description.md +47 -0
  257. dslighting-1.9.8/dslighting/registry/dabench-177-investigate-distribution-ages/grade.py +66 -0
  258. dslighting-1.9.8/dslighting/registry/dabench-177-investigate-distribution-ages/prepare.py +49 -0
  259. dslighting-1.9.8/dslighting/registry/dabench-178-comprehensive-data-preprocessing/checksums.yaml +2 -0
  260. dslighting-1.9.8/dslighting/registry/dabench-178-comprehensive-data-preprocessing/config.yaml +16 -0
  261. dslighting-1.9.8/dslighting/registry/dabench-178-comprehensive-data-preprocessing/description.md +50 -0
  262. dslighting-1.9.8/dslighting/registry/dabench-178-comprehensive-data-preprocessing/grade.py +66 -0
  263. dslighting-1.9.8/dslighting/registry/dabench-178-comprehensive-data-preprocessing/prepare.py +49 -0
  264. dslighting-1.9.8/dslighting/registry/dabench-179-pearson-correlation-coefficient/checksums.yaml +2 -0
  265. dslighting-1.9.8/dslighting/registry/dabench-179-pearson-correlation-coefficient/config.yaml +16 -0
  266. dslighting-1.9.8/dslighting/registry/dabench-179-pearson-correlation-coefficient/description.md +43 -0
  267. dslighting-1.9.8/dslighting/registry/dabench-179-pearson-correlation-coefficient/grade.py +66 -0
  268. dslighting-1.9.8/dslighting/registry/dabench-179-pearson-correlation-coefficient/prepare.py +49 -0
  269. dslighting-1.9.8/dslighting/registry/dabench-18-mean-standard-deviation/checksums.yaml +2 -0
  270. dslighting-1.9.8/dslighting/registry/dabench-18-mean-standard-deviation/config.yaml +16 -0
  271. dslighting-1.9.8/dslighting/registry/dabench-18-mean-standard-deviation/description.md +43 -0
  272. dslighting-1.9.8/dslighting/registry/dabench-18-mean-standard-deviation/grade.py +66 -0
  273. dslighting-1.9.8/dslighting/registry/dabench-18-mean-standard-deviation/prepare.py +49 -0
  274. dslighting-1.9.8/dslighting/registry/dabench-180-outlier-detection-fare/checksums.yaml +2 -0
  275. dslighting-1.9.8/dslighting/registry/dabench-180-outlier-detection-fare/config.yaml +16 -0
  276. dslighting-1.9.8/dslighting/registry/dabench-180-outlier-detection-fare/description.md +45 -0
  277. dslighting-1.9.8/dslighting/registry/dabench-180-outlier-detection-fare/grade.py +66 -0
  278. dslighting-1.9.8/dslighting/registry/dabench-180-outlier-detection-fare/prepare.py +49 -0
  279. dslighting-1.9.8/dslighting/registry/dabench-19-distribution-column-adheres/checksums.yaml +2 -0
  280. dslighting-1.9.8/dslighting/registry/dabench-19-distribution-column-adheres/config.yaml +16 -0
  281. dslighting-1.9.8/dslighting/registry/dabench-19-distribution-column-adheres/description.md +43 -0
  282. dslighting-1.9.8/dslighting/registry/dabench-19-distribution-column-adheres/grade.py +66 -0
  283. dslighting-1.9.8/dslighting/registry/dabench-19-distribution-column-adheres/prepare.py +49 -0
  284. dslighting-1.9.8/dslighting/registry/dabench-207-which-column-contain/checksums.yaml +2 -0
  285. dslighting-1.9.8/dslighting/registry/dabench-207-which-column-contain/config.yaml +16 -0
  286. dslighting-1.9.8/dslighting/registry/dabench-207-which-column-contain/description.md +43 -0
  287. dslighting-1.9.8/dslighting/registry/dabench-207-which-column-contain/grade.py +66 -0
  288. dslighting-1.9.8/dslighting/registry/dabench-207-which-column-contain/prepare.py +49 -0
  289. dslighting-1.9.8/dslighting/registry/dabench-208-mean-standard-deviation/checksums.yaml +2 -0
  290. dslighting-1.9.8/dslighting/registry/dabench-208-mean-standard-deviation/config.yaml +16 -0
  291. dslighting-1.9.8/dslighting/registry/dabench-208-mean-standard-deviation/description.md +45 -0
  292. dslighting-1.9.8/dslighting/registry/dabench-208-mean-standard-deviation/grade.py +66 -0
  293. dslighting-1.9.8/dslighting/registry/dabench-208-mean-standard-deviation/prepare.py +49 -0
  294. dslighting-1.9.8/dslighting/registry/dabench-209-there-correlation-between/checksums.yaml +2 -0
  295. dslighting-1.9.8/dslighting/registry/dabench-209-there-correlation-between/config.yaml +16 -0
  296. dslighting-1.9.8/dslighting/registry/dabench-209-there-correlation-between/description.md +43 -0
  297. dslighting-1.9.8/dslighting/registry/dabench-209-there-correlation-between/grade.py +66 -0
  298. dslighting-1.9.8/dslighting/registry/dabench-209-there-correlation-between/prepare.py +49 -0
  299. dslighting-1.9.8/dslighting/registry/dabench-210-identify-remove-outliers/checksums.yaml +2 -0
  300. dslighting-1.9.8/dslighting/registry/dabench-210-identify-remove-outliers/config.yaml +16 -0
  301. dslighting-1.9.8/dslighting/registry/dabench-210-identify-remove-outliers/description.md +45 -0
  302. dslighting-1.9.8/dslighting/registry/dabench-210-identify-remove-outliers/grade.py +66 -0
  303. dslighting-1.9.8/dslighting/registry/dabench-210-identify-remove-outliers/prepare.py +49 -0
  304. dslighting-1.9.8/dslighting/registry/dabench-214-correlation-analysis-between/checksums.yaml +2 -0
  305. dslighting-1.9.8/dslighting/registry/dabench-214-correlation-analysis-between/config.yaml +16 -0
  306. dslighting-1.9.8/dslighting/registry/dabench-214-correlation-analysis-between/description.md +48 -0
  307. dslighting-1.9.8/dslighting/registry/dabench-214-correlation-analysis-between/grade.py +66 -0
  308. dslighting-1.9.8/dslighting/registry/dabench-214-correlation-analysis-between/prepare.py +49 -0
  309. dslighting-1.9.8/dslighting/registry/dabench-216-mean-standard-deviation/checksums.yaml +2 -0
  310. dslighting-1.9.8/dslighting/registry/dabench-216-mean-standard-deviation/config.yaml +16 -0
  311. dslighting-1.9.8/dslighting/registry/dabench-216-mean-standard-deviation/description.md +49 -0
  312. dslighting-1.9.8/dslighting/registry/dabench-216-mean-standard-deviation/grade.py +66 -0
  313. dslighting-1.9.8/dslighting/registry/dabench-216-mean-standard-deviation/prepare.py +49 -0
  314. dslighting-1.9.8/dslighting/registry/dabench-217-find-site-identifier/checksums.yaml +2 -0
  315. dslighting-1.9.8/dslighting/registry/dabench-217-find-site-identifier/config.yaml +16 -0
  316. dslighting-1.9.8/dslighting/registry/dabench-217-find-site-identifier/description.md +46 -0
  317. dslighting-1.9.8/dslighting/registry/dabench-217-find-site-identifier/grade.py +66 -0
  318. dslighting-1.9.8/dslighting/registry/dabench-217-find-site-identifier/prepare.py +49 -0
  319. dslighting-1.9.8/dslighting/registry/dabench-218-correlation-coefficient-between/checksums.yaml +2 -0
  320. dslighting-1.9.8/dslighting/registry/dabench-218-correlation-coefficient-between/config.yaml +16 -0
  321. dslighting-1.9.8/dslighting/registry/dabench-218-correlation-coefficient-between/description.md +46 -0
  322. dslighting-1.9.8/dslighting/registry/dabench-218-correlation-coefficient-between/grade.py +66 -0
  323. dslighting-1.9.8/dslighting/registry/dabench-218-correlation-coefficient-between/prepare.py +49 -0
  324. dslighting-1.9.8/dslighting/registry/dabench-219-identify-site-with/checksums.yaml +2 -0
  325. dslighting-1.9.8/dslighting/registry/dabench-219-identify-site-with/config.yaml +16 -0
  326. dslighting-1.9.8/dslighting/registry/dabench-219-identify-site-with/description.md +45 -0
  327. dslighting-1.9.8/dslighting/registry/dabench-219-identify-site-with/grade.py +66 -0
  328. dslighting-1.9.8/dslighting/registry/dabench-219-identify-site-with/prepare.py +49 -0
  329. dslighting-1.9.8/dslighting/registry/dabench-220-comprehensive-data-preprocessing/checksums.yaml +2 -0
  330. dslighting-1.9.8/dslighting/registry/dabench-220-comprehensive-data-preprocessing/config.yaml +16 -0
  331. dslighting-1.9.8/dslighting/registry/dabench-220-comprehensive-data-preprocessing/description.md +43 -0
  332. dslighting-1.9.8/dslighting/registry/dabench-220-comprehensive-data-preprocessing/grade.py +66 -0
  333. dslighting-1.9.8/dslighting/registry/dabench-220-comprehensive-data-preprocessing/prepare.py +49 -0
  334. dslighting-1.9.8/dslighting/registry/dabench-222-explore-distribution-column/checksums.yaml +2 -0
  335. dslighting-1.9.8/dslighting/registry/dabench-222-explore-distribution-column/config.yaml +16 -0
  336. dslighting-1.9.8/dslighting/registry/dabench-222-explore-distribution-column/description.md +43 -0
  337. dslighting-1.9.8/dslighting/registry/dabench-222-explore-distribution-column/grade.py +66 -0
  338. dslighting-1.9.8/dslighting/registry/dabench-222-explore-distribution-column/prepare.py +49 -0
  339. dslighting-1.9.8/dslighting/registry/dabench-224-utilize-machine-learning/checksums.yaml +2 -0
  340. dslighting-1.9.8/dslighting/registry/dabench-224-utilize-machine-learning/config.yaml +16 -0
  341. dslighting-1.9.8/dslighting/registry/dabench-224-utilize-machine-learning/description.md +43 -0
  342. dslighting-1.9.8/dslighting/registry/dabench-224-utilize-machine-learning/grade.py +66 -0
  343. dslighting-1.9.8/dslighting/registry/dabench-224-utilize-machine-learning/prepare.py +49 -0
  344. dslighting-1.9.8/dslighting/registry/dabench-23-machine-learning-techniques/checksums.yaml +2 -0
  345. dslighting-1.9.8/dslighting/registry/dabench-23-machine-learning-techniques/config.yaml +16 -0
  346. dslighting-1.9.8/dslighting/registry/dabench-23-machine-learning-techniques/description.md +43 -0
  347. dslighting-1.9.8/dslighting/registry/dabench-23-machine-learning-techniques/grade.py +66 -0
  348. dslighting-1.9.8/dslighting/registry/dabench-23-machine-learning-techniques/prepare.py +49 -0
  349. dslighting-1.9.8/dslighting/registry/dabench-234-what-average-duration/checksums.yaml +2 -0
  350. dslighting-1.9.8/dslighting/registry/dabench-234-what-average-duration/config.yaml +16 -0
  351. dslighting-1.9.8/dslighting/registry/dabench-234-what-average-duration/description.md +43 -0
  352. dslighting-1.9.8/dslighting/registry/dabench-234-what-average-duration/grade.py +66 -0
  353. dslighting-1.9.8/dslighting/registry/dabench-234-what-average-duration/prepare.py +49 -0
  354. dslighting-1.9.8/dslighting/registry/dabench-24-mean-individuals-dataset/checksums.yaml +2 -0
  355. dslighting-1.9.8/dslighting/registry/dabench-24-mean-individuals-dataset/config.yaml +16 -0
  356. dslighting-1.9.8/dslighting/registry/dabench-24-mean-individuals-dataset/description.md +43 -0
  357. dslighting-1.9.8/dslighting/registry/dabench-24-mean-individuals-dataset/grade.py +66 -0
  358. dslighting-1.9.8/dslighting/registry/dabench-24-mean-individuals-dataset/prepare.py +49 -0
  359. dslighting-1.9.8/dslighting/registry/dabench-243-what-mean-batting/checksums.yaml +2 -0
  360. dslighting-1.9.8/dslighting/registry/dabench-243-what-mean-batting/config.yaml +16 -0
  361. dslighting-1.9.8/dslighting/registry/dabench-243-what-mean-batting/description.md +43 -0
  362. dslighting-1.9.8/dslighting/registry/dabench-243-what-mean-batting/grade.py +66 -0
  363. dslighting-1.9.8/dslighting/registry/dabench-243-what-mean-batting/prepare.py +49 -0
  364. dslighting-1.9.8/dslighting/registry/dabench-244-number-home-runs/checksums.yaml +2 -0
  365. dslighting-1.9.8/dslighting/registry/dabench-244-number-home-runs/config.yaml +16 -0
  366. dslighting-1.9.8/dslighting/registry/dabench-244-number-home-runs/description.md +44 -0
  367. dslighting-1.9.8/dslighting/registry/dabench-244-number-home-runs/grade.py +66 -0
  368. dslighting-1.9.8/dslighting/registry/dabench-244-number-home-runs/prepare.py +49 -0
  369. dslighting-1.9.8/dslighting/registry/dabench-247-what-average-number/checksums.yaml +2 -0
  370. dslighting-1.9.8/dslighting/registry/dabench-247-what-average-number/config.yaml +16 -0
  371. dslighting-1.9.8/dslighting/registry/dabench-247-what-average-number/description.md +45 -0
  372. dslighting-1.9.8/dslighting/registry/dabench-247-what-average-number/grade.py +66 -0
  373. dslighting-1.9.8/dslighting/registry/dabench-247-what-average-number/prepare.py +49 -0
  374. dslighting-1.9.8/dslighting/registry/dabench-249-there-significant-correlation/checksums.yaml +2 -0
  375. dslighting-1.9.8/dslighting/registry/dabench-249-there-significant-correlation/config.yaml +16 -0
  376. dslighting-1.9.8/dslighting/registry/dabench-249-there-significant-correlation/description.md +43 -0
  377. dslighting-1.9.8/dslighting/registry/dabench-249-there-significant-correlation/grade.py +66 -0
  378. dslighting-1.9.8/dslighting/registry/dabench-249-there-significant-correlation/prepare.py +49 -0
  379. dslighting-1.9.8/dslighting/registry/dabench-25-distribution-values-dataset/checksums.yaml +2 -0
  380. dslighting-1.9.8/dslighting/registry/dabench-25-distribution-values-dataset/config.yaml +16 -0
  381. dslighting-1.9.8/dslighting/registry/dabench-25-distribution-values-dataset/description.md +43 -0
  382. dslighting-1.9.8/dslighting/registry/dabench-25-distribution-values-dataset/grade.py +66 -0
  383. dslighting-1.9.8/dslighting/registry/dabench-25-distribution-values-dataset/prepare.py +49 -0
  384. dslighting-1.9.8/dslighting/registry/dabench-250-feature-called-which/checksums.yaml +2 -0
  385. dslighting-1.9.8/dslighting/registry/dabench-250-feature-called-which/config.yaml +16 -0
  386. dslighting-1.9.8/dslighting/registry/dabench-250-feature-called-which/description.md +45 -0
  387. dslighting-1.9.8/dslighting/registry/dabench-250-feature-called-which/grade.py +66 -0
  388. dslighting-1.9.8/dslighting/registry/dabench-250-feature-called-which/prepare.py +49 -0
  389. dslighting-1.9.8/dslighting/registry/dabench-252-determine-which-country/checksums.yaml +2 -0
  390. dslighting-1.9.8/dslighting/registry/dabench-252-determine-which-country/config.yaml +16 -0
  391. dslighting-1.9.8/dslighting/registry/dabench-252-determine-which-country/description.md +43 -0
  392. dslighting-1.9.8/dslighting/registry/dabench-252-determine-which-country/grade.py +66 -0
  393. dslighting-1.9.8/dslighting/registry/dabench-252-determine-which-country/prepare.py +49 -0
  394. dslighting-1.9.8/dslighting/registry/dabench-254-identify-outliers-gross/checksums.yaml +2 -0
  395. dslighting-1.9.8/dslighting/registry/dabench-254-identify-outliers-gross/config.yaml +16 -0
  396. dslighting-1.9.8/dslighting/registry/dabench-254-identify-outliers-gross/description.md +43 -0
  397. dslighting-1.9.8/dslighting/registry/dabench-254-identify-outliers-gross/grade.py +66 -0
  398. dslighting-1.9.8/dslighting/registry/dabench-254-identify-outliers-gross/prepare.py +49 -0
  399. dslighting-1.9.8/dslighting/registry/dabench-255-mean-standard-deviation/checksums.yaml +2 -0
  400. dslighting-1.9.8/dslighting/registry/dabench-255-mean-standard-deviation/config.yaml +16 -0
  401. dslighting-1.9.8/dslighting/registry/dabench-255-mean-standard-deviation/description.md +45 -0
  402. dslighting-1.9.8/dslighting/registry/dabench-255-mean-standard-deviation/grade.py +66 -0
  403. dslighting-1.9.8/dslighting/registry/dabench-255-mean-standard-deviation/prepare.py +49 -0
  404. dslighting-1.9.8/dslighting/registry/dabench-26-correlation-coefficient-between/checksums.yaml +2 -0
  405. dslighting-1.9.8/dslighting/registry/dabench-26-correlation-coefficient-between/config.yaml +16 -0
  406. dslighting-1.9.8/dslighting/registry/dabench-26-correlation-coefficient-between/description.md +43 -0
  407. dslighting-1.9.8/dslighting/registry/dabench-26-correlation-coefficient-between/grade.py +66 -0
  408. dslighting-1.9.8/dslighting/registry/dabench-26-correlation-coefficient-between/prepare.py +49 -0
  409. dslighting-1.9.8/dslighting/registry/dabench-268-meanpot-values-normally/checksums.yaml +2 -0
  410. dslighting-1.9.8/dslighting/registry/dabench-268-meanpot-values-normally/config.yaml +16 -0
  411. dslighting-1.9.8/dslighting/registry/dabench-268-meanpot-values-normally/description.md +43 -0
  412. dslighting-1.9.8/dslighting/registry/dabench-268-meanpot-values-normally/grade.py +66 -0
  413. dslighting-1.9.8/dslighting/registry/dabench-268-meanpot-values-normally/prepare.py +49 -0
  414. dslighting-1.9.8/dslighting/registry/dabench-269-there-correlation-between/checksums.yaml +2 -0
  415. dslighting-1.9.8/dslighting/registry/dabench-269-there-correlation-between/config.yaml +16 -0
  416. dslighting-1.9.8/dslighting/registry/dabench-269-there-correlation-between/description.md +45 -0
  417. dslighting-1.9.8/dslighting/registry/dabench-269-there-correlation-between/grade.py +66 -0
  418. dslighting-1.9.8/dslighting/registry/dabench-269-there-correlation-between/prepare.py +49 -0
  419. dslighting-1.9.8/dslighting/registry/dabench-27-identify-outliers-charges/checksums.yaml +2 -0
  420. dslighting-1.9.8/dslighting/registry/dabench-27-identify-outliers-charges/config.yaml +16 -0
  421. dslighting-1.9.8/dslighting/registry/dabench-27-identify-outliers-charges/description.md +45 -0
  422. dslighting-1.9.8/dslighting/registry/dabench-27-identify-outliers-charges/grade.py +66 -0
  423. dslighting-1.9.8/dslighting/registry/dabench-27-identify-outliers-charges/prepare.py +49 -0
  424. dslighting-1.9.8/dslighting/registry/dabench-271-comprehensive-data-preprocessing/checksums.yaml +2 -0
  425. dslighting-1.9.8/dslighting/registry/dabench-271-comprehensive-data-preprocessing/config.yaml +16 -0
  426. dslighting-1.9.8/dslighting/registry/dabench-271-comprehensive-data-preprocessing/description.md +53 -0
  427. dslighting-1.9.8/dslighting/registry/dabench-271-comprehensive-data-preprocessing/grade.py +66 -0
  428. dslighting-1.9.8/dslighting/registry/dabench-271-comprehensive-data-preprocessing/prepare.py +49 -0
  429. dslighting-1.9.8/dslighting/registry/dabench-272-feature-named-dividing/checksums.yaml +2 -0
  430. dslighting-1.9.8/dslighting/registry/dabench-272-feature-named-dividing/config.yaml +16 -0
  431. dslighting-1.9.8/dslighting/registry/dabench-272-feature-named-dividing/description.md +45 -0
  432. dslighting-1.9.8/dslighting/registry/dabench-272-feature-named-dividing/grade.py +66 -0
  433. dslighting-1.9.8/dslighting/registry/dabench-272-feature-named-dividing/prepare.py +49 -0
  434. dslighting-1.9.8/dslighting/registry/dabench-273-correlation-analysis-between/checksums.yaml +2 -0
  435. dslighting-1.9.8/dslighting/registry/dabench-273-correlation-analysis-between/config.yaml +16 -0
  436. dslighting-1.9.8/dslighting/registry/dabench-273-correlation-analysis-between/description.md +46 -0
  437. dslighting-1.9.8/dslighting/registry/dabench-273-correlation-analysis-between/grade.py +66 -0
  438. dslighting-1.9.8/dslighting/registry/dabench-273-correlation-analysis-between/prepare.py +49 -0
  439. dslighting-1.9.8/dslighting/registry/dabench-275-comprehensive-analysis-dataset/checksums.yaml +2 -0
  440. dslighting-1.9.8/dslighting/registry/dabench-275-comprehensive-analysis-dataset/config.yaml +16 -0
  441. dslighting-1.9.8/dslighting/registry/dabench-275-comprehensive-analysis-dataset/description.md +58 -0
  442. dslighting-1.9.8/dslighting/registry/dabench-275-comprehensive-analysis-dataset/grade.py +66 -0
  443. dslighting-1.9.8/dslighting/registry/dabench-275-comprehensive-analysis-dataset/prepare.py +49 -0
  444. dslighting-1.9.8/dslighting/registry/dabench-277-there-correlation-between/checksums.yaml +2 -0
  445. dslighting-1.9.8/dslighting/registry/dabench-277-there-correlation-between/config.yaml +16 -0
  446. dslighting-1.9.8/dslighting/registry/dabench-277-there-correlation-between/description.md +43 -0
  447. dslighting-1.9.8/dslighting/registry/dabench-277-there-correlation-between/grade.py +66 -0
  448. dslighting-1.9.8/dslighting/registry/dabench-277-there-correlation-between/prepare.py +49 -0
  449. dslighting-1.9.8/dslighting/registry/dabench-278-there-outliers-agri/checksums.yaml +2 -0
  450. dslighting-1.9.8/dslighting/registry/dabench-278-there-outliers-agri/config.yaml +16 -0
  451. dslighting-1.9.8/dslighting/registry/dabench-278-there-outliers-agri/description.md +43 -0
  452. dslighting-1.9.8/dslighting/registry/dabench-278-there-outliers-agri/grade.py +66 -0
  453. dslighting-1.9.8/dslighting/registry/dabench-278-there-outliers-agri/prepare.py +49 -0
  454. dslighting-1.9.8/dslighting/registry/dabench-28-comprehensive-data-preprocessing/checksums.yaml +2 -0
  455. dslighting-1.9.8/dslighting/registry/dabench-28-comprehensive-data-preprocessing/config.yaml +16 -0
  456. dslighting-1.9.8/dslighting/registry/dabench-28-comprehensive-data-preprocessing/description.md +45 -0
  457. dslighting-1.9.8/dslighting/registry/dabench-28-comprehensive-data-preprocessing/grade.py +66 -0
  458. dslighting-1.9.8/dslighting/registry/dabench-28-comprehensive-data-preprocessing/prepare.py +49 -0
  459. dslighting-1.9.8/dslighting/registry/dabench-282-correlation-analysis-given/checksums.yaml +2 -0
  460. dslighting-1.9.8/dslighting/registry/dabench-282-correlation-analysis-given/config.yaml +16 -0
  461. dslighting-1.9.8/dslighting/registry/dabench-282-correlation-analysis-given/description.md +45 -0
  462. dslighting-1.9.8/dslighting/registry/dabench-282-correlation-analysis-given/grade.py +66 -0
  463. dslighting-1.9.8/dslighting/registry/dabench-282-correlation-analysis-given/prepare.py +49 -0
  464. dslighting-1.9.8/dslighting/registry/dabench-297-there-significant-difference/checksums.yaml +2 -0
  465. dslighting-1.9.8/dslighting/registry/dabench-297-there-significant-difference/config.yaml +16 -0
  466. dslighting-1.9.8/dslighting/registry/dabench-297-there-significant-difference/description.md +48 -0
  467. dslighting-1.9.8/dslighting/registry/dabench-297-there-significant-difference/grade.py +66 -0
  468. dslighting-1.9.8/dslighting/registry/dabench-297-there-significant-difference/prepare.py +49 -0
  469. dslighting-1.9.8/dslighting/registry/dabench-298-distribution-analysis-nsamplecov/checksums.yaml +2 -0
  470. dslighting-1.9.8/dslighting/registry/dabench-298-distribution-analysis-nsamplecov/config.yaml +16 -0
  471. dslighting-1.9.8/dslighting/registry/dabench-298-distribution-analysis-nsamplecov/description.md +46 -0
  472. dslighting-1.9.8/dslighting/registry/dabench-298-distribution-analysis-nsamplecov/grade.py +66 -0
  473. dslighting-1.9.8/dslighting/registry/dabench-298-distribution-analysis-nsamplecov/prepare.py +49 -0
  474. dslighting-1.9.8/dslighting/registry/dabench-30-linear-regression-machine/checksums.yaml +2 -0
  475. dslighting-1.9.8/dslighting/registry/dabench-30-linear-regression-machine/config.yaml +16 -0
  476. dslighting-1.9.8/dslighting/registry/dabench-30-linear-regression-machine/description.md +43 -0
  477. dslighting-1.9.8/dslighting/registry/dabench-30-linear-regression-machine/grade.py +66 -0
  478. dslighting-1.9.8/dslighting/registry/dabench-30-linear-regression-machine/prepare.py +49 -0
  479. dslighting-1.9.8/dslighting/registry/dabench-300-there-correlation-between/checksums.yaml +2 -0
  480. dslighting-1.9.8/dslighting/registry/dabench-300-there-correlation-between/config.yaml +16 -0
  481. dslighting-1.9.8/dslighting/registry/dabench-300-there-correlation-between/description.md +45 -0
  482. dslighting-1.9.8/dslighting/registry/dabench-300-there-correlation-between/grade.py +66 -0
  483. dslighting-1.9.8/dslighting/registry/dabench-300-there-correlation-between/prepare.py +49 -0
  484. dslighting-1.9.8/dslighting/registry/dabench-304-fare-variable-follows/checksums.yaml +2 -0
  485. dslighting-1.9.8/dslighting/registry/dabench-304-fare-variable-follows/config.yaml +16 -0
  486. dslighting-1.9.8/dslighting/registry/dabench-304-fare-variable-follows/description.md +43 -0
  487. dslighting-1.9.8/dslighting/registry/dabench-304-fare-variable-follows/grade.py +66 -0
  488. dslighting-1.9.8/dslighting/registry/dabench-304-fare-variable-follows/prepare.py +49 -0
  489. dslighting-1.9.8/dslighting/registry/dabench-308-feature-engineering-techniques/checksums.yaml +2 -0
  490. dslighting-1.9.8/dslighting/registry/dabench-308-feature-engineering-techniques/config.yaml +16 -0
  491. dslighting-1.9.8/dslighting/registry/dabench-308-feature-engineering-techniques/description.md +45 -0
  492. dslighting-1.9.8/dslighting/registry/dabench-308-feature-engineering-techniques/grade.py +66 -0
  493. dslighting-1.9.8/dslighting/registry/dabench-308-feature-engineering-techniques/prepare.py +49 -0
  494. dslighting-1.9.8/dslighting/registry/dabench-309-distribution-analysis-fare/checksums.yaml +2 -0
  495. dslighting-1.9.8/dslighting/registry/dabench-309-distribution-analysis-fare/config.yaml +16 -0
  496. dslighting-1.9.8/dslighting/registry/dabench-309-distribution-analysis-fare/description.md +45 -0
  497. dslighting-1.9.8/dslighting/registry/dabench-309-distribution-analysis-fare/grade.py +66 -0
  498. dslighting-1.9.8/dslighting/registry/dabench-309-distribution-analysis-fare/prepare.py +49 -0
  499. dslighting-1.9.8/dslighting/registry/dabench-310-correlation-analysis-numerical/checksums.yaml +2 -0
  500. dslighting-1.9.8/dslighting/registry/dabench-310-correlation-analysis-numerical/config.yaml +16 -0
  501. dslighting-1.9.8/dslighting/registry/dabench-310-correlation-analysis-numerical/description.md +43 -0
  502. dslighting-1.9.8/dslighting/registry/dabench-310-correlation-analysis-numerical/grade.py +66 -0
  503. dslighting-1.9.8/dslighting/registry/dabench-310-correlation-analysis-numerical/prepare.py +49 -0
  504. dslighting-1.9.8/dslighting/registry/dabench-32-mean-standard-deviation/checksums.yaml +2 -0
  505. dslighting-1.9.8/dslighting/registry/dabench-32-mean-standard-deviation/config.yaml +16 -0
  506. dslighting-1.9.8/dslighting/registry/dabench-32-mean-standard-deviation/description.md +45 -0
  507. dslighting-1.9.8/dslighting/registry/dabench-32-mean-standard-deviation/grade.py +66 -0
  508. dslighting-1.9.8/dslighting/registry/dabench-32-mean-standard-deviation/prepare.py +49 -0
  509. dslighting-1.9.8/dslighting/registry/dabench-320-what-mean-eventmsgtype/checksums.yaml +2 -0
  510. dslighting-1.9.8/dslighting/registry/dabench-320-what-mean-eventmsgtype/config.yaml +16 -0
  511. dslighting-1.9.8/dslighting/registry/dabench-320-what-mean-eventmsgtype/description.md +43 -0
  512. dslighting-1.9.8/dslighting/registry/dabench-320-what-mean-eventmsgtype/grade.py +66 -0
  513. dslighting-1.9.8/dslighting/registry/dabench-320-what-mean-eventmsgtype/prepare.py +49 -0
  514. dslighting-1.9.8/dslighting/registry/dabench-321-there-outliers-scoremargin/checksums.yaml +2 -0
  515. dslighting-1.9.8/dslighting/registry/dabench-321-there-outliers-scoremargin/config.yaml +16 -0
  516. dslighting-1.9.8/dslighting/registry/dabench-321-there-outliers-scoremargin/description.md +43 -0
  517. dslighting-1.9.8/dslighting/registry/dabench-321-there-outliers-scoremargin/grade.py +66 -0
  518. dslighting-1.9.8/dslighting/registry/dabench-321-there-outliers-scoremargin/prepare.py +49 -0
  519. dslighting-1.9.8/dslighting/registry/dabench-324-there-missing-values/checksums.yaml +2 -0
  520. dslighting-1.9.8/dslighting/registry/dabench-324-there-missing-values/config.yaml +16 -0
  521. dslighting-1.9.8/dslighting/registry/dabench-324-there-missing-values/description.md +43 -0
  522. dslighting-1.9.8/dslighting/registry/dabench-324-there-missing-values/grade.py +66 -0
  523. dslighting-1.9.8/dslighting/registry/dabench-324-there-missing-values/prepare.py +49 -0
  524. dslighting-1.9.8/dslighting/registry/dabench-326-feature-named-that/checksums.yaml +2 -0
  525. dslighting-1.9.8/dslighting/registry/dabench-326-feature-named-that/config.yaml +16 -0
  526. dslighting-1.9.8/dslighting/registry/dabench-326-feature-named-that/description.md +47 -0
  527. dslighting-1.9.8/dslighting/registry/dabench-326-feature-named-that/grade.py +66 -0
  528. dslighting-1.9.8/dslighting/registry/dabench-326-feature-named-that/prepare.py +49 -0
  529. dslighting-1.9.8/dslighting/registry/dabench-33-column-normally-distributed/checksums.yaml +2 -0
  530. dslighting-1.9.8/dslighting/registry/dabench-33-column-normally-distributed/config.yaml +16 -0
  531. dslighting-1.9.8/dslighting/registry/dabench-33-column-normally-distributed/description.md +43 -0
  532. dslighting-1.9.8/dslighting/registry/dabench-33-column-normally-distributed/grade.py +66 -0
  533. dslighting-1.9.8/dslighting/registry/dabench-33-column-normally-distributed/prepare.py +49 -0
  534. dslighting-1.9.8/dslighting/registry/dabench-337-distribution-median-sold/checksums.yaml +2 -0
  535. dslighting-1.9.8/dslighting/registry/dabench-337-distribution-median-sold/config.yaml +16 -0
  536. dslighting-1.9.8/dslighting/registry/dabench-337-distribution-median-sold/description.md +45 -0
  537. dslighting-1.9.8/dslighting/registry/dabench-337-distribution-median-sold/grade.py +66 -0
  538. dslighting-1.9.8/dslighting/registry/dabench-337-distribution-median-sold/prepare.py +49 -0
  539. dslighting-1.9.8/dslighting/registry/dabench-338-there-correlation-between/checksums.yaml +2 -0
  540. dslighting-1.9.8/dslighting/registry/dabench-338-there-correlation-between/config.yaml +16 -0
  541. dslighting-1.9.8/dslighting/registry/dabench-338-there-correlation-between/description.md +45 -0
  542. dslighting-1.9.8/dslighting/registry/dabench-338-there-correlation-between/grade.py +66 -0
  543. dslighting-1.9.8/dslighting/registry/dabench-338-there-correlation-between/prepare.py +49 -0
  544. dslighting-1.9.8/dslighting/registry/dabench-34-there-correlation-between/checksums.yaml +2 -0
  545. dslighting-1.9.8/dslighting/registry/dabench-34-there-correlation-between/config.yaml +16 -0
  546. dslighting-1.9.8/dslighting/registry/dabench-34-there-correlation-between/description.md +45 -0
  547. dslighting-1.9.8/dslighting/registry/dabench-34-there-correlation-between/grade.py +66 -0
  548. dslighting-1.9.8/dslighting/registry/dabench-34-there-correlation-between/prepare.py +49 -0
  549. dslighting-1.9.8/dslighting/registry/dabench-349-mean-passengers/checksums.yaml +2 -0
  550. dslighting-1.9.8/dslighting/registry/dabench-349-mean-passengers/config.yaml +16 -0
  551. dslighting-1.9.8/dslighting/registry/dabench-349-mean-passengers/description.md +43 -0
  552. dslighting-1.9.8/dslighting/registry/dabench-349-mean-passengers/grade.py +66 -0
  553. dslighting-1.9.8/dslighting/registry/dabench-349-mean-passengers/prepare.py +49 -0
  554. dslighting-1.9.8/dslighting/registry/dabench-35-identify-remove-outliers/checksums.yaml +2 -0
  555. dslighting-1.9.8/dslighting/registry/dabench-35-identify-remove-outliers/config.yaml +16 -0
  556. dslighting-1.9.8/dslighting/registry/dabench-35-identify-remove-outliers/description.md +43 -0
  557. dslighting-1.9.8/dslighting/registry/dabench-35-identify-remove-outliers/grade.py +66 -0
  558. dslighting-1.9.8/dslighting/registry/dabench-35-identify-remove-outliers/prepare.py +49 -0
  559. dslighting-1.9.8/dslighting/registry/dabench-350-fare-column-follows/checksums.yaml +2 -0
  560. dslighting-1.9.8/dslighting/registry/dabench-350-fare-column-follows/config.yaml +16 -0
  561. dslighting-1.9.8/dslighting/registry/dabench-350-fare-column-follows/description.md +43 -0
  562. dslighting-1.9.8/dslighting/registry/dabench-350-fare-column-follows/grade.py +66 -0
  563. dslighting-1.9.8/dslighting/registry/dabench-350-fare-column-follows/prepare.py +49 -0
  564. dslighting-1.9.8/dslighting/registry/dabench-351-determine-correlation-coefficient/checksums.yaml +2 -0
  565. dslighting-1.9.8/dslighting/registry/dabench-351-determine-correlation-coefficient/config.yaml +16 -0
  566. dslighting-1.9.8/dslighting/registry/dabench-351-determine-correlation-coefficient/description.md +43 -0
  567. dslighting-1.9.8/dslighting/registry/dabench-351-determine-correlation-coefficient/grade.py +66 -0
  568. dslighting-1.9.8/dslighting/registry/dabench-351-determine-correlation-coefficient/prepare.py +49 -0
  569. dslighting-1.9.8/dslighting/registry/dabench-352-identify-outliers-fare/checksums.yaml +2 -0
  570. dslighting-1.9.8/dslighting/registry/dabench-352-identify-outliers-fare/config.yaml +16 -0
  571. dslighting-1.9.8/dslighting/registry/dabench-352-identify-outliers-fare/description.md +45 -0
  572. dslighting-1.9.8/dslighting/registry/dabench-352-identify-outliers-fare/grade.py +66 -0
  573. dslighting-1.9.8/dslighting/registry/dabench-352-identify-outliers-fare/prepare.py +49 -0
  574. dslighting-1.9.8/dslighting/registry/dabench-354-feature-familysize-summing/checksums.yaml +2 -0
  575. dslighting-1.9.8/dslighting/registry/dabench-354-feature-familysize-summing/config.yaml +16 -0
  576. dslighting-1.9.8/dslighting/registry/dabench-354-feature-familysize-summing/description.md +44 -0
  577. dslighting-1.9.8/dslighting/registry/dabench-354-feature-familysize-summing/grade.py +66 -0
  578. dslighting-1.9.8/dslighting/registry/dabench-354-feature-familysize-summing/prepare.py +49 -0
  579. dslighting-1.9.8/dslighting/registry/dabench-355-linear-regression-analysis/checksums.yaml +2 -0
  580. dslighting-1.9.8/dslighting/registry/dabench-355-linear-regression-analysis/config.yaml +16 -0
  581. dslighting-1.9.8/dslighting/registry/dabench-355-linear-regression-analysis/description.md +49 -0
  582. dslighting-1.9.8/dslighting/registry/dabench-355-linear-regression-analysis/grade.py +66 -0
  583. dslighting-1.9.8/dslighting/registry/dabench-355-linear-regression-analysis/prepare.py +49 -0
  584. dslighting-1.9.8/dslighting/registry/dabench-359-distribution-wind-speed/checksums.yaml +2 -0
  585. dslighting-1.9.8/dslighting/registry/dabench-359-distribution-wind-speed/config.yaml +16 -0
  586. dslighting-1.9.8/dslighting/registry/dabench-359-distribution-wind-speed/description.md +48 -0
  587. dslighting-1.9.8/dslighting/registry/dabench-359-distribution-wind-speed/grade.py +66 -0
  588. dslighting-1.9.8/dslighting/registry/dabench-359-distribution-wind-speed/prepare.py +49 -0
  589. dslighting-1.9.8/dslighting/registry/dabench-360-determine-correlation-coefficient/checksums.yaml +2 -0
  590. dslighting-1.9.8/dslighting/registry/dabench-360-determine-correlation-coefficient/config.yaml +16 -0
  591. dslighting-1.9.8/dslighting/registry/dabench-360-determine-correlation-coefficient/description.md +47 -0
  592. dslighting-1.9.8/dslighting/registry/dabench-360-determine-correlation-coefficient/grade.py +66 -0
  593. dslighting-1.9.8/dslighting/registry/dabench-360-determine-correlation-coefficient/prepare.py +49 -0
  594. dslighting-1.9.8/dslighting/registry/dabench-361-identify-remove-outliers/checksums.yaml +2 -0
  595. dslighting-1.9.8/dslighting/registry/dabench-361-identify-remove-outliers/config.yaml +16 -0
  596. dslighting-1.9.8/dslighting/registry/dabench-361-identify-remove-outliers/description.md +47 -0
  597. dslighting-1.9.8/dslighting/registry/dabench-361-identify-remove-outliers/grade.py +66 -0
  598. dslighting-1.9.8/dslighting/registry/dabench-361-identify-remove-outliers/prepare.py +49 -0
  599. dslighting-1.9.8/dslighting/registry/dabench-363-train-machine-learning/checksums.yaml +2 -0
  600. dslighting-1.9.8/dslighting/registry/dabench-363-train-machine-learning/config.yaml +16 -0
  601. dslighting-1.9.8/dslighting/registry/dabench-363-train-machine-learning/description.md +47 -0
  602. dslighting-1.9.8/dslighting/registry/dabench-363-train-machine-learning/grade.py +66 -0
  603. dslighting-1.9.8/dslighting/registry/dabench-363-train-machine-learning/prepare.py +49 -0
  604. dslighting-1.9.8/dslighting/registry/dabench-372-find-mean-median/checksums.yaml +2 -0
  605. dslighting-1.9.8/dslighting/registry/dabench-372-find-mean-median/config.yaml +16 -0
  606. dslighting-1.9.8/dslighting/registry/dabench-372-find-mean-median/description.md +43 -0
  607. dslighting-1.9.8/dslighting/registry/dabench-372-find-mean-median/grade.py +66 -0
  608. dslighting-1.9.8/dslighting/registry/dabench-372-find-mean-median/prepare.py +49 -0
  609. dslighting-1.9.8/dslighting/registry/dabench-375-distribution-analysis-trips/checksums.yaml +2 -0
  610. dslighting-1.9.8/dslighting/registry/dabench-375-distribution-analysis-trips/config.yaml +16 -0
  611. dslighting-1.9.8/dslighting/registry/dabench-375-distribution-analysis-trips/description.md +45 -0
  612. dslighting-1.9.8/dslighting/registry/dabench-375-distribution-analysis-trips/grade.py +66 -0
  613. dslighting-1.9.8/dslighting/registry/dabench-375-distribution-analysis-trips/prepare.py +49 -0
  614. dslighting-1.9.8/dslighting/registry/dabench-376-feature-engineering-dataset/checksums.yaml +2 -0
  615. dslighting-1.9.8/dslighting/registry/dabench-376-feature-engineering-dataset/config.yaml +16 -0
  616. dslighting-1.9.8/dslighting/registry/dabench-376-feature-engineering-dataset/description.md +45 -0
  617. dslighting-1.9.8/dslighting/registry/dabench-376-feature-engineering-dataset/grade.py +66 -0
  618. dslighting-1.9.8/dslighting/registry/dabench-376-feature-engineering-dataset/prepare.py +49 -0
  619. dslighting-1.9.8/dslighting/registry/dabench-378-preprocess-dataset-handling/checksums.yaml +2 -0
  620. dslighting-1.9.8/dslighting/registry/dabench-378-preprocess-dataset-handling/config.yaml +16 -0
  621. dslighting-1.9.8/dslighting/registry/dabench-378-preprocess-dataset-handling/description.md +45 -0
  622. dslighting-1.9.8/dslighting/registry/dabench-378-preprocess-dataset-handling/grade.py +66 -0
  623. dslighting-1.9.8/dslighting/registry/dabench-378-preprocess-dataset-handling/prepare.py +49 -0
  624. dslighting-1.9.8/dslighting/registry/dabench-39-explore-distribution-importance/checksums.yaml +2 -0
  625. dslighting-1.9.8/dslighting/registry/dabench-39-explore-distribution-importance/config.yaml +16 -0
  626. dslighting-1.9.8/dslighting/registry/dabench-39-explore-distribution-importance/description.md +45 -0
  627. dslighting-1.9.8/dslighting/registry/dabench-39-explore-distribution-importance/grade.py +66 -0
  628. dslighting-1.9.8/dslighting/registry/dabench-39-explore-distribution-importance/prepare.py +49 -0
  629. dslighting-1.9.8/dslighting/registry/dabench-408-there-correlation-between/checksums.yaml +2 -0
  630. dslighting-1.9.8/dslighting/registry/dabench-408-there-correlation-between/config.yaml +16 -0
  631. dslighting-1.9.8/dslighting/registry/dabench-408-there-correlation-between/description.md +49 -0
  632. dslighting-1.9.8/dslighting/registry/dabench-408-there-correlation-between/grade.py +66 -0
  633. dslighting-1.9.8/dslighting/registry/dabench-408-there-correlation-between/prepare.py +49 -0
  634. dslighting-1.9.8/dslighting/registry/dabench-409-many-missing-values/checksums.yaml +2 -0
  635. dslighting-1.9.8/dslighting/registry/dabench-409-many-missing-values/config.yaml +16 -0
  636. dslighting-1.9.8/dslighting/registry/dabench-409-many-missing-values/description.md +43 -0
  637. dslighting-1.9.8/dslighting/registry/dabench-409-many-missing-values/grade.py +66 -0
  638. dslighting-1.9.8/dslighting/registry/dabench-409-many-missing-values/prepare.py +49 -0
  639. dslighting-1.9.8/dslighting/registry/dabench-410-what-distribution-ages/checksums.yaml +2 -0
  640. dslighting-1.9.8/dslighting/registry/dabench-410-what-distribution-ages/config.yaml +16 -0
  641. dslighting-1.9.8/dslighting/registry/dabench-410-what-distribution-ages/description.md +43 -0
  642. dslighting-1.9.8/dslighting/registry/dabench-410-what-distribution-ages/grade.py +66 -0
  643. dslighting-1.9.8/dslighting/registry/dabench-410-what-distribution-ages/prepare.py +49 -0
  644. dslighting-1.9.8/dslighting/registry/dabench-411-there-outliers-fare/checksums.yaml +2 -0
  645. dslighting-1.9.8/dslighting/registry/dabench-411-there-outliers-fare/config.yaml +16 -0
  646. dslighting-1.9.8/dslighting/registry/dabench-411-there-outliers-fare/description.md +43 -0
  647. dslighting-1.9.8/dslighting/registry/dabench-411-there-outliers-fare/grade.py +66 -0
  648. dslighting-1.9.8/dslighting/registry/dabench-411-there-outliers-fare/prepare.py +49 -0
  649. dslighting-1.9.8/dslighting/registry/dabench-412-feature-called-familysize/checksums.yaml +2 -0
  650. dslighting-1.9.8/dslighting/registry/dabench-412-feature-called-familysize/config.yaml +16 -0
  651. dslighting-1.9.8/dslighting/registry/dabench-412-feature-called-familysize/description.md +43 -0
  652. dslighting-1.9.8/dslighting/registry/dabench-412-feature-called-familysize/grade.py +66 -0
  653. dslighting-1.9.8/dslighting/registry/dabench-412-feature-called-familysize/prepare.py +49 -0
  654. dslighting-1.9.8/dslighting/registry/dabench-413-there-correlation-between/checksums.yaml +2 -0
  655. dslighting-1.9.8/dslighting/registry/dabench-413-there-correlation-between/config.yaml +16 -0
  656. dslighting-1.9.8/dslighting/registry/dabench-413-there-correlation-between/description.md +47 -0
  657. dslighting-1.9.8/dslighting/registry/dabench-413-there-correlation-between/grade.py +66 -0
  658. dslighting-1.9.8/dslighting/registry/dabench-413-there-correlation-between/prepare.py +49 -0
  659. dslighting-1.9.8/dslighting/registry/dabench-414-what-average-passengers/checksums.yaml +2 -0
  660. dslighting-1.9.8/dslighting/registry/dabench-414-what-average-passengers/config.yaml +16 -0
  661. dslighting-1.9.8/dslighting/registry/dabench-414-what-average-passengers/description.md +45 -0
  662. dslighting-1.9.8/dslighting/registry/dabench-414-what-average-passengers/grade.py +66 -0
  663. dslighting-1.9.8/dslighting/registry/dabench-414-what-average-passengers/prepare.py +49 -0
  664. dslighting-1.9.8/dslighting/registry/dabench-415-what-distribution-fare/checksums.yaml +2 -0
  665. dslighting-1.9.8/dslighting/registry/dabench-415-what-distribution-fare/config.yaml +16 -0
  666. dslighting-1.9.8/dslighting/registry/dabench-415-what-distribution-fare/description.md +46 -0
  667. dslighting-1.9.8/dslighting/registry/dabench-415-what-distribution-fare/grade.py +66 -0
  668. dslighting-1.9.8/dslighting/registry/dabench-415-what-distribution-fare/prepare.py +49 -0
  669. dslighting-1.9.8/dslighting/registry/dabench-418-there-outliers-trading/checksums.yaml +2 -0
  670. dslighting-1.9.8/dslighting/registry/dabench-418-there-outliers-trading/config.yaml +16 -0
  671. dslighting-1.9.8/dslighting/registry/dabench-418-there-outliers-trading/description.md +43 -0
  672. dslighting-1.9.8/dslighting/registry/dabench-418-there-outliers-trading/grade.py +66 -0
  673. dslighting-1.9.8/dslighting/registry/dabench-418-there-outliers-trading/prepare.py +49 -0
  674. dslighting-1.9.8/dslighting/registry/dabench-419-there-significant-difference/checksums.yaml +2 -0
  675. dslighting-1.9.8/dslighting/registry/dabench-419-there-significant-difference/config.yaml +16 -0
  676. dslighting-1.9.8/dslighting/registry/dabench-419-there-significant-difference/description.md +43 -0
  677. dslighting-1.9.8/dslighting/registry/dabench-419-there-significant-difference/grade.py +66 -0
  678. dslighting-1.9.8/dslighting/registry/dabench-419-there-significant-difference/prepare.py +49 -0
  679. dslighting-1.9.8/dslighting/registry/dabench-421-comprehensive-data-preprocessing/checksums.yaml +2 -0
  680. dslighting-1.9.8/dslighting/registry/dabench-421-comprehensive-data-preprocessing/config.yaml +16 -0
  681. dslighting-1.9.8/dslighting/registry/dabench-421-comprehensive-data-preprocessing/description.md +43 -0
  682. dslighting-1.9.8/dslighting/registry/dabench-421-comprehensive-data-preprocessing/grade.py +66 -0
  683. dslighting-1.9.8/dslighting/registry/dabench-421-comprehensive-data-preprocessing/prepare.py +49 -0
  684. dslighting-1.9.8/dslighting/registry/dabench-423-feature-engineering-given/checksums.yaml +2 -0
  685. dslighting-1.9.8/dslighting/registry/dabench-423-feature-engineering-given/config.yaml +16 -0
  686. dslighting-1.9.8/dslighting/registry/dabench-423-feature-engineering-given/description.md +43 -0
  687. dslighting-1.9.8/dslighting/registry/dabench-423-feature-engineering-given/grade.py +66 -0
  688. dslighting-1.9.8/dslighting/registry/dabench-423-feature-engineering-given/prepare.py +49 -0
  689. dslighting-1.9.8/dslighting/registry/dabench-424-develop-machine-learning/checksums.yaml +2 -0
  690. dslighting-1.9.8/dslighting/registry/dabench-424-develop-machine-learning/config.yaml +16 -0
  691. dslighting-1.9.8/dslighting/registry/dabench-424-develop-machine-learning/description.md +43 -0
  692. dslighting-1.9.8/dslighting/registry/dabench-424-develop-machine-learning/grade.py +66 -0
  693. dslighting-1.9.8/dslighting/registry/dabench-424-develop-machine-learning/prepare.py +49 -0
  694. dslighting-1.9.8/dslighting/registry/dabench-425-many-missing-values/checksums.yaml +2 -0
  695. dslighting-1.9.8/dslighting/registry/dabench-425-many-missing-values/config.yaml +16 -0
  696. dslighting-1.9.8/dslighting/registry/dabench-425-many-missing-values/description.md +43 -0
  697. dslighting-1.9.8/dslighting/registry/dabench-425-many-missing-values/grade.py +66 -0
  698. dslighting-1.9.8/dslighting/registry/dabench-425-many-missing-values/prepare.py +49 -0
  699. dslighting-1.9.8/dslighting/registry/dabench-426-what-maximum-sustained/checksums.yaml +2 -0
  700. dslighting-1.9.8/dslighting/registry/dabench-426-what-maximum-sustained/config.yaml +16 -0
  701. dslighting-1.9.8/dslighting/registry/dabench-426-what-maximum-sustained/description.md +43 -0
  702. dslighting-1.9.8/dslighting/registry/dabench-426-what-maximum-sustained/grade.py +66 -0
  703. dslighting-1.9.8/dslighting/registry/dabench-426-what-maximum-sustained/prepare.py +49 -0
  704. dslighting-1.9.8/dslighting/registry/dabench-427-many-storms-have/checksums.yaml +2 -0
  705. dslighting-1.9.8/dslighting/registry/dabench-427-many-storms-have/config.yaml +16 -0
  706. dslighting-1.9.8/dslighting/registry/dabench-427-many-storms-have/description.md +43 -0
  707. dslighting-1.9.8/dslighting/registry/dabench-427-many-storms-have/grade.py +66 -0
  708. dslighting-1.9.8/dslighting/registry/dabench-427-many-storms-have/prepare.py +49 -0
  709. dslighting-1.9.8/dslighting/registry/dabench-428-what-average-damage/checksums.yaml +2 -0
  710. dslighting-1.9.8/dslighting/registry/dabench-428-what-average-damage/config.yaml +16 -0
  711. dslighting-1.9.8/dslighting/registry/dabench-428-what-average-damage/description.md +50 -0
  712. dslighting-1.9.8/dslighting/registry/dabench-428-what-average-damage/grade.py +66 -0
  713. dslighting-1.9.8/dslighting/registry/dabench-428-what-average-damage/prepare.py +49 -0
  714. dslighting-1.9.8/dslighting/registry/dabench-429-there-correlation-between/checksums.yaml +2 -0
  715. dslighting-1.9.8/dslighting/registry/dabench-429-there-correlation-between/config.yaml +16 -0
  716. dslighting-1.9.8/dslighting/registry/dabench-429-there-correlation-between/description.md +50 -0
  717. dslighting-1.9.8/dslighting/registry/dabench-429-there-correlation-between/grade.py +66 -0
  718. dslighting-1.9.8/dslighting/registry/dabench-429-there-correlation-between/prepare.py +49 -0
  719. dslighting-1.9.8/dslighting/registry/dabench-431-there-relationship-between/checksums.yaml +2 -0
  720. dslighting-1.9.8/dslighting/registry/dabench-431-there-relationship-between/config.yaml +16 -0
  721. dslighting-1.9.8/dslighting/registry/dabench-431-there-relationship-between/description.md +50 -0
  722. dslighting-1.9.8/dslighting/registry/dabench-431-there-relationship-between/grade.py +66 -0
  723. dslighting-1.9.8/dslighting/registry/dabench-431-there-relationship-between/prepare.py +49 -0
  724. dslighting-1.9.8/dslighting/registry/dabench-432-predict-maximum-sustained/checksums.yaml +2 -0
  725. dslighting-1.9.8/dslighting/registry/dabench-432-predict-maximum-sustained/config.yaml +16 -0
  726. dslighting-1.9.8/dslighting/registry/dabench-432-predict-maximum-sustained/description.md +48 -0
  727. dslighting-1.9.8/dslighting/registry/dabench-432-predict-maximum-sustained/grade.py +66 -0
  728. dslighting-1.9.8/dslighting/registry/dabench-432-predict-maximum-sustained/prepare.py +49 -0
  729. dslighting-1.9.8/dslighting/registry/dabench-446-what-mean-wind/checksums.yaml +2 -0
  730. dslighting-1.9.8/dslighting/registry/dabench-446-what-mean-wind/config.yaml +16 -0
  731. dslighting-1.9.8/dslighting/registry/dabench-446-what-mean-wind/description.md +43 -0
  732. dslighting-1.9.8/dslighting/registry/dabench-446-what-mean-wind/grade.py +66 -0
  733. dslighting-1.9.8/dslighting/registry/dabench-446-what-mean-wind/prepare.py +49 -0
  734. dslighting-1.9.8/dslighting/registry/dabench-447-there-outliers-atmospheric/checksums.yaml +2 -0
  735. dslighting-1.9.8/dslighting/registry/dabench-447-there-outliers-atmospheric/config.yaml +16 -0
  736. dslighting-1.9.8/dslighting/registry/dabench-447-there-outliers-atmospheric/description.md +43 -0
  737. dslighting-1.9.8/dslighting/registry/dabench-447-there-outliers-atmospheric/grade.py +66 -0
  738. dslighting-1.9.8/dslighting/registry/dabench-447-there-outliers-atmospheric/prepare.py +49 -0
  739. dslighting-1.9.8/dslighting/registry/dabench-449-what-distribution-wind/checksums.yaml +2 -0
  740. dslighting-1.9.8/dslighting/registry/dabench-449-what-distribution-wind/config.yaml +16 -0
  741. dslighting-1.9.8/dslighting/registry/dabench-449-what-distribution-wind/description.md +43 -0
  742. dslighting-1.9.8/dslighting/registry/dabench-449-what-distribution-wind/grade.py +66 -0
  743. dslighting-1.9.8/dslighting/registry/dabench-449-what-distribution-wind/prepare.py +49 -0
  744. dslighting-1.9.8/dslighting/registry/dabench-450-average-wind-speed/checksums.yaml +2 -0
  745. dslighting-1.9.8/dslighting/registry/dabench-450-average-wind-speed/config.yaml +16 -0
  746. dslighting-1.9.8/dslighting/registry/dabench-450-average-wind-speed/description.md +43 -0
  747. dslighting-1.9.8/dslighting/registry/dabench-450-average-wind-speed/grade.py +66 -0
  748. dslighting-1.9.8/dslighting/registry/dabench-450-average-wind-speed/prepare.py +49 -0
  749. dslighting-1.9.8/dslighting/registry/dabench-451-detect-missing-values/checksums.yaml +2 -0
  750. dslighting-1.9.8/dslighting/registry/dabench-451-detect-missing-values/config.yaml +16 -0
  751. dslighting-1.9.8/dslighting/registry/dabench-451-detect-missing-values/description.md +41 -0
  752. dslighting-1.9.8/dslighting/registry/dabench-451-detect-missing-values/grade.py +66 -0
  753. dslighting-1.9.8/dslighting/registry/dabench-451-detect-missing-values/prepare.py +49 -0
  754. dslighting-1.9.8/dslighting/registry/dabench-452-there-relationship-between/checksums.yaml +2 -0
  755. dslighting-1.9.8/dslighting/registry/dabench-452-there-relationship-between/config.yaml +16 -0
  756. dslighting-1.9.8/dslighting/registry/dabench-452-there-relationship-between/description.md +48 -0
  757. dslighting-1.9.8/dslighting/registry/dabench-452-there-relationship-between/grade.py +66 -0
  758. dslighting-1.9.8/dslighting/registry/dabench-452-there-relationship-between/prepare.py +49 -0
  759. dslighting-1.9.8/dslighting/registry/dabench-453-data-preprocessing-dataset/checksums.yaml +2 -0
  760. dslighting-1.9.8/dslighting/registry/dabench-453-data-preprocessing-dataset/config.yaml +16 -0
  761. dslighting-1.9.8/dslighting/registry/dabench-453-data-preprocessing-dataset/description.md +46 -0
  762. dslighting-1.9.8/dslighting/registry/dabench-453-data-preprocessing-dataset/grade.py +66 -0
  763. dslighting-1.9.8/dslighting/registry/dabench-453-data-preprocessing-dataset/prepare.py +49 -0
  764. dslighting-1.9.8/dslighting/registry/dabench-465-distribution-offender-ages/checksums.yaml +2 -0
  765. dslighting-1.9.8/dslighting/registry/dabench-465-distribution-offender-ages/config.yaml +16 -0
  766. dslighting-1.9.8/dslighting/registry/dabench-465-distribution-offender-ages/description.md +43 -0
  767. dslighting-1.9.8/dslighting/registry/dabench-465-distribution-offender-ages/grade.py +66 -0
  768. dslighting-1.9.8/dslighting/registry/dabench-465-distribution-offender-ages/prepare.py +49 -0
  769. dslighting-1.9.8/dslighting/registry/dabench-466-there-correlation-between/checksums.yaml +2 -0
  770. dslighting-1.9.8/dslighting/registry/dabench-466-there-correlation-between/config.yaml +16 -0
  771. dslighting-1.9.8/dslighting/registry/dabench-466-there-correlation-between/description.md +43 -0
  772. dslighting-1.9.8/dslighting/registry/dabench-466-there-correlation-between/grade.py +66 -0
  773. dslighting-1.9.8/dslighting/registry/dabench-466-there-correlation-between/prepare.py +49 -0
  774. dslighting-1.9.8/dslighting/registry/dabench-468-there-outliers-distribution/checksums.yaml +2 -0
  775. dslighting-1.9.8/dslighting/registry/dabench-468-there-outliers-distribution/config.yaml +16 -0
  776. dslighting-1.9.8/dslighting/registry/dabench-468-there-outliers-distribution/description.md +43 -0
  777. dslighting-1.9.8/dslighting/registry/dabench-468-there-outliers-distribution/grade.py +66 -0
  778. dslighting-1.9.8/dslighting/registry/dabench-468-there-outliers-distribution/prepare.py +49 -0
  779. dslighting-1.9.8/dslighting/registry/dabench-472-what-mean-value/checksums.yaml +2 -0
  780. dslighting-1.9.8/dslighting/registry/dabench-472-what-mean-value/config.yaml +16 -0
  781. dslighting-1.9.8/dslighting/registry/dabench-472-what-mean-value/description.md +44 -0
  782. dslighting-1.9.8/dslighting/registry/dabench-472-what-mean-value/grade.py +66 -0
  783. dslighting-1.9.8/dslighting/registry/dabench-472-what-mean-value/prepare.py +49 -0
  784. dslighting-1.9.8/dslighting/registry/dabench-473-there-outliers-value/checksums.yaml +2 -0
  785. dslighting-1.9.8/dslighting/registry/dabench-473-there-outliers-value/config.yaml +16 -0
  786. dslighting-1.9.8/dslighting/registry/dabench-473-there-outliers-value/description.md +45 -0
  787. dslighting-1.9.8/dslighting/registry/dabench-473-there-outliers-value/grade.py +66 -0
  788. dslighting-1.9.8/dslighting/registry/dabench-473-there-outliers-value/prepare.py +49 -0
  789. dslighting-1.9.8/dslighting/registry/dabench-474-there-correlation-between/checksums.yaml +2 -0
  790. dslighting-1.9.8/dslighting/registry/dabench-474-there-correlation-between/config.yaml +16 -0
  791. dslighting-1.9.8/dslighting/registry/dabench-474-there-correlation-between/description.md +45 -0
  792. dslighting-1.9.8/dslighting/registry/dabench-474-there-correlation-between/grade.py +66 -0
  793. dslighting-1.9.8/dslighting/registry/dabench-474-there-correlation-between/prepare.py +49 -0
  794. dslighting-1.9.8/dslighting/registry/dabench-480-feature-engineering-techniques/checksums.yaml +2 -0
  795. dslighting-1.9.8/dslighting/registry/dabench-480-feature-engineering-techniques/config.yaml +16 -0
  796. dslighting-1.9.8/dslighting/registry/dabench-480-feature-engineering-techniques/description.md +43 -0
  797. dslighting-1.9.8/dslighting/registry/dabench-480-feature-engineering-techniques/grade.py +66 -0
  798. dslighting-1.9.8/dslighting/registry/dabench-480-feature-engineering-techniques/prepare.py +49 -0
  799. dslighting-1.9.8/dslighting/registry/dabench-490-what-mean-percentage/checksums.yaml +2 -0
  800. dslighting-1.9.8/dslighting/registry/dabench-490-what-mean-percentage/config.yaml +16 -0
  801. dslighting-1.9.8/dslighting/registry/dabench-490-what-mean-percentage/description.md +43 -0
  802. dslighting-1.9.8/dslighting/registry/dabench-490-what-mean-percentage/grade.py +66 -0
  803. dslighting-1.9.8/dslighting/registry/dabench-490-what-mean-percentage/prepare.py +49 -0
  804. dslighting-1.9.8/dslighting/registry/dabench-492-which-field-highest/checksums.yaml +2 -0
  805. dslighting-1.9.8/dslighting/registry/dabench-492-which-field-highest/config.yaml +16 -0
  806. dslighting-1.9.8/dslighting/registry/dabench-492-which-field-highest/description.md +43 -0
  807. dslighting-1.9.8/dslighting/registry/dabench-492-which-field-highest/grade.py +66 -0
  808. dslighting-1.9.8/dslighting/registry/dabench-492-which-field-highest/prepare.py +49 -0
  809. dslighting-1.9.8/dslighting/registry/dabench-495-outlier-detection-percentage/checksums.yaml +2 -0
  810. dslighting-1.9.8/dslighting/registry/dabench-495-outlier-detection-percentage/config.yaml +16 -0
  811. dslighting-1.9.8/dslighting/registry/dabench-495-outlier-detection-percentage/description.md +45 -0
  812. dslighting-1.9.8/dslighting/registry/dabench-495-outlier-detection-percentage/grade.py +66 -0
  813. dslighting-1.9.8/dslighting/registry/dabench-495-outlier-detection-percentage/prepare.py +49 -0
  814. dslighting-1.9.8/dslighting/registry/dabench-496-feature-engineering-creating/checksums.yaml +2 -0
  815. dslighting-1.9.8/dslighting/registry/dabench-496-feature-engineering-creating/config.yaml +16 -0
  816. dslighting-1.9.8/dslighting/registry/dabench-496-feature-engineering-creating/description.md +44 -0
  817. dslighting-1.9.8/dslighting/registry/dabench-496-feature-engineering-creating/grade.py +66 -0
  818. dslighting-1.9.8/dslighting/registry/dabench-496-feature-engineering-creating/prepare.py +49 -0
  819. dslighting-1.9.8/dslighting/registry/dabench-5-generate-feature-called/checksums.yaml +2 -0
  820. dslighting-1.9.8/dslighting/registry/dabench-5-generate-feature-called/config.yaml +16 -0
  821. dslighting-1.9.8/dslighting/registry/dabench-5-generate-feature-called/description.md +45 -0
  822. dslighting-1.9.8/dslighting/registry/dabench-5-generate-feature-called/grade.py +66 -0
  823. dslighting-1.9.8/dslighting/registry/dabench-5-generate-feature-called/prepare.py +49 -0
  824. dslighting-1.9.8/dslighting/registry/dabench-506-what-average-number/checksums.yaml +2 -0
  825. dslighting-1.9.8/dslighting/registry/dabench-506-what-average-number/config.yaml +16 -0
  826. dslighting-1.9.8/dslighting/registry/dabench-506-what-average-number/description.md +43 -0
  827. dslighting-1.9.8/dslighting/registry/dabench-506-what-average-number/grade.py +66 -0
  828. dslighting-1.9.8/dslighting/registry/dabench-506-what-average-number/prepare.py +49 -0
  829. dslighting-1.9.8/dslighting/registry/dabench-507-there-hotels-dataset/checksums.yaml +2 -0
  830. dslighting-1.9.8/dslighting/registry/dabench-507-there-hotels-dataset/config.yaml +16 -0
  831. dslighting-1.9.8/dslighting/registry/dabench-507-there-hotels-dataset/description.md +43 -0
  832. dslighting-1.9.8/dslighting/registry/dabench-507-there-hotels-dataset/grade.py +66 -0
  833. dslighting-1.9.8/dslighting/registry/dabench-507-there-hotels-dataset/prepare.py +49 -0
  834. dslighting-1.9.8/dslighting/registry/dabench-508-there-correlation-between/checksums.yaml +2 -0
  835. dslighting-1.9.8/dslighting/registry/dabench-508-there-correlation-between/config.yaml +16 -0
  836. dslighting-1.9.8/dslighting/registry/dabench-508-there-correlation-between/description.md +43 -0
  837. dslighting-1.9.8/dslighting/registry/dabench-508-there-correlation-between/grade.py +66 -0
  838. dslighting-1.9.8/dslighting/registry/dabench-508-there-correlation-between/prepare.py +49 -0
  839. dslighting-1.9.8/dslighting/registry/dabench-510-which-hotel-brand/checksums.yaml +2 -0
  840. dslighting-1.9.8/dslighting/registry/dabench-510-which-hotel-brand/config.yaml +16 -0
  841. dslighting-1.9.8/dslighting/registry/dabench-510-which-hotel-brand/description.md +43 -0
  842. dslighting-1.9.8/dslighting/registry/dabench-510-which-hotel-brand/grade.py +66 -0
  843. dslighting-1.9.8/dslighting/registry/dabench-510-which-hotel-brand/prepare.py +49 -0
  844. dslighting-1.9.8/dslighting/registry/dabench-513-among-hotels-with/checksums.yaml +2 -0
  845. dslighting-1.9.8/dslighting/registry/dabench-513-among-hotels-with/config.yaml +16 -0
  846. dslighting-1.9.8/dslighting/registry/dabench-513-among-hotels-with/description.md +43 -0
  847. dslighting-1.9.8/dslighting/registry/dabench-513-among-hotels-with/grade.py +66 -0
  848. dslighting-1.9.8/dslighting/registry/dabench-513-among-hotels-with/prepare.py +49 -0
  849. dslighting-1.9.8/dslighting/registry/dabench-514-what-average-review/checksums.yaml +2 -0
  850. dslighting-1.9.8/dslighting/registry/dabench-514-what-average-review/config.yaml +16 -0
  851. dslighting-1.9.8/dslighting/registry/dabench-514-what-average-review/description.md +43 -0
  852. dslighting-1.9.8/dslighting/registry/dabench-514-what-average-review/grade.py +66 -0
  853. dslighting-1.9.8/dslighting/registry/dabench-514-what-average-review/prepare.py +49 -0
  854. dslighting-1.9.8/dslighting/registry/dabench-516-fare-distribution-skewed/checksums.yaml +2 -0
  855. dslighting-1.9.8/dslighting/registry/dabench-516-fare-distribution-skewed/config.yaml +16 -0
  856. dslighting-1.9.8/dslighting/registry/dabench-516-fare-distribution-skewed/description.md +43 -0
  857. dslighting-1.9.8/dslighting/registry/dabench-516-fare-distribution-skewed/grade.py +66 -0
  858. dslighting-1.9.8/dslighting/registry/dabench-516-fare-distribution-skewed/prepare.py +49 -0
  859. dslighting-1.9.8/dslighting/registry/dabench-517-find-correlation-coefficient/checksums.yaml +2 -0
  860. dslighting-1.9.8/dslighting/registry/dabench-517-find-correlation-coefficient/config.yaml +16 -0
  861. dslighting-1.9.8/dslighting/registry/dabench-517-find-correlation-coefficient/description.md +43 -0
  862. dslighting-1.9.8/dslighting/registry/dabench-517-find-correlation-coefficient/grade.py +66 -0
  863. dslighting-1.9.8/dslighting/registry/dabench-517-find-correlation-coefficient/prepare.py +49 -0
  864. dslighting-1.9.8/dslighting/registry/dabench-518-identify-remove-outliers/checksums.yaml +2 -0
  865. dslighting-1.9.8/dslighting/registry/dabench-518-identify-remove-outliers/config.yaml +16 -0
  866. dslighting-1.9.8/dslighting/registry/dabench-518-identify-remove-outliers/description.md +43 -0
  867. dslighting-1.9.8/dslighting/registry/dabench-518-identify-remove-outliers/grade.py +66 -0
  868. dslighting-1.9.8/dslighting/registry/dabench-518-identify-remove-outliers/prepare.py +49 -0
  869. dslighting-1.9.8/dslighting/registry/dabench-520-feature-called-familysize/checksums.yaml +2 -0
  870. dslighting-1.9.8/dslighting/registry/dabench-520-feature-called-familysize/config.yaml +16 -0
  871. dslighting-1.9.8/dslighting/registry/dabench-520-feature-called-familysize/description.md +43 -0
  872. dslighting-1.9.8/dslighting/registry/dabench-520-feature-called-familysize/grade.py +66 -0
  873. dslighting-1.9.8/dslighting/registry/dabench-520-feature-called-familysize/prepare.py +49 -0
  874. dslighting-1.9.8/dslighting/registry/dabench-521-using-machine-learning/checksums.yaml +2 -0
  875. dslighting-1.9.8/dslighting/registry/dabench-521-using-machine-learning/config.yaml +16 -0
  876. dslighting-1.9.8/dslighting/registry/dabench-521-using-machine-learning/description.md +43 -0
  877. dslighting-1.9.8/dslighting/registry/dabench-521-using-machine-learning/grade.py +66 -0
  878. dslighting-1.9.8/dslighting/registry/dabench-521-using-machine-learning/prepare.py +49 -0
  879. dslighting-1.9.8/dslighting/registry/dabench-522-feature-engineering-creating/checksums.yaml +2 -0
  880. dslighting-1.9.8/dslighting/registry/dabench-522-feature-engineering-creating/config.yaml +16 -0
  881. dslighting-1.9.8/dslighting/registry/dabench-522-feature-engineering-creating/description.md +43 -0
  882. dslighting-1.9.8/dslighting/registry/dabench-522-feature-engineering-creating/grade.py +66 -0
  883. dslighting-1.9.8/dslighting/registry/dabench-522-feature-engineering-creating/prepare.py +49 -0
  884. dslighting-1.9.8/dslighting/registry/dabench-523-preprocess-dataset-using/checksums.yaml +2 -0
  885. dslighting-1.9.8/dslighting/registry/dabench-523-preprocess-dataset-using/config.yaml +16 -0
  886. dslighting-1.9.8/dslighting/registry/dabench-523-preprocess-dataset-using/description.md +45 -0
  887. dslighting-1.9.8/dslighting/registry/dabench-523-preprocess-dataset-using/grade.py +66 -0
  888. dslighting-1.9.8/dslighting/registry/dabench-523-preprocess-dataset-using/prepare.py +49 -0
  889. dslighting-1.9.8/dslighting/registry/dabench-526-there-correlation-between/checksums.yaml +2 -0
  890. dslighting-1.9.8/dslighting/registry/dabench-526-there-correlation-between/config.yaml +16 -0
  891. dslighting-1.9.8/dslighting/registry/dabench-526-there-correlation-between/description.md +43 -0
  892. dslighting-1.9.8/dslighting/registry/dabench-526-there-correlation-between/grade.py +66 -0
  893. dslighting-1.9.8/dslighting/registry/dabench-526-there-correlation-between/prepare.py +49 -0
  894. dslighting-1.9.8/dslighting/registry/dabench-527-what-average-male/checksums.yaml +2 -0
  895. dslighting-1.9.8/dslighting/registry/dabench-527-what-average-male/config.yaml +16 -0
  896. dslighting-1.9.8/dslighting/registry/dabench-527-what-average-male/description.md +45 -0
  897. dslighting-1.9.8/dslighting/registry/dabench-527-what-average-male/grade.py +66 -0
  898. dslighting-1.9.8/dslighting/registry/dabench-527-what-average-male/prepare.py +49 -0
  899. dslighting-1.9.8/dslighting/registry/dabench-528-there-outliers-fare/checksums.yaml +2 -0
  900. dslighting-1.9.8/dslighting/registry/dabench-528-there-outliers-fare/config.yaml +16 -0
  901. dslighting-1.9.8/dslighting/registry/dabench-528-there-outliers-fare/description.md +45 -0
  902. dslighting-1.9.8/dslighting/registry/dabench-528-there-outliers-fare/grade.py +66 -0
  903. dslighting-1.9.8/dslighting/registry/dabench-528-there-outliers-fare/prepare.py +49 -0
  904. dslighting-1.9.8/dslighting/registry/dabench-529-identify-patterns-relationships/checksums.yaml +2 -0
  905. dslighting-1.9.8/dslighting/registry/dabench-529-identify-patterns-relationships/config.yaml +16 -0
  906. dslighting-1.9.8/dslighting/registry/dabench-529-identify-patterns-relationships/description.md +45 -0
  907. dslighting-1.9.8/dslighting/registry/dabench-529-identify-patterns-relationships/grade.py +66 -0
  908. dslighting-1.9.8/dslighting/registry/dabench-529-identify-patterns-relationships/prepare.py +49 -0
  909. dslighting-1.9.8/dslighting/registry/dabench-530-there-correlation-between/checksums.yaml +2 -0
  910. dslighting-1.9.8/dslighting/registry/dabench-530-there-correlation-between/config.yaml +16 -0
  911. dslighting-1.9.8/dslighting/registry/dabench-530-there-correlation-between/description.md +45 -0
  912. dslighting-1.9.8/dslighting/registry/dabench-530-there-correlation-between/grade.py +66 -0
  913. dslighting-1.9.8/dslighting/registry/dabench-530-there-correlation-between/prepare.py +49 -0
  914. dslighting-1.9.8/dslighting/registry/dabench-542-what-mean-length/checksums.yaml +2 -0
  915. dslighting-1.9.8/dslighting/registry/dabench-542-what-mean-length/config.yaml +16 -0
  916. dslighting-1.9.8/dslighting/registry/dabench-542-what-mean-length/description.md +43 -0
  917. dslighting-1.9.8/dslighting/registry/dabench-542-what-mean-length/grade.py +66 -0
  918. dslighting-1.9.8/dslighting/registry/dabench-542-what-mean-length/prepare.py +49 -0
  919. dslighting-1.9.8/dslighting/registry/dabench-543-there-correlation-between/checksums.yaml +2 -0
  920. dslighting-1.9.8/dslighting/registry/dabench-543-there-correlation-between/config.yaml +16 -0
  921. dslighting-1.9.8/dslighting/registry/dabench-543-there-correlation-between/description.md +47 -0
  922. dslighting-1.9.8/dslighting/registry/dabench-543-there-correlation-between/grade.py +66 -0
  923. dslighting-1.9.8/dslighting/registry/dabench-543-there-correlation-between/prepare.py +49 -0
  924. dslighting-1.9.8/dslighting/registry/dabench-549-explore-correlation-between/checksums.yaml +2 -0
  925. dslighting-1.9.8/dslighting/registry/dabench-549-explore-correlation-between/config.yaml +16 -0
  926. dslighting-1.9.8/dslighting/registry/dabench-549-explore-correlation-between/description.md +45 -0
  927. dslighting-1.9.8/dslighting/registry/dabench-549-explore-correlation-between/grade.py +66 -0
  928. dslighting-1.9.8/dslighting/registry/dabench-549-explore-correlation-between/prepare.py +49 -0
  929. dslighting-1.9.8/dslighting/registry/dabench-55-what-mean-number/checksums.yaml +2 -0
  930. dslighting-1.9.8/dslighting/registry/dabench-55-what-mean-number/config.yaml +16 -0
  931. dslighting-1.9.8/dslighting/registry/dabench-55-what-mean-number/description.md +43 -0
  932. dslighting-1.9.8/dslighting/registry/dabench-55-what-mean-number/grade.py +66 -0
  933. dslighting-1.9.8/dslighting/registry/dabench-55-what-mean-number/prepare.py +49 -0
  934. dslighting-1.9.8/dslighting/registry/dabench-550-comprehensive-data-preprocessing/checksums.yaml +2 -0
  935. dslighting-1.9.8/dslighting/registry/dabench-550-comprehensive-data-preprocessing/config.yaml +16 -0
  936. dslighting-1.9.8/dslighting/registry/dabench-550-comprehensive-data-preprocessing/description.md +45 -0
  937. dslighting-1.9.8/dslighting/registry/dabench-550-comprehensive-data-preprocessing/grade.py +66 -0
  938. dslighting-1.9.8/dslighting/registry/dabench-550-comprehensive-data-preprocessing/prepare.py +49 -0
  939. dslighting-1.9.8/dslighting/registry/dabench-551-what-mean-column/checksums.yaml +2 -0
  940. dslighting-1.9.8/dslighting/registry/dabench-551-what-mean-column/config.yaml +16 -0
  941. dslighting-1.9.8/dslighting/registry/dabench-551-what-mean-column/description.md +43 -0
  942. dslighting-1.9.8/dslighting/registry/dabench-551-what-mean-column/grade.py +66 -0
  943. dslighting-1.9.8/dslighting/registry/dabench-551-what-mean-column/prepare.py +49 -0
  944. dslighting-1.9.8/dslighting/registry/dabench-552-column-column-correlated/checksums.yaml +2 -0
  945. dslighting-1.9.8/dslighting/registry/dabench-552-column-column-correlated/config.yaml +16 -0
  946. dslighting-1.9.8/dslighting/registry/dabench-552-column-column-correlated/description.md +45 -0
  947. dslighting-1.9.8/dslighting/registry/dabench-552-column-column-correlated/grade.py +66 -0
  948. dslighting-1.9.8/dslighting/registry/dabench-552-column-column-correlated/prepare.py +49 -0
  949. dslighting-1.9.8/dslighting/registry/dabench-553-many-outliers-there/checksums.yaml +2 -0
  950. dslighting-1.9.8/dslighting/registry/dabench-553-many-outliers-there/config.yaml +16 -0
  951. dslighting-1.9.8/dslighting/registry/dabench-553-many-outliers-there/description.md +43 -0
  952. dslighting-1.9.8/dslighting/registry/dabench-553-many-outliers-there/grade.py +66 -0
  953. dslighting-1.9.8/dslighting/registry/dabench-553-many-outliers-there/prepare.py +49 -0
  954. dslighting-1.9.8/dslighting/registry/dabench-554-what-median-value/checksums.yaml +2 -0
  955. dslighting-1.9.8/dslighting/registry/dabench-554-what-median-value/config.yaml +16 -0
  956. dslighting-1.9.8/dslighting/registry/dabench-554-what-median-value/description.md +43 -0
  957. dslighting-1.9.8/dslighting/registry/dabench-554-what-median-value/grade.py +66 -0
  958. dslighting-1.9.8/dslighting/registry/dabench-554-what-median-value/prepare.py +49 -0
  959. dslighting-1.9.8/dslighting/registry/dabench-555-many-unique-plant/checksums.yaml +2 -0
  960. dslighting-1.9.8/dslighting/registry/dabench-555-many-unique-plant/config.yaml +16 -0
  961. dslighting-1.9.8/dslighting/registry/dabench-555-many-unique-plant/description.md +43 -0
  962. dslighting-1.9.8/dslighting/registry/dabench-555-many-unique-plant/grade.py +66 -0
  963. dslighting-1.9.8/dslighting/registry/dabench-555-many-unique-plant/prepare.py +49 -0
  964. dslighting-1.9.8/dslighting/registry/dabench-56-which-country-highest/checksums.yaml +2 -0
  965. dslighting-1.9.8/dslighting/registry/dabench-56-which-country-highest/config.yaml +16 -0
  966. dslighting-1.9.8/dslighting/registry/dabench-56-which-country-highest/description.md +43 -0
  967. dslighting-1.9.8/dslighting/registry/dabench-56-which-country-highest/grade.py +66 -0
  968. dslighting-1.9.8/dslighting/registry/dabench-56-which-country-highest/prepare.py +49 -0
  969. dslighting-1.9.8/dslighting/registry/dabench-57-there-correlation-between/checksums.yaml +2 -0
  970. dslighting-1.9.8/dslighting/registry/dabench-57-there-correlation-between/config.yaml +16 -0
  971. dslighting-1.9.8/dslighting/registry/dabench-57-there-correlation-between/description.md +43 -0
  972. dslighting-1.9.8/dslighting/registry/dabench-57-there-correlation-between/grade.py +66 -0
  973. dslighting-1.9.8/dslighting/registry/dabench-57-there-correlation-between/prepare.py +49 -0
  974. dslighting-1.9.8/dslighting/registry/dabench-572-identify-date-with/checksums.yaml +2 -0
  975. dslighting-1.9.8/dslighting/registry/dabench-572-identify-date-with/config.yaml +16 -0
  976. dslighting-1.9.8/dslighting/registry/dabench-572-identify-date-with/description.md +48 -0
  977. dslighting-1.9.8/dslighting/registry/dabench-572-identify-date-with/grade.py +66 -0
  978. dslighting-1.9.8/dslighting/registry/dabench-572-identify-date-with/prepare.py +49 -0
  979. dslighting-1.9.8/dslighting/registry/dabench-574-data-preprocessing-stock/checksums.yaml +2 -0
  980. dslighting-1.9.8/dslighting/registry/dabench-574-data-preprocessing-stock/config.yaml +16 -0
  981. dslighting-1.9.8/dslighting/registry/dabench-574-data-preprocessing-stock/description.md +48 -0
  982. dslighting-1.9.8/dslighting/registry/dabench-574-data-preprocessing-stock/grade.py +66 -0
  983. dslighting-1.9.8/dslighting/registry/dabench-574-data-preprocessing-stock/prepare.py +49 -0
  984. dslighting-1.9.8/dslighting/registry/dabench-575-using-feature-engineering/checksums.yaml +2 -0
  985. dslighting-1.9.8/dslighting/registry/dabench-575-using-feature-engineering/config.yaml +16 -0
  986. dslighting-1.9.8/dslighting/registry/dabench-575-using-feature-engineering/description.md +50 -0
  987. dslighting-1.9.8/dslighting/registry/dabench-575-using-feature-engineering/grade.py +66 -0
  988. dslighting-1.9.8/dslighting/registry/dabench-575-using-feature-engineering/prepare.py +49 -0
  989. dslighting-1.9.8/dslighting/registry/dabench-578-what-average-trading/checksums.yaml +2 -0
  990. dslighting-1.9.8/dslighting/registry/dabench-578-what-average-trading/config.yaml +16 -0
  991. dslighting-1.9.8/dslighting/registry/dabench-578-what-average-trading/description.md +43 -0
  992. dslighting-1.9.8/dslighting/registry/dabench-578-what-average-trading/grade.py +66 -0
  993. dslighting-1.9.8/dslighting/registry/dabench-578-what-average-trading/prepare.py +49 -0
  994. dslighting-1.9.8/dslighting/registry/dabench-58-what-percentage-missing/checksums.yaml +2 -0
  995. dslighting-1.9.8/dslighting/registry/dabench-58-what-percentage-missing/config.yaml +16 -0
  996. dslighting-1.9.8/dslighting/registry/dabench-58-what-percentage-missing/description.md +45 -0
  997. dslighting-1.9.8/dslighting/registry/dabench-58-what-percentage-missing/grade.py +66 -0
  998. dslighting-1.9.8/dslighting/registry/dabench-58-what-percentage-missing/prepare.py +49 -0
  999. dslighting-1.9.8/dslighting/registry/dabench-586-find-total-number/checksums.yaml +2 -0
  1000. dslighting-1.9.8/dslighting/registry/dabench-586-find-total-number/config.yaml +16 -0
  1001. dslighting-1.9.8/dslighting/registry/dabench-586-find-total-number/description.md +43 -0
  1002. dslighting-1.9.8/dslighting/registry/dabench-586-find-total-number/grade.py +66 -0
  1003. dslighting-1.9.8/dslighting/registry/dabench-586-find-total-number/prepare.py +49 -0
  1004. dslighting-1.9.8/dslighting/registry/dabench-587-examine-correlation-between/checksums.yaml +2 -0
  1005. dslighting-1.9.8/dslighting/registry/dabench-587-examine-correlation-between/config.yaml +16 -0
  1006. dslighting-1.9.8/dslighting/registry/dabench-587-examine-correlation-between/description.md +43 -0
  1007. dslighting-1.9.8/dslighting/registry/dabench-587-examine-correlation-between/grade.py +66 -0
  1008. dslighting-1.9.8/dslighting/registry/dabench-587-examine-correlation-between/prepare.py +49 -0
  1009. dslighting-1.9.8/dslighting/registry/dabench-588-there-outliers-average/checksums.yaml +2 -0
  1010. dslighting-1.9.8/dslighting/registry/dabench-588-there-outliers-average/config.yaml +16 -0
  1011. dslighting-1.9.8/dslighting/registry/dabench-588-there-outliers-average/description.md +43 -0
  1012. dslighting-1.9.8/dslighting/registry/dabench-588-there-outliers-average/grade.py +66 -0
  1013. dslighting-1.9.8/dslighting/registry/dabench-588-there-outliers-average/prepare.py +49 -0
  1014. dslighting-1.9.8/dslighting/registry/dabench-589-generate-feature-representing/checksums.yaml +2 -0
  1015. dslighting-1.9.8/dslighting/registry/dabench-589-generate-feature-representing/config.yaml +16 -0
  1016. dslighting-1.9.8/dslighting/registry/dabench-589-generate-feature-representing/description.md +43 -0
  1017. dslighting-1.9.8/dslighting/registry/dabench-589-generate-feature-representing/grade.py +66 -0
  1018. dslighting-1.9.8/dslighting/registry/dabench-589-generate-feature-representing/prepare.py +49 -0
  1019. dslighting-1.9.8/dslighting/registry/dabench-59-among-countries-americas/checksums.yaml +2 -0
  1020. dslighting-1.9.8/dslighting/registry/dabench-59-among-countries-americas/config.yaml +16 -0
  1021. dslighting-1.9.8/dslighting/registry/dabench-59-among-countries-americas/description.md +43 -0
  1022. dslighting-1.9.8/dslighting/registry/dabench-59-among-countries-americas/grade.py +66 -0
  1023. dslighting-1.9.8/dslighting/registry/dabench-59-among-countries-americas/prepare.py +49 -0
  1024. dslighting-1.9.8/dslighting/registry/dabench-590-using-machine-learning/checksums.yaml +2 -0
  1025. dslighting-1.9.8/dslighting/registry/dabench-590-using-machine-learning/config.yaml +16 -0
  1026. dslighting-1.9.8/dslighting/registry/dabench-590-using-machine-learning/description.md +43 -0
  1027. dslighting-1.9.8/dslighting/registry/dabench-590-using-machine-learning/grade.py +66 -0
  1028. dslighting-1.9.8/dslighting/registry/dabench-590-using-machine-learning/prepare.py +49 -0
  1029. dslighting-1.9.8/dslighting/registry/dabench-593-using-feature-engineering/checksums.yaml +2 -0
  1030. dslighting-1.9.8/dslighting/registry/dabench-593-using-feature-engineering/config.yaml +16 -0
  1031. dslighting-1.9.8/dslighting/registry/dabench-593-using-feature-engineering/description.md +43 -0
  1032. dslighting-1.9.8/dslighting/registry/dabench-593-using-feature-engineering/grade.py +66 -0
  1033. dslighting-1.9.8/dslighting/registry/dabench-593-using-feature-engineering/prepare.py +49 -0
  1034. dslighting-1.9.8/dslighting/registry/dabench-6-column-called-agegroup/checksums.yaml +2 -0
  1035. dslighting-1.9.8/dslighting/registry/dabench-6-column-called-agegroup/config.yaml +16 -0
  1036. dslighting-1.9.8/dslighting/registry/dabench-6-column-called-agegroup/description.md +45 -0
  1037. dslighting-1.9.8/dslighting/registry/dabench-6-column-called-agegroup/grade.py +66 -0
  1038. dslighting-1.9.8/dslighting/registry/dabench-6-column-called-agegroup/prepare.py +49 -0
  1039. dslighting-1.9.8/dslighting/registry/dabench-602-column-follows-normal/checksums.yaml +2 -0
  1040. dslighting-1.9.8/dslighting/registry/dabench-602-column-follows-normal/config.yaml +16 -0
  1041. dslighting-1.9.8/dslighting/registry/dabench-602-column-follows-normal/description.md +43 -0
  1042. dslighting-1.9.8/dslighting/registry/dabench-602-column-follows-normal/grade.py +66 -0
  1043. dslighting-1.9.8/dslighting/registry/dabench-602-column-follows-normal/prepare.py +49 -0
  1044. dslighting-1.9.8/dslighting/registry/dabench-604-identify-remove-outliers/checksums.yaml +2 -0
  1045. dslighting-1.9.8/dslighting/registry/dabench-604-identify-remove-outliers/config.yaml +16 -0
  1046. dslighting-1.9.8/dslighting/registry/dabench-604-identify-remove-outliers/description.md +46 -0
  1047. dslighting-1.9.8/dslighting/registry/dabench-604-identify-remove-outliers/grade.py +66 -0
  1048. dslighting-1.9.8/dslighting/registry/dabench-604-identify-remove-outliers/prepare.py +49 -0
  1049. dslighting-1.9.8/dslighting/registry/dabench-618-find-correlation-coefficient/checksums.yaml +2 -0
  1050. dslighting-1.9.8/dslighting/registry/dabench-618-find-correlation-coefficient/config.yaml +16 -0
  1051. dslighting-1.9.8/dslighting/registry/dabench-618-find-correlation-coefficient/description.md +43 -0
  1052. dslighting-1.9.8/dslighting/registry/dabench-618-find-correlation-coefficient/grade.py +66 -0
  1053. dslighting-1.9.8/dslighting/registry/dabench-618-find-correlation-coefficient/prepare.py +49 -0
  1054. dslighting-1.9.8/dslighting/registry/dabench-619-identify-remove-outliers/checksums.yaml +2 -0
  1055. dslighting-1.9.8/dslighting/registry/dabench-619-identify-remove-outliers/config.yaml +16 -0
  1056. dslighting-1.9.8/dslighting/registry/dabench-619-identify-remove-outliers/description.md +43 -0
  1057. dslighting-1.9.8/dslighting/registry/dabench-619-identify-remove-outliers/grade.py +66 -0
  1058. dslighting-1.9.8/dslighting/registry/dabench-619-identify-remove-outliers/prepare.py +49 -0
  1059. dslighting-1.9.8/dslighting/registry/dabench-62-there-outliers-column/checksums.yaml +2 -0
  1060. dslighting-1.9.8/dslighting/registry/dabench-62-there-outliers-column/config.yaml +16 -0
  1061. dslighting-1.9.8/dslighting/registry/dabench-62-there-outliers-column/description.md +45 -0
  1062. dslighting-1.9.8/dslighting/registry/dabench-62-there-outliers-column/grade.py +66 -0
  1063. dslighting-1.9.8/dslighting/registry/dabench-62-there-outliers-column/prepare.py +49 -0
  1064. dslighting-1.9.8/dslighting/registry/dabench-64-mean-standard-deviation/checksums.yaml +2 -0
  1065. dslighting-1.9.8/dslighting/registry/dabench-64-mean-standard-deviation/config.yaml +16 -0
  1066. dslighting-1.9.8/dslighting/registry/dabench-64-mean-standard-deviation/description.md +45 -0
  1067. dslighting-1.9.8/dslighting/registry/dabench-64-mean-standard-deviation/grade.py +66 -0
  1068. dslighting-1.9.8/dslighting/registry/dabench-64-mean-standard-deviation/prepare.py +49 -0
  1069. dslighting-1.9.8/dslighting/registry/dabench-643-mean-standard-deviation/checksums.yaml +2 -0
  1070. dslighting-1.9.8/dslighting/registry/dabench-643-mean-standard-deviation/config.yaml +16 -0
  1071. dslighting-1.9.8/dslighting/registry/dabench-643-mean-standard-deviation/description.md +43 -0
  1072. dslighting-1.9.8/dslighting/registry/dabench-643-mean-standard-deviation/grade.py +66 -0
  1073. dslighting-1.9.8/dslighting/registry/dabench-643-mean-standard-deviation/prepare.py +49 -0
  1074. dslighting-1.9.8/dslighting/registry/dabench-644-close-column-follows/checksums.yaml +2 -0
  1075. dslighting-1.9.8/dslighting/registry/dabench-644-close-column-follows/config.yaml +16 -0
  1076. dslighting-1.9.8/dslighting/registry/dabench-644-close-column-follows/description.md +43 -0
  1077. dslighting-1.9.8/dslighting/registry/dabench-644-close-column-follows/grade.py +66 -0
  1078. dslighting-1.9.8/dslighting/registry/dabench-644-close-column-follows/prepare.py +49 -0
  1079. dslighting-1.9.8/dslighting/registry/dabench-647-feature-called-price/checksums.yaml +2 -0
  1080. dslighting-1.9.8/dslighting/registry/dabench-647-feature-called-price/config.yaml +16 -0
  1081. dslighting-1.9.8/dslighting/registry/dabench-647-feature-called-price/description.md +43 -0
  1082. dslighting-1.9.8/dslighting/registry/dabench-647-feature-called-price/grade.py +66 -0
  1083. dslighting-1.9.8/dslighting/registry/dabench-647-feature-called-price/prepare.py +49 -0
  1084. dslighting-1.9.8/dslighting/registry/dabench-649-mean-standard-deviation/checksums.yaml +2 -0
  1085. dslighting-1.9.8/dslighting/registry/dabench-649-mean-standard-deviation/config.yaml +16 -0
  1086. dslighting-1.9.8/dslighting/registry/dabench-649-mean-standard-deviation/description.md +43 -0
  1087. dslighting-1.9.8/dslighting/registry/dabench-649-mean-standard-deviation/grade.py +66 -0
  1088. dslighting-1.9.8/dslighting/registry/dabench-649-mean-standard-deviation/prepare.py +49 -0
  1089. dslighting-1.9.8/dslighting/registry/dabench-650-there-correlation-between/checksums.yaml +2 -0
  1090. dslighting-1.9.8/dslighting/registry/dabench-650-there-correlation-between/config.yaml +16 -0
  1091. dslighting-1.9.8/dslighting/registry/dabench-650-there-correlation-between/description.md +43 -0
  1092. dslighting-1.9.8/dslighting/registry/dabench-650-there-correlation-between/grade.py +66 -0
  1093. dslighting-1.9.8/dslighting/registry/dabench-650-there-correlation-between/prepare.py +49 -0
  1094. dslighting-1.9.8/dslighting/registry/dabench-651-there-outliers-coordinate/checksums.yaml +2 -0
  1095. dslighting-1.9.8/dslighting/registry/dabench-651-there-outliers-coordinate/config.yaml +16 -0
  1096. dslighting-1.9.8/dslighting/registry/dabench-651-there-outliers-coordinate/description.md +43 -0
  1097. dslighting-1.9.8/dslighting/registry/dabench-651-there-outliers-coordinate/grade.py +66 -0
  1098. dslighting-1.9.8/dslighting/registry/dabench-651-there-outliers-coordinate/prepare.py +49 -0
  1099. dslighting-1.9.8/dslighting/registry/dabench-652-distribution-analysis-coordinate/checksums.yaml +2 -0
  1100. dslighting-1.9.8/dslighting/registry/dabench-652-distribution-analysis-coordinate/config.yaml +16 -0
  1101. dslighting-1.9.8/dslighting/registry/dabench-652-distribution-analysis-coordinate/description.md +43 -0
  1102. dslighting-1.9.8/dslighting/registry/dabench-652-distribution-analysis-coordinate/grade.py +66 -0
  1103. dslighting-1.9.8/dslighting/registry/dabench-652-distribution-analysis-coordinate/prepare.py +49 -0
  1104. dslighting-1.9.8/dslighting/registry/dabench-655-correlation-analysis-coordinate/checksums.yaml +2 -0
  1105. dslighting-1.9.8/dslighting/registry/dabench-655-correlation-analysis-coordinate/config.yaml +16 -0
  1106. dslighting-1.9.8/dslighting/registry/dabench-655-correlation-analysis-coordinate/description.md +44 -0
  1107. dslighting-1.9.8/dslighting/registry/dabench-655-correlation-analysis-coordinate/grade.py +66 -0
  1108. dslighting-1.9.8/dslighting/registry/dabench-655-correlation-analysis-coordinate/prepare.py +49 -0
  1109. dslighting-1.9.8/dslighting/registry/dabench-656-outlier-analysis-coordinate/checksums.yaml +2 -0
  1110. dslighting-1.9.8/dslighting/registry/dabench-656-outlier-analysis-coordinate/config.yaml +16 -0
  1111. dslighting-1.9.8/dslighting/registry/dabench-656-outlier-analysis-coordinate/description.md +47 -0
  1112. dslighting-1.9.8/dslighting/registry/dabench-656-outlier-analysis-coordinate/grade.py +66 -0
  1113. dslighting-1.9.8/dslighting/registry/dabench-656-outlier-analysis-coordinate/prepare.py +49 -0
  1114. dslighting-1.9.8/dslighting/registry/dabench-657-mean-median-standard/checksums.yaml +2 -0
  1115. dslighting-1.9.8/dslighting/registry/dabench-657-mean-median-standard/config.yaml +16 -0
  1116. dslighting-1.9.8/dslighting/registry/dabench-657-mean-median-standard/description.md +43 -0
  1117. dslighting-1.9.8/dslighting/registry/dabench-657-mean-median-standard/grade.py +66 -0
  1118. dslighting-1.9.8/dslighting/registry/dabench-657-mean-median-standard/prepare.py +49 -0
  1119. dslighting-1.9.8/dslighting/registry/dabench-658-volume-column-adheres/checksums.yaml +2 -0
  1120. dslighting-1.9.8/dslighting/registry/dabench-658-volume-column-adheres/config.yaml +16 -0
  1121. dslighting-1.9.8/dslighting/registry/dabench-658-volume-column-adheres/description.md +43 -0
  1122. dslighting-1.9.8/dslighting/registry/dabench-658-volume-column-adheres/grade.py +66 -0
  1123. dslighting-1.9.8/dslighting/registry/dabench-658-volume-column-adheres/prepare.py +49 -0
  1124. dslighting-1.9.8/dslighting/registry/dabench-659-find-correlation-between/checksums.yaml +2 -0
  1125. dslighting-1.9.8/dslighting/registry/dabench-659-find-correlation-between/config.yaml +16 -0
  1126. dslighting-1.9.8/dslighting/registry/dabench-659-find-correlation-between/description.md +43 -0
  1127. dslighting-1.9.8/dslighting/registry/dabench-659-find-correlation-between/grade.py +66 -0
  1128. dslighting-1.9.8/dslighting/registry/dabench-659-find-correlation-between/prepare.py +49 -0
  1129. dslighting-1.9.8/dslighting/registry/dabench-66-correlation-between-wage/checksums.yaml +2 -0
  1130. dslighting-1.9.8/dslighting/registry/dabench-66-correlation-between-wage/config.yaml +16 -0
  1131. dslighting-1.9.8/dslighting/registry/dabench-66-correlation-between-wage/description.md +45 -0
  1132. dslighting-1.9.8/dslighting/registry/dabench-66-correlation-between-wage/grade.py +66 -0
  1133. dslighting-1.9.8/dslighting/registry/dabench-66-correlation-between-wage/prepare.py +49 -0
  1134. dslighting-1.9.8/dslighting/registry/dabench-662-feature-engineering-creating/checksums.yaml +2 -0
  1135. dslighting-1.9.8/dslighting/registry/dabench-662-feature-engineering-creating/config.yaml +16 -0
  1136. dslighting-1.9.8/dslighting/registry/dabench-662-feature-engineering-creating/description.md +43 -0
  1137. dslighting-1.9.8/dslighting/registry/dabench-662-feature-engineering-creating/grade.py +66 -0
  1138. dslighting-1.9.8/dslighting/registry/dabench-662-feature-engineering-creating/prepare.py +49 -0
  1139. dslighting-1.9.8/dslighting/registry/dabench-663-scatter-plot-high/checksums.yaml +2 -0
  1140. dslighting-1.9.8/dslighting/registry/dabench-663-scatter-plot-high/config.yaml +16 -0
  1141. dslighting-1.9.8/dslighting/registry/dabench-663-scatter-plot-high/description.md +46 -0
  1142. dslighting-1.9.8/dslighting/registry/dabench-663-scatter-plot-high/grade.py +66 -0
  1143. dslighting-1.9.8/dslighting/registry/dabench-663-scatter-plot-high/prepare.py +49 -0
  1144. dslighting-1.9.8/dslighting/registry/dabench-665-data-preprocessing-filling/checksums.yaml +2 -0
  1145. dslighting-1.9.8/dslighting/registry/dabench-665-data-preprocessing-filling/config.yaml +16 -0
  1146. dslighting-1.9.8/dslighting/registry/dabench-665-data-preprocessing-filling/description.md +46 -0
  1147. dslighting-1.9.8/dslighting/registry/dabench-665-data-preprocessing-filling/grade.py +66 -0
  1148. dslighting-1.9.8/dslighting/registry/dabench-665-data-preprocessing-filling/prepare.py +49 -0
  1149. dslighting-1.9.8/dslighting/registry/dabench-666-mean-standard-deviation/checksums.yaml +2 -0
  1150. dslighting-1.9.8/dslighting/registry/dabench-666-mean-standard-deviation/config.yaml +16 -0
  1151. dslighting-1.9.8/dslighting/registry/dabench-666-mean-standard-deviation/description.md +43 -0
  1152. dslighting-1.9.8/dslighting/registry/dabench-666-mean-standard-deviation/grade.py +66 -0
  1153. dslighting-1.9.8/dslighting/registry/dabench-666-mean-standard-deviation/prepare.py +49 -0
  1154. dslighting-1.9.8/dslighting/registry/dabench-667-medinc-column-adheres/checksums.yaml +2 -0
  1155. dslighting-1.9.8/dslighting/registry/dabench-667-medinc-column-adheres/config.yaml +16 -0
  1156. dslighting-1.9.8/dslighting/registry/dabench-667-medinc-column-adheres/description.md +43 -0
  1157. dslighting-1.9.8/dslighting/registry/dabench-667-medinc-column-adheres/grade.py +66 -0
  1158. dslighting-1.9.8/dslighting/registry/dabench-667-medinc-column-adheres/prepare.py +49 -0
  1159. dslighting-1.9.8/dslighting/registry/dabench-668-correlation-coefficient-between/checksums.yaml +2 -0
  1160. dslighting-1.9.8/dslighting/registry/dabench-668-correlation-coefficient-between/config.yaml +16 -0
  1161. dslighting-1.9.8/dslighting/registry/dabench-668-correlation-coefficient-between/description.md +43 -0
  1162. dslighting-1.9.8/dslighting/registry/dabench-668-correlation-coefficient-between/grade.py +66 -0
  1163. dslighting-1.9.8/dslighting/registry/dabench-668-correlation-coefficient-between/prepare.py +49 -0
  1164. dslighting-1.9.8/dslighting/registry/dabench-669-identify-remove-outliers/checksums.yaml +2 -0
  1165. dslighting-1.9.8/dslighting/registry/dabench-669-identify-remove-outliers/config.yaml +16 -0
  1166. dslighting-1.9.8/dslighting/registry/dabench-669-identify-remove-outliers/description.md +43 -0
  1167. dslighting-1.9.8/dslighting/registry/dabench-669-identify-remove-outliers/grade.py +66 -0
  1168. dslighting-1.9.8/dslighting/registry/dabench-669-identify-remove-outliers/prepare.py +49 -0
  1169. dslighting-1.9.8/dslighting/registry/dabench-671-build-machine-learning/checksums.yaml +2 -0
  1170. dslighting-1.9.8/dslighting/registry/dabench-671-build-machine-learning/config.yaml +16 -0
  1171. dslighting-1.9.8/dslighting/registry/dabench-671-build-machine-learning/description.md +55 -0
  1172. dslighting-1.9.8/dslighting/registry/dabench-671-build-machine-learning/grade.py +66 -0
  1173. dslighting-1.9.8/dslighting/registry/dabench-671-build-machine-learning/prepare.py +49 -0
  1174. dslighting-1.9.8/dslighting/registry/dabench-673-comprehensive-data-preprocessing/checksums.yaml +2 -0
  1175. dslighting-1.9.8/dslighting/registry/dabench-673-comprehensive-data-preprocessing/config.yaml +16 -0
  1176. dslighting-1.9.8/dslighting/registry/dabench-673-comprehensive-data-preprocessing/description.md +53 -0
  1177. dslighting-1.9.8/dslighting/registry/dabench-673-comprehensive-data-preprocessing/grade.py +66 -0
  1178. dslighting-1.9.8/dslighting/registry/dabench-673-comprehensive-data-preprocessing/prepare.py +49 -0
  1179. dslighting-1.9.8/dslighting/registry/dabench-674-build-machine-learning/checksums.yaml +2 -0
  1180. dslighting-1.9.8/dslighting/registry/dabench-674-build-machine-learning/config.yaml +16 -0
  1181. dslighting-1.9.8/dslighting/registry/dabench-674-build-machine-learning/description.md +65 -0
  1182. dslighting-1.9.8/dslighting/registry/dabench-674-build-machine-learning/grade.py +66 -0
  1183. dslighting-1.9.8/dslighting/registry/dabench-674-build-machine-learning/prepare.py +49 -0
  1184. dslighting-1.9.8/dslighting/registry/dabench-683-what-mean-temperature/checksums.yaml +2 -0
  1185. dslighting-1.9.8/dslighting/registry/dabench-683-what-mean-temperature/config.yaml +16 -0
  1186. dslighting-1.9.8/dslighting/registry/dabench-683-what-mean-temperature/description.md +43 -0
  1187. dslighting-1.9.8/dslighting/registry/dabench-683-what-mean-temperature/grade.py +66 -0
  1188. dslighting-1.9.8/dslighting/registry/dabench-683-what-mean-temperature/prepare.py +49 -0
  1189. dslighting-1.9.8/dslighting/registry/dabench-684-does-humidity-level/checksums.yaml +2 -0
  1190. dslighting-1.9.8/dslighting/registry/dabench-684-does-humidity-level/config.yaml +16 -0
  1191. dslighting-1.9.8/dslighting/registry/dabench-684-does-humidity-level/description.md +43 -0
  1192. dslighting-1.9.8/dslighting/registry/dabench-684-does-humidity-level/grade.py +66 -0
  1193. dslighting-1.9.8/dslighting/registry/dabench-684-does-humidity-level/prepare.py +49 -0
  1194. dslighting-1.9.8/dslighting/registry/dabench-685-there-correlation-between/checksums.yaml +2 -0
  1195. dslighting-1.9.8/dslighting/registry/dabench-685-there-correlation-between/config.yaml +16 -0
  1196. dslighting-1.9.8/dslighting/registry/dabench-685-there-correlation-between/description.md +43 -0
  1197. dslighting-1.9.8/dslighting/registry/dabench-685-there-correlation-between/grade.py +66 -0
  1198. dslighting-1.9.8/dslighting/registry/dabench-685-there-correlation-between/prepare.py +49 -0
  1199. dslighting-1.9.8/dslighting/registry/dabench-688-using-feature-engineering/checksums.yaml +2 -0
  1200. dslighting-1.9.8/dslighting/registry/dabench-688-using-feature-engineering/config.yaml +16 -0
  1201. dslighting-1.9.8/dslighting/registry/dabench-688-using-feature-engineering/description.md +43 -0
  1202. dslighting-1.9.8/dslighting/registry/dabench-688-using-feature-engineering/grade.py +66 -0
  1203. dslighting-1.9.8/dslighting/registry/dabench-688-using-feature-engineering/prepare.py +49 -0
  1204. dslighting-1.9.8/dslighting/registry/dabench-69-feature-engineering-creating/checksums.yaml +2 -0
  1205. dslighting-1.9.8/dslighting/registry/dabench-69-feature-engineering-creating/config.yaml +16 -0
  1206. dslighting-1.9.8/dslighting/registry/dabench-69-feature-engineering-creating/description.md +43 -0
  1207. dslighting-1.9.8/dslighting/registry/dabench-69-feature-engineering-creating/grade.py +66 -0
  1208. dslighting-1.9.8/dslighting/registry/dabench-69-feature-engineering-creating/prepare.py +49 -0
  1209. dslighting-1.9.8/dslighting/registry/dabench-690-outlier-detection-wind/checksums.yaml +2 -0
  1210. dslighting-1.9.8/dslighting/registry/dabench-690-outlier-detection-wind/config.yaml +16 -0
  1211. dslighting-1.9.8/dslighting/registry/dabench-690-outlier-detection-wind/description.md +41 -0
  1212. dslighting-1.9.8/dslighting/registry/dabench-690-outlier-detection-wind/grade.py +66 -0
  1213. dslighting-1.9.8/dslighting/registry/dabench-690-outlier-detection-wind/prepare.py +49 -0
  1214. dslighting-1.9.8/dslighting/registry/dabench-7-linear-regression-algorithm/checksums.yaml +2 -0
  1215. dslighting-1.9.8/dslighting/registry/dabench-7-linear-regression-algorithm/config.yaml +16 -0
  1216. dslighting-1.9.8/dslighting/registry/dabench-7-linear-regression-algorithm/description.md +43 -0
  1217. dslighting-1.9.8/dslighting/registry/dabench-7-linear-regression-algorithm/grade.py +66 -0
  1218. dslighting-1.9.8/dslighting/registry/dabench-7-linear-regression-algorithm/prepare.py +49 -0
  1219. dslighting-1.9.8/dslighting/registry/dabench-70-machine-learning-training/checksums.yaml +2 -0
  1220. dslighting-1.9.8/dslighting/registry/dabench-70-machine-learning-training/config.yaml +16 -0
  1221. dslighting-1.9.8/dslighting/registry/dabench-70-machine-learning-training/description.md +43 -0
  1222. dslighting-1.9.8/dslighting/registry/dabench-70-machine-learning-training/grade.py +66 -0
  1223. dslighting-1.9.8/dslighting/registry/dabench-70-machine-learning-training/prepare.py +49 -0
  1224. dslighting-1.9.8/dslighting/registry/dabench-71-mean-standard-deviation/checksums.yaml +2 -0
  1225. dslighting-1.9.8/dslighting/registry/dabench-71-mean-standard-deviation/config.yaml +16 -0
  1226. dslighting-1.9.8/dslighting/registry/dabench-71-mean-standard-deviation/description.md +43 -0
  1227. dslighting-1.9.8/dslighting/registry/dabench-71-mean-standard-deviation/grade.py +66 -0
  1228. dslighting-1.9.8/dslighting/registry/dabench-71-mean-standard-deviation/prepare.py +49 -0
  1229. dslighting-1.9.8/dslighting/registry/dabench-710-what-mean-number/checksums.yaml +2 -0
  1230. dslighting-1.9.8/dslighting/registry/dabench-710-what-mean-number/config.yaml +16 -0
  1231. dslighting-1.9.8/dslighting/registry/dabench-710-what-mean-number/description.md +41 -0
  1232. dslighting-1.9.8/dslighting/registry/dabench-710-what-mean-number/grade.py +66 -0
  1233. dslighting-1.9.8/dslighting/registry/dabench-710-what-mean-number/prepare.py +49 -0
  1234. dslighting-1.9.8/dslighting/registry/dabench-715-what-percentage-missing/checksums.yaml +2 -0
  1235. dslighting-1.9.8/dslighting/registry/dabench-715-what-percentage-missing/config.yaml +16 -0
  1236. dslighting-1.9.8/dslighting/registry/dabench-715-what-percentage-missing/description.md +43 -0
  1237. dslighting-1.9.8/dslighting/registry/dabench-715-what-percentage-missing/grade.py +66 -0
  1238. dslighting-1.9.8/dslighting/registry/dabench-715-what-percentage-missing/prepare.py +49 -0
  1239. dslighting-1.9.8/dslighting/registry/dabench-716-data-preprocessing-dropping/checksums.yaml +2 -0
  1240. dslighting-1.9.8/dslighting/registry/dabench-716-data-preprocessing-dropping/config.yaml +16 -0
  1241. dslighting-1.9.8/dslighting/registry/dabench-716-data-preprocessing-dropping/description.md +47 -0
  1242. dslighting-1.9.8/dslighting/registry/dabench-716-data-preprocessing-dropping/grade.py +66 -0
  1243. dslighting-1.9.8/dslighting/registry/dabench-716-data-preprocessing-dropping/prepare.py +49 -0
  1244. dslighting-1.9.8/dslighting/registry/dabench-719-mean-median-column/checksums.yaml +2 -0
  1245. dslighting-1.9.8/dslighting/registry/dabench-719-mean-median-column/config.yaml +16 -0
  1246. dslighting-1.9.8/dslighting/registry/dabench-719-mean-median-column/description.md +43 -0
  1247. dslighting-1.9.8/dslighting/registry/dabench-719-mean-median-column/grade.py +66 -0
  1248. dslighting-1.9.8/dslighting/registry/dabench-719-mean-median-column/prepare.py +49 -0
  1249. dslighting-1.9.8/dslighting/registry/dabench-72-close-column-adheres/checksums.yaml +2 -0
  1250. dslighting-1.9.8/dslighting/registry/dabench-72-close-column-adheres/config.yaml +16 -0
  1251. dslighting-1.9.8/dslighting/registry/dabench-72-close-column-adheres/description.md +43 -0
  1252. dslighting-1.9.8/dslighting/registry/dabench-72-close-column-adheres/grade.py +66 -0
  1253. dslighting-1.9.8/dslighting/registry/dabench-72-close-column-adheres/prepare.py +49 -0
  1254. dslighting-1.9.8/dslighting/registry/dabench-721-find-correlation-coefficient/checksums.yaml +2 -0
  1255. dslighting-1.9.8/dslighting/registry/dabench-721-find-correlation-coefficient/config.yaml +16 -0
  1256. dslighting-1.9.8/dslighting/registry/dabench-721-find-correlation-coefficient/description.md +43 -0
  1257. dslighting-1.9.8/dslighting/registry/dabench-721-find-correlation-coefficient/grade.py +66 -0
  1258. dslighting-1.9.8/dslighting/registry/dabench-721-find-correlation-coefficient/prepare.py +49 -0
  1259. dslighting-1.9.8/dslighting/registry/dabench-722-identify-vehicle-with/checksums.yaml +2 -0
  1260. dslighting-1.9.8/dslighting/registry/dabench-722-identify-vehicle-with/config.yaml +16 -0
  1261. dslighting-1.9.8/dslighting/registry/dabench-722-identify-vehicle-with/description.md +43 -0
  1262. dslighting-1.9.8/dslighting/registry/dabench-722-identify-vehicle-with/grade.py +66 -0
  1263. dslighting-1.9.8/dslighting/registry/dabench-722-identify-vehicle-with/prepare.py +49 -0
  1264. dslighting-1.9.8/dslighting/registry/dabench-723-generate-feature-called/checksums.yaml +2 -0
  1265. dslighting-1.9.8/dslighting/registry/dabench-723-generate-feature-called/config.yaml +16 -0
  1266. dslighting-1.9.8/dslighting/registry/dabench-723-generate-feature-called/description.md +43 -0
  1267. dslighting-1.9.8/dslighting/registry/dabench-723-generate-feature-called/grade.py +66 -0
  1268. dslighting-1.9.8/dslighting/registry/dabench-723-generate-feature-called/prepare.py +49 -0
  1269. dslighting-1.9.8/dslighting/registry/dabench-724-outlier-detection-acceleration/checksums.yaml +2 -0
  1270. dslighting-1.9.8/dslighting/registry/dabench-724-outlier-detection-acceleration/config.yaml +16 -0
  1271. dslighting-1.9.8/dslighting/registry/dabench-724-outlier-detection-acceleration/description.md +43 -0
  1272. dslighting-1.9.8/dslighting/registry/dabench-724-outlier-detection-acceleration/grade.py +66 -0
  1273. dslighting-1.9.8/dslighting/registry/dabench-724-outlier-detection-acceleration/prepare.py +49 -0
  1274. dslighting-1.9.8/dslighting/registry/dabench-725-investigate-relationship-between/checksums.yaml +2 -0
  1275. dslighting-1.9.8/dslighting/registry/dabench-725-investigate-relationship-between/config.yaml +16 -0
  1276. dslighting-1.9.8/dslighting/registry/dabench-725-investigate-relationship-between/description.md +47 -0
  1277. dslighting-1.9.8/dslighting/registry/dabench-725-investigate-relationship-between/grade.py +66 -0
  1278. dslighting-1.9.8/dslighting/registry/dabench-725-investigate-relationship-between/prepare.py +49 -0
  1279. dslighting-1.9.8/dslighting/registry/dabench-726-comprehensive-data-preprocessing/checksums.yaml +2 -0
  1280. dslighting-1.9.8/dslighting/registry/dabench-726-comprehensive-data-preprocessing/config.yaml +16 -0
  1281. dslighting-1.9.8/dslighting/registry/dabench-726-comprehensive-data-preprocessing/description.md +47 -0
  1282. dslighting-1.9.8/dslighting/registry/dabench-726-comprehensive-data-preprocessing/grade.py +66 -0
  1283. dslighting-1.9.8/dslighting/registry/dabench-726-comprehensive-data-preprocessing/prepare.py +49 -0
  1284. dslighting-1.9.8/dslighting/registry/dabench-727-machine-learning-techniques/checksums.yaml +2 -0
  1285. dslighting-1.9.8/dslighting/registry/dabench-727-machine-learning-techniques/config.yaml +16 -0
  1286. dslighting-1.9.8/dslighting/registry/dabench-727-machine-learning-techniques/description.md +47 -0
  1287. dslighting-1.9.8/dslighting/registry/dabench-727-machine-learning-techniques/grade.py +66 -0
  1288. dslighting-1.9.8/dslighting/registry/dabench-727-machine-learning-techniques/prepare.py +49 -0
  1289. dslighting-1.9.8/dslighting/registry/dabench-729-does-distribution-capita/checksums.yaml +2 -0
  1290. dslighting-1.9.8/dslighting/registry/dabench-729-does-distribution-capita/config.yaml +16 -0
  1291. dslighting-1.9.8/dslighting/registry/dabench-729-does-distribution-capita/description.md +43 -0
  1292. dslighting-1.9.8/dslighting/registry/dabench-729-does-distribution-capita/grade.py +66 -0
  1293. dslighting-1.9.8/dslighting/registry/dabench-729-does-distribution-capita/prepare.py +49 -0
  1294. dslighting-1.9.8/dslighting/registry/dabench-73-correlation-coefficient-between/checksums.yaml +2 -0
  1295. dslighting-1.9.8/dslighting/registry/dabench-73-correlation-coefficient-between/config.yaml +16 -0
  1296. dslighting-1.9.8/dslighting/registry/dabench-73-correlation-coefficient-between/description.md +43 -0
  1297. dslighting-1.9.8/dslighting/registry/dabench-73-correlation-coefficient-between/grade.py +66 -0
  1298. dslighting-1.9.8/dslighting/registry/dabench-73-correlation-coefficient-between/prepare.py +49 -0
  1299. dslighting-1.9.8/dslighting/registry/dabench-730-there-correlation-between/checksums.yaml +2 -0
  1300. dslighting-1.9.8/dslighting/registry/dabench-730-there-correlation-between/config.yaml +16 -0
  1301. dslighting-1.9.8/dslighting/registry/dabench-730-there-correlation-between/description.md +43 -0
  1302. dslighting-1.9.8/dslighting/registry/dabench-730-there-correlation-between/grade.py +66 -0
  1303. dslighting-1.9.8/dslighting/registry/dabench-730-there-correlation-between/prepare.py +49 -0
  1304. dslighting-1.9.8/dslighting/registry/dabench-732-comprehensive-data-preprocessing/checksums.yaml +2 -0
  1305. dslighting-1.9.8/dslighting/registry/dabench-732-comprehensive-data-preprocessing/config.yaml +16 -0
  1306. dslighting-1.9.8/dslighting/registry/dabench-732-comprehensive-data-preprocessing/description.md +45 -0
  1307. dslighting-1.9.8/dslighting/registry/dabench-732-comprehensive-data-preprocessing/grade.py +66 -0
  1308. dslighting-1.9.8/dslighting/registry/dabench-732-comprehensive-data-preprocessing/prepare.py +49 -0
  1309. dslighting-1.9.8/dslighting/registry/dabench-733-feature-engineering-techniques/checksums.yaml +2 -0
  1310. dslighting-1.9.8/dslighting/registry/dabench-733-feature-engineering-techniques/config.yaml +16 -0
  1311. dslighting-1.9.8/dslighting/registry/dabench-733-feature-engineering-techniques/description.md +44 -0
  1312. dslighting-1.9.8/dslighting/registry/dabench-733-feature-engineering-techniques/grade.py +66 -0
  1313. dslighting-1.9.8/dslighting/registry/dabench-733-feature-engineering-techniques/prepare.py +49 -0
  1314. dslighting-1.9.8/dslighting/registry/dabench-734-there-correlation-between/checksums.yaml +2 -0
  1315. dslighting-1.9.8/dslighting/registry/dabench-734-there-correlation-between/config.yaml +16 -0
  1316. dslighting-1.9.8/dslighting/registry/dabench-734-there-correlation-between/description.md +43 -0
  1317. dslighting-1.9.8/dslighting/registry/dabench-734-there-correlation-between/grade.py +66 -0
  1318. dslighting-1.9.8/dslighting/registry/dabench-734-there-correlation-between/prepare.py +49 -0
  1319. dslighting-1.9.8/dslighting/registry/dabench-736-feature-combining-population/checksums.yaml +2 -0
  1320. dslighting-1.9.8/dslighting/registry/dabench-736-feature-combining-population/config.yaml +16 -0
  1321. dslighting-1.9.8/dslighting/registry/dabench-736-feature-combining-population/description.md +43 -0
  1322. dslighting-1.9.8/dslighting/registry/dabench-736-feature-combining-population/grade.py +66 -0
  1323. dslighting-1.9.8/dslighting/registry/dabench-736-feature-combining-population/prepare.py +49 -0
  1324. dslighting-1.9.8/dslighting/registry/dabench-737-mean-standard-deviation/checksums.yaml +2 -0
  1325. dslighting-1.9.8/dslighting/registry/dabench-737-mean-standard-deviation/config.yaml +16 -0
  1326. dslighting-1.9.8/dslighting/registry/dabench-737-mean-standard-deviation/description.md +43 -0
  1327. dslighting-1.9.8/dslighting/registry/dabench-737-mean-standard-deviation/grade.py +66 -0
  1328. dslighting-1.9.8/dslighting/registry/dabench-737-mean-standard-deviation/prepare.py +49 -0
  1329. dslighting-1.9.8/dslighting/registry/dabench-738-distribution-column-credit/checksums.yaml +2 -0
  1330. dslighting-1.9.8/dslighting/registry/dabench-738-distribution-column-credit/config.yaml +16 -0
  1331. dslighting-1.9.8/dslighting/registry/dabench-738-distribution-column-credit/description.md +43 -0
  1332. dslighting-1.9.8/dslighting/registry/dabench-738-distribution-column-credit/grade.py +66 -0
  1333. dslighting-1.9.8/dslighting/registry/dabench-738-distribution-column-credit/prepare.py +49 -0
  1334. dslighting-1.9.8/dslighting/registry/dabench-739-determine-correlation-coefficient/checksums.yaml +2 -0
  1335. dslighting-1.9.8/dslighting/registry/dabench-739-determine-correlation-coefficient/config.yaml +16 -0
  1336. dslighting-1.9.8/dslighting/registry/dabench-739-determine-correlation-coefficient/description.md +43 -0
  1337. dslighting-1.9.8/dslighting/registry/dabench-739-determine-correlation-coefficient/grade.py +66 -0
  1338. dslighting-1.9.8/dslighting/registry/dabench-739-determine-correlation-coefficient/prepare.py +49 -0
  1339. dslighting-1.9.8/dslighting/registry/dabench-740-identify-outliers-balance/checksums.yaml +2 -0
  1340. dslighting-1.9.8/dslighting/registry/dabench-740-identify-outliers-balance/config.yaml +16 -0
  1341. dslighting-1.9.8/dslighting/registry/dabench-740-identify-outliers-balance/description.md +43 -0
  1342. dslighting-1.9.8/dslighting/registry/dabench-740-identify-outliers-balance/grade.py +66 -0
  1343. dslighting-1.9.8/dslighting/registry/dabench-740-identify-outliers-balance/prepare.py +49 -0
  1344. dslighting-1.9.8/dslighting/registry/dabench-741-feature-credit-file/checksums.yaml +2 -0
  1345. dslighting-1.9.8/dslighting/registry/dabench-741-feature-credit-file/config.yaml +16 -0
  1346. dslighting-1.9.8/dslighting/registry/dabench-741-feature-credit-file/description.md +43 -0
  1347. dslighting-1.9.8/dslighting/registry/dabench-741-feature-credit-file/grade.py +66 -0
  1348. dslighting-1.9.8/dslighting/registry/dabench-741-feature-credit-file/prepare.py +49 -0
  1349. dslighting-1.9.8/dslighting/registry/dabench-743-comprehensive-data-preprocessing/checksums.yaml +2 -0
  1350. dslighting-1.9.8/dslighting/registry/dabench-743-comprehensive-data-preprocessing/config.yaml +16 -0
  1351. dslighting-1.9.8/dslighting/registry/dabench-743-comprehensive-data-preprocessing/description.md +47 -0
  1352. dslighting-1.9.8/dslighting/registry/dabench-743-comprehensive-data-preprocessing/grade.py +66 -0
  1353. dslighting-1.9.8/dslighting/registry/dabench-743-comprehensive-data-preprocessing/prepare.py +49 -0
  1354. dslighting-1.9.8/dslighting/registry/dabench-75-column-called-daily/checksums.yaml +2 -0
  1355. dslighting-1.9.8/dslighting/registry/dabench-75-column-called-daily/config.yaml +16 -0
  1356. dslighting-1.9.8/dslighting/registry/dabench-75-column-called-daily/description.md +45 -0
  1357. dslighting-1.9.8/dslighting/registry/dabench-75-column-called-daily/grade.py +66 -0
  1358. dslighting-1.9.8/dslighting/registry/dabench-75-column-called-daily/prepare.py +49 -0
  1359. dslighting-1.9.8/dslighting/registry/dabench-755-what-mean-value/checksums.yaml +2 -0
  1360. dslighting-1.9.8/dslighting/registry/dabench-755-what-mean-value/config.yaml +16 -0
  1361. dslighting-1.9.8/dslighting/registry/dabench-755-what-mean-value/description.md +43 -0
  1362. dslighting-1.9.8/dslighting/registry/dabench-755-what-mean-value/grade.py +66 -0
  1363. dslighting-1.9.8/dslighting/registry/dabench-755-what-mean-value/prepare.py +49 -0
  1364. dslighting-1.9.8/dslighting/registry/dabench-756-there-correlation-between/checksums.yaml +2 -0
  1365. dslighting-1.9.8/dslighting/registry/dabench-756-there-correlation-between/config.yaml +16 -0
  1366. dslighting-1.9.8/dslighting/registry/dabench-756-there-correlation-between/description.md +43 -0
  1367. dslighting-1.9.8/dslighting/registry/dabench-756-there-correlation-between/grade.py +66 -0
  1368. dslighting-1.9.8/dslighting/registry/dabench-756-there-correlation-between/prepare.py +49 -0
  1369. dslighting-1.9.8/dslighting/registry/dabench-757-there-outliers-observation/checksums.yaml +2 -0
  1370. dslighting-1.9.8/dslighting/registry/dabench-757-there-outliers-observation/config.yaml +16 -0
  1371. dslighting-1.9.8/dslighting/registry/dabench-757-there-outliers-observation/description.md +43 -0
  1372. dslighting-1.9.8/dslighting/registry/dabench-757-there-outliers-observation/grade.py +66 -0
  1373. dslighting-1.9.8/dslighting/registry/dabench-757-there-outliers-observation/prepare.py +49 -0
  1374. dslighting-1.9.8/dslighting/registry/dabench-759-median-range-maximum/checksums.yaml +2 -0
  1375. dslighting-1.9.8/dslighting/registry/dabench-759-median-range-maximum/config.yaml +16 -0
  1376. dslighting-1.9.8/dslighting/registry/dabench-759-median-range-maximum/description.md +46 -0
  1377. dslighting-1.9.8/dslighting/registry/dabench-759-median-range-maximum/grade.py +66 -0
  1378. dslighting-1.9.8/dslighting/registry/dabench-759-median-range-maximum/prepare.py +49 -0
  1379. dslighting-1.9.8/dslighting/registry/dabench-760-each-station-there/checksums.yaml +2 -0
  1380. dslighting-1.9.8/dslighting/registry/dabench-760-each-station-there/config.yaml +16 -0
  1381. dslighting-1.9.8/dslighting/registry/dabench-760-each-station-there/description.md +45 -0
  1382. dslighting-1.9.8/dslighting/registry/dabench-760-each-station-there/grade.py +66 -0
  1383. dslighting-1.9.8/dslighting/registry/dabench-760-each-station-there/prepare.py +49 -0
  1384. dslighting-1.9.8/dslighting/registry/dabench-77-comprehensive-data-preprocessing/checksums.yaml +2 -0
  1385. dslighting-1.9.8/dslighting/registry/dabench-77-comprehensive-data-preprocessing/config.yaml +16 -0
  1386. dslighting-1.9.8/dslighting/registry/dabench-77-comprehensive-data-preprocessing/description.md +45 -0
  1387. dslighting-1.9.8/dslighting/registry/dabench-77-comprehensive-data-preprocessing/grade.py +66 -0
  1388. dslighting-1.9.8/dslighting/registry/dabench-77-comprehensive-data-preprocessing/prepare.py +49 -0
  1389. dslighting-1.9.8/dslighting/registry/dabench-8-distribution-analysis-fare/checksums.yaml +2 -0
  1390. dslighting-1.9.8/dslighting/registry/dabench-8-distribution-analysis-fare/config.yaml +16 -0
  1391. dslighting-1.9.8/dslighting/registry/dabench-8-distribution-analysis-fare/description.md +45 -0
  1392. dslighting-1.9.8/dslighting/registry/dabench-8-distribution-analysis-fare/grade.py +66 -0
  1393. dslighting-1.9.8/dslighting/registry/dabench-8-distribution-analysis-fare/prepare.py +49 -0
  1394. dslighting-1.9.8/dslighting/registry/dabench-9-mean-value-close/checksums.yaml +2 -0
  1395. dslighting-1.9.8/dslighting/registry/dabench-9-mean-value-close/config.yaml +16 -0
  1396. dslighting-1.9.8/dslighting/registry/dabench-9-mean-value-close/description.md +43 -0
  1397. dslighting-1.9.8/dslighting/registry/dabench-9-mean-value-close/grade.py +66 -0
  1398. dslighting-1.9.8/dslighting/registry/dabench-9-mean-value-close/prepare.py +49 -0
  1399. dslighting-1.9.8/dslighting/registry/demand-forecasting-kernels-only/__init__.py +0 -0
  1400. dslighting-1.9.8/dslighting/registry/demand-forecasting-kernels-only/config.yaml +15 -0
  1401. dslighting-1.9.8/dslighting/registry/demand-forecasting-kernels-only/description.md +44 -0
  1402. dslighting-1.9.8/dslighting/registry/demand-forecasting-kernels-only/grade.py +66 -0
  1403. dslighting-1.9.8/dslighting/registry/demand-forecasting-kernels-only/prepare.py +27 -0
  1404. dslighting-1.9.8/dslighting/registry/demand_forecasting_kernels_only/__init__.py +0 -0
  1405. dslighting-1.9.8/dslighting/registry/demand_forecasting_kernels_only/grade.py +66 -0
  1406. dslighting-1.9.8/dslighting/registry/demand_forecasting_kernels_only/prepare.py +27 -0
  1407. dslighting-1.9.8/dslighting/registry/denoising-dirty-documents/checksums.yaml +5 -0
  1408. dslighting-1.9.8/dslighting/registry/denoising-dirty-documents/config.yaml +16 -0
  1409. dslighting-1.9.8/dslighting/registry/denoising-dirty-documents/description.md +59 -0
  1410. dslighting-1.9.8/dslighting/registry/denoising-dirty-documents/description_obfuscated.md +23 -0
  1411. dslighting-1.9.8/dslighting/registry/denoising-dirty-documents/grade.py +44 -0
  1412. dslighting-1.9.8/dslighting/registry/denoising-dirty-documents/prepare.py +134 -0
  1413. dslighting-1.9.8/dslighting/registry/denoising-dirty-documents/prepare_val.py +178 -0
  1414. dslighting-1.9.8/dslighting/registry/detecting-insults-in-social-commentary/checksums.yaml +8 -0
  1415. dslighting-1.9.8/dslighting/registry/detecting-insults-in-social-commentary/config.yaml +23 -0
  1416. dslighting-1.9.8/dslighting/registry/detecting-insults-in-social-commentary/description.md +164 -0
  1417. dslighting-1.9.8/dslighting/registry/detecting-insults-in-social-commentary/description_obfuscated.md +31 -0
  1418. dslighting-1.9.8/dslighting/registry/detecting-insults-in-social-commentary/grade.py +11 -0
  1419. dslighting-1.9.8/dslighting/registry/detecting-insults-in-social-commentary/prepare.py +72 -0
  1420. dslighting-1.9.8/dslighting/registry/detecting-insults-in-social-commentary/prepare_val.py +128 -0
  1421. dslighting-1.9.8/dslighting/registry/dog-breed-identification/checksums.yaml +6 -0
  1422. dslighting-1.9.8/dslighting/registry/dog-breed-identification/config.yaml +16 -0
  1423. dslighting-1.9.8/dslighting/registry/dog-breed-identification/description.md +169 -0
  1424. dslighting-1.9.8/dslighting/registry/dog-breed-identification/description_obfuscated.md +23 -0
  1425. dslighting-1.9.8/dslighting/registry/dog-breed-identification/dogs.py +124 -0
  1426. dslighting-1.9.8/dslighting/registry/dog-breed-identification/grade.py +42 -0
  1427. dslighting-1.9.8/dslighting/registry/dog-breed-identification/prepare.py +55 -0
  1428. dslighting-1.9.8/dslighting/registry/dog-breed-identification/prepare_val.py +104 -0
  1429. dslighting-1.9.8/dslighting/registry/dogs-vs-cats-redux-kernels-edition/checksums.yaml +5 -0
  1430. dslighting-1.9.8/dslighting/registry/dogs-vs-cats-redux-kernels-edition/config.yaml +16 -0
  1431. dslighting-1.9.8/dslighting/registry/dogs-vs-cats-redux-kernels-edition/description.md +50 -0
  1432. dslighting-1.9.8/dslighting/registry/dogs-vs-cats-redux-kernels-edition/description_obfuscated.md +23 -0
  1433. dslighting-1.9.8/dslighting/registry/dogs-vs-cats-redux-kernels-edition/grade.py +43 -0
  1434. dslighting-1.9.8/dslighting/registry/dogs-vs-cats-redux-kernels-edition/prepare.py +70 -0
  1435. dslighting-1.9.8/dslighting/registry/dogs-vs-cats-redux-kernels-edition/prepare_val.py +143 -0
  1436. dslighting-1.9.8/dslighting/registry/ethanol-concentration/checksums.yaml +3 -0
  1437. dslighting-1.9.8/dslighting/registry/ethanol-concentration/config.yaml +16 -0
  1438. dslighting-1.9.8/dslighting/registry/ethanol-concentration/description.md +64 -0
  1439. dslighting-1.9.8/dslighting/registry/ethanol-concentration/grade.py +23 -0
  1440. dslighting-1.9.8/dslighting/registry/ethanol-concentration/prepare.py +90 -0
  1441. dslighting-1.9.8/dslighting/registry/facebook-recruiting-iii-keyword-extraction/checksums.yaml +7 -0
  1442. dslighting-1.9.8/dslighting/registry/facebook-recruiting-iii-keyword-extraction/config.yaml +16 -0
  1443. dslighting-1.9.8/dslighting/registry/facebook-recruiting-iii-keyword-extraction/description.md +74 -0
  1444. dslighting-1.9.8/dslighting/registry/facebook-recruiting-iii-keyword-extraction/description_obfuscated.md +33 -0
  1445. dslighting-1.9.8/dslighting/registry/facebook-recruiting-iii-keyword-extraction/grade.py +60 -0
  1446. dslighting-1.9.8/dslighting/registry/facebook-recruiting-iii-keyword-extraction/prepare.py +41 -0
  1447. dslighting-1.9.8/dslighting/registry/facebook-recruiting-iii-keyword-extraction/prepare_val.py +92 -0
  1448. dslighting-1.9.8/dslighting/registry/feedback-prize-english-language-learning/__init__.py +0 -0
  1449. dslighting-1.9.8/dslighting/registry/feedback-prize-english-language-learning/config.yaml +15 -0
  1450. dslighting-1.9.8/dslighting/registry/feedback-prize-english-language-learning/description.md +43 -0
  1451. dslighting-1.9.8/dslighting/registry/feedback-prize-english-language-learning/grade.py +60 -0
  1452. dslighting-1.9.8/dslighting/registry/feedback-prize-english-language-learning/prepare.py +39 -0
  1453. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/checksums.yaml +7 -0
  1454. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/config.yaml +24 -0
  1455. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/description.md +276 -0
  1456. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/description_obfuscated.md +42 -0
  1457. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/grade.py +64 -0
  1458. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/prepare.py +94 -0
  1459. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/prepare_val.py +175 -0
  1460. dslighting-1.9.8/dslighting/registry/freesound-audio-tagging-2019/vocabulary.py +83 -0
  1461. dslighting-1.9.8/dslighting/registry/google-quest-challenge/checksums.yaml +7 -0
  1462. dslighting-1.9.8/dslighting/registry/google-quest-challenge/classes.py +32 -0
  1463. dslighting-1.9.8/dslighting/registry/google-quest-challenge/config.yaml +26 -0
  1464. dslighting-1.9.8/dslighting/registry/google-quest-challenge/description.md +83 -0
  1465. dslighting-1.9.8/dslighting/registry/google-quest-challenge/description_obfuscated.md +29 -0
  1466. dslighting-1.9.8/dslighting/registry/google-quest-challenge/grade.py +45 -0
  1467. dslighting-1.9.8/dslighting/registry/google-quest-challenge/prepare.py +58 -0
  1468. dslighting-1.9.8/dslighting/registry/google-quest-challenge/prepare_val.py +120 -0
  1469. dslighting-1.9.8/dslighting/registry/google-research-identify-contrails-reduce-global-warming/checksums.yaml +7 -0
  1470. dslighting-1.9.8/dslighting/registry/google-research-identify-contrails-reduce-global-warming/config.yaml +28 -0
  1471. dslighting-1.9.8/dslighting/registry/google-research-identify-contrails-reduce-global-warming/description.md +129 -0
  1472. dslighting-1.9.8/dslighting/registry/google-research-identify-contrails-reduce-global-warming/description_obfuscated.md +51 -0
  1473. dslighting-1.9.8/dslighting/registry/google-research-identify-contrails-reduce-global-warming/grade.py +77 -0
  1474. dslighting-1.9.8/dslighting/registry/google-research-identify-contrails-reduce-global-warming/prepare.py +155 -0
  1475. dslighting-1.9.8/dslighting/registry/google-research-identify-contrails-reduce-global-warming/prepare_val.py +211 -0
  1476. dslighting-1.9.8/dslighting/registry/h-and-m-personalized-fashion-recommendations/checksums.yaml +8 -0
  1477. dslighting-1.9.8/dslighting/registry/h-and-m-personalized-fashion-recommendations/config.yaml +28 -0
  1478. dslighting-1.9.8/dslighting/registry/h-and-m-personalized-fashion-recommendations/description.md +74 -0
  1479. dslighting-1.9.8/dslighting/registry/h-and-m-personalized-fashion-recommendations/description_obfuscated.md +34 -0
  1480. dslighting-1.9.8/dslighting/registry/h-and-m-personalized-fashion-recommendations/grade.py +42 -0
  1481. dslighting-1.9.8/dslighting/registry/h-and-m-personalized-fashion-recommendations/prepare.py +102 -0
  1482. dslighting-1.9.8/dslighting/registry/h-and-m-personalized-fashion-recommendations/prepare_val.py +132 -0
  1483. dslighting-1.9.8/dslighting/registry/handwriting/checksums.yaml +3 -0
  1484. dslighting-1.9.8/dslighting/registry/handwriting/config.yaml +16 -0
  1485. dslighting-1.9.8/dslighting/registry/handwriting/description.md +39 -0
  1486. dslighting-1.9.8/dslighting/registry/handwriting/grade.py +23 -0
  1487. dslighting-1.9.8/dslighting/registry/handwriting/prepare.py +179 -0
  1488. dslighting-1.9.8/dslighting/registry/herbarium-2020-fgvc7/checksums.yaml +5 -0
  1489. dslighting-1.9.8/dslighting/registry/herbarium-2020-fgvc7/config.yaml +16 -0
  1490. dslighting-1.9.8/dslighting/registry/herbarium-2020-fgvc7/description.md +159 -0
  1491. dslighting-1.9.8/dslighting/registry/herbarium-2020-fgvc7/description_obfuscated.md +27 -0
  1492. dslighting-1.9.8/dslighting/registry/herbarium-2020-fgvc7/grade.py +34 -0
  1493. dslighting-1.9.8/dslighting/registry/herbarium-2020-fgvc7/prepare.py +251 -0
  1494. dslighting-1.9.8/dslighting/registry/herbarium-2020-fgvc7/prepare_val.py +242 -0
  1495. dslighting-1.9.8/dslighting/registry/herbarium-2021-fgvc8/checksums.yaml +5 -0
  1496. dslighting-1.9.8/dslighting/registry/herbarium-2021-fgvc8/config.yaml +16 -0
  1497. dslighting-1.9.8/dslighting/registry/herbarium-2021-fgvc8/description.md +168 -0
  1498. dslighting-1.9.8/dslighting/registry/herbarium-2021-fgvc8/description_obfuscated.md +27 -0
  1499. dslighting-1.9.8/dslighting/registry/herbarium-2021-fgvc8/grade.py +34 -0
  1500. dslighting-1.9.8/dslighting/registry/herbarium-2021-fgvc8/prepare.py +251 -0
  1501. dslighting-1.9.8/dslighting/registry/herbarium-2021-fgvc8/prepare_val.py +222 -0
  1502. dslighting-1.9.8/dslighting/registry/herbarium-2022-fgvc9/checksums.yaml +7 -0
  1503. dslighting-1.9.8/dslighting/registry/herbarium-2022-fgvc9/config.yaml +16 -0
  1504. dslighting-1.9.8/dslighting/registry/herbarium-2022-fgvc9/description.md +154 -0
  1505. dslighting-1.9.8/dslighting/registry/herbarium-2022-fgvc9/description_obfuscated.md +28 -0
  1506. dslighting-1.9.8/dslighting/registry/herbarium-2022-fgvc9/grade.py +31 -0
  1507. dslighting-1.9.8/dslighting/registry/herbarium-2022-fgvc9/prepare.py +233 -0
  1508. dslighting-1.9.8/dslighting/registry/herbarium-2022-fgvc9/prepare_val.py +213 -0
  1509. dslighting-1.9.8/dslighting/registry/histopathologic-cancer-detection/checksums.yaml +6 -0
  1510. dslighting-1.9.8/dslighting/registry/histopathologic-cancer-detection/config.yaml +16 -0
  1511. dslighting-1.9.8/dslighting/registry/histopathologic-cancer-detection/description.md +63 -0
  1512. dslighting-1.9.8/dslighting/registry/histopathologic-cancer-detection/description_obfuscated.md +23 -0
  1513. dslighting-1.9.8/dslighting/registry/histopathologic-cancer-detection/grade.py +12 -0
  1514. dslighting-1.9.8/dslighting/registry/histopathologic-cancer-detection/prepare.py +59 -0
  1515. dslighting-1.9.8/dslighting/registry/histopathologic-cancer-detection/prepare_val.py +131 -0
  1516. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/checksums.yaml +8 -0
  1517. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/config.yaml +27 -0
  1518. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/constants.py +9 -0
  1519. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/description.md +166 -0
  1520. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/description_obfuscated.md +56 -0
  1521. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/grade.py +43 -0
  1522. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/kaggle_metric_utilities.py +96 -0
  1523. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/kullback_leibler_divergence.py +118 -0
  1524. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/prepare.py +121 -0
  1525. dslighting-1.9.8/dslighting/registry/hms-harmful-brain-activity-classification/prepare_val.py +190 -0
  1526. dslighting-1.9.8/dslighting/registry/hotel-id-2021-fgvc8/checksums.yaml +6 -0
  1527. dslighting-1.9.8/dslighting/registry/hotel-id-2021-fgvc8/config.yaml +16 -0
  1528. dslighting-1.9.8/dslighting/registry/hotel-id-2021-fgvc8/description.md +120 -0
  1529. dslighting-1.9.8/dslighting/registry/hotel-id-2021-fgvc8/description_obfuscated.md +40 -0
  1530. dslighting-1.9.8/dslighting/registry/hotel-id-2021-fgvc8/grade.py +41 -0
  1531. dslighting-1.9.8/dslighting/registry/hotel-id-2021-fgvc8/prepare.py +63 -0
  1532. dslighting-1.9.8/dslighting/registry/hotel-id-2021-fgvc8/prepare_val.py +132 -0
  1533. dslighting-1.9.8/dslighting/registry/hubmap-kidney-segmentation/checksums.yaml +8 -0
  1534. dslighting-1.9.8/dslighting/registry/hubmap-kidney-segmentation/config.yaml +29 -0
  1535. dslighting-1.9.8/dslighting/registry/hubmap-kidney-segmentation/description.md +211 -0
  1536. dslighting-1.9.8/dslighting/registry/hubmap-kidney-segmentation/description_obfuscated.md +46 -0
  1537. dslighting-1.9.8/dslighting/registry/hubmap-kidney-segmentation/grade.py +62 -0
  1538. dslighting-1.9.8/dslighting/registry/hubmap-kidney-segmentation/prepare.py +108 -0
  1539. dslighting-1.9.8/dslighting/registry/hubmap-kidney-segmentation/prepare_val.py +153 -0
  1540. dslighting-1.9.8/dslighting/registry/icecube-neutrinos-in-deep-ice/checksums.yaml +8 -0
  1541. dslighting-1.9.8/dslighting/registry/icecube-neutrinos-in-deep-ice/config.yaml +34 -0
  1542. dslighting-1.9.8/dslighting/registry/icecube-neutrinos-in-deep-ice/description.md +231 -0
  1543. dslighting-1.9.8/dslighting/registry/icecube-neutrinos-in-deep-ice/description_obfuscated.md +48 -0
  1544. dslighting-1.9.8/dslighting/registry/icecube-neutrinos-in-deep-ice/grade.py +111 -0
  1545. dslighting-1.9.8/dslighting/registry/icecube-neutrinos-in-deep-ice/prepare.py +127 -0
  1546. dslighting-1.9.8/dslighting/registry/icecube-neutrinos-in-deep-ice/prepare_val.py +183 -0
  1547. dslighting-1.9.8/dslighting/registry/ili/checksums.yaml +3 -0
  1548. dslighting-1.9.8/dslighting/registry/ili/config.yaml +16 -0
  1549. dslighting-1.9.8/dslighting/registry/ili/description.md +61 -0
  1550. dslighting-1.9.8/dslighting/registry/ili/grade.py +60 -0
  1551. dslighting-1.9.8/dslighting/registry/ili/prepare.py +99 -0
  1552. dslighting-1.9.8/dslighting/registry/imet-2020-fgvc7/checksums.yaml +7 -0
  1553. dslighting-1.9.8/dslighting/registry/imet-2020-fgvc7/config.yaml +16 -0
  1554. dslighting-1.9.8/dslighting/registry/imet-2020-fgvc7/description.md +81 -0
  1555. dslighting-1.9.8/dslighting/registry/imet-2020-fgvc7/description_obfuscated.md +29 -0
  1556. dslighting-1.9.8/dslighting/registry/imet-2020-fgvc7/grade.py +54 -0
  1557. dslighting-1.9.8/dslighting/registry/imet-2020-fgvc7/prepare.py +77 -0
  1558. dslighting-1.9.8/dslighting/registry/imet-2020-fgvc7/prepare_val.py +157 -0
  1559. dslighting-1.9.8/dslighting/registry/inaturalist-2019-fgvc6/checksums.yaml +8 -0
  1560. dslighting-1.9.8/dslighting/registry/inaturalist-2019-fgvc6/config.yaml +16 -0
  1561. dslighting-1.9.8/dslighting/registry/inaturalist-2019-fgvc6/description.md +122 -0
  1562. dslighting-1.9.8/dslighting/registry/inaturalist-2019-fgvc6/description_obfuscated.md +31 -0
  1563. dslighting-1.9.8/dslighting/registry/inaturalist-2019-fgvc6/grade.py +35 -0
  1564. dslighting-1.9.8/dslighting/registry/inaturalist-2019-fgvc6/prepare.py +259 -0
  1565. dslighting-1.9.8/dslighting/registry/inaturalist-2019-fgvc6/prepare_val.py +304 -0
  1566. dslighting-1.9.8/dslighting/registry/instant-gratification/__init__.py +0 -0
  1567. dslighting-1.9.8/dslighting/registry/instant-gratification/config.yaml +15 -0
  1568. dslighting-1.9.8/dslighting/registry/instant-gratification/description.md +37 -0
  1569. dslighting-1.9.8/dslighting/registry/instant-gratification/grade.py +55 -0
  1570. dslighting-1.9.8/dslighting/registry/instant-gratification/prepare.py +25 -0
  1571. dslighting-1.9.8/dslighting/registry/instant_gratification/__init__.py +0 -0
  1572. dslighting-1.9.8/dslighting/registry/instant_gratification/grade.py +55 -0
  1573. dslighting-1.9.8/dslighting/registry/instant_gratification/prepare.py +25 -0
  1574. dslighting-1.9.8/dslighting/registry/invasive-species-monitoring/checksums.yaml +5 -0
  1575. dslighting-1.9.8/dslighting/registry/invasive-species-monitoring/config.yaml +16 -0
  1576. dslighting-1.9.8/dslighting/registry/invasive-species-monitoring/description.md +55 -0
  1577. dslighting-1.9.8/dslighting/registry/invasive-species-monitoring/description_obfuscated.md +33 -0
  1578. dslighting-1.9.8/dslighting/registry/invasive-species-monitoring/grade.py +11 -0
  1579. dslighting-1.9.8/dslighting/registry/invasive-species-monitoring/prepare.py +97 -0
  1580. dslighting-1.9.8/dslighting/registry/invasive-species-monitoring/prepare_val.py +164 -0
  1581. dslighting-1.9.8/dslighting/registry/iwildcam-2019-fgvc6/checksums.yaml +8 -0
  1582. dslighting-1.9.8/dslighting/registry/iwildcam-2019-fgvc6/config.yaml +16 -0
  1583. dslighting-1.9.8/dslighting/registry/iwildcam-2019-fgvc6/description.md +109 -0
  1584. dslighting-1.9.8/dslighting/registry/iwildcam-2019-fgvc6/description_obfuscated.md +52 -0
  1585. dslighting-1.9.8/dslighting/registry/iwildcam-2019-fgvc6/grade.py +44 -0
  1586. dslighting-1.9.8/dslighting/registry/iwildcam-2019-fgvc6/prepare.py +118 -0
  1587. dslighting-1.9.8/dslighting/registry/iwildcam-2019-fgvc6/prepare_val.py +194 -0
  1588. dslighting-1.9.8/dslighting/registry/iwildcam-2020-fgvc7/checksums.yaml +8 -0
  1589. dslighting-1.9.8/dslighting/registry/iwildcam-2020-fgvc7/config.yaml +16 -0
  1590. dslighting-1.9.8/dslighting/registry/iwildcam-2020-fgvc7/description.md +89 -0
  1591. dslighting-1.9.8/dslighting/registry/iwildcam-2020-fgvc7/description_obfuscated.md +29 -0
  1592. dslighting-1.9.8/dslighting/registry/iwildcam-2020-fgvc7/grade.py +11 -0
  1593. dslighting-1.9.8/dslighting/registry/iwildcam-2020-fgvc7/prepare.py +164 -0
  1594. dslighting-1.9.8/dslighting/registry/iwildcam-2020-fgvc7/prepare_val.py +245 -0
  1595. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/checksums.yaml +7 -0
  1596. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/classes.py +1 -0
  1597. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/config.yaml +22 -0
  1598. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/description.md +69 -0
  1599. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/description_obfuscated.md +24 -0
  1600. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/grade.py +54 -0
  1601. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/prepare.py +42 -0
  1602. dslighting-1.9.8/dslighting/registry/jigsaw-toxic-comment-classification-challenge/prepare_val.py +88 -0
  1603. dslighting-1.9.8/dslighting/registry/jigsaw-unintended-bias-in-toxicity-classification/checksums.yaml +7 -0
  1604. dslighting-1.9.8/dslighting/registry/jigsaw-unintended-bias-in-toxicity-classification/config.yaml +36 -0
  1605. dslighting-1.9.8/dslighting/registry/jigsaw-unintended-bias-in-toxicity-classification/description.md +286 -0
  1606. dslighting-1.9.8/dslighting/registry/jigsaw-unintended-bias-in-toxicity-classification/description_obfuscated.md +85 -0
  1607. dslighting-1.9.8/dslighting/registry/jigsaw-unintended-bias-in-toxicity-classification/grade.py +153 -0
  1608. dslighting-1.9.8/dslighting/registry/jigsaw-unintended-bias-in-toxicity-classification/prepare.py +36 -0
  1609. dslighting-1.9.8/dslighting/registry/jigsaw-unintended-bias-in-toxicity-classification/prepare_val.py +117 -0
  1610. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/checksums.yaml +8 -0
  1611. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/config.yaml +27 -0
  1612. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/description.md +124 -0
  1613. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/description_obfuscated.md +36 -0
  1614. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/grade.py +58 -0
  1615. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/kuzushiji_metric.py +118 -0
  1616. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/prepare.py +92 -0
  1617. dslighting-1.9.8/dslighting/registry/kuzushiji-recognition/prepare_val.py +149 -0
  1618. dslighting-1.9.8/dslighting/registry/leaf-classification/checksums.yaml +7 -0
  1619. dslighting-1.9.8/dslighting/registry/leaf-classification/classes.py +101 -0
  1620. dslighting-1.9.8/dslighting/registry/leaf-classification/config.yaml +16 -0
  1621. dslighting-1.9.8/dslighting/registry/leaf-classification/description.md +70 -0
  1622. dslighting-1.9.8/dslighting/registry/leaf-classification/description_obfuscated.md +41 -0
  1623. dslighting-1.9.8/dslighting/registry/leaf-classification/grade.py +44 -0
  1624. dslighting-1.9.8/dslighting/registry/leaf-classification/prepare.py +60 -0
  1625. dslighting-1.9.8/dslighting/registry/leaf-classification/prepare_val.py +116 -0
  1626. dslighting-1.9.8/dslighting/registry/learning-agency-lab-automated-essay-scoring-2/checksums.yaml +7 -0
  1627. dslighting-1.9.8/dslighting/registry/learning-agency-lab-automated-essay-scoring-2/config.yaml +28 -0
  1628. dslighting-1.9.8/dslighting/registry/learning-agency-lab-automated-essay-scoring-2/description.md +153 -0
  1629. dslighting-1.9.8/dslighting/registry/learning-agency-lab-automated-essay-scoring-2/description_obfuscated.md +30 -0
  1630. dslighting-1.9.8/dslighting/registry/learning-agency-lab-automated-essay-scoring-2/grade.py +44 -0
  1631. dslighting-1.9.8/dslighting/registry/learning-agency-lab-automated-essay-scoring-2/prepare.py +51 -0
  1632. dslighting-1.9.8/dslighting/registry/learning-agency-lab-automated-essay-scoring-2/prepare_val.py +96 -0
  1633. dslighting-1.9.8/dslighting/registry/liverpool-ion-switching/__init__.py +0 -0
  1634. dslighting-1.9.8/dslighting/registry/liverpool-ion-switching/config.yaml +15 -0
  1635. dslighting-1.9.8/dslighting/registry/liverpool-ion-switching/description.md +44 -0
  1636. dslighting-1.9.8/dslighting/registry/liverpool-ion-switching/grade.py +52 -0
  1637. dslighting-1.9.8/dslighting/registry/liverpool-ion-switching/prepare.py +27 -0
  1638. dslighting-1.9.8/dslighting/registry/liverpool_ion_switching/__init__.py +0 -0
  1639. dslighting-1.9.8/dslighting/registry/liverpool_ion_switching/grade.py +52 -0
  1640. dslighting-1.9.8/dslighting/registry/liverpool_ion_switching/prepare.py +27 -0
  1641. dslighting-1.9.8/dslighting/registry/lmsys-chatbot-arena/checksums.yaml +7 -0
  1642. dslighting-1.9.8/dslighting/registry/lmsys-chatbot-arena/config.yaml +26 -0
  1643. dslighting-1.9.8/dslighting/registry/lmsys-chatbot-arena/description.md +98 -0
  1644. dslighting-1.9.8/dslighting/registry/lmsys-chatbot-arena/description_obfuscated.md +40 -0
  1645. dslighting-1.9.8/dslighting/registry/lmsys-chatbot-arena/grade.py +63 -0
  1646. dslighting-1.9.8/dslighting/registry/lmsys-chatbot-arena/prepare.py +52 -0
  1647. dslighting-1.9.8/dslighting/registry/lmsys-chatbot-arena/prepare_val.py +115 -0
  1648. dslighting-1.9.8/dslighting/registry/mcm-2025-c/config.yaml +8 -0
  1649. dslighting-1.9.8/dslighting/registry/mcm-2025-c/description.md +3 -0
  1650. dslighting-1.9.8/dslighting/registry/mcm-2025-c/eda_report.md +61 -0
  1651. dslighting-1.9.8/dslighting/registry/mcm-2025-c/report.md +32 -0
  1652. dslighting-1.9.8/dslighting/registry/mcm_2024_c/config.yaml +8 -0
  1653. dslighting-1.9.8/dslighting/registry/mcm_2024_c/description.md +1 -0
  1654. dslighting-1.9.8/dslighting/registry/mcm_2024_c/report.md +128 -0
  1655. dslighting-1.9.8/dslighting/registry/mcm_2024_c/rubric.md +0 -0
  1656. dslighting-1.9.8/dslighting/registry/mcm_2024_c_test/config.yaml +16 -0
  1657. dslighting-1.9.8/dslighting/registry/mcm_2024_c_test/description.md +3 -0
  1658. dslighting-1.9.8/dslighting/registry/mcm_2024_c_test/grade.py +107 -0
  1659. dslighting-1.9.8/dslighting/registry/mcm_2024_c_test/prepare.py +2 -0
  1660. dslighting-1.9.8/dslighting/registry/mcm_2024_c_test/report.md +76 -0
  1661. dslighting-1.9.8/dslighting/registry/mcm_2024_c_test/rubric.md +3 -0
  1662. dslighting-1.9.8/dslighting/registry/ml2021spring-hw2/checksums.yaml +5 -0
  1663. dslighting-1.9.8/dslighting/registry/ml2021spring-hw2/config.yaml +16 -0
  1664. dslighting-1.9.8/dslighting/registry/ml2021spring-hw2/description.md +35 -0
  1665. dslighting-1.9.8/dslighting/registry/ml2021spring-hw2/description_obfuscated.md +7 -0
  1666. dslighting-1.9.8/dslighting/registry/ml2021spring-hw2/grade.py +11 -0
  1667. dslighting-1.9.8/dslighting/registry/ml2021spring-hw2/prepare.py +58 -0
  1668. dslighting-1.9.8/dslighting/registry/ml2021spring-hw2/prepare_val.py +135 -0
  1669. dslighting-1.9.8/dslighting/registry/mlsp-2013-birds/checksums.yaml +5 -0
  1670. dslighting-1.9.8/dslighting/registry/mlsp-2013-birds/config.yaml +22 -0
  1671. dslighting-1.9.8/dslighting/registry/mlsp-2013-birds/description.md +269 -0
  1672. dslighting-1.9.8/dslighting/registry/mlsp-2013-birds/description_obfuscated.md +135 -0
  1673. dslighting-1.9.8/dslighting/registry/mlsp-2013-birds/grade.py +11 -0
  1674. dslighting-1.9.8/dslighting/registry/mlsp-2013-birds/prepare.py +182 -0
  1675. dslighting-1.9.8/dslighting/registry/mlsp-2013-birds/prepare_val.py +241 -0
  1676. dslighting-1.9.8/dslighting/registry/movie-review-sentiment-analysis-kernels-only/checksums.yaml +5 -0
  1677. dslighting-1.9.8/dslighting/registry/movie-review-sentiment-analysis-kernels-only/config.yaml +16 -0
  1678. dslighting-1.9.8/dslighting/registry/movie-review-sentiment-analysis-kernels-only/description.md +72 -0
  1679. dslighting-1.9.8/dslighting/registry/movie-review-sentiment-analysis-kernels-only/description_obfuscated.md +35 -0
  1680. dslighting-1.9.8/dslighting/registry/movie-review-sentiment-analysis-kernels-only/grade.py +11 -0
  1681. dslighting-1.9.8/dslighting/registry/movie-review-sentiment-analysis-kernels-only/prepare.py +58 -0
  1682. dslighting-1.9.8/dslighting/registry/movie-review-sentiment-analysis-kernels-only/prepare_val.py +120 -0
  1683. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/checksums.yaml +7 -0
  1684. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/config.yaml +28 -0
  1685. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/description.md +324 -0
  1686. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/description_obfuscated.md +133 -0
  1687. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/grade.py +58 -0
  1688. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/leaderboard_readme.md +35 -0
  1689. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/prepare.py +85 -0
  1690. dslighting-1.9.8/dslighting/registry/multi-modal-gesture-recognition/prepare_val.py +139 -0
  1691. dslighting-1.9.8/dslighting/registry/my-custom-task-01/config.yaml +15 -0
  1692. dslighting-1.9.8/dslighting/registry/my-custom-task-01/description.md +51 -0
  1693. dslighting-1.9.8/dslighting/registry/my-custom-task-01/prepare.py +2 -0
  1694. dslighting-1.9.8/dslighting/registry/my-custom-task-01/report.md +74 -0
  1695. dslighting-1.9.8/dslighting/registry/new-my-task-01/config.yaml +15 -0
  1696. dslighting-1.9.8/dslighting/registry/new-my-task-01/description.md +5 -0
  1697. dslighting-1.9.8/dslighting/registry/new-my-task-01/prepare.py +2 -0
  1698. dslighting-1.9.8/dslighting/registry/new-my-task-01/report.md +120 -0
  1699. dslighting-1.9.8/dslighting/registry/new-my-task-02/config.yaml +9 -0
  1700. dslighting-1.9.8/dslighting/registry/new-my-task-02/description.md +3 -0
  1701. dslighting-1.9.8/dslighting/registry/new-my-task-02/report.md +76 -0
  1702. dslighting-1.9.8/dslighting/registry/new-my-task-03/config.yaml +16 -0
  1703. dslighting-1.9.8/dslighting/registry/new-my-task-03/description.md +1 -0
  1704. dslighting-1.9.8/dslighting/registry/new-my-task-03/grade.py +107 -0
  1705. dslighting-1.9.8/dslighting/registry/new-my-task-03/prepare.py +2 -0
  1706. dslighting-1.9.8/dslighting/registry/new-my-task-03/report.md +1 -0
  1707. dslighting-1.9.8/dslighting/registry/new-my-task-03/rubric.md +10 -0
  1708. dslighting-1.9.8/dslighting/registry/new-york-city-taxi-fare-prediction/checksums.yaml +7 -0
  1709. dslighting-1.9.8/dslighting/registry/new-york-city-taxi-fare-prediction/config.yaml +17 -0
  1710. dslighting-1.9.8/dslighting/registry/new-york-city-taxi-fare-prediction/description.md +100 -0
  1711. dslighting-1.9.8/dslighting/registry/new-york-city-taxi-fare-prediction/description_obfuscated.md +46 -0
  1712. dslighting-1.9.8/dslighting/registry/new-york-city-taxi-fare-prediction/grade.py +28 -0
  1713. dslighting-1.9.8/dslighting/registry/new-york-city-taxi-fare-prediction/prepare.py +44 -0
  1714. dslighting-1.9.8/dslighting/registry/new-york-city-taxi-fare-prediction/prepare_val.py +89 -0
  1715. dslighting-1.9.8/dslighting/registry/nfl-player-contact-detection/checksums.yaml +12 -0
  1716. dslighting-1.9.8/dslighting/registry/nfl-player-contact-detection/config.yaml +26 -0
  1717. dslighting-1.9.8/dslighting/registry/nfl-player-contact-detection/description.md +165 -0
  1718. dslighting-1.9.8/dslighting/registry/nfl-player-contact-detection/description_obfuscated.md +87 -0
  1719. dslighting-1.9.8/dslighting/registry/nfl-player-contact-detection/grade.py +36 -0
  1720. dslighting-1.9.8/dslighting/registry/nfl-player-contact-detection/prepare.py +101 -0
  1721. dslighting-1.9.8/dslighting/registry/nfl-player-contact-detection/prepare_val.py +186 -0
  1722. dslighting-1.9.8/dslighting/registry/nomad2018-predict-transparent-conductors/checksums.yaml +7 -0
  1723. dslighting-1.9.8/dslighting/registry/nomad2018-predict-transparent-conductors/config.yaml +22 -0
  1724. dslighting-1.9.8/dslighting/registry/nomad2018-predict-transparent-conductors/description.md +89 -0
  1725. dslighting-1.9.8/dslighting/registry/nomad2018-predict-transparent-conductors/description_obfuscated.md +35 -0
  1726. dslighting-1.9.8/dslighting/registry/nomad2018-predict-transparent-conductors/grade.py +47 -0
  1727. dslighting-1.9.8/dslighting/registry/nomad2018-predict-transparent-conductors/prepare.py +77 -0
  1728. dslighting-1.9.8/dslighting/registry/nomad2018-predict-transparent-conductors/prepare_val.py +144 -0
  1729. dslighting-1.9.8/dslighting/registry/osic-pulmonary-fibrosis-progression/checksums.yaml +7 -0
  1730. dslighting-1.9.8/dslighting/registry/osic-pulmonary-fibrosis-progression/config.yaml +22 -0
  1731. dslighting-1.9.8/dslighting/registry/osic-pulmonary-fibrosis-progression/description.md +122 -0
  1732. dslighting-1.9.8/dslighting/registry/osic-pulmonary-fibrosis-progression/description_obfuscated.md +65 -0
  1733. dslighting-1.9.8/dslighting/registry/osic-pulmonary-fibrosis-progression/grade.py +74 -0
  1734. dslighting-1.9.8/dslighting/registry/osic-pulmonary-fibrosis-progression/prepare.py +95 -0
  1735. dslighting-1.9.8/dslighting/registry/osic-pulmonary-fibrosis-progression/prepare_val.py +167 -0
  1736. dslighting-1.9.8/dslighting/registry/paddy-disease-classification/checksums.yaml +6 -0
  1737. dslighting-1.9.8/dslighting/registry/paddy-disease-classification/config.yaml +16 -0
  1738. dslighting-1.9.8/dslighting/registry/paddy-disease-classification/description.md +72 -0
  1739. dslighting-1.9.8/dslighting/registry/paddy-disease-classification/description_obfuscated.md +31 -0
  1740. dslighting-1.9.8/dslighting/registry/paddy-disease-classification/grade.py +35 -0
  1741. dslighting-1.9.8/dslighting/registry/paddy-disease-classification/prepare.py +69 -0
  1742. dslighting-1.9.8/dslighting/registry/paddy-disease-classification/prepare_val.py +122 -0
  1743. dslighting-1.9.8/dslighting/registry/petfinder-pawpularity-score/checksums.yaml +7 -0
  1744. dslighting-1.9.8/dslighting/registry/petfinder-pawpularity-score/config.yaml +22 -0
  1745. dslighting-1.9.8/dslighting/registry/petfinder-pawpularity-score/description.md +132 -0
  1746. dslighting-1.9.8/dslighting/registry/petfinder-pawpularity-score/description_obfuscated.md +41 -0
  1747. dslighting-1.9.8/dslighting/registry/petfinder-pawpularity-score/grade.py +41 -0
  1748. dslighting-1.9.8/dslighting/registry/petfinder-pawpularity-score/prepare.py +76 -0
  1749. dslighting-1.9.8/dslighting/registry/petfinder-pawpularity-score/prepare_val.py +154 -0
  1750. dslighting-1.9.8/dslighting/registry/plant-pathology-2020-fgvc7/checksums.yaml +7 -0
  1751. dslighting-1.9.8/dslighting/registry/plant-pathology-2020-fgvc7/config.yaml +16 -0
  1752. dslighting-1.9.8/dslighting/registry/plant-pathology-2020-fgvc7/description.md +94 -0
  1753. dslighting-1.9.8/dslighting/registry/plant-pathology-2020-fgvc7/description_obfuscated.md +47 -0
  1754. dslighting-1.9.8/dslighting/registry/plant-pathology-2020-fgvc7/grade.py +41 -0
  1755. dslighting-1.9.8/dslighting/registry/plant-pathology-2020-fgvc7/prepare.py +74 -0
  1756. dslighting-1.9.8/dslighting/registry/plant-pathology-2020-fgvc7/prepare_val.py +160 -0
  1757. dslighting-1.9.8/dslighting/registry/plant-pathology-2021-fgvc8/checksums.yaml +6 -0
  1758. dslighting-1.9.8/dslighting/registry/plant-pathology-2021-fgvc8/config.yaml +16 -0
  1759. dslighting-1.9.8/dslighting/registry/plant-pathology-2021-fgvc8/description.md +101 -0
  1760. dslighting-1.9.8/dslighting/registry/plant-pathology-2021-fgvc8/description_obfuscated.md +36 -0
  1761. dslighting-1.9.8/dslighting/registry/plant-pathology-2021-fgvc8/grade.py +54 -0
  1762. dslighting-1.9.8/dslighting/registry/plant-pathology-2021-fgvc8/prepare.py +65 -0
  1763. dslighting-1.9.8/dslighting/registry/plant-pathology-2021-fgvc8/prepare_val.py +130 -0
  1764. dslighting-1.9.8/dslighting/registry/plant-seedlings-classification/checksums.yaml +5 -0
  1765. dslighting-1.9.8/dslighting/registry/plant-seedlings-classification/config.yaml +16 -0
  1766. dslighting-1.9.8/dslighting/registry/plant-seedlings-classification/description.md +84 -0
  1767. dslighting-1.9.8/dslighting/registry/plant-seedlings-classification/description_obfuscated.md +42 -0
  1768. dslighting-1.9.8/dslighting/registry/plant-seedlings-classification/grade.py +39 -0
  1769. dslighting-1.9.8/dslighting/registry/plant-seedlings-classification/prepare.py +91 -0
  1770. dslighting-1.9.8/dslighting/registry/plant-seedlings-classification/prepare_val.py +158 -0
  1771. dslighting-1.9.8/dslighting/registry/playground-series-s3e1/__init__.py +0 -0
  1772. dslighting-1.9.8/dslighting/registry/playground-series-s3e1/config.yaml +15 -0
  1773. dslighting-1.9.8/dslighting/registry/playground-series-s3e1/description.md +34 -0
  1774. dslighting-1.9.8/dslighting/registry/playground-series-s3e1/grade.py +52 -0
  1775. dslighting-1.9.8/dslighting/registry/playground-series-s3e1/prepare.py +25 -0
  1776. dslighting-1.9.8/dslighting/registry/playground-series-s3e11/__init__.py +0 -0
  1777. dslighting-1.9.8/dslighting/registry/playground-series-s3e11/config.yaml +15 -0
  1778. dslighting-1.9.8/dslighting/registry/playground-series-s3e11/description.md +34 -0
  1779. dslighting-1.9.8/dslighting/registry/playground-series-s3e11/grade.py +55 -0
  1780. dslighting-1.9.8/dslighting/registry/playground-series-s3e11/prepare.py +25 -0
  1781. dslighting-1.9.8/dslighting/registry/playground-series-s3e18/checksums.yaml +7 -0
  1782. dslighting-1.9.8/dslighting/registry/playground-series-s3e18/config.yaml +16 -0
  1783. dslighting-1.9.8/dslighting/registry/playground-series-s3e18/description.md +56 -0
  1784. dslighting-1.9.8/dslighting/registry/playground-series-s3e18/description_obfuscated.md +27 -0
  1785. dslighting-1.9.8/dslighting/registry/playground-series-s3e18/grade.py +39 -0
  1786. dslighting-1.9.8/dslighting/registry/playground-series-s3e18/prepare.py +36 -0
  1787. dslighting-1.9.8/dslighting/registry/playground-series-s3e18/prepare_val.py +89 -0
  1788. dslighting-1.9.8/dslighting/registry/playground_series_s3e1/__init__.py +0 -0
  1789. dslighting-1.9.8/dslighting/registry/playground_series_s3e1/grade.py +52 -0
  1790. dslighting-1.9.8/dslighting/registry/playground_series_s3e1/prepare.py +25 -0
  1791. dslighting-1.9.8/dslighting/registry/playground_series_s3e11/__init__.py +0 -0
  1792. dslighting-1.9.8/dslighting/registry/playground_series_s3e11/grade.py +55 -0
  1793. dslighting-1.9.8/dslighting/registry/playground_series_s3e11/prepare.py +25 -0
  1794. dslighting-1.9.8/dslighting/registry/predict-volcanic-eruptions-ingv-oe/checksums.yaml +6 -0
  1795. dslighting-1.9.8/dslighting/registry/predict-volcanic-eruptions-ingv-oe/config.yaml +16 -0
  1796. dslighting-1.9.8/dslighting/registry/predict-volcanic-eruptions-ingv-oe/description.md +70 -0
  1797. dslighting-1.9.8/dslighting/registry/predict-volcanic-eruptions-ingv-oe/description_obfuscated.md +33 -0
  1798. dslighting-1.9.8/dslighting/registry/predict-volcanic-eruptions-ingv-oe/grade.py +44 -0
  1799. dslighting-1.9.8/dslighting/registry/predict-volcanic-eruptions-ingv-oe/prepare.py +68 -0
  1800. dslighting-1.9.8/dslighting/registry/predict-volcanic-eruptions-ingv-oe/prepare_val.py +146 -0
  1801. dslighting-1.9.8/dslighting/registry/random-acts-of-pizza/checksums.yaml +7 -0
  1802. dslighting-1.9.8/dslighting/registry/random-acts-of-pizza/config.yaml +16 -0
  1803. dslighting-1.9.8/dslighting/registry/random-acts-of-pizza/description.md +117 -0
  1804. dslighting-1.9.8/dslighting/registry/random-acts-of-pizza/description_obfuscated.md +90 -0
  1805. dslighting-1.9.8/dslighting/registry/random-acts-of-pizza/grade.py +14 -0
  1806. dslighting-1.9.8/dslighting/registry/random-acts-of-pizza/prepare.py +80 -0
  1807. dslighting-1.9.8/dslighting/registry/random-acts-of-pizza/prepare_val.py +144 -0
  1808. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/checksums.yaml +7 -0
  1809. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/classes.py +11 -0
  1810. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/config.yaml +31 -0
  1811. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/description.md +172 -0
  1812. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/description_obfuscated.md +53 -0
  1813. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/grade.py +31 -0
  1814. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/prepare.py +53 -0
  1815. dslighting-1.9.8/dslighting/registry/ranzcr-clip-catheter-line-classification/prepare_val.py +113 -0
  1816. dslighting-1.9.8/dslighting/registry/rsna-2022-cervical-spine-fracture-detection/checksums.yaml +8 -0
  1817. dslighting-1.9.8/dslighting/registry/rsna-2022-cervical-spine-fracture-detection/config.yaml +32 -0
  1818. dslighting-1.9.8/dslighting/registry/rsna-2022-cervical-spine-fracture-detection/description.md +276 -0
  1819. dslighting-1.9.8/dslighting/registry/rsna-2022-cervical-spine-fracture-detection/description_obfuscated.md +66 -0
  1820. dslighting-1.9.8/dslighting/registry/rsna-2022-cervical-spine-fracture-detection/grade.py +124 -0
  1821. dslighting-1.9.8/dslighting/registry/rsna-2022-cervical-spine-fracture-detection/prepare.py +219 -0
  1822. dslighting-1.9.8/dslighting/registry/rsna-2022-cervical-spine-fracture-detection/prepare_val.py +257 -0
  1823. dslighting-1.9.8/dslighting/registry/rsna-breast-cancer-detection/checksums.yaml +7 -0
  1824. dslighting-1.9.8/dslighting/registry/rsna-breast-cancer-detection/config.yaml +32 -0
  1825. dslighting-1.9.8/dslighting/registry/rsna-breast-cancer-detection/description.md +190 -0
  1826. dslighting-1.9.8/dslighting/registry/rsna-breast-cancer-detection/description_obfuscated.md +58 -0
  1827. dslighting-1.9.8/dslighting/registry/rsna-breast-cancer-detection/grade.py +65 -0
  1828. dslighting-1.9.8/dslighting/registry/rsna-breast-cancer-detection/prepare.py +141 -0
  1829. dslighting-1.9.8/dslighting/registry/rsna-breast-cancer-detection/prepare_val.py +201 -0
  1830. dslighting-1.9.8/dslighting/registry/rsna-miccai-brain-tumor-radiogenomic-classification/checksums.yaml +6 -0
  1831. dslighting-1.9.8/dslighting/registry/rsna-miccai-brain-tumor-radiogenomic-classification/config.yaml +32 -0
  1832. dslighting-1.9.8/dslighting/registry/rsna-miccai-brain-tumor-radiogenomic-classification/description.md +202 -0
  1833. dslighting-1.9.8/dslighting/registry/rsna-miccai-brain-tumor-radiogenomic-classification/description_obfuscated.md +26 -0
  1834. dslighting-1.9.8/dslighting/registry/rsna-miccai-brain-tumor-radiogenomic-classification/grade.py +13 -0
  1835. dslighting-1.9.8/dslighting/registry/rsna-miccai-brain-tumor-radiogenomic-classification/prepare.py +47 -0
  1836. dslighting-1.9.8/dslighting/registry/rsna-miccai-brain-tumor-radiogenomic-classification/prepare_val.py +97 -0
  1837. dslighting-1.9.8/dslighting/registry/santander-customer-satisfaction/checksums.yaml +8 -0
  1838. dslighting-1.9.8/dslighting/registry/santander-customer-satisfaction/config.yaml +17 -0
  1839. dslighting-1.9.8/dslighting/registry/santander-customer-satisfaction/description.md +36 -0
  1840. dslighting-1.9.8/dslighting/registry/santander-customer-satisfaction/grade.py +10 -0
  1841. dslighting-1.9.8/dslighting/registry/santander-customer-satisfaction/prepare.py +41 -0
  1842. dslighting-1.9.8/dslighting/registry/sciencebench-001-clintox-nn/__init__.py +0 -0
  1843. dslighting-1.9.8/dslighting/registry/sciencebench-001-clintox-nn/checksums.yaml +3 -0
  1844. dslighting-1.9.8/dslighting/registry/sciencebench-001-clintox-nn/config.yaml +16 -0
  1845. dslighting-1.9.8/dslighting/registry/sciencebench-001-clintox-nn/description.md +30 -0
  1846. dslighting-1.9.8/dslighting/registry/sciencebench-001-clintox-nn/grade.py +56 -0
  1847. dslighting-1.9.8/dslighting/registry/sciencebench-001-clintox-nn/prepare.py +75 -0
  1848. dslighting-1.9.8/dslighting/registry/sciencebench-015-aai/checksums.yaml +5 -0
  1849. dslighting-1.9.8/dslighting/registry/sciencebench-015-aai/config.yaml +16 -0
  1850. dslighting-1.9.8/dslighting/registry/sciencebench-015-aai/description.md +31 -0
  1851. dslighting-1.9.8/dslighting/registry/sciencebench-015-aai/grade.py +37 -0
  1852. dslighting-1.9.8/dslighting/registry/sciencebench-015-aai/prepare.py +102 -0
  1853. dslighting-1.9.8/dslighting/registry/sciencebench-051-brain-blood-qsar/config.yaml +16 -0
  1854. dslighting-1.9.8/dslighting/registry/sciencebench-051-brain-blood-qsar/description.md +31 -0
  1855. dslighting-1.9.8/dslighting/registry/sciencebench-051-brain-blood-qsar/grade.py +58 -0
  1856. dslighting-1.9.8/dslighting/registry/sciencebench-051-brain-blood-qsar/prepare.py +69 -0
  1857. dslighting-1.9.8/dslighting/registry/sciencebench-101-experimental-band-gap-prediction/checksums.yaml +5 -0
  1858. dslighting-1.9.8/dslighting/registry/sciencebench-101-experimental-band-gap-prediction/config.yaml +16 -0
  1859. dslighting-1.9.8/dslighting/registry/sciencebench-101-experimental-band-gap-prediction/description.md +26 -0
  1860. dslighting-1.9.8/dslighting/registry/sciencebench-101-experimental-band-gap-prediction/grade.py +55 -0
  1861. dslighting-1.9.8/dslighting/registry/sciencebench-101-experimental-band-gap-prediction/prepare.py +88 -0
  1862. dslighting-1.9.8/dslighting/registry/see-click-predict-fix/__init__.py +0 -0
  1863. dslighting-1.9.8/dslighting/registry/see-click-predict-fix/config.yaml +15 -0
  1864. dslighting-1.9.8/dslighting/registry/see-click-predict-fix/description.md +47 -0
  1865. dslighting-1.9.8/dslighting/registry/see-click-predict-fix/grade.py +66 -0
  1866. dslighting-1.9.8/dslighting/registry/see-click-predict-fix/prepare.py +25 -0
  1867. dslighting-1.9.8/dslighting/registry/see_click_predict_fix/__init__.py +0 -0
  1868. dslighting-1.9.8/dslighting/registry/see_click_predict_fix/grade.py +66 -0
  1869. dslighting-1.9.8/dslighting/registry/see_click_predict_fix/prepare.py +25 -0
  1870. dslighting-1.9.8/dslighting/registry/seti-breakthrough-listen/checksums.yaml +6 -0
  1871. dslighting-1.9.8/dslighting/registry/seti-breakthrough-listen/config.yaml +24 -0
  1872. dslighting-1.9.8/dslighting/registry/seti-breakthrough-listen/description.md +112 -0
  1873. dslighting-1.9.8/dslighting/registry/seti-breakthrough-listen/description_obfuscated.md +58 -0
  1874. dslighting-1.9.8/dslighting/registry/seti-breakthrough-listen/grade.py +11 -0
  1875. dslighting-1.9.8/dslighting/registry/seti-breakthrough-listen/prepare.py +71 -0
  1876. dslighting-1.9.8/dslighting/registry/seti-breakthrough-listen/prepare_val.py +159 -0
  1877. dslighting-1.9.8/dslighting/registry/siim-covid19-detection/checksums.yaml +7 -0
  1878. dslighting-1.9.8/dslighting/registry/siim-covid19-detection/config.yaml +36 -0
  1879. dslighting-1.9.8/dslighting/registry/siim-covid19-detection/description.md +345 -0
  1880. dslighting-1.9.8/dslighting/registry/siim-covid19-detection/description_obfuscated.md +73 -0
  1881. dslighting-1.9.8/dslighting/registry/siim-covid19-detection/grade.py +194 -0
  1882. dslighting-1.9.8/dslighting/registry/siim-covid19-detection/prepare.py +123 -0
  1883. dslighting-1.9.8/dslighting/registry/siim-covid19-detection/prepare_val.py +164 -0
  1884. dslighting-1.9.8/dslighting/registry/siim-isic-melanoma-classification/checksums.yaml +7 -0
  1885. dslighting-1.9.8/dslighting/registry/siim-isic-melanoma-classification/config.yaml +26 -0
  1886. dslighting-1.9.8/dslighting/registry/siim-isic-melanoma-classification/description.md +176 -0
  1887. dslighting-1.9.8/dslighting/registry/siim-isic-melanoma-classification/description_obfuscated.md +46 -0
  1888. dslighting-1.9.8/dslighting/registry/siim-isic-melanoma-classification/grade.py +11 -0
  1889. dslighting-1.9.8/dslighting/registry/siim-isic-melanoma-classification/prepare.py +127 -0
  1890. dslighting-1.9.8/dslighting/registry/siim-isic-melanoma-classification/prepare_val.py +158 -0
  1891. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/checksums.yaml +5 -0
  1892. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/config.yaml +22 -0
  1893. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/description.md +321 -0
  1894. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/description_obfuscated.md +259 -0
  1895. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/grade.py +55 -0
  1896. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/notebook.py +86 -0
  1897. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/prepare.py +143 -0
  1898. dslighting-1.9.8/dslighting/registry/smartphone-decimeter-2022/prepare_val.py +199 -0
  1899. dslighting-1.9.8/dslighting/registry/spaceship-titanic/checksums.yaml +7 -0
  1900. dslighting-1.9.8/dslighting/registry/spaceship-titanic/config.yaml +16 -0
  1901. dslighting-1.9.8/dslighting/registry/spaceship-titanic/description.md +93 -0
  1902. dslighting-1.9.8/dslighting/registry/spaceship-titanic/description_obfuscated.md +38 -0
  1903. dslighting-1.9.8/dslighting/registry/spaceship-titanic/grade.py +11 -0
  1904. dslighting-1.9.8/dslighting/registry/spaceship-titanic/prepare.py +23 -0
  1905. dslighting-1.9.8/dslighting/registry/spaceship-titanic/prepare_val.py +61 -0
  1906. dslighting-1.9.8/dslighting/registry/spooky-author-identification/checksums.yaml +7 -0
  1907. dslighting-1.9.8/dslighting/registry/spooky-author-identification/classes.py +1 -0
  1908. dslighting-1.9.8/dslighting/registry/spooky-author-identification/config.yaml +16 -0
  1909. dslighting-1.9.8/dslighting/registry/spooky-author-identification/description.md +98 -0
  1910. dslighting-1.9.8/dslighting/registry/spooky-author-identification/description_obfuscated.md +35 -0
  1911. dslighting-1.9.8/dslighting/registry/spooky-author-identification/grade.py +38 -0
  1912. dslighting-1.9.8/dslighting/registry/spooky-author-identification/prepare.py +40 -0
  1913. dslighting-1.9.8/dslighting/registry/spooky-author-identification/prepare_val.py +78 -0
  1914. dslighting-1.9.8/dslighting/registry/stanford-covid-vaccine/checksums.yaml +7 -0
  1915. dslighting-1.9.8/dslighting/registry/stanford-covid-vaccine/config.yaml +22 -0
  1916. dslighting-1.9.8/dslighting/registry/stanford-covid-vaccine/description.md +125 -0
  1917. dslighting-1.9.8/dslighting/registry/stanford-covid-vaccine/description_obfuscated.md +63 -0
  1918. dslighting-1.9.8/dslighting/registry/stanford-covid-vaccine/grade.py +65 -0
  1919. dslighting-1.9.8/dslighting/registry/stanford-covid-vaccine/prepare.py +129 -0
  1920. dslighting-1.9.8/dslighting/registry/stanford-covid-vaccine/prepare_val.py +199 -0
  1921. dslighting-1.9.8/dslighting/registry/statoil-iceberg-classifier-challenge/checksums.yaml +5 -0
  1922. dslighting-1.9.8/dslighting/registry/statoil-iceberg-classifier-challenge/config.yaml +22 -0
  1923. dslighting-1.9.8/dslighting/registry/statoil-iceberg-classifier-challenge/description.md +99 -0
  1924. dslighting-1.9.8/dslighting/registry/statoil-iceberg-classifier-challenge/description_obfuscated.md +36 -0
  1925. dslighting-1.9.8/dslighting/registry/statoil-iceberg-classifier-challenge/grade.py +41 -0
  1926. dslighting-1.9.8/dslighting/registry/statoil-iceberg-classifier-challenge/prepare.py +105 -0
  1927. dslighting-1.9.8/dslighting/registry/statoil-iceberg-classifier-challenge/prepare_val.py +157 -0
  1928. dslighting-1.9.8/dslighting/registry/tabular-playground-series-dec-2021/checksums.yaml +7 -0
  1929. dslighting-1.9.8/dslighting/registry/tabular-playground-series-dec-2021/config.yaml +16 -0
  1930. dslighting-1.9.8/dslighting/registry/tabular-playground-series-dec-2021/description.md +59 -0
  1931. dslighting-1.9.8/dslighting/registry/tabular-playground-series-dec-2021/description_obfuscated.md +22 -0
  1932. dslighting-1.9.8/dslighting/registry/tabular-playground-series-dec-2021/grade.py +11 -0
  1933. dslighting-1.9.8/dslighting/registry/tabular-playground-series-dec-2021/prepare.py +39 -0
  1934. dslighting-1.9.8/dslighting/registry/tabular-playground-series-dec-2021/prepare_val.py +99 -0
  1935. dslighting-1.9.8/dslighting/registry/tabular-playground-series-may-2022/checksums.yaml +8 -0
  1936. dslighting-1.9.8/dslighting/registry/tabular-playground-series-may-2022/config.yaml +17 -0
  1937. dslighting-1.9.8/dslighting/registry/tabular-playground-series-may-2022/description.md +79 -0
  1938. dslighting-1.9.8/dslighting/registry/tabular-playground-series-may-2022/description_obfuscated.md +25 -0
  1939. dslighting-1.9.8/dslighting/registry/tabular-playground-series-may-2022/grade.py +9 -0
  1940. dslighting-1.9.8/dslighting/registry/tabular-playground-series-may-2022/prepare.py +56 -0
  1941. dslighting-1.9.8/dslighting/registry/tabular-playground-series-may-2022/prepare_val.py +116 -0
  1942. dslighting-1.9.8/dslighting/registry/tensorflow-speech-recognition-challenge/checksums.yaml +5 -0
  1943. dslighting-1.9.8/dslighting/registry/tensorflow-speech-recognition-challenge/config.yaml +24 -0
  1944. dslighting-1.9.8/dslighting/registry/tensorflow-speech-recognition-challenge/description.md +328 -0
  1945. dslighting-1.9.8/dslighting/registry/tensorflow-speech-recognition-challenge/description_obfuscated.md +36 -0
  1946. dslighting-1.9.8/dslighting/registry/tensorflow-speech-recognition-challenge/grade.py +11 -0
  1947. dslighting-1.9.8/dslighting/registry/tensorflow-speech-recognition-challenge/prepare.py +90 -0
  1948. dslighting-1.9.8/dslighting/registry/tensorflow-speech-recognition-challenge/prepare_val.py +148 -0
  1949. dslighting-1.9.8/dslighting/registry/tensorflow2-question-answering/checksums.yaml +8 -0
  1950. dslighting-1.9.8/dslighting/registry/tensorflow2-question-answering/config.yaml +29 -0
  1951. dslighting-1.9.8/dslighting/registry/tensorflow2-question-answering/description.md +173 -0
  1952. dslighting-1.9.8/dslighting/registry/tensorflow2-question-answering/description_obfuscated.md +43 -0
  1953. dslighting-1.9.8/dslighting/registry/tensorflow2-question-answering/grade.py +122 -0
  1954. dslighting-1.9.8/dslighting/registry/tensorflow2-question-answering/prepare.py +122 -0
  1955. dslighting-1.9.8/dslighting/registry/tensorflow2-question-answering/prepare_val.py +187 -0
  1956. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-english-language/checksums.yaml +5 -0
  1957. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-english-language/config.yaml +22 -0
  1958. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-english-language/description.md +77 -0
  1959. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-english-language/description_obfuscated.md +27 -0
  1960. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-english-language/grade.py +49 -0
  1961. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-english-language/prepare.py +115 -0
  1962. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-english-language/prepare_val.py +213 -0
  1963. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-russian-language/checksums.yaml +5 -0
  1964. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-russian-language/config.yaml +22 -0
  1965. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-russian-language/description.md +79 -0
  1966. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-russian-language/description_obfuscated.md +29 -0
  1967. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-russian-language/grade.py +49 -0
  1968. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-russian-language/prepare.py +113 -0
  1969. dslighting-1.9.8/dslighting/registry/text-normalization-challenge-russian-language/prepare_val.py +165 -0
  1970. dslighting-1.9.8/dslighting/registry/tgs-salt-identification-challenge/checksums.yaml +7 -0
  1971. dslighting-1.9.8/dslighting/registry/tgs-salt-identification-challenge/config.yaml +24 -0
  1972. dslighting-1.9.8/dslighting/registry/tgs-salt-identification-challenge/description.md +83 -0
  1973. dslighting-1.9.8/dslighting/registry/tgs-salt-identification-challenge/description_obfuscated.md +42 -0
  1974. dslighting-1.9.8/dslighting/registry/tgs-salt-identification-challenge/grade.py +144 -0
  1975. dslighting-1.9.8/dslighting/registry/tgs-salt-identification-challenge/prepare.py +158 -0
  1976. dslighting-1.9.8/dslighting/registry/tgs-salt-identification-challenge/prepare_val.py +166 -0
  1977. dslighting-1.9.8/dslighting/registry/the-icml-2013-whale-challenge-right-whale-redux/checksums.yaml +5 -0
  1978. dslighting-1.9.8/dslighting/registry/the-icml-2013-whale-challenge-right-whale-redux/config.yaml +20 -0
  1979. dslighting-1.9.8/dslighting/registry/the-icml-2013-whale-challenge-right-whale-redux/description.md +72 -0
  1980. dslighting-1.9.8/dslighting/registry/the-icml-2013-whale-challenge-right-whale-redux/description_obfuscated.md +25 -0
  1981. dslighting-1.9.8/dslighting/registry/the-icml-2013-whale-challenge-right-whale-redux/grade.py +11 -0
  1982. dslighting-1.9.8/dslighting/registry/the-icml-2013-whale-challenge-right-whale-redux/prepare.py +95 -0
  1983. dslighting-1.9.8/dslighting/registry/the-icml-2013-whale-challenge-right-whale-redux/prepare_val.py +141 -0
  1984. dslighting-1.9.8/dslighting/registry/tmdb-box-office-prediction/__init__.py +0 -0
  1985. dslighting-1.9.8/dslighting/registry/tmdb-box-office-prediction/config.yaml +15 -0
  1986. dslighting-1.9.8/dslighting/registry/tmdb-box-office-prediction/description.md +47 -0
  1987. dslighting-1.9.8/dslighting/registry/tmdb-box-office-prediction/grade.py +55 -0
  1988. dslighting-1.9.8/dslighting/registry/tmdb-box-office-prediction/prepare.py +35 -0
  1989. dslighting-1.9.8/dslighting/registry/tweet-sentiment-extraction/checksums.yaml +7 -0
  1990. dslighting-1.9.8/dslighting/registry/tweet-sentiment-extraction/config.yaml +22 -0
  1991. dslighting-1.9.8/dslighting/registry/tweet-sentiment-extraction/description.md +130 -0
  1992. dslighting-1.9.8/dslighting/registry/tweet-sentiment-extraction/description_obfuscated.md +30 -0
  1993. dslighting-1.9.8/dslighting/registry/tweet-sentiment-extraction/grade.py +67 -0
  1994. dslighting-1.9.8/dslighting/registry/tweet-sentiment-extraction/prepare.py +36 -0
  1995. dslighting-1.9.8/dslighting/registry/tweet-sentiment-extraction/prepare_val.py +106 -0
  1996. dslighting-1.9.8/dslighting/registry/us-patent-phrase-to-phrase-matching/checksums.yaml +7 -0
  1997. dslighting-1.9.8/dslighting/registry/us-patent-phrase-to-phrase-matching/config.yaml +22 -0
  1998. dslighting-1.9.8/dslighting/registry/us-patent-phrase-to-phrase-matching/description.md +118 -0
  1999. dslighting-1.9.8/dslighting/registry/us-patent-phrase-to-phrase-matching/description_obfuscated.md +46 -0
  2000. dslighting-1.9.8/dslighting/registry/us-patent-phrase-to-phrase-matching/grade.py +31 -0
  2001. dslighting-1.9.8/dslighting/registry/us-patent-phrase-to-phrase-matching/prepare.py +33 -0
  2002. dslighting-1.9.8/dslighting/registry/us-patent-phrase-to-phrase-matching/prepare_val.py +71 -0
  2003. dslighting-1.9.8/dslighting/registry/utils.py +266 -0
  2004. dslighting-1.9.8/dslighting/registry/uw-madison-gi-tract-image-segmentation/checksums.yaml +7 -0
  2005. dslighting-1.9.8/dslighting/registry/uw-madison-gi-tract-image-segmentation/config.yaml +22 -0
  2006. dslighting-1.9.8/dslighting/registry/uw-madison-gi-tract-image-segmentation/description.md +126 -0
  2007. dslighting-1.9.8/dslighting/registry/uw-madison-gi-tract-image-segmentation/description_obfuscated.md +58 -0
  2008. dslighting-1.9.8/dslighting/registry/uw-madison-gi-tract-image-segmentation/grade.py +158 -0
  2009. dslighting-1.9.8/dslighting/registry/uw-madison-gi-tract-image-segmentation/prepare.py +139 -0
  2010. dslighting-1.9.8/dslighting/registry/uw-madison-gi-tract-image-segmentation/prepare_val.py +193 -0
  2011. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/__init__.py +0 -0
  2012. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/checksums.yaml +7 -0
  2013. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/config.yaml +15 -0
  2014. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/description.md +48 -0
  2015. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/description_obfuscated.md +46 -0
  2016. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/grade.py +52 -0
  2017. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/prepare.py +27 -0
  2018. dslighting-1.9.8/dslighting/registry/ventilator-pressure-prediction/prepare_val.py +142 -0
  2019. dslighting-1.9.8/dslighting/registry/ventilator_pressure_prediction/__init__.py +0 -0
  2020. dslighting-1.9.8/dslighting/registry/ventilator_pressure_prediction/grade.py +52 -0
  2021. dslighting-1.9.8/dslighting/registry/ventilator_pressure_prediction/prepare.py +27 -0
  2022. dslighting-1.9.8/dslighting/registry/vesuvius-challenge-ink-detection/checksums.yaml +6 -0
  2023. dslighting-1.9.8/dslighting/registry/vesuvius-challenge-ink-detection/config.yaml +37 -0
  2024. dslighting-1.9.8/dslighting/registry/vesuvius-challenge-ink-detection/description.md +135 -0
  2025. dslighting-1.9.8/dslighting/registry/vesuvius-challenge-ink-detection/description_obfuscated.md +39 -0
  2026. dslighting-1.9.8/dslighting/registry/vesuvius-challenge-ink-detection/grade.py +97 -0
  2027. dslighting-1.9.8/dslighting/registry/vesuvius-challenge-ink-detection/prepare.py +122 -0
  2028. dslighting-1.9.8/dslighting/registry/vesuvius-challenge-ink-detection/prepare_val.py +170 -0
  2029. dslighting-1.9.8/dslighting/registry/vinbigdata-chest-xray-abnormalities-detection/checksums.yaml +7 -0
  2030. dslighting-1.9.8/dslighting/registry/vinbigdata-chest-xray-abnormalities-detection/config.yaml +25 -0
  2031. dslighting-1.9.8/dslighting/registry/vinbigdata-chest-xray-abnormalities-detection/description.md +132 -0
  2032. dslighting-1.9.8/dslighting/registry/vinbigdata-chest-xray-abnormalities-detection/description_obfuscated.md +63 -0
  2033. dslighting-1.9.8/dslighting/registry/vinbigdata-chest-xray-abnormalities-detection/grade.py +220 -0
  2034. dslighting-1.9.8/dslighting/registry/vinbigdata-chest-xray-abnormalities-detection/prepare.py +129 -0
  2035. dslighting-1.9.8/dslighting/registry/vinbigdata-chest-xray-abnormalities-detection/prepare_val.py +204 -0
  2036. dslighting-1.9.8/dslighting/registry/whale-categorization-playground/checksums.yaml +6 -0
  2037. dslighting-1.9.8/dslighting/registry/whale-categorization-playground/config.yaml +16 -0
  2038. dslighting-1.9.8/dslighting/registry/whale-categorization-playground/description.md +51 -0
  2039. dslighting-1.9.8/dslighting/registry/whale-categorization-playground/description_obfuscated.md +27 -0
  2040. dslighting-1.9.8/dslighting/registry/whale-categorization-playground/grade.py +41 -0
  2041. dslighting-1.9.8/dslighting/registry/whale-categorization-playground/prepare.py +103 -0
  2042. dslighting-1.9.8/dslighting/registry/whale-categorization-playground/prepare_val.py +196 -0
  2043. dslighting-1.9.8/dslighting/utils/package_detector.py +335 -0
  2044. dslighting-1.9.8/dslighting.egg-info/PKG-INFO +397 -0
  2045. dslighting-1.9.8/dslighting.egg-info/SOURCES.txt +2459 -0
  2046. dslighting-1.9.8/dslighting.egg-info/entry_points.txt +3 -0
  2047. dslighting-1.9.8/dslighting.egg-info/requires.txt +54 -0
  2048. dslighting-1.9.8/dslighting.egg-info/top_level.txt +4 -0
  2049. dslighting-1.9.8/dslighting_cli.py +687 -0
  2050. dslighting-1.9.8/mlebench/README.md +39 -0
  2051. dslighting-1.9.8/mlebench/__init__.py +0 -0
  2052. dslighting-1.9.8/mlebench/cli.py +221 -0
  2053. dslighting-1.9.8/mlebench/competitions/3d-object-detection-for-autonomous-vehicles/grade.py +161 -0
  2054. dslighting-1.9.8/mlebench/competitions/3d-object-detection-for-autonomous-vehicles/mAP_evaluation.py +425 -0
  2055. dslighting-1.9.8/mlebench/competitions/3d-object-detection-for-autonomous-vehicles/prepare.py +483 -0
  2056. dslighting-1.9.8/mlebench/competitions/3d-object-detection-for-autonomous-vehicles/prepare_val.py +719 -0
  2057. dslighting-1.9.8/mlebench/competitions/AI4Code/grade.py +70 -0
  2058. dslighting-1.9.8/mlebench/competitions/AI4Code/prepare.py +84 -0
  2059. dslighting-1.9.8/mlebench/competitions/AI4Code/prepare_val.py +159 -0
  2060. dslighting-1.9.8/mlebench/competitions/__init__.py +0 -0
  2061. dslighting-1.9.8/mlebench/competitions/aerial-cactus-identification/grade.py +11 -0
  2062. dslighting-1.9.8/mlebench/competitions/aerial-cactus-identification/prepare.py +71 -0
  2063. dslighting-1.9.8/mlebench/competitions/aerial-cactus-identification/prepare_val.py +133 -0
  2064. dslighting-1.9.8/mlebench/competitions/alaska2-image-steganalysis/grade.py +136 -0
  2065. dslighting-1.9.8/mlebench/competitions/alaska2-image-steganalysis/prepare.py +88 -0
  2066. dslighting-1.9.8/mlebench/competitions/alaska2-image-steganalysis/prepare_val.py +148 -0
  2067. dslighting-1.9.8/mlebench/competitions/aptos2019-blindness-detection/grade.py +35 -0
  2068. dslighting-1.9.8/mlebench/competitions/aptos2019-blindness-detection/prepare.py +75 -0
  2069. dslighting-1.9.8/mlebench/competitions/aptos2019-blindness-detection/prepare_val.py +123 -0
  2070. dslighting-1.9.8/mlebench/competitions/bike-sharing-demand/__init__.py +0 -0
  2071. dslighting-1.9.8/mlebench/competitions/bike-sharing-demand/grade.py +55 -0
  2072. dslighting-1.9.8/mlebench/competitions/bike-sharing-demand/prepare.py +37 -0
  2073. dslighting-1.9.8/mlebench/competitions/billion-word-imputation/grade.py +37 -0
  2074. dslighting-1.9.8/mlebench/competitions/billion-word-imputation/prepare.py +107 -0
  2075. dslighting-1.9.8/mlebench/competitions/billion-word-imputation/prepare_val.py +179 -0
  2076. dslighting-1.9.8/mlebench/competitions/bms-molecular-translation/grade.py +40 -0
  2077. dslighting-1.9.8/mlebench/competitions/bms-molecular-translation/prepare.py +68 -0
  2078. dslighting-1.9.8/mlebench/competitions/bms-molecular-translation/prepare_val.py +131 -0
  2079. dslighting-1.9.8/mlebench/competitions/cassava-leaf-disease-classification/grade.py +12 -0
  2080. dslighting-1.9.8/mlebench/competitions/cassava-leaf-disease-classification/prepare.py +113 -0
  2081. dslighting-1.9.8/mlebench/competitions/cassava-leaf-disease-classification/prepare_val.py +186 -0
  2082. dslighting-1.9.8/mlebench/competitions/cdiscount-image-classification-challenge/grade.py +11 -0
  2083. dslighting-1.9.8/mlebench/competitions/cdiscount-image-classification-challenge/prepare.py +144 -0
  2084. dslighting-1.9.8/mlebench/competitions/cdiscount-image-classification-challenge/prepare_val.py +205 -0
  2085. dslighting-1.9.8/mlebench/competitions/chaii-hindi-and-tamil-question-answering/grade.py +67 -0
  2086. dslighting-1.9.8/mlebench/competitions/chaii-hindi-and-tamil-question-answering/prepare.py +31 -0
  2087. dslighting-1.9.8/mlebench/competitions/chaii-hindi-and-tamil-question-answering/prepare_val.py +94 -0
  2088. dslighting-1.9.8/mlebench/competitions/champs-scalar-coupling/grade.py +60 -0
  2089. dslighting-1.9.8/mlebench/competitions/champs-scalar-coupling/prepare.py +116 -0
  2090. dslighting-1.9.8/mlebench/competitions/champs-scalar-coupling/prepare_val.py +155 -0
  2091. dslighting-1.9.8/mlebench/competitions/conways-reverse-game-of-life-2020/__init__.py +0 -0
  2092. dslighting-1.9.8/mlebench/competitions/conways-reverse-game-of-life-2020/grade.py +40 -0
  2093. dslighting-1.9.8/mlebench/competitions/conways-reverse-game-of-life-2020/prepare.py +41 -0
  2094. dslighting-1.9.8/mlebench/competitions/demand-forecasting-kernels-only/__init__.py +0 -0
  2095. dslighting-1.9.8/mlebench/competitions/demand-forecasting-kernels-only/grade.py +66 -0
  2096. dslighting-1.9.8/mlebench/competitions/demand-forecasting-kernels-only/prepare.py +27 -0
  2097. dslighting-1.9.8/mlebench/competitions/demand_forecasting_kernels_only/__init__.py +0 -0
  2098. dslighting-1.9.8/mlebench/competitions/demand_forecasting_kernels_only/grade.py +66 -0
  2099. dslighting-1.9.8/mlebench/competitions/demand_forecasting_kernels_only/prepare.py +27 -0
  2100. dslighting-1.9.8/mlebench/competitions/denoising-dirty-documents/grade.py +44 -0
  2101. dslighting-1.9.8/mlebench/competitions/denoising-dirty-documents/prepare.py +134 -0
  2102. dslighting-1.9.8/mlebench/competitions/denoising-dirty-documents/prepare_val.py +178 -0
  2103. dslighting-1.9.8/mlebench/competitions/detecting-insults-in-social-commentary/grade.py +11 -0
  2104. dslighting-1.9.8/mlebench/competitions/detecting-insults-in-social-commentary/prepare.py +72 -0
  2105. dslighting-1.9.8/mlebench/competitions/detecting-insults-in-social-commentary/prepare_val.py +128 -0
  2106. dslighting-1.9.8/mlebench/competitions/dog-breed-identification/dogs.py +124 -0
  2107. dslighting-1.9.8/mlebench/competitions/dog-breed-identification/grade.py +42 -0
  2108. dslighting-1.9.8/mlebench/competitions/dog-breed-identification/prepare.py +55 -0
  2109. dslighting-1.9.8/mlebench/competitions/dog-breed-identification/prepare_val.py +104 -0
  2110. dslighting-1.9.8/mlebench/competitions/dogs-vs-cats-redux-kernels-edition/grade.py +43 -0
  2111. dslighting-1.9.8/mlebench/competitions/dogs-vs-cats-redux-kernels-edition/prepare.py +70 -0
  2112. dslighting-1.9.8/mlebench/competitions/dogs-vs-cats-redux-kernels-edition/prepare_val.py +143 -0
  2113. dslighting-1.9.8/mlebench/competitions/ethanol-concentration/grade.py +23 -0
  2114. dslighting-1.9.8/mlebench/competitions/ethanol-concentration/prepare.py +90 -0
  2115. dslighting-1.9.8/mlebench/competitions/facebook-recruiting-iii-keyword-extraction/grade.py +60 -0
  2116. dslighting-1.9.8/mlebench/competitions/facebook-recruiting-iii-keyword-extraction/prepare.py +41 -0
  2117. dslighting-1.9.8/mlebench/competitions/facebook-recruiting-iii-keyword-extraction/prepare_val.py +92 -0
  2118. dslighting-1.9.8/mlebench/competitions/feedback-prize-english-language-learning/__init__.py +0 -0
  2119. dslighting-1.9.8/mlebench/competitions/feedback-prize-english-language-learning/grade.py +60 -0
  2120. dslighting-1.9.8/mlebench/competitions/feedback-prize-english-language-learning/prepare.py +39 -0
  2121. dslighting-1.9.8/mlebench/competitions/freesound-audio-tagging-2019/grade.py +64 -0
  2122. dslighting-1.9.8/mlebench/competitions/freesound-audio-tagging-2019/prepare.py +94 -0
  2123. dslighting-1.9.8/mlebench/competitions/freesound-audio-tagging-2019/prepare_val.py +175 -0
  2124. dslighting-1.9.8/mlebench/competitions/freesound-audio-tagging-2019/vocabulary.py +83 -0
  2125. dslighting-1.9.8/mlebench/competitions/google-quest-challenge/classes.py +32 -0
  2126. dslighting-1.9.8/mlebench/competitions/google-quest-challenge/grade.py +45 -0
  2127. dslighting-1.9.8/mlebench/competitions/google-quest-challenge/prepare.py +58 -0
  2128. dslighting-1.9.8/mlebench/competitions/google-quest-challenge/prepare_val.py +120 -0
  2129. dslighting-1.9.8/mlebench/competitions/google-research-identify-contrails-reduce-global-warming/grade.py +77 -0
  2130. dslighting-1.9.8/mlebench/competitions/google-research-identify-contrails-reduce-global-warming/prepare.py +155 -0
  2131. dslighting-1.9.8/mlebench/competitions/google-research-identify-contrails-reduce-global-warming/prepare_val.py +211 -0
  2132. dslighting-1.9.8/mlebench/competitions/h-and-m-personalized-fashion-recommendations/grade.py +42 -0
  2133. dslighting-1.9.8/mlebench/competitions/h-and-m-personalized-fashion-recommendations/prepare.py +102 -0
  2134. dslighting-1.9.8/mlebench/competitions/h-and-m-personalized-fashion-recommendations/prepare_val.py +132 -0
  2135. dslighting-1.9.8/mlebench/competitions/handwriting/grade.py +23 -0
  2136. dslighting-1.9.8/mlebench/competitions/handwriting/prepare.py +179 -0
  2137. dslighting-1.9.8/mlebench/competitions/herbarium-2020-fgvc7/grade.py +34 -0
  2138. dslighting-1.9.8/mlebench/competitions/herbarium-2020-fgvc7/prepare.py +251 -0
  2139. dslighting-1.9.8/mlebench/competitions/herbarium-2020-fgvc7/prepare_val.py +242 -0
  2140. dslighting-1.9.8/mlebench/competitions/herbarium-2021-fgvc8/grade.py +34 -0
  2141. dslighting-1.9.8/mlebench/competitions/herbarium-2021-fgvc8/prepare.py +251 -0
  2142. dslighting-1.9.8/mlebench/competitions/herbarium-2021-fgvc8/prepare_val.py +222 -0
  2143. dslighting-1.9.8/mlebench/competitions/herbarium-2022-fgvc9/grade.py +31 -0
  2144. dslighting-1.9.8/mlebench/competitions/herbarium-2022-fgvc9/prepare.py +233 -0
  2145. dslighting-1.9.8/mlebench/competitions/herbarium-2022-fgvc9/prepare_val.py +213 -0
  2146. dslighting-1.9.8/mlebench/competitions/histopathologic-cancer-detection/grade.py +12 -0
  2147. dslighting-1.9.8/mlebench/competitions/histopathologic-cancer-detection/prepare.py +59 -0
  2148. dslighting-1.9.8/mlebench/competitions/histopathologic-cancer-detection/prepare_val.py +131 -0
  2149. dslighting-1.9.8/mlebench/competitions/hms-harmful-brain-activity-classification/constants.py +9 -0
  2150. dslighting-1.9.8/mlebench/competitions/hms-harmful-brain-activity-classification/grade.py +43 -0
  2151. dslighting-1.9.8/mlebench/competitions/hms-harmful-brain-activity-classification/kaggle_metric_utilities.py +96 -0
  2152. dslighting-1.9.8/mlebench/competitions/hms-harmful-brain-activity-classification/kullback_leibler_divergence.py +118 -0
  2153. dslighting-1.9.8/mlebench/competitions/hms-harmful-brain-activity-classification/prepare.py +121 -0
  2154. dslighting-1.9.8/mlebench/competitions/hms-harmful-brain-activity-classification/prepare_val.py +190 -0
  2155. dslighting-1.9.8/mlebench/competitions/hotel-id-2021-fgvc8/grade.py +41 -0
  2156. dslighting-1.9.8/mlebench/competitions/hotel-id-2021-fgvc8/prepare.py +63 -0
  2157. dslighting-1.9.8/mlebench/competitions/hotel-id-2021-fgvc8/prepare_val.py +132 -0
  2158. dslighting-1.9.8/mlebench/competitions/hubmap-kidney-segmentation/grade.py +62 -0
  2159. dslighting-1.9.8/mlebench/competitions/hubmap-kidney-segmentation/prepare.py +108 -0
  2160. dslighting-1.9.8/mlebench/competitions/hubmap-kidney-segmentation/prepare_val.py +153 -0
  2161. dslighting-1.9.8/mlebench/competitions/icecube-neutrinos-in-deep-ice/grade.py +111 -0
  2162. dslighting-1.9.8/mlebench/competitions/icecube-neutrinos-in-deep-ice/prepare.py +127 -0
  2163. dslighting-1.9.8/mlebench/competitions/icecube-neutrinos-in-deep-ice/prepare_val.py +183 -0
  2164. dslighting-1.9.8/mlebench/competitions/ili/grade.py +60 -0
  2165. dslighting-1.9.8/mlebench/competitions/ili/prepare.py +99 -0
  2166. dslighting-1.9.8/mlebench/competitions/imet-2020-fgvc7/grade.py +54 -0
  2167. dslighting-1.9.8/mlebench/competitions/imet-2020-fgvc7/prepare.py +77 -0
  2168. dslighting-1.9.8/mlebench/competitions/imet-2020-fgvc7/prepare_val.py +157 -0
  2169. dslighting-1.9.8/mlebench/competitions/inaturalist-2019-fgvc6/grade.py +35 -0
  2170. dslighting-1.9.8/mlebench/competitions/inaturalist-2019-fgvc6/prepare.py +259 -0
  2171. dslighting-1.9.8/mlebench/competitions/inaturalist-2019-fgvc6/prepare_val.py +304 -0
  2172. dslighting-1.9.8/mlebench/competitions/instant-gratification/__init__.py +0 -0
  2173. dslighting-1.9.8/mlebench/competitions/instant-gratification/grade.py +55 -0
  2174. dslighting-1.9.8/mlebench/competitions/instant-gratification/prepare.py +25 -0
  2175. dslighting-1.9.8/mlebench/competitions/instant_gratification/__init__.py +0 -0
  2176. dslighting-1.9.8/mlebench/competitions/instant_gratification/grade.py +55 -0
  2177. dslighting-1.9.8/mlebench/competitions/instant_gratification/prepare.py +25 -0
  2178. dslighting-1.9.8/mlebench/competitions/invasive-species-monitoring/grade.py +11 -0
  2179. dslighting-1.9.8/mlebench/competitions/invasive-species-monitoring/prepare.py +97 -0
  2180. dslighting-1.9.8/mlebench/competitions/invasive-species-monitoring/prepare_val.py +164 -0
  2181. dslighting-1.9.8/mlebench/competitions/iwildcam-2019-fgvc6/grade.py +44 -0
  2182. dslighting-1.9.8/mlebench/competitions/iwildcam-2019-fgvc6/prepare.py +118 -0
  2183. dslighting-1.9.8/mlebench/competitions/iwildcam-2019-fgvc6/prepare_val.py +194 -0
  2184. dslighting-1.9.8/mlebench/competitions/iwildcam-2020-fgvc7/grade.py +11 -0
  2185. dslighting-1.9.8/mlebench/competitions/iwildcam-2020-fgvc7/prepare.py +164 -0
  2186. dslighting-1.9.8/mlebench/competitions/iwildcam-2020-fgvc7/prepare_val.py +245 -0
  2187. dslighting-1.9.8/mlebench/competitions/jigsaw-toxic-comment-classification-challenge/classes.py +1 -0
  2188. dslighting-1.9.8/mlebench/competitions/jigsaw-toxic-comment-classification-challenge/grade.py +54 -0
  2189. dslighting-1.9.8/mlebench/competitions/jigsaw-toxic-comment-classification-challenge/prepare.py +42 -0
  2190. dslighting-1.9.8/mlebench/competitions/jigsaw-toxic-comment-classification-challenge/prepare_val.py +88 -0
  2191. dslighting-1.9.8/mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/grade.py +153 -0
  2192. dslighting-1.9.8/mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/prepare.py +36 -0
  2193. dslighting-1.9.8/mlebench/competitions/jigsaw-unintended-bias-in-toxicity-classification/prepare_val.py +117 -0
  2194. dslighting-1.9.8/mlebench/competitions/kuzushiji-recognition/grade.py +58 -0
  2195. dslighting-1.9.8/mlebench/competitions/kuzushiji-recognition/kuzushiji_metric.py +118 -0
  2196. dslighting-1.9.8/mlebench/competitions/kuzushiji-recognition/prepare.py +92 -0
  2197. dslighting-1.9.8/mlebench/competitions/kuzushiji-recognition/prepare_val.py +149 -0
  2198. dslighting-1.9.8/mlebench/competitions/leaf-classification/classes.py +101 -0
  2199. dslighting-1.9.8/mlebench/competitions/leaf-classification/grade.py +44 -0
  2200. dslighting-1.9.8/mlebench/competitions/leaf-classification/prepare.py +60 -0
  2201. dslighting-1.9.8/mlebench/competitions/leaf-classification/prepare_val.py +116 -0
  2202. dslighting-1.9.8/mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/grade.py +44 -0
  2203. dslighting-1.9.8/mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/prepare.py +51 -0
  2204. dslighting-1.9.8/mlebench/competitions/learning-agency-lab-automated-essay-scoring-2/prepare_val.py +96 -0
  2205. dslighting-1.9.8/mlebench/competitions/liverpool-ion-switching/__init__.py +0 -0
  2206. dslighting-1.9.8/mlebench/competitions/liverpool-ion-switching/grade.py +52 -0
  2207. dslighting-1.9.8/mlebench/competitions/liverpool-ion-switching/prepare.py +27 -0
  2208. dslighting-1.9.8/mlebench/competitions/liverpool_ion_switching/__init__.py +0 -0
  2209. dslighting-1.9.8/mlebench/competitions/liverpool_ion_switching/grade.py +52 -0
  2210. dslighting-1.9.8/mlebench/competitions/liverpool_ion_switching/prepare.py +27 -0
  2211. dslighting-1.9.8/mlebench/competitions/lmsys-chatbot-arena/grade.py +63 -0
  2212. dslighting-1.9.8/mlebench/competitions/lmsys-chatbot-arena/prepare.py +52 -0
  2213. dslighting-1.9.8/mlebench/competitions/lmsys-chatbot-arena/prepare_val.py +115 -0
  2214. dslighting-1.9.8/mlebench/competitions/mcm_2024_c_test/grade.py +107 -0
  2215. dslighting-1.9.8/mlebench/competitions/mcm_2024_c_test/prepare.py +2 -0
  2216. dslighting-1.9.8/mlebench/competitions/ml2021spring-hw2/grade.py +11 -0
  2217. dslighting-1.9.8/mlebench/competitions/ml2021spring-hw2/prepare.py +58 -0
  2218. dslighting-1.9.8/mlebench/competitions/ml2021spring-hw2/prepare_val.py +135 -0
  2219. dslighting-1.9.8/mlebench/competitions/mlsp-2013-birds/grade.py +11 -0
  2220. dslighting-1.9.8/mlebench/competitions/mlsp-2013-birds/prepare.py +182 -0
  2221. dslighting-1.9.8/mlebench/competitions/mlsp-2013-birds/prepare_val.py +241 -0
  2222. dslighting-1.9.8/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/grade.py +11 -0
  2223. dslighting-1.9.8/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/prepare.py +58 -0
  2224. dslighting-1.9.8/mlebench/competitions/movie-review-sentiment-analysis-kernels-only/prepare_val.py +120 -0
  2225. dslighting-1.9.8/mlebench/competitions/multi-modal-gesture-recognition/grade.py +58 -0
  2226. dslighting-1.9.8/mlebench/competitions/multi-modal-gesture-recognition/prepare.py +85 -0
  2227. dslighting-1.9.8/mlebench/competitions/multi-modal-gesture-recognition/prepare_val.py +139 -0
  2228. dslighting-1.9.8/mlebench/competitions/my-custom-task-01/prepare.py +2 -0
  2229. dslighting-1.9.8/mlebench/competitions/new-my-task-01/prepare.py +2 -0
  2230. dslighting-1.9.8/mlebench/competitions/new-my-task-03/grade.py +107 -0
  2231. dslighting-1.9.8/mlebench/competitions/new-my-task-03/prepare.py +2 -0
  2232. dslighting-1.9.8/mlebench/competitions/new-york-city-taxi-fare-prediction/grade.py +28 -0
  2233. dslighting-1.9.8/mlebench/competitions/new-york-city-taxi-fare-prediction/prepare.py +44 -0
  2234. dslighting-1.9.8/mlebench/competitions/new-york-city-taxi-fare-prediction/prepare_val.py +89 -0
  2235. dslighting-1.9.8/mlebench/competitions/nfl-player-contact-detection/grade.py +36 -0
  2236. dslighting-1.9.8/mlebench/competitions/nfl-player-contact-detection/prepare.py +101 -0
  2237. dslighting-1.9.8/mlebench/competitions/nfl-player-contact-detection/prepare_val.py +186 -0
  2238. dslighting-1.9.8/mlebench/competitions/nomad2018-predict-transparent-conductors/grade.py +47 -0
  2239. dslighting-1.9.8/mlebench/competitions/nomad2018-predict-transparent-conductors/prepare.py +77 -0
  2240. dslighting-1.9.8/mlebench/competitions/nomad2018-predict-transparent-conductors/prepare_val.py +144 -0
  2241. dslighting-1.9.8/mlebench/competitions/osic-pulmonary-fibrosis-progression/grade.py +74 -0
  2242. dslighting-1.9.8/mlebench/competitions/osic-pulmonary-fibrosis-progression/prepare.py +95 -0
  2243. dslighting-1.9.8/mlebench/competitions/osic-pulmonary-fibrosis-progression/prepare_val.py +167 -0
  2244. dslighting-1.9.8/mlebench/competitions/paddy-disease-classification/grade.py +35 -0
  2245. dslighting-1.9.8/mlebench/competitions/paddy-disease-classification/prepare.py +69 -0
  2246. dslighting-1.9.8/mlebench/competitions/paddy-disease-classification/prepare_val.py +122 -0
  2247. dslighting-1.9.8/mlebench/competitions/petfinder-pawpularity-score/grade.py +41 -0
  2248. dslighting-1.9.8/mlebench/competitions/petfinder-pawpularity-score/prepare.py +76 -0
  2249. dslighting-1.9.8/mlebench/competitions/petfinder-pawpularity-score/prepare_val.py +154 -0
  2250. dslighting-1.9.8/mlebench/competitions/plant-pathology-2020-fgvc7/grade.py +41 -0
  2251. dslighting-1.9.8/mlebench/competitions/plant-pathology-2020-fgvc7/prepare.py +74 -0
  2252. dslighting-1.9.8/mlebench/competitions/plant-pathology-2020-fgvc7/prepare_val.py +160 -0
  2253. dslighting-1.9.8/mlebench/competitions/plant-pathology-2021-fgvc8/grade.py +54 -0
  2254. dslighting-1.9.8/mlebench/competitions/plant-pathology-2021-fgvc8/prepare.py +65 -0
  2255. dslighting-1.9.8/mlebench/competitions/plant-pathology-2021-fgvc8/prepare_val.py +130 -0
  2256. dslighting-1.9.8/mlebench/competitions/plant-seedlings-classification/grade.py +39 -0
  2257. dslighting-1.9.8/mlebench/competitions/plant-seedlings-classification/prepare.py +91 -0
  2258. dslighting-1.9.8/mlebench/competitions/plant-seedlings-classification/prepare_val.py +158 -0
  2259. dslighting-1.9.8/mlebench/competitions/playground-series-s3e1/__init__.py +0 -0
  2260. dslighting-1.9.8/mlebench/competitions/playground-series-s3e1/grade.py +52 -0
  2261. dslighting-1.9.8/mlebench/competitions/playground-series-s3e1/prepare.py +25 -0
  2262. dslighting-1.9.8/mlebench/competitions/playground-series-s3e11/__init__.py +0 -0
  2263. dslighting-1.9.8/mlebench/competitions/playground-series-s3e11/grade.py +55 -0
  2264. dslighting-1.9.8/mlebench/competitions/playground-series-s3e11/prepare.py +25 -0
  2265. dslighting-1.9.8/mlebench/competitions/playground-series-s3e18/grade.py +39 -0
  2266. dslighting-1.9.8/mlebench/competitions/playground-series-s3e18/prepare.py +36 -0
  2267. dslighting-1.9.8/mlebench/competitions/playground-series-s3e18/prepare_val.py +89 -0
  2268. dslighting-1.9.8/mlebench/competitions/playground_series_s3e1/__init__.py +0 -0
  2269. dslighting-1.9.8/mlebench/competitions/playground_series_s3e1/grade.py +52 -0
  2270. dslighting-1.9.8/mlebench/competitions/playground_series_s3e1/prepare.py +25 -0
  2271. dslighting-1.9.8/mlebench/competitions/playground_series_s3e11/__init__.py +0 -0
  2272. dslighting-1.9.8/mlebench/competitions/playground_series_s3e11/grade.py +55 -0
  2273. dslighting-1.9.8/mlebench/competitions/playground_series_s3e11/prepare.py +25 -0
  2274. dslighting-1.9.8/mlebench/competitions/predict-volcanic-eruptions-ingv-oe/grade.py +44 -0
  2275. dslighting-1.9.8/mlebench/competitions/predict-volcanic-eruptions-ingv-oe/prepare.py +68 -0
  2276. dslighting-1.9.8/mlebench/competitions/predict-volcanic-eruptions-ingv-oe/prepare_val.py +146 -0
  2277. dslighting-1.9.8/mlebench/competitions/random-acts-of-pizza/grade.py +14 -0
  2278. dslighting-1.9.8/mlebench/competitions/random-acts-of-pizza/prepare.py +80 -0
  2279. dslighting-1.9.8/mlebench/competitions/random-acts-of-pizza/prepare_val.py +144 -0
  2280. dslighting-1.9.8/mlebench/competitions/ranzcr-clip-catheter-line-classification/classes.py +11 -0
  2281. dslighting-1.9.8/mlebench/competitions/ranzcr-clip-catheter-line-classification/grade.py +31 -0
  2282. dslighting-1.9.8/mlebench/competitions/ranzcr-clip-catheter-line-classification/prepare.py +53 -0
  2283. dslighting-1.9.8/mlebench/competitions/ranzcr-clip-catheter-line-classification/prepare_val.py +113 -0
  2284. dslighting-1.9.8/mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/grade.py +124 -0
  2285. dslighting-1.9.8/mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/prepare.py +219 -0
  2286. dslighting-1.9.8/mlebench/competitions/rsna-2022-cervical-spine-fracture-detection/prepare_val.py +257 -0
  2287. dslighting-1.9.8/mlebench/competitions/rsna-breast-cancer-detection/grade.py +65 -0
  2288. dslighting-1.9.8/mlebench/competitions/rsna-breast-cancer-detection/prepare.py +141 -0
  2289. dslighting-1.9.8/mlebench/competitions/rsna-breast-cancer-detection/prepare_val.py +201 -0
  2290. dslighting-1.9.8/mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/grade.py +13 -0
  2291. dslighting-1.9.8/mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/prepare.py +47 -0
  2292. dslighting-1.9.8/mlebench/competitions/rsna-miccai-brain-tumor-radiogenomic-classification/prepare_val.py +97 -0
  2293. dslighting-1.9.8/mlebench/competitions/santander-customer-satisfaction/grade.py +10 -0
  2294. dslighting-1.9.8/mlebench/competitions/santander-customer-satisfaction/prepare.py +41 -0
  2295. dslighting-1.9.8/mlebench/competitions/sciencebench-001-clintox-nn/__init__.py +0 -0
  2296. dslighting-1.9.8/mlebench/competitions/sciencebench-001-clintox-nn/grade.py +56 -0
  2297. dslighting-1.9.8/mlebench/competitions/sciencebench-001-clintox-nn/prepare.py +75 -0
  2298. dslighting-1.9.8/mlebench/competitions/sciencebench-015-aai/grade.py +37 -0
  2299. dslighting-1.9.8/mlebench/competitions/sciencebench-015-aai/prepare.py +102 -0
  2300. dslighting-1.9.8/mlebench/competitions/sciencebench-051-brain-blood-qsar/grade.py +58 -0
  2301. dslighting-1.9.8/mlebench/competitions/sciencebench-051-brain-blood-qsar/prepare.py +69 -0
  2302. dslighting-1.9.8/mlebench/competitions/sciencebench-101-experimental-band-gap-prediction/grade.py +55 -0
  2303. dslighting-1.9.8/mlebench/competitions/sciencebench-101-experimental-band-gap-prediction/prepare.py +88 -0
  2304. dslighting-1.9.8/mlebench/competitions/see-click-predict-fix/__init__.py +0 -0
  2305. dslighting-1.9.8/mlebench/competitions/see-click-predict-fix/grade.py +66 -0
  2306. dslighting-1.9.8/mlebench/competitions/see-click-predict-fix/prepare.py +25 -0
  2307. dslighting-1.9.8/mlebench/competitions/see_click_predict_fix/__init__.py +0 -0
  2308. dslighting-1.9.8/mlebench/competitions/see_click_predict_fix/grade.py +66 -0
  2309. dslighting-1.9.8/mlebench/competitions/see_click_predict_fix/prepare.py +25 -0
  2310. dslighting-1.9.8/mlebench/competitions/seti-breakthrough-listen/grade.py +11 -0
  2311. dslighting-1.9.8/mlebench/competitions/seti-breakthrough-listen/prepare.py +71 -0
  2312. dslighting-1.9.8/mlebench/competitions/seti-breakthrough-listen/prepare_val.py +159 -0
  2313. dslighting-1.9.8/mlebench/competitions/siim-covid19-detection/grade.py +194 -0
  2314. dslighting-1.9.8/mlebench/competitions/siim-covid19-detection/prepare.py +123 -0
  2315. dslighting-1.9.8/mlebench/competitions/siim-covid19-detection/prepare_val.py +164 -0
  2316. dslighting-1.9.8/mlebench/competitions/siim-isic-melanoma-classification/grade.py +11 -0
  2317. dslighting-1.9.8/mlebench/competitions/siim-isic-melanoma-classification/prepare.py +127 -0
  2318. dslighting-1.9.8/mlebench/competitions/siim-isic-melanoma-classification/prepare_val.py +158 -0
  2319. dslighting-1.9.8/mlebench/competitions/smartphone-decimeter-2022/grade.py +55 -0
  2320. dslighting-1.9.8/mlebench/competitions/smartphone-decimeter-2022/notebook.py +86 -0
  2321. dslighting-1.9.8/mlebench/competitions/smartphone-decimeter-2022/prepare.py +143 -0
  2322. dslighting-1.9.8/mlebench/competitions/smartphone-decimeter-2022/prepare_val.py +199 -0
  2323. dslighting-1.9.8/mlebench/competitions/spaceship-titanic/grade.py +11 -0
  2324. dslighting-1.9.8/mlebench/competitions/spaceship-titanic/prepare.py +23 -0
  2325. dslighting-1.9.8/mlebench/competitions/spaceship-titanic/prepare_val.py +61 -0
  2326. dslighting-1.9.8/mlebench/competitions/spooky-author-identification/classes.py +1 -0
  2327. dslighting-1.9.8/mlebench/competitions/spooky-author-identification/grade.py +38 -0
  2328. dslighting-1.9.8/mlebench/competitions/spooky-author-identification/prepare.py +40 -0
  2329. dslighting-1.9.8/mlebench/competitions/spooky-author-identification/prepare_val.py +78 -0
  2330. dslighting-1.9.8/mlebench/competitions/stanford-covid-vaccine/grade.py +65 -0
  2331. dslighting-1.9.8/mlebench/competitions/stanford-covid-vaccine/prepare.py +129 -0
  2332. dslighting-1.9.8/mlebench/competitions/stanford-covid-vaccine/prepare_val.py +199 -0
  2333. dslighting-1.9.8/mlebench/competitions/statoil-iceberg-classifier-challenge/grade.py +41 -0
  2334. dslighting-1.9.8/mlebench/competitions/statoil-iceberg-classifier-challenge/prepare.py +105 -0
  2335. dslighting-1.9.8/mlebench/competitions/statoil-iceberg-classifier-challenge/prepare_val.py +157 -0
  2336. dslighting-1.9.8/mlebench/competitions/tabular-playground-series-dec-2021/grade.py +11 -0
  2337. dslighting-1.9.8/mlebench/competitions/tabular-playground-series-dec-2021/prepare.py +39 -0
  2338. dslighting-1.9.8/mlebench/competitions/tabular-playground-series-dec-2021/prepare_val.py +99 -0
  2339. dslighting-1.9.8/mlebench/competitions/tabular-playground-series-may-2022/grade.py +9 -0
  2340. dslighting-1.9.8/mlebench/competitions/tabular-playground-series-may-2022/prepare.py +56 -0
  2341. dslighting-1.9.8/mlebench/competitions/tabular-playground-series-may-2022/prepare_val.py +116 -0
  2342. dslighting-1.9.8/mlebench/competitions/tensorflow-speech-recognition-challenge/grade.py +11 -0
  2343. dslighting-1.9.8/mlebench/competitions/tensorflow-speech-recognition-challenge/prepare.py +90 -0
  2344. dslighting-1.9.8/mlebench/competitions/tensorflow-speech-recognition-challenge/prepare_val.py +148 -0
  2345. dslighting-1.9.8/mlebench/competitions/tensorflow2-question-answering/grade.py +122 -0
  2346. dslighting-1.9.8/mlebench/competitions/tensorflow2-question-answering/prepare.py +122 -0
  2347. dslighting-1.9.8/mlebench/competitions/tensorflow2-question-answering/prepare_val.py +187 -0
  2348. dslighting-1.9.8/mlebench/competitions/text-normalization-challenge-english-language/grade.py +49 -0
  2349. dslighting-1.9.8/mlebench/competitions/text-normalization-challenge-english-language/prepare.py +115 -0
  2350. dslighting-1.9.8/mlebench/competitions/text-normalization-challenge-english-language/prepare_val.py +213 -0
  2351. dslighting-1.9.8/mlebench/competitions/text-normalization-challenge-russian-language/grade.py +49 -0
  2352. dslighting-1.9.8/mlebench/competitions/text-normalization-challenge-russian-language/prepare.py +113 -0
  2353. dslighting-1.9.8/mlebench/competitions/text-normalization-challenge-russian-language/prepare_val.py +165 -0
  2354. dslighting-1.9.8/mlebench/competitions/tgs-salt-identification-challenge/grade.py +144 -0
  2355. dslighting-1.9.8/mlebench/competitions/tgs-salt-identification-challenge/prepare.py +158 -0
  2356. dslighting-1.9.8/mlebench/competitions/tgs-salt-identification-challenge/prepare_val.py +166 -0
  2357. dslighting-1.9.8/mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/grade.py +11 -0
  2358. dslighting-1.9.8/mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/prepare.py +95 -0
  2359. dslighting-1.9.8/mlebench/competitions/the-icml-2013-whale-challenge-right-whale-redux/prepare_val.py +141 -0
  2360. dslighting-1.9.8/mlebench/competitions/tmdb-box-office-prediction/__init__.py +0 -0
  2361. dslighting-1.9.8/mlebench/competitions/tmdb-box-office-prediction/grade.py +55 -0
  2362. dslighting-1.9.8/mlebench/competitions/tmdb-box-office-prediction/prepare.py +35 -0
  2363. dslighting-1.9.8/mlebench/competitions/tweet-sentiment-extraction/grade.py +67 -0
  2364. dslighting-1.9.8/mlebench/competitions/tweet-sentiment-extraction/prepare.py +36 -0
  2365. dslighting-1.9.8/mlebench/competitions/tweet-sentiment-extraction/prepare_val.py +106 -0
  2366. dslighting-1.9.8/mlebench/competitions/us-patent-phrase-to-phrase-matching/grade.py +31 -0
  2367. dslighting-1.9.8/mlebench/competitions/us-patent-phrase-to-phrase-matching/prepare.py +33 -0
  2368. dslighting-1.9.8/mlebench/competitions/us-patent-phrase-to-phrase-matching/prepare_val.py +71 -0
  2369. dslighting-1.9.8/mlebench/competitions/utils.py +266 -0
  2370. dslighting-1.9.8/mlebench/competitions/uw-madison-gi-tract-image-segmentation/grade.py +158 -0
  2371. dslighting-1.9.8/mlebench/competitions/uw-madison-gi-tract-image-segmentation/prepare.py +139 -0
  2372. dslighting-1.9.8/mlebench/competitions/uw-madison-gi-tract-image-segmentation/prepare_val.py +193 -0
  2373. dslighting-1.9.8/mlebench/competitions/ventilator-pressure-prediction/__init__.py +0 -0
  2374. dslighting-1.9.8/mlebench/competitions/ventilator-pressure-prediction/grade.py +52 -0
  2375. dslighting-1.9.8/mlebench/competitions/ventilator-pressure-prediction/prepare.py +27 -0
  2376. dslighting-1.9.8/mlebench/competitions/ventilator-pressure-prediction/prepare_val.py +142 -0
  2377. dslighting-1.9.8/mlebench/competitions/ventilator_pressure_prediction/__init__.py +0 -0
  2378. dslighting-1.9.8/mlebench/competitions/ventilator_pressure_prediction/grade.py +52 -0
  2379. dslighting-1.9.8/mlebench/competitions/ventilator_pressure_prediction/prepare.py +27 -0
  2380. dslighting-1.9.8/mlebench/competitions/vesuvius-challenge-ink-detection/grade.py +97 -0
  2381. dslighting-1.9.8/mlebench/competitions/vesuvius-challenge-ink-detection/prepare.py +122 -0
  2382. dslighting-1.9.8/mlebench/competitions/vesuvius-challenge-ink-detection/prepare_val.py +170 -0
  2383. dslighting-1.9.8/mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/grade.py +220 -0
  2384. dslighting-1.9.8/mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/prepare.py +129 -0
  2385. dslighting-1.9.8/mlebench/competitions/vinbigdata-chest-xray-abnormalities-detection/prepare_val.py +204 -0
  2386. dslighting-1.9.8/mlebench/competitions/whale-categorization-playground/grade.py +41 -0
  2387. dslighting-1.9.8/mlebench/competitions/whale-categorization-playground/prepare.py +103 -0
  2388. dslighting-1.9.8/mlebench/competitions/whale-categorization-playground/prepare_val.py +196 -0
  2389. dslighting-1.9.8/mlebench/data.py +420 -0
  2390. dslighting-1.9.8/mlebench/grade.py +261 -0
  2391. dslighting-1.9.8/mlebench/grade_helpers.py +235 -0
  2392. dslighting-1.9.8/mlebench/metrics.py +75 -0
  2393. dslighting-1.9.8/mlebench/registry.py +332 -0
  2394. dslighting-1.9.8/mlebench/utils.py +346 -0
  2395. dslighting-1.9.8/pyproject.toml +158 -0
  2396. dslighting-1.3.6/PKG-INFO +0 -503
  2397. dslighting-1.3.6/README.md +0 -452
  2398. dslighting-1.3.6/dsat/common/typing.py +0 -19
  2399. dslighting-1.3.6/dsat/config.py +0 -79
  2400. dslighting-1.3.6/dsat/models/candidates.py +0 -16
  2401. dslighting-1.3.6/dsat/models/task.py +0 -64
  2402. dslighting-1.3.6/dsat/runner.py +0 -538
  2403. dslighting-1.3.6/dsat/services/sandbox.py +0 -386
  2404. dslighting-1.3.6/dsat/services/states/journal.py +0 -153
  2405. dslighting-1.3.6/dsat/workflows/factory.py +0 -439
  2406. dslighting-1.3.6/dslighting/__init__.py +0 -162
  2407. dslighting-1.3.6/dslighting/core/agent.py +0 -608
  2408. dslighting-1.3.6/dslighting/core/config_builder.py +0 -318
  2409. dslighting-1.3.6/dslighting/core/data_loader.py +0 -382
  2410. dslighting-1.3.6/dslighting.egg-info/PKG-INFO +0 -503
  2411. dslighting-1.3.6/dslighting.egg-info/SOURCES.txt +0 -84
  2412. dslighting-1.3.6/dslighting.egg-info/requires.txt +0 -30
  2413. dslighting-1.3.6/dslighting.egg-info/top_level.txt +0 -2
  2414. dslighting-1.3.6/pyproject.toml +0 -110
  2415. dslighting-1.3.6/tests/test_dslighting_api.py +0 -155
  2416. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/__init__.py +0 -0
  2417. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/benchmark/__init__.py +0 -0
  2418. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/benchmark/benchmark.py +0 -0
  2419. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/benchmark/datasci.py +0 -0
  2420. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/benchmark/mle.py +0 -0
  2421. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/benchmark/sciencebench.py +0 -0
  2422. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/common/__init__.py +0 -0
  2423. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/common/constants.py +0 -0
  2424. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/common/exceptions.py +0 -0
  2425. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/models/__init__.py +0 -0
  2426. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/models/formats.py +0 -0
  2427. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/__init__.py +0 -0
  2428. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/aflow_ops.py +0 -0
  2429. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/autokaggle_ops.py +0 -0
  2430. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/automind_ops.py +0 -0
  2431. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/base.py +0 -0
  2432. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/code.py +0 -0
  2433. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/dsagent_ops.py +0 -0
  2434. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/operators/llm_basic.py +0 -0
  2435. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/__init__.py +0 -0
  2436. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/aflow_prompt.py +0 -0
  2437. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/aide_prompt.py +0 -0
  2438. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/autokaggle_prompt.py +0 -0
  2439. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/automind_prompt.py +0 -0
  2440. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/common.py +0 -0
  2441. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/data_interpreter_prompt.py +0 -0
  2442. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/prompts/dsagent_prompt.py +0 -0
  2443. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/__init__.py +0 -0
  2444. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/data_analyzer.py +0 -0
  2445. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/llm.py +0 -0
  2446. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/llm_single.py +0 -0
  2447. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/states/__init__.py +0 -0
  2448. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/states/autokaggle_state.py +0 -0
  2449. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/states/base.py +0 -0
  2450. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/states/dsa_log.py +0 -0
  2451. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/states/experience.py +0 -0
  2452. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/states/operator_library.py +0 -0
  2453. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/vdb.py +0 -0
  2454. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/services/workspace.py +0 -0
  2455. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/tasks/__init__.py +0 -0
  2456. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/tasks/handlers.py +0 -0
  2457. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/templates/open_ended/grade_template.py +0 -0
  2458. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/tools/__init__.py +0 -0
  2459. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/utils/__init__.py +0 -0
  2460. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/utils/context.py +0 -0
  2461. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/utils/dynamic_import.py +0 -0
  2462. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/utils/parsing.py +0 -0
  2463. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/__init__.py +0 -0
  2464. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/base.py +0 -0
  2465. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/manual/__init__.py +0 -0
  2466. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/manual/autokaggle_workflow.py +0 -0
  2467. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/manual/data_interpreter_workflow.py +0 -0
  2468. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/manual/deepanalyze_workflow.py +0 -0
  2469. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/manual/dsagent_workflow.py +0 -0
  2470. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/search/__init__.py +0 -0
  2471. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/search/aflow_workflow.py +0 -0
  2472. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/search/aide_workflow.py +0 -0
  2473. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/search/automind_workflow.py +0 -0
  2474. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/templates/__init__.py +0 -0
  2475. {dslighting-1.3.6 → dslighting-1.9.8}/dsat/workflows/templates/basic_kaggle_loop.py +0 -0
  2476. {dslighting-1.3.6 → dslighting-1.9.8}/dslighting/core/__init__.py +0 -0
  2477. {dslighting-1.3.6 → dslighting-1.9.8}/dslighting/core/task_detector.py +0 -0
  2478. {dslighting-1.3.6 → dslighting-1.9.8}/dslighting/utils/__init__.py +0 -0
  2479. {dslighting-1.3.6 → dslighting-1.9.8}/dslighting/utils/defaults.py +0 -0
  2480. {dslighting-1.3.6 → dslighting-1.9.8}/dslighting.egg-info/dependency_links.txt +0 -0
  2481. {dslighting-1.3.6 → dslighting-1.9.8}/setup.cfg +0 -0
@@ -0,0 +1,322 @@
1
+ <div align="center">
2
+
3
+ # DSLighting
4
+
5
+ **全流程数据科学智能助手 - End-to-End Data Science Agent**
6
+
7
+ [![Python](https://img.shields.io/badge/Python-3.10%2B-3776AB?style=flat-square&logo=python&logoColor=white)](https://www.python.org/downloads/)
8
+ [![PyPI](https://img.shields.io/badge/PyPI-1.8.2-blue?style=flat-square&logo=pypi&logoColor=white)](https://pypi.org/project/dslighting/)
9
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/dslighting?style=flat-square&logo=pypi)](https://pypi.org/project/dslighting/)
10
+ [![License](https://img.shields.io/badge/License-AGPL--3.0-blue?style=flat-square)](LICENSE)
11
+
12
+ [📚 完整文档](https://luckyfan-cs.github.io/dslighting-web/api/getting-started.html) |
13
+ [🚀 快速上手](#-快速上手) |
14
+ [💻 GitHub](https://github.com/usail-hkust/dslighting) |
15
+ [🐛 问题反馈](https://github.com/usail-hkust/dslighting/issues)
16
+
17
+ </div>
18
+
19
+ ---
20
+
21
+ ## ✨ 特性
22
+
23
+ - 🤖 **智能 Agent 工作流**:自动化数据科学任务执行
24
+ - 📊 **数据管理**:统一的数据加载和任务配置系统
25
+ - 🔧 **灵活配置**:支持多种 LLM 模型(OpenAI, GLM, DeepSeek, Qwen 等)
26
+ - 📝 **完整追踪**:自动记录任务执行过程和结果
27
+ - 🧩 **可扩展架构**:轻松添加自定义任务和工作流
28
+
29
+ ---
30
+
31
+ ## 🚀 快速上手
32
+
33
+ ### 1. 安装
34
+
35
+ ```bash
36
+ pip install dslighting python-dotenv
37
+ ```
38
+
39
+ ### 2. 配置环境变量
40
+
41
+ 创建 `.env` 文件:
42
+
43
+ ```bash
44
+ # .env
45
+
46
+ # 指定默认使用的模型(必须设置!)
47
+ LLM_MODEL=glm-4
48
+
49
+ # 多模型配置(JSON 格式)
50
+ LLM_MODEL_CONFIGS='{
51
+ "glm-4": {
52
+ "api_key": ["your-key-1", "your-key-2"],
53
+ "api_base": "https://open.bigmodel.cn/api/paas/v4",
54
+ "temperature": 0.7,
55
+ "provider": "openai"
56
+ },
57
+
58
+ "openai/deepseek-ai/DeepSeek-V3": {
59
+ "api_key": ["sk-siliconflow-key-1", "sk-siliconflow-key-2"],
60
+ "api_base": "https://api.siliconflow.cn/v1",
61
+ "temperature": 1.0
62
+ },
63
+
64
+ "gpt-4o": {
65
+ "api_key": "sk-your-openai-api-key",
66
+ "api_base": "https://api.openai.com/v1",
67
+ "temperature": 0.7
68
+ }
69
+ }'
70
+ ```
71
+
72
+ **支持的模型提供商:**
73
+ - OpenAI (GPT-4, GPT-3.5)
74
+ - 智谱 AI (GLM-4)
75
+ - SiliconFlow (DeepSeek, Qwen, Kimi 等)
76
+ - 任何兼容 OpenAI API 的服务
77
+
78
+ ### 3. 运行任务
79
+
80
+ **方式 1:全局配置(推荐用于多任务)**
81
+
82
+ ```python
83
+ from dotenv import load_dotenv
84
+ load_dotenv()
85
+
86
+ import dslighting
87
+
88
+ # 配置一次,全局生效
89
+ dslighting.setup(
90
+ data_parent_dir="/path/to/data/competitions",
91
+ registry_parent_dir="/path/to/registry"
92
+ )
93
+
94
+ # 创建 Agent
95
+ agent = dslighting.Agent()
96
+
97
+ # 运行任务(只需 task_id)
98
+ result = agent.run(task_id="bike-sharing-demand")
99
+
100
+ print(f"✅ 任务完成!")
101
+ print(f"结果: {result}")
102
+ ```
103
+
104
+ **方式 2:直接路径(明确清晰)**
105
+
106
+ ```python
107
+ from dotenv import load_dotenv
108
+ load_dotenv()
109
+
110
+ import dslighting
111
+
112
+ agent = dslighting.Agent()
113
+ result = agent.run(
114
+ task_id="bike-sharing-demand",
115
+ data_dir="/path/to/data/competitions/bike-sharing-demand",
116
+ registry_dir="/path/to/registry/bike-sharing-demand"
117
+ )
118
+ ```
119
+
120
+ **方式 3:内置数据集(最简单)**
121
+
122
+ ```python
123
+ from dotenv import load_dotenv
124
+ load_dotenv()
125
+
126
+ import dslighting
127
+
128
+ # 无需配置,直接使用
129
+ result = dslighting.run_agent(task_id="bike-sharing-demand")
130
+ ```
131
+
132
+ **方式 4:先加载数据(灵活检查)**
133
+
134
+ ```python
135
+ from dotenv import load_dotenv
136
+ load_dotenv()
137
+
138
+ import dslighting
139
+
140
+ # 先加载数据并检查
141
+ data = dslighting.load_data(
142
+ "/path/to/data/competitions/bike-sharing-demand",
143
+ registry_dir="/path/to/registry/bike-sharing-demand"
144
+ )
145
+
146
+ # 检查数据
147
+ print(data.show())
148
+
149
+ # 确认无误后运行
150
+ agent = dslighting.Agent()
151
+ result = agent.run(data)
152
+ ```
153
+
154
+ ### 4. 查看结果
155
+
156
+ ```python
157
+ print(f"Workspace: {result.workspace_path}")
158
+ print(f"Score: {result.score}")
159
+ ```
160
+
161
+ ---
162
+
163
+ ## 📖 核心概念
164
+
165
+ ### 数据系统
166
+
167
+ DSLighting 使用统一的数据管理系统:
168
+
169
+ - **LoadedData**:核心数据容器,封装数据集和任务配置
170
+ - **TaskDetection**:自动识别任务类型(kaggle, open_ended, datasci)
171
+ - **Registry**:管理任务配置和评分规则
172
+
173
+ **查看数据结构:**
174
+
175
+ ```python
176
+ data = dslighting.load_data(...)
177
+ print(data.show())
178
+ ```
179
+
180
+ 输出包括:
181
+ - 任务 ID 和类型
182
+ - 数据目录结构
183
+ - CSV 文件信息
184
+ - 任务描述和评估指标
185
+
186
+ ### Agent 配置
187
+
188
+ ```python
189
+ # 使用默认配置
190
+ agent = dslighting.Agent()
191
+
192
+ # 等价于:
193
+ agent = dslighting.Agent(
194
+ workflow="aide", # 工作流类型
195
+ model="gpt-4o-mini", # LLM 模型(从 .env 读取)
196
+ temperature=0.7, # 生成温度
197
+ max_iterations=5 # 最大迭代次数
198
+ )
199
+ ```
200
+
201
+ ---
202
+
203
+ ## 🔧 高级配置
204
+
205
+ ### 自定义任务
206
+
207
+ 创建自己的数据科学任务:
208
+
209
+ **目录结构:**
210
+
211
+ ```
212
+ your-project/
213
+ ├── data/competitions/
214
+ │ └── your-task-name/
215
+ │ └── prepared/
216
+ │ ├── public/ # train.csv, test.csv, sampleSubmission.csv
217
+ │ └── private/ # test_answer.csv
218
+
219
+ └── registry/
220
+ └── your-task-name/
221
+ ├── config.yaml # 任务配置
222
+ ├── description.md # 任务描述
223
+ └── grade.py # 评分脚本(可选)
224
+ ```
225
+
226
+ **config.yaml 示例:**
227
+
228
+ ```yaml
229
+ id: your-task-name
230
+ name: Your Task Display Name
231
+ competition_type: simple
232
+ awards_medals: false
233
+ description: your-task-name/description.md
234
+
235
+ dataset:
236
+ answers: your-task-name/prepared/private/test_answer.csv
237
+ sample_submission: your-task-name/prepared/public/sampleSubmission.csv
238
+
239
+ grader:
240
+ name: rmsle # 或 accuracy, f1, mae 等
241
+ ```
242
+
243
+ **运行自定义任务:**
244
+
245
+ ```python
246
+ result = agent.run(
247
+ task_id="your-task-name",
248
+ data_dir="/path/to/data/competitions",
249
+ registry_dir="/path/to/registry"
250
+ )
251
+ ```
252
+
253
+ ### 常见问题
254
+
255
+ **Q: 为什么显示 "Score: N/A"?**
256
+
257
+ A: 这是 DSLighting 的已知问题。自动评分功能当前未启用,需要手动评分:
258
+
259
+ ```python
260
+ from pathlib import Path
261
+ from mlebench.grade import grade_csv
262
+ from dsat.benchmark.mle import MLEBenchmarkRegistry
263
+
264
+ registry_dir = Path(dslighting.__file__).parent / "registry"
265
+ registry = MLEBenchmarkRegistry(registry_dir=str(registry_dir))
266
+ competition = registry.get_competition("bike-sharing-demand")
267
+
268
+ submission_files = list(result.workspace_path.glob("sandbox/submission_*.csv"))
269
+ if submission_files:
270
+ report = grade_csv(submission_files[0], competition)
271
+ print(f"✅ 实际 Score: {report.score}")
272
+ ```
273
+
274
+ **Q: `load_dotenv()` 是必须的吗?**
275
+
276
+ A: 是的!必须在导入 `dslighting` 之前调用 `load_dotenv()` 来加载 `.env` 配置。
277
+
278
+ ---
279
+
280
+ ## 📚 完整文档
281
+
282
+ 详细文档请访问:
283
+
284
+ - **[快速上手指南](https://luckyfan-cs.github.io/dslighting-web/api/getting-started.html)** - 完整的安装、配置和使用教程
285
+ - **[数据系统文档](https://luckyfan-cs.github.io/dslighting-web/api/data-system.html)** - 深入了解数据管理和核心组件
286
+ - **[GitHub 项目](https://github.com/usail-hkust/dslighting)** - 源代码和问题反馈
287
+
288
+ ---
289
+
290
+ ## 🤝 贡献
291
+
292
+ 欢迎贡献代码、报告问题或提出建议!
293
+
294
+ 1. Fork 项目
295
+ 2. 创建特性分支 (`git checkout -b feature/AmazingFeature`)
296
+ 3. 提交更改 (`git commit -m 'Add some AmazingFeature'`)
297
+ 4. 推送到分支 (`git push origin feature/AmazingFeature`)
298
+ 5. 开启 Pull Request
299
+
300
+ ---
301
+
302
+ ## 📄 许可证
303
+
304
+ 本项目基于 [AGPL-3.0 许可证](LICENSE) 发布。
305
+
306
+ ---
307
+
308
+ ## 📞 联系方式
309
+
310
+ - **问题反馈**: [GitHub Issues](https://github.com/usail-hkust/dslighting/issues)
311
+ - **文档**: [https://luckyfan-cs.github.io/dslighting-web/](https://luckyfan-cs.github.io/dslighting-web/)
312
+ - **PyPI**: [https://pypi.org/project/dslighting/](https://pypi.org/project/dslighting/)
313
+
314
+ ---
315
+
316
+ <div align="center">
317
+
318
+ **如果这个项目对你有帮助,请给个 ⭐️**
319
+
320
+ Made with ❤️ by [USAIL Lab](https://github.com/usail-hkust)
321
+
322
+ </div>
@@ -0,0 +1,397 @@
1
+ Metadata-Version: 2.4
2
+ Name: dslighting
3
+ Version: 1.9.8
4
+ Summary: End-to-End Data Science Agent - Intelligent automation for data science tasks
5
+ Author: DSLighting Team
6
+ License: AGPL-3.0
7
+ Project-URL: Homepage, https://github.com/usail-hkust/dslighting
8
+ Project-URL: Documentation, https://luckyfan-cs.github.io/dslighting-web/api/getting-started.html
9
+ Project-URL: Repository, https://github.com/usail-hkust/dslighting
10
+ Project-URL: Bug Tracker, https://github.com/usail-hkust/dslighting/issues
11
+ Project-URL: Quick Start Guide, https://luckyfan-cs.github.io/dslighting-web/api/getting-started.html
12
+ Project-URL: Data System Docs, https://luckyfan-cs.github.io/dslighting-web/api/data-system.html
13
+ Keywords: data-science,agent,automation,machine-learning,ai
14
+ Classifier: Development Status :: 4 - Beta
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Intended Audience :: Science/Research
17
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/markdown
25
+ Requires-Dist: pandas<3.0.0,>=1.5.0
26
+ Requires-Dist: pydantic<3.0.0,>=2.10.0
27
+ Requires-Dist: python-dotenv>=1.0.0
28
+ Requires-Dist: openai>=1.0.0
29
+ Requires-Dist: anthropic>=0.34.0
30
+ Requires-Dist: litellm>=1.80.0
31
+ Requires-Dist: rich>=13.0.0
32
+ Requires-Dist: transformers>=4.30.0
33
+ Requires-Dist: torch>=2.0.0
34
+ Requires-Dist: scikit-learn<2.0.0,>=1.0.0
35
+ Requires-Dist: diskcache
36
+ Requires-Dist: tenacity
37
+ Requires-Dist: appdirs
38
+ Requires-Dist: pyyaml
39
+ Requires-Dist: tqdm
40
+ Requires-Dist: py7zr
41
+ Requires-Dist: nbformat>=5.0.0
42
+ Requires-Dist: nbclient>=0.5.0
43
+ Requires-Dist: ipykernel>=7.0.0
44
+ Provides-Extra: minimal
45
+ Requires-Dist: pandas<3.0.0,>=1.5.0; extra == "minimal"
46
+ Requires-Dist: pydantic<3.0.0,>=2.10.0; extra == "minimal"
47
+ Requires-Dist: python-dotenv>=1.0.0; extra == "minimal"
48
+ Requires-Dist: openai>=1.0.0; extra == "minimal"
49
+ Requires-Dist: anthropic>=0.34.0; extra == "minimal"
50
+ Requires-Dist: litellm>=1.80.0; extra == "minimal"
51
+ Requires-Dist: rich>=13.0.0; extra == "minimal"
52
+ Requires-Dist: transformers>=4.30.0; extra == "minimal"
53
+ Requires-Dist: torch>=2.0.0; extra == "minimal"
54
+ Requires-Dist: scikit-learn<2.0.0,>=1.0.0; extra == "minimal"
55
+ Requires-Dist: diskcache; extra == "minimal"
56
+ Requires-Dist: tenacity; extra == "minimal"
57
+ Requires-Dist: appdirs; extra == "minimal"
58
+ Requires-Dist: pyyaml; extra == "minimal"
59
+ Requires-Dist: tqdm; extra == "minimal"
60
+ Requires-Dist: py7zr; extra == "minimal"
61
+ Requires-Dist: nbformat>=5.0.0; extra == "minimal"
62
+ Requires-Dist: nbclient>=0.5.0; extra == "minimal"
63
+ Requires-Dist: ipykernel>=7.0.0; extra == "minimal"
64
+ Provides-Extra: dev
65
+ Requires-Dist: pytest>=7.0; extra == "dev"
66
+ Requires-Dist: pytest-asyncio>=0.21; extra == "dev"
67
+ Requires-Dist: pytest-cov>=4.0; extra == "dev"
68
+ Requires-Dist: black>=23.0; extra == "dev"
69
+ Requires-Dist: mypy>=1.0; extra == "dev"
70
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
71
+ Requires-Dist: build>=0.10.0; extra == "dev"
72
+ Requires-Dist: twine>=4.0.0; extra == "dev"
73
+ Provides-Extra: full
74
+ Provides-Extra: all
75
+
76
+ <div align="center">
77
+
78
+ # DSLighting
79
+
80
+ **全流程数据科学智能助手 - End-to-End Data Science Agent**
81
+
82
+ [![Python](https://img.shields.io/badge/Python-3.10%2B-3776AB?style=flat-square&logo=python&logoColor=white)](https://www.python.org/downloads/)
83
+ [![PyPI](https://img.shields.io/badge/PyPI-1.8.2-blue?style=flat-square&logo=pypi&logoColor=white)](https://pypi.org/project/dslighting/)
84
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/dslighting?style=flat-square&logo=pypi)](https://pypi.org/project/dslighting/)
85
+ [![License](https://img.shields.io/badge/License-AGPL--3.0-blue?style=flat-square)](LICENSE)
86
+
87
+ [📚 完整文档](https://luckyfan-cs.github.io/dslighting-web/api/getting-started.html) |
88
+ [🚀 快速上手](#-快速上手) |
89
+ [💻 GitHub](https://github.com/usail-hkust/dslighting) |
90
+ [🐛 问题反馈](https://github.com/usail-hkust/dslighting/issues)
91
+
92
+ </div>
93
+
94
+ ---
95
+
96
+ ## ✨ 特性
97
+
98
+ - 🤖 **智能 Agent 工作流**:自动化数据科学任务执行
99
+ - 📊 **数据管理**:统一的数据加载和任务配置系统
100
+ - 🔧 **灵活配置**:支持多种 LLM 模型(OpenAI, GLM, DeepSeek, Qwen 等)
101
+ - 📝 **完整追踪**:自动记录任务执行过程和结果
102
+ - 🧩 **可扩展架构**:轻松添加自定义任务和工作流
103
+
104
+ ---
105
+
106
+ ## 🚀 快速上手
107
+
108
+ ### 1. 安装
109
+
110
+ ```bash
111
+ pip install dslighting python-dotenv
112
+ ```
113
+
114
+ ### 2. 配置环境变量
115
+
116
+ 创建 `.env` 文件:
117
+
118
+ ```bash
119
+ # .env
120
+
121
+ # 指定默认使用的模型(必须设置!)
122
+ LLM_MODEL=glm-4
123
+
124
+ # 多模型配置(JSON 格式)
125
+ LLM_MODEL_CONFIGS='{
126
+ "glm-4": {
127
+ "api_key": ["your-key-1", "your-key-2"],
128
+ "api_base": "https://open.bigmodel.cn/api/paas/v4",
129
+ "temperature": 0.7,
130
+ "provider": "openai"
131
+ },
132
+
133
+ "openai/deepseek-ai/DeepSeek-V3": {
134
+ "api_key": ["sk-siliconflow-key-1", "sk-siliconflow-key-2"],
135
+ "api_base": "https://api.siliconflow.cn/v1",
136
+ "temperature": 1.0
137
+ },
138
+
139
+ "gpt-4o": {
140
+ "api_key": "sk-your-openai-api-key",
141
+ "api_base": "https://api.openai.com/v1",
142
+ "temperature": 0.7
143
+ }
144
+ }'
145
+ ```
146
+
147
+ **支持的模型提供商:**
148
+ - OpenAI (GPT-4, GPT-3.5)
149
+ - 智谱 AI (GLM-4)
150
+ - SiliconFlow (DeepSeek, Qwen, Kimi 等)
151
+ - 任何兼容 OpenAI API 的服务
152
+
153
+ ### 3. 运行任务
154
+
155
+ **方式 1:全局配置(推荐用于多任务)**
156
+
157
+ ```python
158
+ from dotenv import load_dotenv
159
+ load_dotenv()
160
+
161
+ import dslighting
162
+
163
+ # 配置一次,全局生效
164
+ dslighting.setup(
165
+ data_parent_dir="/path/to/data/competitions",
166
+ registry_parent_dir="/path/to/registry"
167
+ )
168
+
169
+ # 创建 Agent
170
+ agent = dslighting.Agent()
171
+
172
+ # 运行任务(只需 task_id)
173
+ result = agent.run(task_id="bike-sharing-demand")
174
+
175
+ print(f"✅ 任务完成!")
176
+ print(f"结果: {result}")
177
+ ```
178
+
179
+ **方式 2:直接路径(明确清晰)**
180
+
181
+ ```python
182
+ from dotenv import load_dotenv
183
+ load_dotenv()
184
+
185
+ import dslighting
186
+
187
+ agent = dslighting.Agent()
188
+ result = agent.run(
189
+ task_id="bike-sharing-demand",
190
+ data_dir="/path/to/data/competitions/bike-sharing-demand",
191
+ registry_dir="/path/to/registry/bike-sharing-demand"
192
+ )
193
+ ```
194
+
195
+ **方式 3:内置数据集(最简单)**
196
+
197
+ ```python
198
+ from dotenv import load_dotenv
199
+ load_dotenv()
200
+
201
+ import dslighting
202
+
203
+ # 无需配置,直接使用
204
+ result = dslighting.run_agent(task_id="bike-sharing-demand")
205
+ ```
206
+
207
+ **方式 4:先加载数据(灵活检查)**
208
+
209
+ ```python
210
+ from dotenv import load_dotenv
211
+ load_dotenv()
212
+
213
+ import dslighting
214
+
215
+ # 先加载数据并检查
216
+ data = dslighting.load_data(
217
+ "/path/to/data/competitions/bike-sharing-demand",
218
+ registry_dir="/path/to/registry/bike-sharing-demand"
219
+ )
220
+
221
+ # 检查数据
222
+ print(data.show())
223
+
224
+ # 确认无误后运行
225
+ agent = dslighting.Agent()
226
+ result = agent.run(data)
227
+ ```
228
+
229
+ ### 4. 查看结果
230
+
231
+ ```python
232
+ print(f"Workspace: {result.workspace_path}")
233
+ print(f"Score: {result.score}")
234
+ ```
235
+
236
+ ---
237
+
238
+ ## 📖 核心概念
239
+
240
+ ### 数据系统
241
+
242
+ DSLighting 使用统一的数据管理系统:
243
+
244
+ - **LoadedData**:核心数据容器,封装数据集和任务配置
245
+ - **TaskDetection**:自动识别任务类型(kaggle, open_ended, datasci)
246
+ - **Registry**:管理任务配置和评分规则
247
+
248
+ **查看数据结构:**
249
+
250
+ ```python
251
+ data = dslighting.load_data(...)
252
+ print(data.show())
253
+ ```
254
+
255
+ 输出包括:
256
+ - 任务 ID 和类型
257
+ - 数据目录结构
258
+ - CSV 文件信息
259
+ - 任务描述和评估指标
260
+
261
+ ### Agent 配置
262
+
263
+ ```python
264
+ # 使用默认配置
265
+ agent = dslighting.Agent()
266
+
267
+ # 等价于:
268
+ agent = dslighting.Agent(
269
+ workflow="aide", # 工作流类型
270
+ model="gpt-4o-mini", # LLM 模型(从 .env 读取)
271
+ temperature=0.7, # 生成温度
272
+ max_iterations=5 # 最大迭代次数
273
+ )
274
+ ```
275
+
276
+ ---
277
+
278
+ ## 🔧 高级配置
279
+
280
+ ### 自定义任务
281
+
282
+ 创建自己的数据科学任务:
283
+
284
+ **目录结构:**
285
+
286
+ ```
287
+ your-project/
288
+ ├── data/competitions/
289
+ │ └── your-task-name/
290
+ │ └── prepared/
291
+ │ ├── public/ # train.csv, test.csv, sampleSubmission.csv
292
+ │ └── private/ # test_answer.csv
293
+
294
+ └── registry/
295
+ └── your-task-name/
296
+ ├── config.yaml # 任务配置
297
+ ├── description.md # 任务描述
298
+ └── grade.py # 评分脚本(可选)
299
+ ```
300
+
301
+ **config.yaml 示例:**
302
+
303
+ ```yaml
304
+ id: your-task-name
305
+ name: Your Task Display Name
306
+ competition_type: simple
307
+ awards_medals: false
308
+ description: your-task-name/description.md
309
+
310
+ dataset:
311
+ answers: your-task-name/prepared/private/test_answer.csv
312
+ sample_submission: your-task-name/prepared/public/sampleSubmission.csv
313
+
314
+ grader:
315
+ name: rmsle # 或 accuracy, f1, mae 等
316
+ ```
317
+
318
+ **运行自定义任务:**
319
+
320
+ ```python
321
+ result = agent.run(
322
+ task_id="your-task-name",
323
+ data_dir="/path/to/data/competitions",
324
+ registry_dir="/path/to/registry"
325
+ )
326
+ ```
327
+
328
+ ### 常见问题
329
+
330
+ **Q: 为什么显示 "Score: N/A"?**
331
+
332
+ A: 这是 DSLighting 的已知问题。自动评分功能当前未启用,需要手动评分:
333
+
334
+ ```python
335
+ from pathlib import Path
336
+ from mlebench.grade import grade_csv
337
+ from dsat.benchmark.mle import MLEBenchmarkRegistry
338
+
339
+ registry_dir = Path(dslighting.__file__).parent / "registry"
340
+ registry = MLEBenchmarkRegistry(registry_dir=str(registry_dir))
341
+ competition = registry.get_competition("bike-sharing-demand")
342
+
343
+ submission_files = list(result.workspace_path.glob("sandbox/submission_*.csv"))
344
+ if submission_files:
345
+ report = grade_csv(submission_files[0], competition)
346
+ print(f"✅ 实际 Score: {report.score}")
347
+ ```
348
+
349
+ **Q: `load_dotenv()` 是必须的吗?**
350
+
351
+ A: 是的!必须在导入 `dslighting` 之前调用 `load_dotenv()` 来加载 `.env` 配置。
352
+
353
+ ---
354
+
355
+ ## 📚 完整文档
356
+
357
+ 详细文档请访问:
358
+
359
+ - **[快速上手指南](https://luckyfan-cs.github.io/dslighting-web/api/getting-started.html)** - 完整的安装、配置和使用教程
360
+ - **[数据系统文档](https://luckyfan-cs.github.io/dslighting-web/api/data-system.html)** - 深入了解数据管理和核心组件
361
+ - **[GitHub 项目](https://github.com/usail-hkust/dslighting)** - 源代码和问题反馈
362
+
363
+ ---
364
+
365
+ ## 🤝 贡献
366
+
367
+ 欢迎贡献代码、报告问题或提出建议!
368
+
369
+ 1. Fork 项目
370
+ 2. 创建特性分支 (`git checkout -b feature/AmazingFeature`)
371
+ 3. 提交更改 (`git commit -m 'Add some AmazingFeature'`)
372
+ 4. 推送到分支 (`git push origin feature/AmazingFeature`)
373
+ 5. 开启 Pull Request
374
+
375
+ ---
376
+
377
+ ## 📄 许可证
378
+
379
+ 本项目基于 [AGPL-3.0 许可证](LICENSE) 发布。
380
+
381
+ ---
382
+
383
+ ## 📞 联系方式
384
+
385
+ - **问题反馈**: [GitHub Issues](https://github.com/usail-hkust/dslighting/issues)
386
+ - **文档**: [https://luckyfan-cs.github.io/dslighting-web/](https://luckyfan-cs.github.io/dslighting-web/)
387
+ - **PyPI**: [https://pypi.org/project/dslighting/](https://pypi.org/project/dslighting/)
388
+
389
+ ---
390
+
391
+ <div align="center">
392
+
393
+ **如果这个项目对你有帮助,请给个 ⭐️**
394
+
395
+ Made with ❤️ by [USAIL Lab](https://github.com/usail-hkust)
396
+
397
+ </div>