jax-sklearn 0.1.0__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 (1704) hide show
  1. jax_sklearn-0.1.0/.binder/postBuild +40 -0
  2. jax_sklearn-0.1.0/.binder/requirements.txt +10 -0
  3. jax_sklearn-0.1.0/.binder/runtime.txt +1 -0
  4. jax_sklearn-0.1.0/.circleci/config.yml +129 -0
  5. jax_sklearn-0.1.0/.codecov.yml +33 -0
  6. jax_sklearn-0.1.0/.coveragerc +11 -0
  7. jax_sklearn-0.1.0/.github/FUNDING.yml +12 -0
  8. jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +95 -0
  9. jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/config.yml +17 -0
  10. jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/doc_improvement.yml +17 -0
  11. jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +25 -0
  12. jax_sklearn-0.1.0/.github/PULL_REQUEST_TEMPLATE.md +32 -0
  13. jax_sklearn-0.1.0/.github/dependabot.yml +21 -0
  14. jax_sklearn-0.1.0/.github/labeler-file-extensions.yml +8 -0
  15. jax_sklearn-0.1.0/.github/labeler-module.yml +80 -0
  16. jax_sklearn-0.1.0/.github/scripts/label_title_regex.py +25 -0
  17. jax_sklearn-0.1.0/.github/workflows/arm-unit-tests.yml +54 -0
  18. jax_sklearn-0.1.0/.github/workflows/artifact-redirector.yml +24 -0
  19. jax_sklearn-0.1.0/.github/workflows/assign.yml +30 -0
  20. jax_sklearn-0.1.0/.github/workflows/check-changelog.yml +36 -0
  21. jax_sklearn-0.1.0/.github/workflows/check-sdist.yml +35 -0
  22. jax_sklearn-0.1.0/.github/workflows/codeql.yml +73 -0
  23. jax_sklearn-0.1.0/.github/workflows/cuda-ci.yml +78 -0
  24. jax_sklearn-0.1.0/.github/workflows/cuda-label-remover.yml +23 -0
  25. jax_sklearn-0.1.0/.github/workflows/emscripten.yml +108 -0
  26. jax_sklearn-0.1.0/.github/workflows/label-blank-issue.yml +16 -0
  27. jax_sklearn-0.1.0/.github/workflows/labeler-module.yml +33 -0
  28. jax_sklearn-0.1.0/.github/workflows/labeler-title-regex.yml +27 -0
  29. jax_sklearn-0.1.0/.github/workflows/lint.yml +103 -0
  30. jax_sklearn-0.1.0/.github/workflows/publish_pypi.yml +51 -0
  31. jax_sklearn-0.1.0/.github/workflows/unassign.yml +24 -0
  32. jax_sklearn-0.1.0/.github/workflows/update-lock-files.yml +88 -0
  33. jax_sklearn-0.1.0/.github/workflows/update_tracking_issue.yml +51 -0
  34. jax_sklearn-0.1.0/.github/workflows/wheels.yml +276 -0
  35. jax_sklearn-0.1.0/.gitignore +99 -0
  36. jax_sklearn-0.1.0/.spin/cmds.py +29 -0
  37. jax_sklearn-0.1.0/COPYING +33 -0
  38. jax_sklearn-0.1.0/Makefile +27 -0
  39. jax_sklearn-0.1.0/PKG-INFO +402 -0
  40. jax_sklearn-0.1.0/README.md +299 -0
  41. jax_sklearn-0.1.0/asv_benchmarks/.gitignore +6 -0
  42. jax_sklearn-0.1.0/asv_benchmarks/asv.conf.json +146 -0
  43. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/__init__.py +1 -0
  44. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/cluster.py +104 -0
  45. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/common.py +256 -0
  46. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/config.json +33 -0
  47. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/datasets.py +168 -0
  48. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/decomposition.py +96 -0
  49. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/ensemble.py +121 -0
  50. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/linear_model.py +257 -0
  51. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/manifold.py +34 -0
  52. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/metrics.py +45 -0
  53. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/model_selection.py +84 -0
  54. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/neighbors.py +39 -0
  55. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/svm.py +30 -0
  56. jax_sklearn-0.1.0/asv_benchmarks/benchmarks/utils.py +47 -0
  57. jax_sklearn-0.1.0/azure-pipelines.yml +271 -0
  58. jax_sklearn-0.1.0/benchmarks/.gitignore +4 -0
  59. jax_sklearn-0.1.0/benchmarks/bench_20newsgroups.py +94 -0
  60. jax_sklearn-0.1.0/benchmarks/bench_covertype.py +234 -0
  61. jax_sklearn-0.1.0/benchmarks/bench_feature_expansions.py +58 -0
  62. jax_sklearn-0.1.0/benchmarks/bench_glm.py +57 -0
  63. jax_sklearn-0.1.0/benchmarks/bench_glmnet.py +140 -0
  64. jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting.py +292 -0
  65. jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_adult.py +100 -0
  66. jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_categorical_only.py +79 -0
  67. jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_higgsboson.py +127 -0
  68. jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_threading.py +347 -0
  69. jax_sklearn-0.1.0/benchmarks/bench_isolation_forest.py +164 -0
  70. jax_sklearn-0.1.0/benchmarks/bench_isolation_forest_predict.py +213 -0
  71. jax_sklearn-0.1.0/benchmarks/bench_isotonic.py +111 -0
  72. jax_sklearn-0.1.0/benchmarks/bench_kernel_pca_solvers_time_vs_n_components.py +177 -0
  73. jax_sklearn-0.1.0/benchmarks/bench_kernel_pca_solvers_time_vs_n_samples.py +183 -0
  74. jax_sklearn-0.1.0/benchmarks/bench_lasso.py +99 -0
  75. jax_sklearn-0.1.0/benchmarks/bench_lof.py +113 -0
  76. jax_sklearn-0.1.0/benchmarks/bench_mnist.py +229 -0
  77. jax_sklearn-0.1.0/benchmarks/bench_multilabel_metrics.py +227 -0
  78. jax_sklearn-0.1.0/benchmarks/bench_online_ocsvm.py +294 -0
  79. jax_sklearn-0.1.0/benchmarks/bench_pca_solvers.py +165 -0
  80. jax_sklearn-0.1.0/benchmarks/bench_plot_fastkmeans.py +141 -0
  81. jax_sklearn-0.1.0/benchmarks/bench_plot_hierarchical.py +77 -0
  82. jax_sklearn-0.1.0/benchmarks/bench_plot_incremental_pca.py +159 -0
  83. jax_sklearn-0.1.0/benchmarks/bench_plot_lasso_path.py +113 -0
  84. jax_sklearn-0.1.0/benchmarks/bench_plot_neighbors.py +191 -0
  85. jax_sklearn-0.1.0/benchmarks/bench_plot_nmf.py +472 -0
  86. jax_sklearn-0.1.0/benchmarks/bench_plot_omp_lars.py +120 -0
  87. jax_sklearn-0.1.0/benchmarks/bench_plot_parallel_pairwise.py +48 -0
  88. jax_sklearn-0.1.0/benchmarks/bench_plot_polynomial_kernel_approximation.py +176 -0
  89. jax_sklearn-0.1.0/benchmarks/bench_plot_randomized_svd.py +529 -0
  90. jax_sklearn-0.1.0/benchmarks/bench_plot_svd.py +80 -0
  91. jax_sklearn-0.1.0/benchmarks/bench_plot_ward.py +48 -0
  92. jax_sklearn-0.1.0/benchmarks/bench_random_projections.py +304 -0
  93. jax_sklearn-0.1.0/benchmarks/bench_rcv1_logreg_convergence.py +311 -0
  94. jax_sklearn-0.1.0/benchmarks/bench_saga.py +386 -0
  95. jax_sklearn-0.1.0/benchmarks/bench_sample_without_replacement.py +233 -0
  96. jax_sklearn-0.1.0/benchmarks/bench_sgd_regression.py +151 -0
  97. jax_sklearn-0.1.0/benchmarks/bench_sparsify.py +107 -0
  98. jax_sklearn-0.1.0/benchmarks/bench_text_vectorizers.py +74 -0
  99. jax_sklearn-0.1.0/benchmarks/bench_tree.py +123 -0
  100. jax_sklearn-0.1.0/benchmarks/bench_tsne_mnist.py +208 -0
  101. jax_sklearn-0.1.0/benchmarks/plot_tsne_mnist.py +33 -0
  102. jax_sklearn-0.1.0/build_tools/Makefile +4 -0
  103. jax_sklearn-0.1.0/build_tools/azure/combine_coverage_reports.sh +18 -0
  104. jax_sklearn-0.1.0/build_tools/azure/debian_32bit_lock.txt +41 -0
  105. jax_sklearn-0.1.0/build_tools/azure/debian_32bit_requirements.txt +10 -0
  106. jax_sklearn-0.1.0/build_tools/azure/get_commit_message.py +65 -0
  107. jax_sklearn-0.1.0/build_tools/azure/get_selected_tests.py +34 -0
  108. jax_sklearn-0.1.0/build_tools/azure/install.sh +138 -0
  109. jax_sklearn-0.1.0/build_tools/azure/install_setup_conda.sh +36 -0
  110. jax_sklearn-0.1.0/build_tools/azure/posix-all-parallel.yml +50 -0
  111. jax_sklearn-0.1.0/build_tools/azure/posix-docker.yml +134 -0
  112. jax_sklearn-0.1.0/build_tools/azure/posix.yml +109 -0
  113. jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_linux-64_conda.lock +248 -0
  114. jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_linux-64_environment.yml +31 -0
  115. jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_no_openmp_environment.yml +25 -0
  116. jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_no_openmp_osx-64_conda.lock +102 -0
  117. jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_osx-64_conda.lock +134 -0
  118. jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_osx-64_environment.yml +27 -0
  119. jax_sklearn-0.1.0/build_tools/azure/pylatest_free_threaded_environment.yml +18 -0
  120. jax_sklearn-0.1.0/build_tools/azure/pylatest_free_threaded_linux-64_conda.lock +63 -0
  121. jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_openblas_pandas_environment.yml +31 -0
  122. jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_openblas_pandas_linux-64_conda.lock +97 -0
  123. jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_scipy_dev_environment.yml +22 -0
  124. jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_scipy_dev_linux-64_conda.lock +76 -0
  125. jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_environment.yml +24 -0
  126. jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_min_dependencies_environment.yml +27 -0
  127. jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_min_dependencies_linux-64_conda.lock +231 -0
  128. jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_ubuntu_2204_environment.yml +24 -0
  129. jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_ubuntu_2204_linux-64_conda.lock +117 -0
  130. jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_win-64_conda.lock +115 -0
  131. jax_sklearn-0.1.0/build_tools/azure/test_docs.sh +19 -0
  132. jax_sklearn-0.1.0/build_tools/azure/test_pytest_soft_dependency.sh +24 -0
  133. jax_sklearn-0.1.0/build_tools/azure/test_script.sh +90 -0
  134. jax_sklearn-0.1.0/build_tools/azure/ubuntu_atlas_lock.txt +47 -0
  135. jax_sklearn-0.1.0/build_tools/azure/ubuntu_atlas_requirements.txt +10 -0
  136. jax_sklearn-0.1.0/build_tools/azure/upload_codecov.sh +59 -0
  137. jax_sklearn-0.1.0/build_tools/azure/windows.yml +102 -0
  138. jax_sklearn-0.1.0/build_tools/check-meson-openmp-dependencies.py +172 -0
  139. jax_sklearn-0.1.0/build_tools/circle/build_doc.sh +283 -0
  140. jax_sklearn-0.1.0/build_tools/circle/checkout_merge_commit.sh +32 -0
  141. jax_sklearn-0.1.0/build_tools/circle/doc_environment.yml +44 -0
  142. jax_sklearn-0.1.0/build_tools/circle/doc_linux-64_conda.lock +338 -0
  143. jax_sklearn-0.1.0/build_tools/circle/doc_min_dependencies_environment.yml +42 -0
  144. jax_sklearn-0.1.0/build_tools/circle/doc_min_dependencies_linux-64_conda.lock +296 -0
  145. jax_sklearn-0.1.0/build_tools/circle/download_documentation.sh +8 -0
  146. jax_sklearn-0.1.0/build_tools/circle/list_versions.py +142 -0
  147. jax_sklearn-0.1.0/build_tools/circle/push_doc.sh +65 -0
  148. jax_sklearn-0.1.0/build_tools/codespell_ignore_words.txt +56 -0
  149. jax_sklearn-0.1.0/build_tools/generate_authors_table.py +255 -0
  150. jax_sklearn-0.1.0/build_tools/get_comment.py +351 -0
  151. jax_sklearn-0.1.0/build_tools/github/build_minimal_windows_image.sh +51 -0
  152. jax_sklearn-0.1.0/build_tools/github/build_source.sh +20 -0
  153. jax_sklearn-0.1.0/build_tools/github/build_test_arm.sh +44 -0
  154. jax_sklearn-0.1.0/build_tools/github/check_build_trigger.sh +13 -0
  155. jax_sklearn-0.1.0/build_tools/github/check_wheels.py +30 -0
  156. jax_sklearn-0.1.0/build_tools/github/create_gpu_environment.sh +20 -0
  157. jax_sklearn-0.1.0/build_tools/github/pylatest_conda_forge_cuda_array-api_linux-64_conda.lock +256 -0
  158. jax_sklearn-0.1.0/build_tools/github/pylatest_conda_forge_cuda_array-api_linux-64_environment.yml +32 -0
  159. jax_sklearn-0.1.0/build_tools/github/pymin_conda_forge_arm_environment.yml +22 -0
  160. jax_sklearn-0.1.0/build_tools/github/pymin_conda_forge_arm_linux-aarch64_conda.lock +161 -0
  161. jax_sklearn-0.1.0/build_tools/github/repair_windows_wheels.sh +16 -0
  162. jax_sklearn-0.1.0/build_tools/github/test_source.sh +18 -0
  163. jax_sklearn-0.1.0/build_tools/github/test_windows_wheels.sh +30 -0
  164. jax_sklearn-0.1.0/build_tools/github/upload_anaconda.sh +21 -0
  165. jax_sklearn-0.1.0/build_tools/github/vendor.py +96 -0
  166. jax_sklearn-0.1.0/build_tools/linting.sh +123 -0
  167. jax_sklearn-0.1.0/build_tools/shared.sh +51 -0
  168. jax_sklearn-0.1.0/build_tools/update_environments_and_lock_files.py +773 -0
  169. jax_sklearn-0.1.0/build_tools/wheels/LICENSE_linux.txt +80 -0
  170. jax_sklearn-0.1.0/build_tools/wheels/LICENSE_macos.txt +286 -0
  171. jax_sklearn-0.1.0/build_tools/wheels/LICENSE_windows.txt +25 -0
  172. jax_sklearn-0.1.0/build_tools/wheels/build_wheels.sh +57 -0
  173. jax_sklearn-0.1.0/build_tools/wheels/check_license.py +30 -0
  174. jax_sklearn-0.1.0/build_tools/wheels/cibw_before_build.sh +18 -0
  175. jax_sklearn-0.1.0/build_tools/wheels/test_wheels.sh +30 -0
  176. jax_sklearn-0.1.0/doc/Makefile +153 -0
  177. jax_sklearn-0.1.0/doc/README.md +6 -0
  178. jax_sklearn-0.1.0/doc/about.rst +681 -0
  179. jax_sklearn-0.1.0/doc/api/deprecated.rst.template +24 -0
  180. jax_sklearn-0.1.0/doc/api/index.rst.template +77 -0
  181. jax_sklearn-0.1.0/doc/api/module.rst.template +46 -0
  182. jax_sklearn-0.1.0/doc/api_reference.py +1352 -0
  183. jax_sklearn-0.1.0/doc/binder/requirements.txt +5 -0
  184. jax_sklearn-0.1.0/doc/common_pitfalls.rst +574 -0
  185. jax_sklearn-0.1.0/doc/communication_team.rst +16 -0
  186. jax_sklearn-0.1.0/doc/communication_team_emeritus.rst +1 -0
  187. jax_sklearn-0.1.0/doc/computing/computational_performance.rst +366 -0
  188. jax_sklearn-0.1.0/doc/computing/parallelism.rst +338 -0
  189. jax_sklearn-0.1.0/doc/computing/scaling_strategies.rst +136 -0
  190. jax_sklearn-0.1.0/doc/computing.rst +10 -0
  191. jax_sklearn-0.1.0/doc/conf.py +1092 -0
  192. jax_sklearn-0.1.0/doc/conftest.py +179 -0
  193. jax_sklearn-0.1.0/doc/contributor_experience_team.rst +52 -0
  194. jax_sklearn-0.1.0/doc/contributor_experience_team_emeritus.rst +1 -0
  195. jax_sklearn-0.1.0/doc/css/.gitkeep +0 -0
  196. jax_sklearn-0.1.0/doc/data_transforms.rst +35 -0
  197. jax_sklearn-0.1.0/doc/datasets/loading_other_datasets.rst +317 -0
  198. jax_sklearn-0.1.0/doc/datasets/real_world.rst +40 -0
  199. jax_sklearn-0.1.0/doc/datasets/sample_generators.rst +181 -0
  200. jax_sklearn-0.1.0/doc/datasets/toy_dataset.rst +36 -0
  201. jax_sklearn-0.1.0/doc/datasets.rst +62 -0
  202. jax_sklearn-0.1.0/doc/developers/advanced_installation.rst +417 -0
  203. jax_sklearn-0.1.0/doc/developers/bug_triaging.rst +159 -0
  204. jax_sklearn-0.1.0/doc/developers/contributing.rst +1596 -0
  205. jax_sklearn-0.1.0/doc/developers/cython.rst +154 -0
  206. jax_sklearn-0.1.0/doc/developers/develop.rst +794 -0
  207. jax_sklearn-0.1.0/doc/developers/index.rst +19 -0
  208. jax_sklearn-0.1.0/doc/developers/maintainer.rst.template +486 -0
  209. jax_sklearn-0.1.0/doc/developers/minimal_reproducer.rst +434 -0
  210. jax_sklearn-0.1.0/doc/developers/performance.rst +406 -0
  211. jax_sklearn-0.1.0/doc/developers/plotting.rst +97 -0
  212. jax_sklearn-0.1.0/doc/developers/tips.rst +418 -0
  213. jax_sklearn-0.1.0/doc/developers/utilities.rst +242 -0
  214. jax_sklearn-0.1.0/doc/dispatching.rst +8 -0
  215. jax_sklearn-0.1.0/doc/documentation_team.rst +24 -0
  216. jax_sklearn-0.1.0/doc/faq.rst +548 -0
  217. jax_sklearn-0.1.0/doc/getting_started.rst +235 -0
  218. jax_sklearn-0.1.0/doc/glossary.rst +1898 -0
  219. jax_sklearn-0.1.0/doc/governance.rst +201 -0
  220. jax_sklearn-0.1.0/doc/images/Tidelift-logo-on-light.svg +33 -0
  221. jax_sklearn-0.1.0/doc/images/axa-small.png +0 -0
  222. jax_sklearn-0.1.0/doc/images/axa.png +0 -0
  223. jax_sklearn-0.1.0/doc/images/bcg.png +0 -0
  224. jax_sklearn-0.1.0/doc/images/beta_divergence.png +0 -0
  225. jax_sklearn-0.1.0/doc/images/bnp-small.png +0 -0
  226. jax_sklearn-0.1.0/doc/images/bnp.png +0 -0
  227. jax_sklearn-0.1.0/doc/images/cds-logo.png +0 -0
  228. jax_sklearn-0.1.0/doc/images/chanel-small.png +0 -0
  229. jax_sklearn-0.1.0/doc/images/chanel.png +0 -0
  230. jax_sklearn-0.1.0/doc/images/columbia-small.png +0 -0
  231. jax_sklearn-0.1.0/doc/images/columbia.png +0 -0
  232. jax_sklearn-0.1.0/doc/images/czi-small.png +0 -0
  233. jax_sklearn-0.1.0/doc/images/czi.png +0 -0
  234. jax_sklearn-0.1.0/doc/images/dataiku-small.png +0 -0
  235. jax_sklearn-0.1.0/doc/images/dataiku.png +0 -0
  236. jax_sklearn-0.1.0/doc/images/digicosme.png +0 -0
  237. jax_sklearn-0.1.0/doc/images/dysco.png +0 -0
  238. jax_sklearn-0.1.0/doc/images/fnrs-logo-small.png +0 -0
  239. jax_sklearn-0.1.0/doc/images/fujitsu.png +0 -0
  240. jax_sklearn-0.1.0/doc/images/generated-doc-ci.png +0 -0
  241. jax_sklearn-0.1.0/doc/images/google-small.png +0 -0
  242. jax_sklearn-0.1.0/doc/images/grid_search_cross_validation.png +0 -0
  243. jax_sklearn-0.1.0/doc/images/grid_search_workflow.png +0 -0
  244. jax_sklearn-0.1.0/doc/images/huggingface_logo-noborder.png +0 -0
  245. jax_sklearn-0.1.0/doc/images/inria-logo.jpg +0 -0
  246. jax_sklearn-0.1.0/doc/images/inria-small.png +0 -0
  247. jax_sklearn-0.1.0/doc/images/intel-small.png +0 -0
  248. jax_sklearn-0.1.0/doc/images/intel.png +0 -0
  249. jax_sklearn-0.1.0/doc/images/iris.pdf +0 -0
  250. jax_sklearn-0.1.0/doc/images/iris.svg +239 -0
  251. jax_sklearn-0.1.0/doc/images/last_digit.png +0 -0
  252. jax_sklearn-0.1.0/doc/images/lda_model_graph.png +0 -0
  253. jax_sklearn-0.1.0/doc/images/logo_APHP.png +0 -0
  254. jax_sklearn-0.1.0/doc/images/logo_APHP_text.png +0 -0
  255. jax_sklearn-0.1.0/doc/images/microsoft-small.png +0 -0
  256. jax_sklearn-0.1.0/doc/images/microsoft.png +0 -0
  257. jax_sklearn-0.1.0/doc/images/ml_map.README.rst +24 -0
  258. jax_sklearn-0.1.0/doc/images/ml_map.svg +4 -0
  259. jax_sklearn-0.1.0/doc/images/multi_org_chart.png +0 -0
  260. jax_sklearn-0.1.0/doc/images/multilayerperceptron_network.png +0 -0
  261. jax_sklearn-0.1.0/doc/images/no_image.png +0 -0
  262. jax_sklearn-0.1.0/doc/images/nvidia-small.png +0 -0
  263. jax_sklearn-0.1.0/doc/images/nvidia.png +0 -0
  264. jax_sklearn-0.1.0/doc/images/nyu_short_color.png +0 -0
  265. jax_sklearn-0.1.0/doc/images/permuted_non_predictive_feature.png +0 -0
  266. jax_sklearn-0.1.0/doc/images/permuted_predictive_feature.png +0 -0
  267. jax_sklearn-0.1.0/doc/images/plot_digits_classification.png +0 -0
  268. jax_sklearn-0.1.0/doc/images/plot_face_recognition_1.png +0 -0
  269. jax_sklearn-0.1.0/doc/images/plot_face_recognition_2.png +0 -0
  270. jax_sklearn-0.1.0/doc/images/png-logo-inria-la-fondation.png +0 -0
  271. jax_sklearn-0.1.0/doc/images/probabl.png +0 -0
  272. jax_sklearn-0.1.0/doc/images/quansight-labs-small.png +0 -0
  273. jax_sklearn-0.1.0/doc/images/quansight-labs.png +0 -0
  274. jax_sklearn-0.1.0/doc/images/rbm_graph.png +0 -0
  275. jax_sklearn-0.1.0/doc/images/scikit-learn-logo-notext.png +0 -0
  276. jax_sklearn-0.1.0/doc/images/scikit-learn-logo-small.png +0 -0
  277. jax_sklearn-0.1.0/doc/images/sloan_banner.png +0 -0
  278. jax_sklearn-0.1.0/doc/images/sloan_logo-small.png +0 -0
  279. jax_sklearn-0.1.0/doc/images/sydney-primary.jpeg +0 -0
  280. jax_sklearn-0.1.0/doc/images/sydney-stacked-small.png +0 -0
  281. jax_sklearn-0.1.0/doc/images/target_encoder_cross_validation.svg +3 -0
  282. jax_sklearn-0.1.0/doc/images/telecom-small.png +0 -0
  283. jax_sklearn-0.1.0/doc/images/telecom.png +0 -0
  284. jax_sklearn-0.1.0/doc/images/visual-studio-build-tools-selection.png +0 -0
  285. jax_sklearn-0.1.0/doc/images/wellcome-trust-small.png +0 -0
  286. jax_sklearn-0.1.0/doc/images/wellcome-trust.png +0 -0
  287. jax_sklearn-0.1.0/doc/index.rst.template +24 -0
  288. jax_sklearn-0.1.0/doc/inspection.rst +25 -0
  289. jax_sklearn-0.1.0/doc/install.rst +399 -0
  290. jax_sklearn-0.1.0/doc/install_instructions_conda.rst +16 -0
  291. jax_sklearn-0.1.0/doc/js/scripts/api-search.js +12 -0
  292. jax_sklearn-0.1.0/doc/js/scripts/dropdown.js +63 -0
  293. jax_sklearn-0.1.0/doc/js/scripts/sg_plotly_resize.js +10 -0
  294. jax_sklearn-0.1.0/doc/js/scripts/vendor/svg-pan-zoom.min.js +31 -0
  295. jax_sklearn-0.1.0/doc/js/scripts/version-switcher.js +40 -0
  296. jax_sklearn-0.1.0/doc/jupyter-lite.json +10 -0
  297. jax_sklearn-0.1.0/doc/jupyter_lite_config.json +5 -0
  298. jax_sklearn-0.1.0/doc/logos/1280px-scikit-learn-logo.png +0 -0
  299. jax_sklearn-0.1.0/doc/logos/README.md +66 -0
  300. jax_sklearn-0.1.0/doc/logos/brand_colors/colorswatch_29ABE2_cyan.png +0 -0
  301. jax_sklearn-0.1.0/doc/logos/brand_colors/colorswatch_9B4600_brown.png +0 -0
  302. jax_sklearn-0.1.0/doc/logos/brand_colors/colorswatch_F7931E_orange.png +0 -0
  303. jax_sklearn-0.1.0/doc/logos/brand_guidelines/scikitlearn_logo_clearspace_updated.png +0 -0
  304. jax_sklearn-0.1.0/doc/logos/favicon.ico +0 -0
  305. jax_sklearn-0.1.0/doc/logos/identity.pdf +0 -0
  306. jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-notext.png +0 -0
  307. jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-small.png +0 -0
  308. jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-thumb.png +0 -0
  309. jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-without-subtitle.svg +1 -0
  310. jax_sklearn-0.1.0/doc/logos/scikit-learn-logo.bmp +0 -0
  311. jax_sklearn-0.1.0/doc/logos/scikit-learn-logo.png +0 -0
  312. jax_sklearn-0.1.0/doc/logos/scikit-learn-logo.svg +1 -0
  313. jax_sklearn-0.1.0/doc/machine_learning_map.rst +76 -0
  314. jax_sklearn-0.1.0/doc/maintainers.rst +84 -0
  315. jax_sklearn-0.1.0/doc/maintainers_emeritus.rst +42 -0
  316. jax_sklearn-0.1.0/doc/make.bat +144 -0
  317. jax_sklearn-0.1.0/doc/metadata_routing.rst +326 -0
  318. jax_sklearn-0.1.0/doc/min_dependency_substitutions.rst.template +3 -0
  319. jax_sklearn-0.1.0/doc/min_dependency_table.rst.template +13 -0
  320. jax_sklearn-0.1.0/doc/model_persistence.rst +394 -0
  321. jax_sklearn-0.1.0/doc/model_selection.rst +13 -0
  322. jax_sklearn-0.1.0/doc/modules/array_api.rst +330 -0
  323. jax_sklearn-0.1.0/doc/modules/biclustering.rst +306 -0
  324. jax_sklearn-0.1.0/doc/modules/calibration.rst +326 -0
  325. jax_sklearn-0.1.0/doc/modules/classification_threshold.rst +159 -0
  326. jax_sklearn-0.1.0/doc/modules/clustering.rst +2237 -0
  327. jax_sklearn-0.1.0/doc/modules/compose.rst +615 -0
  328. jax_sklearn-0.1.0/doc/modules/covariance.rst +351 -0
  329. jax_sklearn-0.1.0/doc/modules/cross_decomposition.rst +189 -0
  330. jax_sklearn-0.1.0/doc/modules/cross_validation.rst +1026 -0
  331. jax_sklearn-0.1.0/doc/modules/decomposition.rst +1097 -0
  332. jax_sklearn-0.1.0/doc/modules/density.rst +187 -0
  333. jax_sklearn-0.1.0/doc/modules/ensemble.rst +1724 -0
  334. jax_sklearn-0.1.0/doc/modules/feature_extraction.rst +1077 -0
  335. jax_sklearn-0.1.0/doc/modules/feature_selection.rst +352 -0
  336. jax_sklearn-0.1.0/doc/modules/gaussian_process.rst +503 -0
  337. jax_sklearn-0.1.0/doc/modules/glm_data/lasso_enet_coordinate_descent.png +0 -0
  338. jax_sklearn-0.1.0/doc/modules/glm_data/poisson_gamma_tweedie_distributions.png +0 -0
  339. jax_sklearn-0.1.0/doc/modules/grid_search.rst +747 -0
  340. jax_sklearn-0.1.0/doc/modules/impute.rst +360 -0
  341. jax_sklearn-0.1.0/doc/modules/isotonic.rst +37 -0
  342. jax_sklearn-0.1.0/doc/modules/kernel_approximation.rst +315 -0
  343. jax_sklearn-0.1.0/doc/modules/kernel_ridge.rst +65 -0
  344. jax_sklearn-0.1.0/doc/modules/lda_qda.rst +265 -0
  345. jax_sklearn-0.1.0/doc/modules/learning_curve.rst +187 -0
  346. jax_sklearn-0.1.0/doc/modules/linear_model.rst +1853 -0
  347. jax_sklearn-0.1.0/doc/modules/manifold.rst +693 -0
  348. jax_sklearn-0.1.0/doc/modules/metrics.rst +231 -0
  349. jax_sklearn-0.1.0/doc/modules/mixture.rst +350 -0
  350. jax_sklearn-0.1.0/doc/modules/model_evaluation.rst +3209 -0
  351. jax_sklearn-0.1.0/doc/modules/multiclass.rst +617 -0
  352. jax_sklearn-0.1.0/doc/modules/naive_bayes.rst +290 -0
  353. jax_sklearn-0.1.0/doc/modules/neighbors.rst +843 -0
  354. jax_sklearn-0.1.0/doc/modules/neural_networks_supervised.rst +371 -0
  355. jax_sklearn-0.1.0/doc/modules/neural_networks_unsupervised.rst +161 -0
  356. jax_sklearn-0.1.0/doc/modules/outlier_detection.rst +420 -0
  357. jax_sklearn-0.1.0/doc/modules/partial_dependence.rst +291 -0
  358. jax_sklearn-0.1.0/doc/modules/permutation_importance.rst +236 -0
  359. jax_sklearn-0.1.0/doc/modules/pipeline.rst +10 -0
  360. jax_sklearn-0.1.0/doc/modules/preprocessing.rst +1309 -0
  361. jax_sklearn-0.1.0/doc/modules/preprocessing_targets.rst +102 -0
  362. jax_sklearn-0.1.0/doc/modules/random_projection.rst +200 -0
  363. jax_sklearn-0.1.0/doc/modules/semi_supervised.rst +151 -0
  364. jax_sklearn-0.1.0/doc/modules/sgd.rst +584 -0
  365. jax_sklearn-0.1.0/doc/modules/svm.rst +817 -0
  366. jax_sklearn-0.1.0/doc/modules/tree.rst +715 -0
  367. jax_sklearn-0.1.0/doc/modules/unsupervised_reduction.rst +59 -0
  368. jax_sklearn-0.1.0/doc/presentations.rst +60 -0
  369. jax_sklearn-0.1.0/doc/related_projects.rst +353 -0
  370. jax_sklearn-0.1.0/doc/roadmap.rst +200 -0
  371. jax_sklearn-0.1.0/doc/scss/api-search.scss +111 -0
  372. jax_sklearn-0.1.0/doc/scss/api.scss +52 -0
  373. jax_sklearn-0.1.0/doc/scss/colors.scss +51 -0
  374. jax_sklearn-0.1.0/doc/scss/custom.scss +264 -0
  375. jax_sklearn-0.1.0/doc/scss/index.scss +176 -0
  376. jax_sklearn-0.1.0/doc/sphinxext/MANIFEST.in +2 -0
  377. jax_sklearn-0.1.0/doc/sphinxext/allow_nan_estimators.py +58 -0
  378. jax_sklearn-0.1.0/doc/sphinxext/autoshortsummary.py +53 -0
  379. jax_sklearn-0.1.0/doc/sphinxext/doi_role.py +47 -0
  380. jax_sklearn-0.1.0/doc/sphinxext/dropdown_anchors.py +58 -0
  381. jax_sklearn-0.1.0/doc/sphinxext/github_link.py +84 -0
  382. jax_sklearn-0.1.0/doc/sphinxext/override_pst_pagetoc.py +84 -0
  383. jax_sklearn-0.1.0/doc/sphinxext/sphinx_issues.py +218 -0
  384. jax_sklearn-0.1.0/doc/supervised_learning.rst +25 -0
  385. jax_sklearn-0.1.0/doc/support.rst +132 -0
  386. jax_sklearn-0.1.0/doc/templates/base.rst +36 -0
  387. jax_sklearn-0.1.0/doc/templates/index.html +313 -0
  388. jax_sklearn-0.1.0/doc/templates/numpydoc_docstring.rst +16 -0
  389. jax_sklearn-0.1.0/doc/templates/redirects.html +15 -0
  390. jax_sklearn-0.1.0/doc/testimonials/README.txt +7 -0
  391. jax_sklearn-0.1.0/doc/testimonials/images/Makefile +0 -0
  392. jax_sklearn-0.1.0/doc/testimonials/images/aweber.png +0 -0
  393. jax_sklearn-0.1.0/doc/testimonials/images/bestofmedia-logo.png +0 -0
  394. jax_sklearn-0.1.0/doc/testimonials/images/betaworks.png +0 -0
  395. jax_sklearn-0.1.0/doc/testimonials/images/birchbox.jpg +0 -0
  396. jax_sklearn-0.1.0/doc/testimonials/images/bnp_paribas_cardif.png +0 -0
  397. jax_sklearn-0.1.0/doc/testimonials/images/booking.png +0 -0
  398. jax_sklearn-0.1.0/doc/testimonials/images/change-logo.png +0 -0
  399. jax_sklearn-0.1.0/doc/testimonials/images/dataiku_logo.png +0 -0
  400. jax_sklearn-0.1.0/doc/testimonials/images/datapublica.png +0 -0
  401. jax_sklearn-0.1.0/doc/testimonials/images/datarobot.png +0 -0
  402. jax_sklearn-0.1.0/doc/testimonials/images/evernote.png +0 -0
  403. jax_sklearn-0.1.0/doc/testimonials/images/howaboutwe.png +0 -0
  404. jax_sklearn-0.1.0/doc/testimonials/images/huggingface.png +0 -0
  405. jax_sklearn-0.1.0/doc/testimonials/images/infonea.jpg +0 -0
  406. jax_sklearn-0.1.0/doc/testimonials/images/inria.png +0 -0
  407. jax_sklearn-0.1.0/doc/testimonials/images/jpmorgan.png +0 -0
  408. jax_sklearn-0.1.0/doc/testimonials/images/lovely.png +0 -0
  409. jax_sklearn-0.1.0/doc/testimonials/images/machinalis.png +0 -0
  410. jax_sklearn-0.1.0/doc/testimonials/images/mars.png +0 -0
  411. jax_sklearn-0.1.0/doc/testimonials/images/okcupid.png +0 -0
  412. jax_sklearn-0.1.0/doc/testimonials/images/ottogroup_logo.png +0 -0
  413. jax_sklearn-0.1.0/doc/testimonials/images/peerindex.png +0 -0
  414. jax_sklearn-0.1.0/doc/testimonials/images/phimeca.png +0 -0
  415. jax_sklearn-0.1.0/doc/testimonials/images/rangespan.png +0 -0
  416. jax_sklearn-0.1.0/doc/testimonials/images/solido_logo.png +0 -0
  417. jax_sklearn-0.1.0/doc/testimonials/images/spotify.png +0 -0
  418. jax_sklearn-0.1.0/doc/testimonials/images/telecomparistech.jpg +0 -0
  419. jax_sklearn-0.1.0/doc/testimonials/images/yhat.png +0 -0
  420. jax_sklearn-0.1.0/doc/testimonials/images/zopa.png +0 -0
  421. jax_sklearn-0.1.0/doc/testimonials/testimonials.rst +752 -0
  422. jax_sklearn-0.1.0/doc/unsupervised_learning.rst +17 -0
  423. jax_sklearn-0.1.0/doc/user_guide.rst +24 -0
  424. jax_sklearn-0.1.0/doc/visualizations.rst +138 -0
  425. jax_sklearn-0.1.0/doc/whats_new/_contributors.rst +181 -0
  426. jax_sklearn-0.1.0/doc/whats_new/changelog_legend.inc +11 -0
  427. jax_sklearn-0.1.0/doc/whats_new/older_versions.rst +1388 -0
  428. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/.gitkeep +0 -0
  429. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/README.md +52 -0
  430. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/array-api/.gitkeep +0 -0
  431. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/changed-models/.gitkeep +0 -0
  432. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/custom-top-level/.gitkeep +0 -0
  433. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/many-modules/.gitkeep +0 -0
  434. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/metadata-routing/.gitkeep +0 -0
  435. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/security/.gitkeep +0 -0
  436. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.base/.gitkeep +0 -0
  437. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.calibration/.gitkeep +0 -0
  438. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.cluster/.gitkeep +0 -0
  439. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.compose/.gitkeep +0 -0
  440. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.covariance/.gitkeep +0 -0
  441. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.cross_decomposition/.gitkeep +0 -0
  442. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.datasets/.gitkeep +0 -0
  443. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.decomposition/.gitkeep +0 -0
  444. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.discriminant_analysis/.gitkeep +0 -0
  445. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.dummy/.gitkeep +0 -0
  446. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.ensemble/.gitkeep +0 -0
  447. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.exceptions/.gitkeep +0 -0
  448. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.feature_extraction/.gitkeep +0 -0
  449. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.feature_selection/.gitkeep +0 -0
  450. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.frozen/.gitkeep +0 -0
  451. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.gaussian_process/.gitkeep +0 -0
  452. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.impute/.gitkeep +0 -0
  453. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.inspection/.gitkeep +0 -0
  454. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.isotonic/.gitkeep +0 -0
  455. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.kernel_approximation/.gitkeep +0 -0
  456. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.kernel_ridge/.gitkeep +0 -0
  457. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.linear_model/.gitkeep +0 -0
  458. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.manifold/.gitkeep +0 -0
  459. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.metrics/.gitkeep +0 -0
  460. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.mixture/.gitkeep +0 -0
  461. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.model_selection/.gitkeep +0 -0
  462. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.multiclass/.gitkeep +0 -0
  463. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.multioutput/.gitkeep +0 -0
  464. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.naive_bayes/.gitkeep +0 -0
  465. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.neighbors/.gitkeep +0 -0
  466. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.neural_network/.gitkeep +0 -0
  467. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.pipeline/.gitkeep +0 -0
  468. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.preprocessing/.gitkeep +0 -0
  469. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.random_projection/.gitkeep +0 -0
  470. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.semi_supervised/.gitkeep +0 -0
  471. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.svm/.gitkeep +0 -0
  472. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.tree/.gitkeep +0 -0
  473. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.utils/.gitkeep +0 -0
  474. jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/towncrier_template.rst.jinja2 +49 -0
  475. jax_sklearn-0.1.0/doc/whats_new/v0.13.rst +396 -0
  476. jax_sklearn-0.1.0/doc/whats_new/v0.14.rst +391 -0
  477. jax_sklearn-0.1.0/doc/whats_new/v0.15.rst +625 -0
  478. jax_sklearn-0.1.0/doc/whats_new/v0.16.rst +544 -0
  479. jax_sklearn-0.1.0/doc/whats_new/v0.17.rst +515 -0
  480. jax_sklearn-0.1.0/doc/whats_new/v0.18.rst +814 -0
  481. jax_sklearn-0.1.0/doc/whats_new/v0.19.rst +1072 -0
  482. jax_sklearn-0.1.0/doc/whats_new/v0.20.rst +1749 -0
  483. jax_sklearn-0.1.0/doc/whats_new/v0.21.rst +1120 -0
  484. jax_sklearn-0.1.0/doc/whats_new/v0.22.rst +1169 -0
  485. jax_sklearn-0.1.0/doc/whats_new/v0.23.rst +862 -0
  486. jax_sklearn-0.1.0/doc/whats_new/v0.24.rst +1071 -0
  487. jax_sklearn-0.1.0/doc/whats_new/v1.0.rst +1278 -0
  488. jax_sklearn-0.1.0/doc/whats_new/v1.1.rst +1409 -0
  489. jax_sklearn-0.1.0/doc/whats_new/v1.2.rst +1071 -0
  490. jax_sklearn-0.1.0/doc/whats_new/v1.3.rst +1003 -0
  491. jax_sklearn-0.1.0/doc/whats_new/v1.4.rst +1034 -0
  492. jax_sklearn-0.1.0/doc/whats_new/v1.5.rst +714 -0
  493. jax_sklearn-0.1.0/doc/whats_new/v1.6.rst +785 -0
  494. jax_sklearn-0.1.0/doc/whats_new/v1.7.rst +575 -0
  495. jax_sklearn-0.1.0/doc/whats_new.rst +38 -0
  496. jax_sklearn-0.1.0/examples/README.txt +9 -0
  497. jax_sklearn-0.1.0/examples/applications/README.txt +7 -0
  498. jax_sklearn-0.1.0/examples/applications/plot_cyclical_feature_engineering.py +836 -0
  499. jax_sklearn-0.1.0/examples/applications/plot_digits_denoising.py +151 -0
  500. jax_sklearn-0.1.0/examples/applications/plot_face_recognition.py +162 -0
  501. jax_sklearn-0.1.0/examples/applications/plot_model_complexity_influence.py +292 -0
  502. jax_sklearn-0.1.0/examples/applications/plot_out_of_core_classification.py +432 -0
  503. jax_sklearn-0.1.0/examples/applications/plot_outlier_detection_wine.py +137 -0
  504. jax_sklearn-0.1.0/examples/applications/plot_prediction_latency.py +348 -0
  505. jax_sklearn-0.1.0/examples/applications/plot_species_distribution_modeling.py +246 -0
  506. jax_sklearn-0.1.0/examples/applications/plot_stock_market.py +274 -0
  507. jax_sklearn-0.1.0/examples/applications/plot_time_series_lagged_features.py +438 -0
  508. jax_sklearn-0.1.0/examples/applications/plot_tomography_l1_reconstruction.py +145 -0
  509. jax_sklearn-0.1.0/examples/applications/plot_topics_extraction_with_nmf_lda.py +224 -0
  510. jax_sklearn-0.1.0/examples/applications/wikipedia_principal_eigenvector.py +228 -0
  511. jax_sklearn-0.1.0/examples/bicluster/README.txt +6 -0
  512. jax_sklearn-0.1.0/examples/bicluster/plot_bicluster_newsgroups.py +163 -0
  513. jax_sklearn-0.1.0/examples/bicluster/plot_spectral_biclustering.py +123 -0
  514. jax_sklearn-0.1.0/examples/bicluster/plot_spectral_coclustering.py +56 -0
  515. jax_sklearn-0.1.0/examples/calibration/README.txt +6 -0
  516. jax_sklearn-0.1.0/examples/calibration/plot_calibration.py +140 -0
  517. jax_sklearn-0.1.0/examples/calibration/plot_calibration_curve.py +336 -0
  518. jax_sklearn-0.1.0/examples/calibration/plot_calibration_multiclass.py +304 -0
  519. jax_sklearn-0.1.0/examples/calibration/plot_compare_calibration.py +282 -0
  520. jax_sklearn-0.1.0/examples/classification/README.txt +6 -0
  521. jax_sklearn-0.1.0/examples/classification/plot_classification_probability.py +241 -0
  522. jax_sklearn-0.1.0/examples/classification/plot_classifier_comparison.py +157 -0
  523. jax_sklearn-0.1.0/examples/classification/plot_digits_classification.py +128 -0
  524. jax_sklearn-0.1.0/examples/classification/plot_lda.py +107 -0
  525. jax_sklearn-0.1.0/examples/classification/plot_lda_qda.py +228 -0
  526. jax_sklearn-0.1.0/examples/cluster/README.txt +6 -0
  527. jax_sklearn-0.1.0/examples/cluster/plot_adjusted_for_chance_measures.py +229 -0
  528. jax_sklearn-0.1.0/examples/cluster/plot_affinity_propagation.py +78 -0
  529. jax_sklearn-0.1.0/examples/cluster/plot_agglomerative_clustering.py +84 -0
  530. jax_sklearn-0.1.0/examples/cluster/plot_agglomerative_clustering_metrics.py +146 -0
  531. jax_sklearn-0.1.0/examples/cluster/plot_agglomerative_dendrogram.py +55 -0
  532. jax_sklearn-0.1.0/examples/cluster/plot_birch_vs_minibatchkmeans.py +108 -0
  533. jax_sklearn-0.1.0/examples/cluster/plot_bisect_kmeans.py +68 -0
  534. jax_sklearn-0.1.0/examples/cluster/plot_cluster_comparison.py +287 -0
  535. jax_sklearn-0.1.0/examples/cluster/plot_coin_segmentation.py +104 -0
  536. jax_sklearn-0.1.0/examples/cluster/plot_coin_ward_segmentation.py +92 -0
  537. jax_sklearn-0.1.0/examples/cluster/plot_dbscan.py +132 -0
  538. jax_sklearn-0.1.0/examples/cluster/plot_dict_face_patches.py +94 -0
  539. jax_sklearn-0.1.0/examples/cluster/plot_digits_agglomeration.py +58 -0
  540. jax_sklearn-0.1.0/examples/cluster/plot_digits_linkage.py +88 -0
  541. jax_sklearn-0.1.0/examples/cluster/plot_face_compress.py +190 -0
  542. jax_sklearn-0.1.0/examples/cluster/plot_feature_agglomeration_vs_univariate_selection.py +113 -0
  543. jax_sklearn-0.1.0/examples/cluster/plot_hdbscan.py +249 -0
  544. jax_sklearn-0.1.0/examples/cluster/plot_inductive_clustering.py +129 -0
  545. jax_sklearn-0.1.0/examples/cluster/plot_kmeans_assumptions.py +178 -0
  546. jax_sklearn-0.1.0/examples/cluster/plot_kmeans_digits.py +206 -0
  547. jax_sklearn-0.1.0/examples/cluster/plot_kmeans_plusplus.py +45 -0
  548. jax_sklearn-0.1.0/examples/cluster/plot_kmeans_silhouette_analysis.py +162 -0
  549. jax_sklearn-0.1.0/examples/cluster/plot_kmeans_stability_low_dim_dense.py +132 -0
  550. jax_sklearn-0.1.0/examples/cluster/plot_linkage_comparison.py +178 -0
  551. jax_sklearn-0.1.0/examples/cluster/plot_mean_shift.py +69 -0
  552. jax_sklearn-0.1.0/examples/cluster/plot_mini_batch_kmeans.py +147 -0
  553. jax_sklearn-0.1.0/examples/cluster/plot_optics.py +108 -0
  554. jax_sklearn-0.1.0/examples/cluster/plot_segmentation_toy.py +118 -0
  555. jax_sklearn-0.1.0/examples/cluster/plot_ward_structured_vs_unstructured.py +128 -0
  556. jax_sklearn-0.1.0/examples/compose/README.txt +6 -0
  557. jax_sklearn-0.1.0/examples/compose/plot_column_transformer.py +186 -0
  558. jax_sklearn-0.1.0/examples/compose/plot_column_transformer_mixed_types.py +231 -0
  559. jax_sklearn-0.1.0/examples/compose/plot_compare_reduction.py +132 -0
  560. jax_sklearn-0.1.0/examples/compose/plot_digits_pipe.py +85 -0
  561. jax_sklearn-0.1.0/examples/compose/plot_feature_union.py +61 -0
  562. jax_sklearn-0.1.0/examples/compose/plot_transformed_target.py +233 -0
  563. jax_sklearn-0.1.0/examples/covariance/README.txt +6 -0
  564. jax_sklearn-0.1.0/examples/covariance/plot_covariance_estimation.py +159 -0
  565. jax_sklearn-0.1.0/examples/covariance/plot_lw_vs_oas.py +108 -0
  566. jax_sklearn-0.1.0/examples/covariance/plot_mahalanobis_distances.py +216 -0
  567. jax_sklearn-0.1.0/examples/covariance/plot_robust_vs_empirical_covariance.py +189 -0
  568. jax_sklearn-0.1.0/examples/covariance/plot_sparse_cov.py +158 -0
  569. jax_sklearn-0.1.0/examples/cross_decomposition/README.txt +6 -0
  570. jax_sklearn-0.1.0/examples/cross_decomposition/plot_compare_cross_decomposition.py +174 -0
  571. jax_sklearn-0.1.0/examples/cross_decomposition/plot_pcr_vs_pls.py +169 -0
  572. jax_sklearn-0.1.0/examples/datasets/README.txt +6 -0
  573. jax_sklearn-0.1.0/examples/datasets/plot_random_multilabel_dataset.py +109 -0
  574. jax_sklearn-0.1.0/examples/decomposition/README.txt +6 -0
  575. jax_sklearn-0.1.0/examples/decomposition/plot_faces_decomposition.py +335 -0
  576. jax_sklearn-0.1.0/examples/decomposition/plot_ica_blind_source_separation.py +85 -0
  577. jax_sklearn-0.1.0/examples/decomposition/plot_ica_vs_pca.py +115 -0
  578. jax_sklearn-0.1.0/examples/decomposition/plot_image_denoising.py +192 -0
  579. jax_sklearn-0.1.0/examples/decomposition/plot_incremental_pca.py +63 -0
  580. jax_sklearn-0.1.0/examples/decomposition/plot_kernel_pca.py +163 -0
  581. jax_sklearn-0.1.0/examples/decomposition/plot_pca_iris.py +105 -0
  582. jax_sklearn-0.1.0/examples/decomposition/plot_pca_vs_fa_model_selection.py +143 -0
  583. jax_sklearn-0.1.0/examples/decomposition/plot_pca_vs_lda.py +67 -0
  584. jax_sklearn-0.1.0/examples/decomposition/plot_sparse_coding.py +123 -0
  585. jax_sklearn-0.1.0/examples/decomposition/plot_varimax_fa.py +78 -0
  586. jax_sklearn-0.1.0/examples/developing_estimators/README.txt +6 -0
  587. jax_sklearn-0.1.0/examples/developing_estimators/xlearn_is_fitted.py +75 -0
  588. jax_sklearn-0.1.0/examples/ensemble/README.txt +6 -0
  589. jax_sklearn-0.1.0/examples/ensemble/plot_adaboost_multiclass.py +252 -0
  590. jax_sklearn-0.1.0/examples/ensemble/plot_adaboost_regression.py +79 -0
  591. jax_sklearn-0.1.0/examples/ensemble/plot_adaboost_twoclass.py +106 -0
  592. jax_sklearn-0.1.0/examples/ensemble/plot_bias_variance.py +191 -0
  593. jax_sklearn-0.1.0/examples/ensemble/plot_ensemble_oob.py +102 -0
  594. jax_sklearn-0.1.0/examples/ensemble/plot_feature_transformation.py +170 -0
  595. jax_sklearn-0.1.0/examples/ensemble/plot_forest_hist_grad_boosting_comparison.py +226 -0
  596. jax_sklearn-0.1.0/examples/ensemble/plot_forest_importances.py +120 -0
  597. jax_sklearn-0.1.0/examples/ensemble/plot_forest_iris.py +176 -0
  598. jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_categorical.py +281 -0
  599. jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_early_stopping.py +182 -0
  600. jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_oob.py +143 -0
  601. jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_quantile.py +338 -0
  602. jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_regression.py +166 -0
  603. jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_regularization.py +90 -0
  604. jax_sklearn-0.1.0/examples/ensemble/plot_hgbt_regression.py +429 -0
  605. jax_sklearn-0.1.0/examples/ensemble/plot_isolation_forest.py +126 -0
  606. jax_sklearn-0.1.0/examples/ensemble/plot_monotonic_constraints.py +112 -0
  607. jax_sklearn-0.1.0/examples/ensemble/plot_random_forest_embedding.py +111 -0
  608. jax_sklearn-0.1.0/examples/ensemble/plot_random_forest_regression_multioutput.py +96 -0
  609. jax_sklearn-0.1.0/examples/ensemble/plot_stack_predictors.py +258 -0
  610. jax_sklearn-0.1.0/examples/ensemble/plot_voting_decision_regions.py +218 -0
  611. jax_sklearn-0.1.0/examples/ensemble/plot_voting_regressor.py +93 -0
  612. jax_sklearn-0.1.0/examples/feature_selection/README.txt +6 -0
  613. jax_sklearn-0.1.0/examples/feature_selection/plot_f_test_vs_mi.py +52 -0
  614. jax_sklearn-0.1.0/examples/feature_selection/plot_feature_selection.py +133 -0
  615. jax_sklearn-0.1.0/examples/feature_selection/plot_feature_selection_pipeline.py +86 -0
  616. jax_sklearn-0.1.0/examples/feature_selection/plot_rfe_digits.py +57 -0
  617. jax_sklearn-0.1.0/examples/feature_selection/plot_rfe_with_cross_validation.py +115 -0
  618. jax_sklearn-0.1.0/examples/feature_selection/plot_select_from_model_diabetes.py +192 -0
  619. jax_sklearn-0.1.0/examples/frozen/README.txt +6 -0
  620. jax_sklearn-0.1.0/examples/frozen/plot_frozen_examples.py +98 -0
  621. jax_sklearn-0.1.0/examples/gaussian_process/README.txt +6 -0
  622. jax_sklearn-0.1.0/examples/gaussian_process/plot_compare_gpr_krr.py +396 -0
  623. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc.py +127 -0
  624. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc_iris.py +66 -0
  625. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc_isoprobability.py +97 -0
  626. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc_xor.py +60 -0
  627. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_co2.py +228 -0
  628. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_noisy.py +227 -0
  629. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_noisy_targets.py +150 -0
  630. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_on_structured_data.py +190 -0
  631. jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_prior_posterior.py +257 -0
  632. jax_sklearn-0.1.0/examples/impute/README.txt +6 -0
  633. jax_sklearn-0.1.0/examples/impute/plot_iterative_imputer_variants_comparison.py +171 -0
  634. jax_sklearn-0.1.0/examples/impute/plot_missing_values.py +272 -0
  635. jax_sklearn-0.1.0/examples/inspection/README.txt +6 -0
  636. jax_sklearn-0.1.0/examples/inspection/plot_causal_interpretation.py +189 -0
  637. jax_sklearn-0.1.0/examples/inspection/plot_linear_model_coefficient_interpretation.py +786 -0
  638. jax_sklearn-0.1.0/examples/inspection/plot_partial_dependence.py +618 -0
  639. jax_sklearn-0.1.0/examples/inspection/plot_permutation_importance.py +246 -0
  640. jax_sklearn-0.1.0/examples/inspection/plot_permutation_importance_multicollinear.py +192 -0
  641. jax_sklearn-0.1.0/examples/kernel_approximation/README.txt +6 -0
  642. jax_sklearn-0.1.0/examples/kernel_approximation/plot_scalable_poly_kernels.py +251 -0
  643. jax_sklearn-0.1.0/examples/linear_model/README.txt +6 -0
  644. jax_sklearn-0.1.0/examples/linear_model/plot_ard.py +212 -0
  645. jax_sklearn-0.1.0/examples/linear_model/plot_bayesian_ridge_curvefit.py +93 -0
  646. jax_sklearn-0.1.0/examples/linear_model/plot_elastic_net_precomputed_gram_matrix_with_weighted_samples.py +55 -0
  647. jax_sklearn-0.1.0/examples/linear_model/plot_huber_vs_ridge.py +64 -0
  648. jax_sklearn-0.1.0/examples/linear_model/plot_lasso_and_elasticnet.py +249 -0
  649. jax_sklearn-0.1.0/examples/linear_model/plot_lasso_dense_vs_sparse_data.py +89 -0
  650. jax_sklearn-0.1.0/examples/linear_model/plot_lasso_lars_ic.py +115 -0
  651. jax_sklearn-0.1.0/examples/linear_model/plot_lasso_lasso_lars_elasticnet_path.py +136 -0
  652. jax_sklearn-0.1.0/examples/linear_model/plot_lasso_model_selection.py +249 -0
  653. jax_sklearn-0.1.0/examples/linear_model/plot_logistic.py +66 -0
  654. jax_sklearn-0.1.0/examples/linear_model/plot_logistic_l1_l2_sparsity.py +88 -0
  655. jax_sklearn-0.1.0/examples/linear_model/plot_logistic_multinomial.py +193 -0
  656. jax_sklearn-0.1.0/examples/linear_model/plot_logistic_path.py +103 -0
  657. jax_sklearn-0.1.0/examples/linear_model/plot_multi_task_lasso_support.py +82 -0
  658. jax_sklearn-0.1.0/examples/linear_model/plot_nnls.py +72 -0
  659. jax_sklearn-0.1.0/examples/linear_model/plot_ols_ridge.py +167 -0
  660. jax_sklearn-0.1.0/examples/linear_model/plot_omp.py +80 -0
  661. jax_sklearn-0.1.0/examples/linear_model/plot_poisson_regression_non_normal_loss.py +594 -0
  662. jax_sklearn-0.1.0/examples/linear_model/plot_polynomial_interpolation.py +212 -0
  663. jax_sklearn-0.1.0/examples/linear_model/plot_quantile_regression.py +314 -0
  664. jax_sklearn-0.1.0/examples/linear_model/plot_ransac.py +81 -0
  665. jax_sklearn-0.1.0/examples/linear_model/plot_ridge_coeffs.py +181 -0
  666. jax_sklearn-0.1.0/examples/linear_model/plot_ridge_path.py +71 -0
  667. jax_sklearn-0.1.0/examples/linear_model/plot_robust_fit.py +119 -0
  668. jax_sklearn-0.1.0/examples/linear_model/plot_sgd_early_stopping.py +154 -0
  669. jax_sklearn-0.1.0/examples/linear_model/plot_sgd_iris.py +87 -0
  670. jax_sklearn-0.1.0/examples/linear_model/plot_sgd_loss_functions.py +52 -0
  671. jax_sklearn-0.1.0/examples/linear_model/plot_sgd_penalties.py +57 -0
  672. jax_sklearn-0.1.0/examples/linear_model/plot_sgd_separating_hyperplane.py +47 -0
  673. jax_sklearn-0.1.0/examples/linear_model/plot_sgd_weighted_samples.py +63 -0
  674. jax_sklearn-0.1.0/examples/linear_model/plot_sgdocsvm_vs_ocsvm.py +200 -0
  675. jax_sklearn-0.1.0/examples/linear_model/plot_sparse_logistic_regression_20newsgroups.py +132 -0
  676. jax_sklearn-0.1.0/examples/linear_model/plot_sparse_logistic_regression_mnist.py +83 -0
  677. jax_sklearn-0.1.0/examples/linear_model/plot_theilsen.py +125 -0
  678. jax_sklearn-0.1.0/examples/linear_model/plot_tweedie_regression_insurance_claims.py +700 -0
  679. jax_sklearn-0.1.0/examples/manifold/README.txt +6 -0
  680. jax_sklearn-0.1.0/examples/manifold/plot_compare_methods.py +213 -0
  681. jax_sklearn-0.1.0/examples/manifold/plot_lle_digits.py +178 -0
  682. jax_sklearn-0.1.0/examples/manifold/plot_manifold_sphere.py +157 -0
  683. jax_sklearn-0.1.0/examples/manifold/plot_mds.py +129 -0
  684. jax_sklearn-0.1.0/examples/manifold/plot_swissroll.py +123 -0
  685. jax_sklearn-0.1.0/examples/manifold/plot_t_sne_perplexity.py +146 -0
  686. jax_sklearn-0.1.0/examples/miscellaneous/README.txt +6 -0
  687. jax_sklearn-0.1.0/examples/miscellaneous/plot_anomaly_comparison.py +189 -0
  688. jax_sklearn-0.1.0/examples/miscellaneous/plot_display_object_visualization.py +93 -0
  689. jax_sklearn-0.1.0/examples/miscellaneous/plot_estimator_representation.py +52 -0
  690. jax_sklearn-0.1.0/examples/miscellaneous/plot_isotonic_regression.py +75 -0
  691. jax_sklearn-0.1.0/examples/miscellaneous/plot_johnson_lindenstrauss_bound.py +211 -0
  692. jax_sklearn-0.1.0/examples/miscellaneous/plot_kernel_approximation.py +259 -0
  693. jax_sklearn-0.1.0/examples/miscellaneous/plot_kernel_ridge_regression.py +217 -0
  694. jax_sklearn-0.1.0/examples/miscellaneous/plot_metadata_routing.py +719 -0
  695. jax_sklearn-0.1.0/examples/miscellaneous/plot_multilabel.py +130 -0
  696. jax_sklearn-0.1.0/examples/miscellaneous/plot_multioutput_face_completion.py +98 -0
  697. jax_sklearn-0.1.0/examples/miscellaneous/plot_outlier_detection_bench.py +453 -0
  698. jax_sklearn-0.1.0/examples/miscellaneous/plot_partial_dependence_visualization_api.py +140 -0
  699. jax_sklearn-0.1.0/examples/miscellaneous/plot_pipeline_display.py +183 -0
  700. jax_sklearn-0.1.0/examples/miscellaneous/plot_roc_curve_visualization_api.py +61 -0
  701. jax_sklearn-0.1.0/examples/miscellaneous/plot_set_output.py +151 -0
  702. jax_sklearn-0.1.0/examples/mixture/README.txt +6 -0
  703. jax_sklearn-0.1.0/examples/mixture/plot_concentration_prior.py +164 -0
  704. jax_sklearn-0.1.0/examples/mixture/plot_gmm.py +96 -0
  705. jax_sklearn-0.1.0/examples/mixture/plot_gmm_covariances.py +138 -0
  706. jax_sklearn-0.1.0/examples/mixture/plot_gmm_init.py +110 -0
  707. jax_sklearn-0.1.0/examples/mixture/plot_gmm_pdf.py +56 -0
  708. jax_sklearn-0.1.0/examples/mixture/plot_gmm_selection.py +176 -0
  709. jax_sklearn-0.1.0/examples/mixture/plot_gmm_sin.py +190 -0
  710. jax_sklearn-0.1.0/examples/model_selection/README.txt +6 -0
  711. jax_sklearn-0.1.0/examples/model_selection/plot_confusion_matrix.py +71 -0
  712. jax_sklearn-0.1.0/examples/model_selection/plot_cost_sensitive_learning.py +693 -0
  713. jax_sklearn-0.1.0/examples/model_selection/plot_cv_indices.py +218 -0
  714. jax_sklearn-0.1.0/examples/model_selection/plot_cv_predict.py +82 -0
  715. jax_sklearn-0.1.0/examples/model_selection/plot_det.py +163 -0
  716. jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_digits.py +211 -0
  717. jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_refit_callable.py +380 -0
  718. jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_stats.py +569 -0
  719. jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_text_feature_extraction.py +263 -0
  720. jax_sklearn-0.1.0/examples/model_selection/plot_learning_curve.py +187 -0
  721. jax_sklearn-0.1.0/examples/model_selection/plot_likelihood_ratios.py +326 -0
  722. jax_sklearn-0.1.0/examples/model_selection/plot_multi_metric_evaluation.py +116 -0
  723. jax_sklearn-0.1.0/examples/model_selection/plot_nested_cross_validation_iris.py +130 -0
  724. jax_sklearn-0.1.0/examples/model_selection/plot_permutation_tests_for_classification.py +144 -0
  725. jax_sklearn-0.1.0/examples/model_selection/plot_precision_recall.py +279 -0
  726. jax_sklearn-0.1.0/examples/model_selection/plot_randomized_search.py +95 -0
  727. jax_sklearn-0.1.0/examples/model_selection/plot_roc.py +463 -0
  728. jax_sklearn-0.1.0/examples/model_selection/plot_roc_crossval.py +142 -0
  729. jax_sklearn-0.1.0/examples/model_selection/plot_successive_halving_heatmap.py +132 -0
  730. jax_sklearn-0.1.0/examples/model_selection/plot_successive_halving_iterations.py +88 -0
  731. jax_sklearn-0.1.0/examples/model_selection/plot_train_error_vs_test_error.py +166 -0
  732. jax_sklearn-0.1.0/examples/model_selection/plot_tuned_decision_threshold.py +187 -0
  733. jax_sklearn-0.1.0/examples/model_selection/plot_underfitting_overfitting.py +82 -0
  734. jax_sklearn-0.1.0/examples/multiclass/README.txt +6 -0
  735. jax_sklearn-0.1.0/examples/multiclass/plot_multiclass_overview.py +202 -0
  736. jax_sklearn-0.1.0/examples/multioutput/README.txt +6 -0
  737. jax_sklearn-0.1.0/examples/multioutput/plot_classifier_chain_yeast.py +153 -0
  738. jax_sklearn-0.1.0/examples/neighbors/README.txt +6 -0
  739. jax_sklearn-0.1.0/examples/neighbors/approximate_nearest_neighbors.py +314 -0
  740. jax_sklearn-0.1.0/examples/neighbors/plot_caching_nearest_neighbors.py +70 -0
  741. jax_sklearn-0.1.0/examples/neighbors/plot_classification.py +97 -0
  742. jax_sklearn-0.1.0/examples/neighbors/plot_digits_kde_sampling.py +67 -0
  743. jax_sklearn-0.1.0/examples/neighbors/plot_kde_1d.py +158 -0
  744. jax_sklearn-0.1.0/examples/neighbors/plot_lof_novelty_detection.py +93 -0
  745. jax_sklearn-0.1.0/examples/neighbors/plot_lof_outlier_detection.py +95 -0
  746. jax_sklearn-0.1.0/examples/neighbors/plot_nca_classification.py +97 -0
  747. jax_sklearn-0.1.0/examples/neighbors/plot_nca_dim_reduction.py +99 -0
  748. jax_sklearn-0.1.0/examples/neighbors/plot_nca_illustration.py +102 -0
  749. jax_sklearn-0.1.0/examples/neighbors/plot_nearest_centroid.py +50 -0
  750. jax_sklearn-0.1.0/examples/neighbors/plot_regression.py +52 -0
  751. jax_sklearn-0.1.0/examples/neighbors/plot_species_kde.py +150 -0
  752. jax_sklearn-0.1.0/examples/neural_networks/README.txt +6 -0
  753. jax_sklearn-0.1.0/examples/neural_networks/plot_mlp_alpha.py +147 -0
  754. jax_sklearn-0.1.0/examples/neural_networks/plot_mlp_training_curves.py +144 -0
  755. jax_sklearn-0.1.0/examples/neural_networks/plot_mnist_filters.py +74 -0
  756. jax_sklearn-0.1.0/examples/neural_networks/plot_rbm_logistic_classification.py +146 -0
  757. jax_sklearn-0.1.0/examples/preprocessing/README.txt +6 -0
  758. jax_sklearn-0.1.0/examples/preprocessing/plot_all_scaling.py +416 -0
  759. jax_sklearn-0.1.0/examples/preprocessing/plot_discretization.py +92 -0
  760. jax_sklearn-0.1.0/examples/preprocessing/plot_discretization_classification.py +233 -0
  761. jax_sklearn-0.1.0/examples/preprocessing/plot_discretization_strategies.py +108 -0
  762. jax_sklearn-0.1.0/examples/preprocessing/plot_map_data_to_normal.py +144 -0
  763. jax_sklearn-0.1.0/examples/preprocessing/plot_scaling_importance.py +256 -0
  764. jax_sklearn-0.1.0/examples/preprocessing/plot_target_encoder.py +228 -0
  765. jax_sklearn-0.1.0/examples/preprocessing/plot_target_encoder_cross_val.py +194 -0
  766. jax_sklearn-0.1.0/examples/release_highlights/README.txt +6 -0
  767. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_0_22_0.py +296 -0
  768. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_0_23_0.py +194 -0
  769. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_0_24_0.py +267 -0
  770. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_0_0.py +246 -0
  771. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_1_0.py +240 -0
  772. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_2_0.py +172 -0
  773. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_3_0.py +163 -0
  774. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_4_0.py +238 -0
  775. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_5_0.py +230 -0
  776. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_6_0.py +214 -0
  777. jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_7_0.py +115 -0
  778. jax_sklearn-0.1.0/examples/semi_supervised/README.txt +6 -0
  779. jax_sklearn-0.1.0/examples/semi_supervised/plot_label_propagation_digits.py +118 -0
  780. jax_sklearn-0.1.0/examples/semi_supervised/plot_label_propagation_digits_active_learning.py +125 -0
  781. jax_sklearn-0.1.0/examples/semi_supervised/plot_label_propagation_structure.py +105 -0
  782. jax_sklearn-0.1.0/examples/semi_supervised/plot_self_training_varying_threshold.py +119 -0
  783. jax_sklearn-0.1.0/examples/semi_supervised/plot_semi_supervised_newsgroups.py +111 -0
  784. jax_sklearn-0.1.0/examples/semi_supervised/plot_semi_supervised_versus_svm_iris.py +88 -0
  785. jax_sklearn-0.1.0/examples/svm/README.txt +6 -0
  786. jax_sklearn-0.1.0/examples/svm/plot_custom_kernel.py +60 -0
  787. jax_sklearn-0.1.0/examples/svm/plot_iris_svc.py +92 -0
  788. jax_sklearn-0.1.0/examples/svm/plot_linearsvc_support_vectors.py +61 -0
  789. jax_sklearn-0.1.0/examples/svm/plot_oneclass.py +105 -0
  790. jax_sklearn-0.1.0/examples/svm/plot_rbf_parameters.py +221 -0
  791. jax_sklearn-0.1.0/examples/svm/plot_separating_hyperplane.py +51 -0
  792. jax_sklearn-0.1.0/examples/svm/plot_separating_hyperplane_unbalanced.py +95 -0
  793. jax_sklearn-0.1.0/examples/svm/plot_svm_anova.py +71 -0
  794. jax_sklearn-0.1.0/examples/svm/plot_svm_kernels.py +304 -0
  795. jax_sklearn-0.1.0/examples/svm/plot_svm_margin.py +90 -0
  796. jax_sklearn-0.1.0/examples/svm/plot_svm_regression.py +79 -0
  797. jax_sklearn-0.1.0/examples/svm/plot_svm_scale_c.py +208 -0
  798. jax_sklearn-0.1.0/examples/svm/plot_svm_tie_breaking.py +66 -0
  799. jax_sklearn-0.1.0/examples/svm/plot_weighted_samples.py +89 -0
  800. jax_sklearn-0.1.0/examples/text/README.txt +6 -0
  801. jax_sklearn-0.1.0/examples/text/plot_document_classification_20newsgroups.py +450 -0
  802. jax_sklearn-0.1.0/examples/text/plot_document_clustering.py +448 -0
  803. jax_sklearn-0.1.0/examples/text/plot_hashing_vs_dict_vectorizer.py +383 -0
  804. jax_sklearn-0.1.0/examples/tree/README.txt +6 -0
  805. jax_sklearn-0.1.0/examples/tree/plot_cost_complexity_pruning.py +110 -0
  806. jax_sklearn-0.1.0/examples/tree/plot_iris_dtc.py +89 -0
  807. jax_sklearn-0.1.0/examples/tree/plot_tree_regression.py +144 -0
  808. jax_sklearn-0.1.0/examples/tree/plot_unveil_tree_structure.py +237 -0
  809. jax_sklearn-0.1.0/maint_tools/bump-dependencies-versions.py +171 -0
  810. jax_sklearn-0.1.0/maint_tools/check_xfailed_checks.py +37 -0
  811. jax_sklearn-0.1.0/maint_tools/sort_whats_new.py +43 -0
  812. jax_sklearn-0.1.0/maint_tools/update_tracking_issue.py +163 -0
  813. jax_sklearn-0.1.0/maint_tools/vendor_array_api_compat.sh +24 -0
  814. jax_sklearn-0.1.0/maint_tools/vendor_array_api_extra.sh +24 -0
  815. jax_sklearn-0.1.0/maint_tools/whats_missing.sh +61 -0
  816. jax_sklearn-0.1.0/meson.build +53 -0
  817. jax_sklearn-0.1.0/pyproject.toml +506 -0
  818. jax_sklearn-0.1.0/xlearn/__check_build/__init__.py +54 -0
  819. jax_sklearn-0.1.0/xlearn/__check_build/_check_build.pyx +2 -0
  820. jax_sklearn-0.1.0/xlearn/__check_build/meson.build +6 -0
  821. jax_sklearn-0.1.0/xlearn/__init__.py +217 -0
  822. jax_sklearn-0.1.0/xlearn/_build_utils/__init__.py +0 -0
  823. jax_sklearn-0.1.0/xlearn/_build_utils/tempita.py +62 -0
  824. jax_sklearn-0.1.0/xlearn/_build_utils/version.py +16 -0
  825. jax_sklearn-0.1.0/xlearn/_config.py +407 -0
  826. jax_sklearn-0.1.0/xlearn/_distributor_init.py +13 -0
  827. jax_sklearn-0.1.0/xlearn/_isotonic.pyx +116 -0
  828. jax_sklearn-0.1.0/xlearn/_jax/__init__.py +102 -0
  829. jax_sklearn-0.1.0/xlearn/_jax/_accelerator.py +203 -0
  830. jax_sklearn-0.1.0/xlearn/_jax/_config.py +171 -0
  831. jax_sklearn-0.1.0/xlearn/_jax/_data_conversion.py +305 -0
  832. jax_sklearn-0.1.0/xlearn/_jax/_linear_regression_jax.py +332 -0
  833. jax_sklearn-0.1.0/xlearn/_jax/_proxy.py +284 -0
  834. jax_sklearn-0.1.0/xlearn/_jax/_universal_jax.py +376 -0
  835. jax_sklearn-0.1.0/xlearn/_loss/__init__.py +33 -0
  836. jax_sklearn-0.1.0/xlearn/_loss/_loss.pxd +101 -0
  837. jax_sklearn-0.1.0/xlearn/_loss/_loss.pyx.tp +1505 -0
  838. jax_sklearn-0.1.0/xlearn/_loss/link.py +282 -0
  839. jax_sklearn-0.1.0/xlearn/_loss/loss.py +1181 -0
  840. jax_sklearn-0.1.0/xlearn/_loss/meson.build +23 -0
  841. jax_sklearn-0.1.0/xlearn/_loss/tests/__init__.py +0 -0
  842. jax_sklearn-0.1.0/xlearn/_loss/tests/test_link.py +111 -0
  843. jax_sklearn-0.1.0/xlearn/_loss/tests/test_loss.py +1358 -0
  844. jax_sklearn-0.1.0/xlearn/_min_dependencies.py +78 -0
  845. jax_sklearn-0.1.0/xlearn/base.py +1369 -0
  846. jax_sklearn-0.1.0/xlearn/calibration.py +1448 -0
  847. jax_sklearn-0.1.0/xlearn/cluster/__init__.py +56 -0
  848. jax_sklearn-0.1.0/xlearn/cluster/_affinity_propagation.py +607 -0
  849. jax_sklearn-0.1.0/xlearn/cluster/_agglomerative.py +1333 -0
  850. jax_sklearn-0.1.0/xlearn/cluster/_bicluster.py +621 -0
  851. jax_sklearn-0.1.0/xlearn/cluster/_birch.py +749 -0
  852. jax_sklearn-0.1.0/xlearn/cluster/_bisect_k_means.py +543 -0
  853. jax_sklearn-0.1.0/xlearn/cluster/_dbscan.py +480 -0
  854. jax_sklearn-0.1.0/xlearn/cluster/_dbscan_inner.pyx +41 -0
  855. jax_sklearn-0.1.0/xlearn/cluster/_feature_agglomeration.py +76 -0
  856. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/__init__.py +2 -0
  857. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_linkage.pyx +274 -0
  858. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_reachability.pyx +210 -0
  859. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_tree.pxd +49 -0
  860. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_tree.pyx +799 -0
  861. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/hdbscan.py +1000 -0
  862. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/meson.build +15 -0
  863. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/tests/__init__.py +0 -0
  864. jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/tests/test_reachibility.py +63 -0
  865. jax_sklearn-0.1.0/xlearn/cluster/_hierarchical_fast.pxd +9 -0
  866. jax_sklearn-0.1.0/xlearn/cluster/_hierarchical_fast.pyx +507 -0
  867. jax_sklearn-0.1.0/xlearn/cluster/_k_means_common.pxd +48 -0
  868. jax_sklearn-0.1.0/xlearn/cluster/_k_means_common.pyx +328 -0
  869. jax_sklearn-0.1.0/xlearn/cluster/_k_means_elkan.pyx +686 -0
  870. jax_sklearn-0.1.0/xlearn/cluster/_k_means_lloyd.pyx +420 -0
  871. jax_sklearn-0.1.0/xlearn/cluster/_k_means_minibatch.pyx +218 -0
  872. jax_sklearn-0.1.0/xlearn/cluster/_kmeans.py +2303 -0
  873. jax_sklearn-0.1.0/xlearn/cluster/_mean_shift.py +579 -0
  874. jax_sklearn-0.1.0/xlearn/cluster/_optics.py +1202 -0
  875. jax_sklearn-0.1.0/xlearn/cluster/_spectral.py +805 -0
  876. jax_sklearn-0.1.0/xlearn/cluster/meson.build +26 -0
  877. jax_sklearn-0.1.0/xlearn/cluster/tests/__init__.py +0 -0
  878. jax_sklearn-0.1.0/xlearn/cluster/tests/common.py +37 -0
  879. jax_sklearn-0.1.0/xlearn/cluster/tests/test_affinity_propagation.py +321 -0
  880. jax_sklearn-0.1.0/xlearn/cluster/tests/test_bicluster.py +264 -0
  881. jax_sklearn-0.1.0/xlearn/cluster/tests/test_birch.py +250 -0
  882. jax_sklearn-0.1.0/xlearn/cluster/tests/test_bisect_k_means.py +158 -0
  883. jax_sklearn-0.1.0/xlearn/cluster/tests/test_dbscan.py +434 -0
  884. jax_sklearn-0.1.0/xlearn/cluster/tests/test_feature_agglomeration.py +55 -0
  885. jax_sklearn-0.1.0/xlearn/cluster/tests/test_hdbscan.py +582 -0
  886. jax_sklearn-0.1.0/xlearn/cluster/tests/test_hierarchical.py +889 -0
  887. jax_sklearn-0.1.0/xlearn/cluster/tests/test_k_means.py +1364 -0
  888. jax_sklearn-0.1.0/xlearn/cluster/tests/test_mean_shift.py +215 -0
  889. jax_sklearn-0.1.0/xlearn/cluster/tests/test_optics.py +868 -0
  890. jax_sklearn-0.1.0/xlearn/cluster/tests/test_spectral.py +335 -0
  891. jax_sklearn-0.1.0/xlearn/compose/__init__.py +23 -0
  892. jax_sklearn-0.1.0/xlearn/compose/_column_transformer.py +1599 -0
  893. jax_sklearn-0.1.0/xlearn/compose/_target.py +397 -0
  894. jax_sklearn-0.1.0/xlearn/compose/tests/__init__.py +0 -0
  895. jax_sklearn-0.1.0/xlearn/compose/tests/test_column_transformer.py +2799 -0
  896. jax_sklearn-0.1.0/xlearn/compose/tests/test_target.py +412 -0
  897. jax_sklearn-0.1.0/xlearn/conftest.py +375 -0
  898. jax_sklearn-0.1.0/xlearn/covariance/__init__.py +46 -0
  899. jax_sklearn-0.1.0/xlearn/covariance/_elliptic_envelope.py +266 -0
  900. jax_sklearn-0.1.0/xlearn/covariance/_empirical_covariance.py +370 -0
  901. jax_sklearn-0.1.0/xlearn/covariance/_graph_lasso.py +1145 -0
  902. jax_sklearn-0.1.0/xlearn/covariance/_robust_covariance.py +874 -0
  903. jax_sklearn-0.1.0/xlearn/covariance/_shrunk_covariance.py +822 -0
  904. jax_sklearn-0.1.0/xlearn/covariance/tests/__init__.py +0 -0
  905. jax_sklearn-0.1.0/xlearn/covariance/tests/test_covariance.py +374 -0
  906. jax_sklearn-0.1.0/xlearn/covariance/tests/test_elliptic_envelope.py +52 -0
  907. jax_sklearn-0.1.0/xlearn/covariance/tests/test_graphical_lasso.py +318 -0
  908. jax_sklearn-0.1.0/xlearn/covariance/tests/test_robust_covariance.py +171 -0
  909. jax_sklearn-0.1.0/xlearn/cross_decomposition/__init__.py +8 -0
  910. jax_sklearn-0.1.0/xlearn/cross_decomposition/_pls.py +1097 -0
  911. jax_sklearn-0.1.0/xlearn/cross_decomposition/tests/__init__.py +0 -0
  912. jax_sklearn-0.1.0/xlearn/cross_decomposition/tests/test_pls.py +677 -0
  913. jax_sklearn-0.1.0/xlearn/datasets/__init__.py +166 -0
  914. jax_sklearn-0.1.0/xlearn/datasets/_arff_parser.py +543 -0
  915. jax_sklearn-0.1.0/xlearn/datasets/_base.py +1636 -0
  916. jax_sklearn-0.1.0/xlearn/datasets/_california_housing.py +248 -0
  917. jax_sklearn-0.1.0/xlearn/datasets/_covtype.py +252 -0
  918. jax_sklearn-0.1.0/xlearn/datasets/_kddcup99.py +429 -0
  919. jax_sklearn-0.1.0/xlearn/datasets/_lfw.py +648 -0
  920. jax_sklearn-0.1.0/xlearn/datasets/_olivetti_faces.py +184 -0
  921. jax_sklearn-0.1.0/xlearn/datasets/_openml.py +1160 -0
  922. jax_sklearn-0.1.0/xlearn/datasets/_rcv1.py +334 -0
  923. jax_sklearn-0.1.0/xlearn/datasets/_samples_generator.py +2383 -0
  924. jax_sklearn-0.1.0/xlearn/datasets/_species_distributions.py +289 -0
  925. jax_sklearn-0.1.0/xlearn/datasets/_svmlight_format_fast.pyx +252 -0
  926. jax_sklearn-0.1.0/xlearn/datasets/_svmlight_format_io.py +585 -0
  927. jax_sklearn-0.1.0/xlearn/datasets/_twenty_newsgroups.py +625 -0
  928. jax_sklearn-0.1.0/xlearn/datasets/data/__init__.py +2 -0
  929. jax_sklearn-0.1.0/xlearn/datasets/data/breast_cancer.csv +570 -0
  930. jax_sklearn-0.1.0/xlearn/datasets/data/diabetes_data_raw.csv.gz +0 -0
  931. jax_sklearn-0.1.0/xlearn/datasets/data/diabetes_target.csv.gz +0 -0
  932. jax_sklearn-0.1.0/xlearn/datasets/data/digits.csv.gz +0 -0
  933. jax_sklearn-0.1.0/xlearn/datasets/data/iris.csv +151 -0
  934. jax_sklearn-0.1.0/xlearn/datasets/data/linnerud_exercise.csv +21 -0
  935. jax_sklearn-0.1.0/xlearn/datasets/data/linnerud_physiological.csv +21 -0
  936. jax_sklearn-0.1.0/xlearn/datasets/data/wine_data.csv +179 -0
  937. jax_sklearn-0.1.0/xlearn/datasets/descr/__init__.py +2 -0
  938. jax_sklearn-0.1.0/xlearn/datasets/descr/breast_cancer.rst +118 -0
  939. jax_sklearn-0.1.0/xlearn/datasets/descr/california_housing.rst +46 -0
  940. jax_sklearn-0.1.0/xlearn/datasets/descr/covtype.rst +30 -0
  941. jax_sklearn-0.1.0/xlearn/datasets/descr/diabetes.rst +38 -0
  942. jax_sklearn-0.1.0/xlearn/datasets/descr/digits.rst +46 -0
  943. jax_sklearn-0.1.0/xlearn/datasets/descr/iris.rst +63 -0
  944. jax_sklearn-0.1.0/xlearn/datasets/descr/kddcup99.rst +94 -0
  945. jax_sklearn-0.1.0/xlearn/datasets/descr/lfw.rst +124 -0
  946. jax_sklearn-0.1.0/xlearn/datasets/descr/linnerud.rst +24 -0
  947. jax_sklearn-0.1.0/xlearn/datasets/descr/olivetti_faces.rst +44 -0
  948. jax_sklearn-0.1.0/xlearn/datasets/descr/rcv1.rst +72 -0
  949. jax_sklearn-0.1.0/xlearn/datasets/descr/species_distributions.rst +40 -0
  950. jax_sklearn-0.1.0/xlearn/datasets/descr/twenty_newsgroups.rst +248 -0
  951. jax_sklearn-0.1.0/xlearn/datasets/descr/wine_data.rst +94 -0
  952. jax_sklearn-0.1.0/xlearn/datasets/images/README.txt +18 -0
  953. jax_sklearn-0.1.0/xlearn/datasets/images/__init__.py +2 -0
  954. jax_sklearn-0.1.0/xlearn/datasets/images/china.jpg +0 -0
  955. jax_sklearn-0.1.0/xlearn/datasets/images/flower.jpg +0 -0
  956. jax_sklearn-0.1.0/xlearn/datasets/meson.build +7 -0
  957. jax_sklearn-0.1.0/xlearn/datasets/tests/__init__.py +0 -0
  958. jax_sklearn-0.1.0/xlearn/datasets/tests/data/__init__.py +0 -0
  959. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/__init__.py +0 -0
  960. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/__init__.py +0 -0
  961. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/api-v1-jd-1.json.gz +0 -0
  962. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/api-v1-jdf-1.json.gz +0 -0
  963. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/api-v1-jdq-1.json.gz +0 -0
  964. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/data-v1-dl-1.arff.gz +0 -0
  965. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/__init__.py +0 -0
  966. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jd-1119.json.gz +0 -0
  967. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jdf-1119.json.gz +0 -0
  968. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jdl-dn-adult-census-l-2-dv-1.json.gz +0 -0
  969. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jdl-dn-adult-census-l-2-s-act-.json.gz +0 -0
  970. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jdq-1119.json.gz +0 -0
  971. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/data-v1-dl-54002.arff.gz +0 -0
  972. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/__init__.py +0 -0
  973. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/api-v1-jd-1590.json.gz +0 -0
  974. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/api-v1-jdf-1590.json.gz +0 -0
  975. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/api-v1-jdq-1590.json.gz +0 -0
  976. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/data-v1-dl-1595261.arff.gz +0 -0
  977. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/__init__.py +0 -0
  978. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jd-2.json.gz +0 -0
  979. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jdf-2.json.gz +0 -0
  980. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jdl-dn-anneal-l-2-dv-1.json.gz +0 -0
  981. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jdl-dn-anneal-l-2-s-act-.json.gz +0 -0
  982. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jdq-2.json.gz +0 -0
  983. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/data-v1-dl-1666876.arff.gz +0 -0
  984. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/__init__.py +0 -0
  985. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jd-292.json.gz +0 -0
  986. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jd-40981.json.gz +0 -0
  987. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jdf-292.json.gz +0 -0
  988. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jdf-40981.json.gz +0 -0
  989. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jdl-dn-australian-l-2-dv-1-s-dact.json.gz +0 -0
  990. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jdl-dn-australian-l-2-dv-1.json.gz +0 -0
  991. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jdl-dn-australian-l-2-s-act-.json.gz +0 -0
  992. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/data-v1-dl-49822.arff.gz +0 -0
  993. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/__init__.py +0 -0
  994. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/api-v1-jd-3.json.gz +0 -0
  995. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/api-v1-jdf-3.json.gz +0 -0
  996. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/api-v1-jdq-3.json.gz +0 -0
  997. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/data-v1-dl-3.arff.gz +0 -0
  998. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/__init__.py +0 -0
  999. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jd-40589.json.gz +0 -0
  1000. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jdf-40589.json.gz +0 -0
  1001. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jdl-dn-emotions-l-2-dv-3.json.gz +0 -0
  1002. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jdl-dn-emotions-l-2-s-act-.json.gz +0 -0
  1003. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jdq-40589.json.gz +0 -0
  1004. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/data-v1-dl-4644182.arff.gz +0 -0
  1005. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/__init__.py +0 -0
  1006. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jd-40675.json.gz +0 -0
  1007. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jdf-40675.json.gz +0 -0
  1008. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jdl-dn-glass2-l-2-dv-1-s-dact.json.gz +0 -0
  1009. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jdl-dn-glass2-l-2-dv-1.json.gz +0 -0
  1010. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jdl-dn-glass2-l-2-s-act-.json.gz +0 -0
  1011. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jdq-40675.json.gz +0 -0
  1012. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/data-v1-dl-4965250.arff.gz +0 -0
  1013. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/__init__.py +0 -0
  1014. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/api-v1-jd-40945.json.gz +0 -0
  1015. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/api-v1-jdf-40945.json.gz +0 -0
  1016. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/api-v1-jdq-40945.json.gz +0 -0
  1017. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/data-v1-dl-16826755.arff.gz +0 -0
  1018. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/__init__.py +0 -0
  1019. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jd-40966.json.gz +0 -0
  1020. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jdf-40966.json.gz +0 -0
  1021. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jdl-dn-miceprotein-l-2-dv-4.json.gz +0 -0
  1022. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jdl-dn-miceprotein-l-2-s-act-.json.gz +0 -0
  1023. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jdq-40966.json.gz +0 -0
  1024. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/data-v1-dl-17928620.arff.gz +0 -0
  1025. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/__init__.py +0 -0
  1026. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/api-v1-jd-42074.json.gz +0 -0
  1027. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/api-v1-jdf-42074.json.gz +0 -0
  1028. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/api-v1-jdq-42074.json.gz +0 -0
  1029. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/data-v1-dl-21552912.arff.gz +0 -0
  1030. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/__init__.py +0 -0
  1031. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/api-v1-jd-42585.json.gz +0 -0
  1032. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/api-v1-jdf-42585.json.gz +0 -0
  1033. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/api-v1-jdq-42585.json.gz +0 -0
  1034. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/data-v1-dl-21854866.arff.gz +0 -0
  1035. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/__init__.py +0 -0
  1036. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jd-561.json.gz +0 -0
  1037. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jdf-561.json.gz +0 -0
  1038. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jdl-dn-cpu-l-2-dv-1.json.gz +0 -0
  1039. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jdl-dn-cpu-l-2-s-act-.json.gz +0 -0
  1040. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jdq-561.json.gz +0 -0
  1041. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/data-v1-dl-52739.arff.gz +0 -0
  1042. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/__init__.py +0 -0
  1043. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jd-61.json.gz +0 -0
  1044. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jdf-61.json.gz +0 -0
  1045. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jdl-dn-iris-l-2-dv-1.json.gz +0 -0
  1046. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jdl-dn-iris-l-2-s-act-.json.gz +0 -0
  1047. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jdq-61.json.gz +0 -0
  1048. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/data-v1-dl-61.arff.gz +0 -0
  1049. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/__init__.py +0 -0
  1050. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/api-v1-jd-62.json.gz +0 -0
  1051. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/api-v1-jdf-62.json.gz +0 -0
  1052. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/api-v1-jdq-62.json.gz +0 -0
  1053. jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/data-v1-dl-52352.arff.gz +0 -0
  1054. jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_classification.txt +9 -0
  1055. jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_invalid.txt +3 -0
  1056. jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_invalid_order.txt +1 -0
  1057. jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_multilabel.txt +5 -0
  1058. jax_sklearn-0.1.0/xlearn/datasets/tests/test_20news.py +143 -0
  1059. jax_sklearn-0.1.0/xlearn/datasets/tests/test_arff_parser.py +284 -0
  1060. jax_sklearn-0.1.0/xlearn/datasets/tests/test_base.py +658 -0
  1061. jax_sklearn-0.1.0/xlearn/datasets/tests/test_california_housing.py +38 -0
  1062. jax_sklearn-0.1.0/xlearn/datasets/tests/test_common.py +136 -0
  1063. jax_sklearn-0.1.0/xlearn/datasets/tests/test_covtype.py +55 -0
  1064. jax_sklearn-0.1.0/xlearn/datasets/tests/test_kddcup99.py +89 -0
  1065. jax_sklearn-0.1.0/xlearn/datasets/tests/test_lfw.py +229 -0
  1066. jax_sklearn-0.1.0/xlearn/datasets/tests/test_olivetti_faces.py +26 -0
  1067. jax_sklearn-0.1.0/xlearn/datasets/tests/test_openml.py +1634 -0
  1068. jax_sklearn-0.1.0/xlearn/datasets/tests/test_rcv1.py +71 -0
  1069. jax_sklearn-0.1.0/xlearn/datasets/tests/test_samples_generator.py +744 -0
  1070. jax_sklearn-0.1.0/xlearn/datasets/tests/test_svmlight_format.py +613 -0
  1071. jax_sklearn-0.1.0/xlearn/decomposition/__init__.py +54 -0
  1072. jax_sklearn-0.1.0/xlearn/decomposition/_base.py +202 -0
  1073. jax_sklearn-0.1.0/xlearn/decomposition/_cdnmf_fast.pyx +38 -0
  1074. jax_sklearn-0.1.0/xlearn/decomposition/_dict_learning.py +2329 -0
  1075. jax_sklearn-0.1.0/xlearn/decomposition/_factor_analysis.py +457 -0
  1076. jax_sklearn-0.1.0/xlearn/decomposition/_fastica.py +804 -0
  1077. jax_sklearn-0.1.0/xlearn/decomposition/_incremental_pca.py +426 -0
  1078. jax_sklearn-0.1.0/xlearn/decomposition/_kernel_pca.py +577 -0
  1079. jax_sklearn-0.1.0/xlearn/decomposition/_lda.py +959 -0
  1080. jax_sklearn-0.1.0/xlearn/decomposition/_nmf.py +2409 -0
  1081. jax_sklearn-0.1.0/xlearn/decomposition/_online_lda_fast.pyx +110 -0
  1082. jax_sklearn-0.1.0/xlearn/decomposition/_pca.py +857 -0
  1083. jax_sklearn-0.1.0/xlearn/decomposition/_sparse_pca.py +548 -0
  1084. jax_sklearn-0.1.0/xlearn/decomposition/_truncated_svd.py +322 -0
  1085. jax_sklearn-0.1.0/xlearn/decomposition/meson.build +14 -0
  1086. jax_sklearn-0.1.0/xlearn/decomposition/tests/__init__.py +0 -0
  1087. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_dict_learning.py +988 -0
  1088. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_factor_analysis.py +109 -0
  1089. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_fastica.py +457 -0
  1090. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_incremental_pca.py +487 -0
  1091. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_kernel_pca.py +566 -0
  1092. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_nmf.py +1010 -0
  1093. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_online_lda.py +482 -0
  1094. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_pca.py +1154 -0
  1095. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_sparse_pca.py +347 -0
  1096. jax_sklearn-0.1.0/xlearn/decomposition/tests/test_truncated_svd.py +212 -0
  1097. jax_sklearn-0.1.0/xlearn/discriminant_analysis.py +1129 -0
  1098. jax_sklearn-0.1.0/xlearn/dummy.py +704 -0
  1099. jax_sklearn-0.1.0/xlearn/ensemble/__init__.py +45 -0
  1100. jax_sklearn-0.1.0/xlearn/ensemble/_bagging.py +1480 -0
  1101. jax_sklearn-0.1.0/xlearn/ensemble/_base.py +307 -0
  1102. jax_sklearn-0.1.0/xlearn/ensemble/_forest.py +3045 -0
  1103. jax_sklearn-0.1.0/xlearn/ensemble/_gb.py +2196 -0
  1104. jax_sklearn-0.1.0/xlearn/ensemble/_gradient_boosting.pyx +262 -0
  1105. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/__init__.py +8 -0
  1106. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_binning.pyx +85 -0
  1107. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_bitset.pxd +20 -0
  1108. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_bitset.pyx +65 -0
  1109. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_gradient_boosting.pyx +59 -0
  1110. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_predictor.pyx +256 -0
  1111. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/binning.py +333 -0
  1112. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/common.pxd +43 -0
  1113. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/common.pyx +44 -0
  1114. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/gradient_boosting.py +2371 -0
  1115. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/grower.py +821 -0
  1116. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/histogram.pyx +520 -0
  1117. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/meson.build +20 -0
  1118. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/predictor.py +146 -0
  1119. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/splitting.pyx +1201 -0
  1120. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/__init__.py +0 -0
  1121. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_binning.py +489 -0
  1122. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_bitset.py +64 -0
  1123. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_compare_lightgbm.py +291 -0
  1124. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_gradient_boosting.py +1760 -0
  1125. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_grower.py +650 -0
  1126. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_histogram.py +239 -0
  1127. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_monotonic_constraints.py +446 -0
  1128. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_predictor.py +187 -0
  1129. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_splitting.py +1070 -0
  1130. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_warm_start.py +231 -0
  1131. jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/utils.py +149 -0
  1132. jax_sklearn-0.1.0/xlearn/ensemble/_iforest.py +673 -0
  1133. jax_sklearn-0.1.0/xlearn/ensemble/_stacking.py +1145 -0
  1134. jax_sklearn-0.1.0/xlearn/ensemble/_voting.py +734 -0
  1135. jax_sklearn-0.1.0/xlearn/ensemble/_weight_boosting.py +1173 -0
  1136. jax_sklearn-0.1.0/xlearn/ensemble/meson.build +9 -0
  1137. jax_sklearn-0.1.0/xlearn/ensemble/tests/__init__.py +0 -0
  1138. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_bagging.py +1043 -0
  1139. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_base.py +109 -0
  1140. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_common.py +262 -0
  1141. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_forest.py +1865 -0
  1142. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_gradient_boosting.py +1711 -0
  1143. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_iforest.py +393 -0
  1144. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_stacking.py +1019 -0
  1145. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_voting.py +793 -0
  1146. jax_sklearn-0.1.0/xlearn/ensemble/tests/test_weight_boosting.py +639 -0
  1147. jax_sklearn-0.1.0/xlearn/exceptions.py +249 -0
  1148. jax_sklearn-0.1.0/xlearn/experimental/__init__.py +10 -0
  1149. jax_sklearn-0.1.0/xlearn/experimental/enable_halving_search_cv.py +35 -0
  1150. jax_sklearn-0.1.0/xlearn/experimental/enable_hist_gradient_boosting.py +23 -0
  1151. jax_sklearn-0.1.0/xlearn/experimental/enable_iterative_imputer.py +23 -0
  1152. jax_sklearn-0.1.0/xlearn/experimental/tests/__init__.py +0 -0
  1153. jax_sklearn-0.1.0/xlearn/experimental/tests/test_enable_hist_gradient_boosting.py +19 -0
  1154. jax_sklearn-0.1.0/xlearn/experimental/tests/test_enable_iterative_imputer.py +51 -0
  1155. jax_sklearn-0.1.0/xlearn/experimental/tests/test_enable_successive_halving.py +53 -0
  1156. jax_sklearn-0.1.0/xlearn/externals/README +7 -0
  1157. jax_sklearn-0.1.0/xlearn/externals/__init__.py +5 -0
  1158. jax_sklearn-0.1.0/xlearn/externals/_arff.py +1107 -0
  1159. jax_sklearn-0.1.0/xlearn/externals/_array_api_compat_vendor.py +5 -0
  1160. jax_sklearn-0.1.0/xlearn/externals/_packaging/__init__.py +0 -0
  1161. jax_sklearn-0.1.0/xlearn/externals/_packaging/_structures.py +90 -0
  1162. jax_sklearn-0.1.0/xlearn/externals/_packaging/version.py +535 -0
  1163. jax_sklearn-0.1.0/xlearn/externals/_scipy/__init__.py +0 -0
  1164. jax_sklearn-0.1.0/xlearn/externals/_scipy/sparse/__init__.py +0 -0
  1165. jax_sklearn-0.1.0/xlearn/externals/_scipy/sparse/csgraph/__init__.py +1 -0
  1166. jax_sklearn-0.1.0/xlearn/externals/_scipy/sparse/csgraph/_laplacian.py +557 -0
  1167. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/LICENSE +21 -0
  1168. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/README.md +1 -0
  1169. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/__init__.py +22 -0
  1170. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/_internal.py +59 -0
  1171. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/__init__.py +1 -0
  1172. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_aliases.py +727 -0
  1173. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_fft.py +213 -0
  1174. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_helpers.py +1058 -0
  1175. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_linalg.py +232 -0
  1176. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_typing.py +192 -0
  1177. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/__init__.py +13 -0
  1178. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/_aliases.py +156 -0
  1179. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/_info.py +336 -0
  1180. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/_typing.py +31 -0
  1181. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/fft.py +36 -0
  1182. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/linalg.py +49 -0
  1183. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/__init__.py +0 -0
  1184. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/__init__.py +12 -0
  1185. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/_aliases.py +376 -0
  1186. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/_info.py +416 -0
  1187. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/fft.py +21 -0
  1188. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/linalg.py +72 -0
  1189. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/__init__.py +28 -0
  1190. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/_aliases.py +190 -0
  1191. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/_info.py +366 -0
  1192. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/_typing.py +30 -0
  1193. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/fft.py +35 -0
  1194. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/linalg.py +143 -0
  1195. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/py.typed +0 -0
  1196. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/__init__.py +22 -0
  1197. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/_aliases.py +855 -0
  1198. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/_info.py +369 -0
  1199. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/_typing.py +3 -0
  1200. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/fft.py +85 -0
  1201. jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/linalg.py +121 -0
  1202. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/LICENSE +21 -0
  1203. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/README.md +1 -0
  1204. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/__init__.py +38 -0
  1205. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_delegation.py +172 -0
  1206. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/__init__.py +5 -0
  1207. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_at.py +454 -0
  1208. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_backends.py +51 -0
  1209. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_funcs.py +915 -0
  1210. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_lazy.py +352 -0
  1211. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_testing.py +220 -0
  1212. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/__init__.py +1 -0
  1213. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_compat.py +70 -0
  1214. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_compat.pyi +40 -0
  1215. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_helpers.py +272 -0
  1216. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_typing.py +10 -0
  1217. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_typing.pyi +105 -0
  1218. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/py.typed +0 -0
  1219. jax_sklearn-0.1.0/xlearn/externals/array_api_extra/testing.py +324 -0
  1220. jax_sklearn-0.1.0/xlearn/externals/conftest.py +6 -0
  1221. jax_sklearn-0.1.0/xlearn/feature_extraction/__init__.py +18 -0
  1222. jax_sklearn-0.1.0/xlearn/feature_extraction/_dict_vectorizer.py +459 -0
  1223. jax_sklearn-0.1.0/xlearn/feature_extraction/_hash.py +208 -0
  1224. jax_sklearn-0.1.0/xlearn/feature_extraction/_hashing_fast.pyx +89 -0
  1225. jax_sklearn-0.1.0/xlearn/feature_extraction/_stop_words.py +328 -0
  1226. jax_sklearn-0.1.0/xlearn/feature_extraction/image.py +687 -0
  1227. jax_sklearn-0.1.0/xlearn/feature_extraction/meson.build +7 -0
  1228. jax_sklearn-0.1.0/xlearn/feature_extraction/tests/__init__.py +0 -0
  1229. jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_dict_vectorizer.py +261 -0
  1230. jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_feature_hasher.py +160 -0
  1231. jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_image.py +359 -0
  1232. jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_text.py +1628 -0
  1233. jax_sklearn-0.1.0/xlearn/feature_extraction/text.py +2136 -0
  1234. jax_sklearn-0.1.0/xlearn/feature_selection/__init__.py +50 -0
  1235. jax_sklearn-0.1.0/xlearn/feature_selection/_base.py +267 -0
  1236. jax_sklearn-0.1.0/xlearn/feature_selection/_from_model.py +513 -0
  1237. jax_sklearn-0.1.0/xlearn/feature_selection/_mutual_info.py +580 -0
  1238. jax_sklearn-0.1.0/xlearn/feature_selection/_rfe.py +1025 -0
  1239. jax_sklearn-0.1.0/xlearn/feature_selection/_sequential.py +363 -0
  1240. jax_sklearn-0.1.0/xlearn/feature_selection/_univariate_selection.py +1171 -0
  1241. jax_sklearn-0.1.0/xlearn/feature_selection/_variance_threshold.py +141 -0
  1242. jax_sklearn-0.1.0/xlearn/feature_selection/tests/__init__.py +0 -0
  1243. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_base.py +154 -0
  1244. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_chi2.py +93 -0
  1245. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_feature_select.py +1018 -0
  1246. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_from_model.py +704 -0
  1247. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_mutual_info.py +270 -0
  1248. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_rfe.py +755 -0
  1249. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_sequential.py +332 -0
  1250. jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_variance_threshold.py +72 -0
  1251. jax_sklearn-0.1.0/xlearn/frozen/__init__.py +6 -0
  1252. jax_sklearn-0.1.0/xlearn/frozen/_frozen.py +166 -0
  1253. jax_sklearn-0.1.0/xlearn/frozen/tests/__init__.py +0 -0
  1254. jax_sklearn-0.1.0/xlearn/frozen/tests/test_frozen.py +223 -0
  1255. jax_sklearn-0.1.0/xlearn/gaussian_process/__init__.py +10 -0
  1256. jax_sklearn-0.1.0/xlearn/gaussian_process/_gpc.py +973 -0
  1257. jax_sklearn-0.1.0/xlearn/gaussian_process/_gpr.py +675 -0
  1258. jax_sklearn-0.1.0/xlearn/gaussian_process/kernels.py +2408 -0
  1259. jax_sklearn-0.1.0/xlearn/gaussian_process/tests/__init__.py +0 -0
  1260. jax_sklearn-0.1.0/xlearn/gaussian_process/tests/_mini_sequence_kernel.py +54 -0
  1261. jax_sklearn-0.1.0/xlearn/gaussian_process/tests/test_gpc.py +320 -0
  1262. jax_sklearn-0.1.0/xlearn/gaussian_process/tests/test_gpr.py +849 -0
  1263. jax_sklearn-0.1.0/xlearn/gaussian_process/tests/test_kernels.py +403 -0
  1264. jax_sklearn-0.1.0/xlearn/impute/__init__.py +28 -0
  1265. jax_sklearn-0.1.0/xlearn/impute/_base.py +1139 -0
  1266. jax_sklearn-0.1.0/xlearn/impute/_iterative.py +1030 -0
  1267. jax_sklearn-0.1.0/xlearn/impute/_knn.py +411 -0
  1268. jax_sklearn-0.1.0/xlearn/impute/tests/__init__.py +0 -0
  1269. jax_sklearn-0.1.0/xlearn/impute/tests/test_base.py +107 -0
  1270. jax_sklearn-0.1.0/xlearn/impute/tests/test_common.py +220 -0
  1271. jax_sklearn-0.1.0/xlearn/impute/tests/test_impute.py +1935 -0
  1272. jax_sklearn-0.1.0/xlearn/impute/tests/test_knn.py +570 -0
  1273. jax_sklearn-0.1.0/xlearn/inspection/__init__.py +16 -0
  1274. jax_sklearn-0.1.0/xlearn/inspection/_partial_dependence.py +775 -0
  1275. jax_sklearn-0.1.0/xlearn/inspection/_pd_utils.py +68 -0
  1276. jax_sklearn-0.1.0/xlearn/inspection/_permutation_importance.py +313 -0
  1277. jax_sklearn-0.1.0/xlearn/inspection/_plot/__init__.py +2 -0
  1278. jax_sklearn-0.1.0/xlearn/inspection/_plot/decision_boundary.py +564 -0
  1279. jax_sklearn-0.1.0/xlearn/inspection/_plot/partial_dependence.py +1495 -0
  1280. jax_sklearn-0.1.0/xlearn/inspection/_plot/tests/__init__.py +0 -0
  1281. jax_sklearn-0.1.0/xlearn/inspection/_plot/tests/test_boundary_decision_display.py +710 -0
  1282. jax_sklearn-0.1.0/xlearn/inspection/_plot/tests/test_plot_partial_dependence.py +1315 -0
  1283. jax_sklearn-0.1.0/xlearn/inspection/tests/__init__.py +0 -0
  1284. jax_sklearn-0.1.0/xlearn/inspection/tests/test_partial_dependence.py +1217 -0
  1285. jax_sklearn-0.1.0/xlearn/inspection/tests/test_pd_utils.py +47 -0
  1286. jax_sklearn-0.1.0/xlearn/inspection/tests/test_permutation_importance.py +540 -0
  1287. jax_sklearn-0.1.0/xlearn/isotonic.py +517 -0
  1288. jax_sklearn-0.1.0/xlearn/kernel_approximation.py +1106 -0
  1289. jax_sklearn-0.1.0/xlearn/kernel_ridge.py +240 -0
  1290. jax_sklearn-0.1.0/xlearn/linear_model/__init__.py +95 -0
  1291. jax_sklearn-0.1.0/xlearn/linear_model/_base.py +869 -0
  1292. jax_sklearn-0.1.0/xlearn/linear_model/_bayes.py +826 -0
  1293. jax_sklearn-0.1.0/xlearn/linear_model/_cd_fast.pyx +962 -0
  1294. jax_sklearn-0.1.0/xlearn/linear_model/_coordinate_descent.py +3403 -0
  1295. jax_sklearn-0.1.0/xlearn/linear_model/_glm/__init__.py +16 -0
  1296. jax_sklearn-0.1.0/xlearn/linear_model/_glm/_newton_solver.py +618 -0
  1297. jax_sklearn-0.1.0/xlearn/linear_model/_glm/glm.py +911 -0
  1298. jax_sklearn-0.1.0/xlearn/linear_model/_glm/tests/__init__.py +2 -0
  1299. jax_sklearn-0.1.0/xlearn/linear_model/_glm/tests/test_glm.py +1142 -0
  1300. jax_sklearn-0.1.0/xlearn/linear_model/_huber.py +363 -0
  1301. jax_sklearn-0.1.0/xlearn/linear_model/_least_angle.py +2346 -0
  1302. jax_sklearn-0.1.0/xlearn/linear_model/_linear_loss.py +825 -0
  1303. jax_sklearn-0.1.0/xlearn/linear_model/_logistic.py +2327 -0
  1304. jax_sklearn-0.1.0/xlearn/linear_model/_omp.py +1121 -0
  1305. jax_sklearn-0.1.0/xlearn/linear_model/_passive_aggressive.py +573 -0
  1306. jax_sklearn-0.1.0/xlearn/linear_model/_perceptron.py +226 -0
  1307. jax_sklearn-0.1.0/xlearn/linear_model/_quantile.py +301 -0
  1308. jax_sklearn-0.1.0/xlearn/linear_model/_ransac.py +726 -0
  1309. jax_sklearn-0.1.0/xlearn/linear_model/_ridge.py +2899 -0
  1310. jax_sklearn-0.1.0/xlearn/linear_model/_sag.py +370 -0
  1311. jax_sklearn-0.1.0/xlearn/linear_model/_sag_fast.pyx.tp +642 -0
  1312. jax_sklearn-0.1.0/xlearn/linear_model/_sgd_fast.pyx.tp +661 -0
  1313. jax_sklearn-0.1.0/xlearn/linear_model/_stochastic_gradient.py +2604 -0
  1314. jax_sklearn-0.1.0/xlearn/linear_model/_theil_sen.py +467 -0
  1315. jax_sklearn-0.1.0/xlearn/linear_model/meson.build +32 -0
  1316. jax_sklearn-0.1.0/xlearn/linear_model/tests/__init__.py +0 -0
  1317. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_base.py +791 -0
  1318. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_bayes.py +314 -0
  1319. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_common.py +234 -0
  1320. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_coordinate_descent.py +1805 -0
  1321. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_huber.py +216 -0
  1322. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_least_angle.py +869 -0
  1323. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_linear_loss.py +510 -0
  1324. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_logistic.py +2439 -0
  1325. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_omp.py +273 -0
  1326. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_passive_aggressive.py +268 -0
  1327. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_perceptron.py +88 -0
  1328. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_quantile.py +283 -0
  1329. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_ransac.py +545 -0
  1330. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_ridge.py +2380 -0
  1331. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_sag.py +861 -0
  1332. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_sgd.py +2195 -0
  1333. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_sparse_coordinate_descent.py +384 -0
  1334. jax_sklearn-0.1.0/xlearn/linear_model/tests/test_theil_sen.py +303 -0
  1335. jax_sklearn-0.1.0/xlearn/manifold/__init__.py +22 -0
  1336. jax_sklearn-0.1.0/xlearn/manifold/_barnes_hut_tsne.pyx +295 -0
  1337. jax_sklearn-0.1.0/xlearn/manifold/_isomap.py +442 -0
  1338. jax_sklearn-0.1.0/xlearn/manifold/_locally_linear.py +879 -0
  1339. jax_sklearn-0.1.0/xlearn/manifold/_mds.py +714 -0
  1340. jax_sklearn-0.1.0/xlearn/manifold/_spectral_embedding.py +776 -0
  1341. jax_sklearn-0.1.0/xlearn/manifold/_t_sne.py +1184 -0
  1342. jax_sklearn-0.1.0/xlearn/manifold/_utils.pyx +120 -0
  1343. jax_sklearn-0.1.0/xlearn/manifold/meson.build +14 -0
  1344. jax_sklearn-0.1.0/xlearn/manifold/tests/__init__.py +0 -0
  1345. jax_sklearn-0.1.0/xlearn/manifold/tests/test_isomap.py +348 -0
  1346. jax_sklearn-0.1.0/xlearn/manifold/tests/test_locally_linear.py +171 -0
  1347. jax_sklearn-0.1.0/xlearn/manifold/tests/test_mds.py +234 -0
  1348. jax_sklearn-0.1.0/xlearn/manifold/tests/test_spectral_embedding.py +503 -0
  1349. jax_sklearn-0.1.0/xlearn/manifold/tests/test_t_sne.py +1187 -0
  1350. jax_sklearn-0.1.0/xlearn/meson.build +273 -0
  1351. jax_sklearn-0.1.0/xlearn/metrics/__init__.py +181 -0
  1352. jax_sklearn-0.1.0/xlearn/metrics/_base.py +193 -0
  1353. jax_sklearn-0.1.0/xlearn/metrics/_classification.py +3730 -0
  1354. jax_sklearn-0.1.0/xlearn/metrics/_dist_metrics.pxd.tp +152 -0
  1355. jax_sklearn-0.1.0/xlearn/metrics/_dist_metrics.pyx.tp +2811 -0
  1356. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/__init__.py +112 -0
  1357. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_argkmin.pxd.tp +31 -0
  1358. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_argkmin.pyx.tp +512 -0
  1359. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_argkmin_classmode.pyx.tp +182 -0
  1360. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_base.pxd.tp +135 -0
  1361. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_base.pyx.tp +504 -0
  1362. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_classmode.pxd +5 -0
  1363. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_datasets_pair.pxd.tp +67 -0
  1364. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_datasets_pair.pyx.tp +406 -0
  1365. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_dispatcher.py +767 -0
  1366. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_middle_term_computer.pxd.tp +228 -0
  1367. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_middle_term_computer.pyx.tp +633 -0
  1368. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_radius_neighbors.pxd.tp +90 -0
  1369. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_radius_neighbors.pyx.tp +514 -0
  1370. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_radius_neighbors_classmode.pyx.tp +217 -0
  1371. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/meson.build +193 -0
  1372. jax_sklearn-0.1.0/xlearn/metrics/_pairwise_fast.pyx +107 -0
  1373. jax_sklearn-0.1.0/xlearn/metrics/_plot/__init__.py +2 -0
  1374. jax_sklearn-0.1.0/xlearn/metrics/_plot/confusion_matrix.py +499 -0
  1375. jax_sklearn-0.1.0/xlearn/metrics/_plot/det_curve.py +371 -0
  1376. jax_sklearn-0.1.0/xlearn/metrics/_plot/precision_recall_curve.py +555 -0
  1377. jax_sklearn-0.1.0/xlearn/metrics/_plot/regression.py +413 -0
  1378. jax_sklearn-0.1.0/xlearn/metrics/_plot/roc_curve.py +795 -0
  1379. jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/__init__.py +0 -0
  1380. jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_common_curve_display.py +292 -0
  1381. jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_confusion_matrix_display.py +374 -0
  1382. jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_det_curve_display.py +114 -0
  1383. jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_precision_recall_display.py +382 -0
  1384. jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_predict_error_display.py +169 -0
  1385. jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_roc_curve_display.py +987 -0
  1386. jax_sklearn-0.1.0/xlearn/metrics/_ranking.py +2077 -0
  1387. jax_sklearn-0.1.0/xlearn/metrics/_regression.py +1930 -0
  1388. jax_sklearn-0.1.0/xlearn/metrics/_scorer.py +1166 -0
  1389. jax_sklearn-0.1.0/xlearn/metrics/cluster/__init__.py +55 -0
  1390. jax_sklearn-0.1.0/xlearn/metrics/cluster/_bicluster.py +114 -0
  1391. jax_sklearn-0.1.0/xlearn/metrics/cluster/_expected_mutual_info_fast.pyx +69 -0
  1392. jax_sklearn-0.1.0/xlearn/metrics/cluster/_supervised.py +1314 -0
  1393. jax_sklearn-0.1.0/xlearn/metrics/cluster/_unsupervised.py +463 -0
  1394. jax_sklearn-0.1.0/xlearn/metrics/cluster/meson.build +6 -0
  1395. jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/__init__.py +0 -0
  1396. jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_bicluster.py +56 -0
  1397. jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_common.py +234 -0
  1398. jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_supervised.py +522 -0
  1399. jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_unsupervised.py +413 -0
  1400. jax_sklearn-0.1.0/xlearn/metrics/meson.build +49 -0
  1401. jax_sklearn-0.1.0/xlearn/metrics/pairwise.py +2675 -0
  1402. jax_sklearn-0.1.0/xlearn/metrics/tests/__init__.py +0 -0
  1403. jax_sklearn-0.1.0/xlearn/metrics/tests/test_classification.py +3397 -0
  1404. jax_sklearn-0.1.0/xlearn/metrics/tests/test_common.py +2348 -0
  1405. jax_sklearn-0.1.0/xlearn/metrics/tests/test_dist_metrics.py +431 -0
  1406. jax_sklearn-0.1.0/xlearn/metrics/tests/test_pairwise.py +1683 -0
  1407. jax_sklearn-0.1.0/xlearn/metrics/tests/test_pairwise_distances_reduction.py +1643 -0
  1408. jax_sklearn-0.1.0/xlearn/metrics/tests/test_ranking.py +2270 -0
  1409. jax_sklearn-0.1.0/xlearn/metrics/tests/test_regression.py +636 -0
  1410. jax_sklearn-0.1.0/xlearn/metrics/tests/test_score_objects.py +1665 -0
  1411. jax_sklearn-0.1.0/xlearn/mixture/__init__.py +9 -0
  1412. jax_sklearn-0.1.0/xlearn/mixture/_base.py +571 -0
  1413. jax_sklearn-0.1.0/xlearn/mixture/_bayesian_mixture.py +891 -0
  1414. jax_sklearn-0.1.0/xlearn/mixture/_gaussian_mixture.py +934 -0
  1415. jax_sklearn-0.1.0/xlearn/mixture/tests/__init__.py +0 -0
  1416. jax_sklearn-0.1.0/xlearn/mixture/tests/test_bayesian_mixture.py +464 -0
  1417. jax_sklearn-0.1.0/xlearn/mixture/tests/test_gaussian_mixture.py +1473 -0
  1418. jax_sklearn-0.1.0/xlearn/mixture/tests/test_mixture.py +30 -0
  1419. jax_sklearn-0.1.0/xlearn/model_selection/__init__.py +99 -0
  1420. jax_sklearn-0.1.0/xlearn/model_selection/_classification_threshold.py +889 -0
  1421. jax_sklearn-0.1.0/xlearn/model_selection/_plot.py +885 -0
  1422. jax_sklearn-0.1.0/xlearn/model_selection/_search.py +1996 -0
  1423. jax_sklearn-0.1.0/xlearn/model_selection/_search_successive_halving.py +1095 -0
  1424. jax_sklearn-0.1.0/xlearn/model_selection/_split.py +3055 -0
  1425. jax_sklearn-0.1.0/xlearn/model_selection/_validation.py +2530 -0
  1426. jax_sklearn-0.1.0/xlearn/model_selection/tests/__init__.py +0 -0
  1427. jax_sklearn-0.1.0/xlearn/model_selection/tests/common.py +24 -0
  1428. jax_sklearn-0.1.0/xlearn/model_selection/tests/test_classification_threshold.py +618 -0
  1429. jax_sklearn-0.1.0/xlearn/model_selection/tests/test_plot.py +572 -0
  1430. jax_sklearn-0.1.0/xlearn/model_selection/tests/test_search.py +2966 -0
  1431. jax_sklearn-0.1.0/xlearn/model_selection/tests/test_split.py +2102 -0
  1432. jax_sklearn-0.1.0/xlearn/model_selection/tests/test_successive_halving.py +853 -0
  1433. jax_sklearn-0.1.0/xlearn/model_selection/tests/test_validation.py +2739 -0
  1434. jax_sklearn-0.1.0/xlearn/multiclass.py +1287 -0
  1435. jax_sklearn-0.1.0/xlearn/multioutput.py +1328 -0
  1436. jax_sklearn-0.1.0/xlearn/naive_bayes.py +1540 -0
  1437. jax_sklearn-0.1.0/xlearn/neighbors/__init__.py +42 -0
  1438. jax_sklearn-0.1.0/xlearn/neighbors/_ball_tree.pyx.tp +284 -0
  1439. jax_sklearn-0.1.0/xlearn/neighbors/_base.py +1404 -0
  1440. jax_sklearn-0.1.0/xlearn/neighbors/_binary_tree.pxi.tp +2478 -0
  1441. jax_sklearn-0.1.0/xlearn/neighbors/_classification.py +919 -0
  1442. jax_sklearn-0.1.0/xlearn/neighbors/_graph.py +704 -0
  1443. jax_sklearn-0.1.0/xlearn/neighbors/_kd_tree.pyx.tp +336 -0
  1444. jax_sklearn-0.1.0/xlearn/neighbors/_kde.py +359 -0
  1445. jax_sklearn-0.1.0/xlearn/neighbors/_lof.py +518 -0
  1446. jax_sklearn-0.1.0/xlearn/neighbors/_nca.py +534 -0
  1447. jax_sklearn-0.1.0/xlearn/neighbors/_nearest_centroid.py +359 -0
  1448. jax_sklearn-0.1.0/xlearn/neighbors/_partition_nodes.pxd +10 -0
  1449. jax_sklearn-0.1.0/xlearn/neighbors/_partition_nodes.pyx +122 -0
  1450. jax_sklearn-0.1.0/xlearn/neighbors/_quad_tree.pxd +92 -0
  1451. jax_sklearn-0.1.0/xlearn/neighbors/_quad_tree.pyx +609 -0
  1452. jax_sklearn-0.1.0/xlearn/neighbors/_regression.py +513 -0
  1453. jax_sklearn-0.1.0/xlearn/neighbors/_unsupervised.py +179 -0
  1454. jax_sklearn-0.1.0/xlearn/neighbors/meson.build +53 -0
  1455. jax_sklearn-0.1.0/xlearn/neighbors/tests/__init__.py +0 -0
  1456. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_ball_tree.py +200 -0
  1457. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_graph.py +101 -0
  1458. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_kd_tree.py +100 -0
  1459. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_kde.py +252 -0
  1460. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_lof.py +394 -0
  1461. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_nca.py +563 -0
  1462. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_nearest_centroid.py +237 -0
  1463. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_neighbors.py +2503 -0
  1464. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_neighbors_pipeline.py +256 -0
  1465. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_neighbors_tree.py +296 -0
  1466. jax_sklearn-0.1.0/xlearn/neighbors/tests/test_quad_tree.py +144 -0
  1467. jax_sklearn-0.1.0/xlearn/neural_network/__init__.py +9 -0
  1468. jax_sklearn-0.1.0/xlearn/neural_network/_base.py +287 -0
  1469. jax_sklearn-0.1.0/xlearn/neural_network/_multilayer_perceptron.py +1797 -0
  1470. jax_sklearn-0.1.0/xlearn/neural_network/_rbm.py +445 -0
  1471. jax_sklearn-0.1.0/xlearn/neural_network/_stochastic_optimizers.py +287 -0
  1472. jax_sklearn-0.1.0/xlearn/neural_network/tests/__init__.py +0 -0
  1473. jax_sklearn-0.1.0/xlearn/neural_network/tests/test_base.py +52 -0
  1474. jax_sklearn-0.1.0/xlearn/neural_network/tests/test_mlp.py +1094 -0
  1475. jax_sklearn-0.1.0/xlearn/neural_network/tests/test_rbm.py +251 -0
  1476. jax_sklearn-0.1.0/xlearn/neural_network/tests/test_stochastic_optimizers.py +112 -0
  1477. jax_sklearn-0.1.0/xlearn/pipeline.py +2188 -0
  1478. jax_sklearn-0.1.0/xlearn/preprocessing/__init__.py +63 -0
  1479. jax_sklearn-0.1.0/xlearn/preprocessing/_csr_polynomial_expansion.pyx +258 -0
  1480. jax_sklearn-0.1.0/xlearn/preprocessing/_data.py +3706 -0
  1481. jax_sklearn-0.1.0/xlearn/preprocessing/_discretization.py +548 -0
  1482. jax_sklearn-0.1.0/xlearn/preprocessing/_encoders.py +1698 -0
  1483. jax_sklearn-0.1.0/xlearn/preprocessing/_function_transformer.py +446 -0
  1484. jax_sklearn-0.1.0/xlearn/preprocessing/_label.py +963 -0
  1485. jax_sklearn-0.1.0/xlearn/preprocessing/_polynomial.py +1153 -0
  1486. jax_sklearn-0.1.0/xlearn/preprocessing/_target_encoder.py +534 -0
  1487. jax_sklearn-0.1.0/xlearn/preprocessing/_target_encoder_fast.pyx +167 -0
  1488. jax_sklearn-0.1.0/xlearn/preprocessing/meson.build +13 -0
  1489. jax_sklearn-0.1.0/xlearn/preprocessing/tests/__init__.py +0 -0
  1490. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_common.py +187 -0
  1491. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_data.py +2693 -0
  1492. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_discretization.py +665 -0
  1493. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_encoders.py +2367 -0
  1494. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_function_transformer.py +579 -0
  1495. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_label.py +748 -0
  1496. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_polynomial.py +1230 -0
  1497. jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_target_encoder.py +714 -0
  1498. jax_sklearn-0.1.0/xlearn/random_projection.py +824 -0
  1499. jax_sklearn-0.1.0/xlearn/semi_supervised/__init__.py +13 -0
  1500. jax_sklearn-0.1.0/xlearn/semi_supervised/_label_propagation.py +630 -0
  1501. jax_sklearn-0.1.0/xlearn/semi_supervised/_self_training.py +625 -0
  1502. jax_sklearn-0.1.0/xlearn/semi_supervised/tests/__init__.py +0 -0
  1503. jax_sklearn-0.1.0/xlearn/semi_supervised/tests/test_label_propagation.py +238 -0
  1504. jax_sklearn-0.1.0/xlearn/semi_supervised/tests/test_self_training.py +395 -0
  1505. jax_sklearn-0.1.0/xlearn/svm/__init__.py +21 -0
  1506. jax_sklearn-0.1.0/xlearn/svm/_base.py +1262 -0
  1507. jax_sklearn-0.1.0/xlearn/svm/_bounds.py +98 -0
  1508. jax_sklearn-0.1.0/xlearn/svm/_classes.py +1789 -0
  1509. jax_sklearn-0.1.0/xlearn/svm/_liblinear.pxi +43 -0
  1510. jax_sklearn-0.1.0/xlearn/svm/_liblinear.pyx +147 -0
  1511. jax_sklearn-0.1.0/xlearn/svm/_libsvm.pxi +75 -0
  1512. jax_sklearn-0.1.0/xlearn/svm/_libsvm.pyx +917 -0
  1513. jax_sklearn-0.1.0/xlearn/svm/_libsvm_sparse.pyx +550 -0
  1514. jax_sklearn-0.1.0/xlearn/svm/_newrand.pyx +13 -0
  1515. jax_sklearn-0.1.0/xlearn/svm/meson.build +48 -0
  1516. jax_sklearn-0.1.0/xlearn/svm/src/liblinear/COPYRIGHT +31 -0
  1517. jax_sklearn-0.1.0/xlearn/svm/src/liblinear/_cython_blas_helpers.h +16 -0
  1518. jax_sklearn-0.1.0/xlearn/svm/src/liblinear/liblinear_helper.c +236 -0
  1519. jax_sklearn-0.1.0/xlearn/svm/src/liblinear/linear.cpp +3075 -0
  1520. jax_sklearn-0.1.0/xlearn/svm/src/liblinear/linear.h +86 -0
  1521. jax_sklearn-0.1.0/xlearn/svm/src/liblinear/tron.cpp +223 -0
  1522. jax_sklearn-0.1.0/xlearn/svm/src/liblinear/tron.h +37 -0
  1523. jax_sklearn-0.1.0/xlearn/svm/src/libsvm/LIBSVM_CHANGES +11 -0
  1524. jax_sklearn-0.1.0/xlearn/svm/src/libsvm/_svm_cython_blas_helpers.h +9 -0
  1525. jax_sklearn-0.1.0/xlearn/svm/src/libsvm/libsvm_helper.c +425 -0
  1526. jax_sklearn-0.1.0/xlearn/svm/src/libsvm/libsvm_sparse_helper.c +472 -0
  1527. jax_sklearn-0.1.0/xlearn/svm/src/libsvm/libsvm_template.cpp +8 -0
  1528. jax_sklearn-0.1.0/xlearn/svm/src/libsvm/svm.cpp +3187 -0
  1529. jax_sklearn-0.1.0/xlearn/svm/src/libsvm/svm.h +176 -0
  1530. jax_sklearn-0.1.0/xlearn/svm/src/newrand/newrand.h +59 -0
  1531. jax_sklearn-0.1.0/xlearn/svm/tests/__init__.py +0 -0
  1532. jax_sklearn-0.1.0/xlearn/svm/tests/test_bounds.py +147 -0
  1533. jax_sklearn-0.1.0/xlearn/svm/tests/test_sparse.py +496 -0
  1534. jax_sklearn-0.1.0/xlearn/svm/tests/test_svm.py +1440 -0
  1535. jax_sklearn-0.1.0/xlearn/tests/__init__.py +0 -0
  1536. jax_sklearn-0.1.0/xlearn/tests/metadata_routing_common.py +584 -0
  1537. jax_sklearn-0.1.0/xlearn/tests/test_base.py +1081 -0
  1538. jax_sklearn-0.1.0/xlearn/tests/test_build.py +34 -0
  1539. jax_sklearn-0.1.0/xlearn/tests/test_calibration.py +1136 -0
  1540. jax_sklearn-0.1.0/xlearn/tests/test_check_build.py +15 -0
  1541. jax_sklearn-0.1.0/xlearn/tests/test_common.py +406 -0
  1542. jax_sklearn-0.1.0/xlearn/tests/test_config.py +168 -0
  1543. jax_sklearn-0.1.0/xlearn/tests/test_discriminant_analysis.py +670 -0
  1544. jax_sklearn-0.1.0/xlearn/tests/test_docstring_parameters.py +328 -0
  1545. jax_sklearn-0.1.0/xlearn/tests/test_docstring_parameters_consistency.py +113 -0
  1546. jax_sklearn-0.1.0/xlearn/tests/test_docstrings.py +208 -0
  1547. jax_sklearn-0.1.0/xlearn/tests/test_dummy.py +715 -0
  1548. jax_sklearn-0.1.0/xlearn/tests/test_init.py +20 -0
  1549. jax_sklearn-0.1.0/xlearn/tests/test_isotonic.py +708 -0
  1550. jax_sklearn-0.1.0/xlearn/tests/test_kernel_approximation.py +495 -0
  1551. jax_sklearn-0.1.0/xlearn/tests/test_kernel_ridge.py +80 -0
  1552. jax_sklearn-0.1.0/xlearn/tests/test_metadata_routing.py +1158 -0
  1553. jax_sklearn-0.1.0/xlearn/tests/test_metaestimators.py +337 -0
  1554. jax_sklearn-0.1.0/xlearn/tests/test_metaestimators_metadata_routing.py +927 -0
  1555. jax_sklearn-0.1.0/xlearn/tests/test_min_dependencies_readme.py +133 -0
  1556. jax_sklearn-0.1.0/xlearn/tests/test_multiclass.py +971 -0
  1557. jax_sklearn-0.1.0/xlearn/tests/test_multioutput.py +880 -0
  1558. jax_sklearn-0.1.0/xlearn/tests/test_naive_bayes.py +979 -0
  1559. jax_sklearn-0.1.0/xlearn/tests/test_pipeline.py +2413 -0
  1560. jax_sklearn-0.1.0/xlearn/tests/test_public_functions.py +403 -0
  1561. jax_sklearn-0.1.0/xlearn/tests/test_random_projection.py +584 -0
  1562. jax_sklearn-0.1.0/xlearn/tree/__init__.py +24 -0
  1563. jax_sklearn-0.1.0/xlearn/tree/_classes.py +1997 -0
  1564. jax_sklearn-0.1.0/xlearn/tree/_criterion.pxd +109 -0
  1565. jax_sklearn-0.1.0/xlearn/tree/_criterion.pyx +1697 -0
  1566. jax_sklearn-0.1.0/xlearn/tree/_export.py +1167 -0
  1567. jax_sklearn-0.1.0/xlearn/tree/_partitioner.pxd +178 -0
  1568. jax_sklearn-0.1.0/xlearn/tree/_partitioner.pyx +821 -0
  1569. jax_sklearn-0.1.0/xlearn/tree/_reingold_tilford.py +188 -0
  1570. jax_sklearn-0.1.0/xlearn/tree/_splitter.pxd +106 -0
  1571. jax_sklearn-0.1.0/xlearn/tree/_splitter.pyx +901 -0
  1572. jax_sklearn-0.1.0/xlearn/tree/_tree.pxd +133 -0
  1573. jax_sklearn-0.1.0/xlearn/tree/_tree.pyx +1989 -0
  1574. jax_sklearn-0.1.0/xlearn/tree/_utils.pxd +100 -0
  1575. jax_sklearn-0.1.0/xlearn/tree/_utils.pyx +460 -0
  1576. jax_sklearn-0.1.0/xlearn/tree/meson.build +28 -0
  1577. jax_sklearn-0.1.0/xlearn/tree/tests/__init__.py +0 -0
  1578. jax_sklearn-0.1.0/xlearn/tree/tests/test_export.py +630 -0
  1579. jax_sklearn-0.1.0/xlearn/tree/tests/test_monotonic_tree.py +512 -0
  1580. jax_sklearn-0.1.0/xlearn/tree/tests/test_reingold_tilford.py +49 -0
  1581. jax_sklearn-0.1.0/xlearn/tree/tests/test_tree.py +2839 -0
  1582. jax_sklearn-0.1.0/xlearn/utils/__init__.py +84 -0
  1583. jax_sklearn-0.1.0/xlearn/utils/_arpack.py +33 -0
  1584. jax_sklearn-0.1.0/xlearn/utils/_array_api.py +1006 -0
  1585. jax_sklearn-0.1.0/xlearn/utils/_available_if.py +96 -0
  1586. jax_sklearn-0.1.0/xlearn/utils/_bunch.py +70 -0
  1587. jax_sklearn-0.1.0/xlearn/utils/_chunking.py +178 -0
  1588. jax_sklearn-0.1.0/xlearn/utils/_cython_blas.pxd +41 -0
  1589. jax_sklearn-0.1.0/xlearn/utils/_cython_blas.pyx +239 -0
  1590. jax_sklearn-0.1.0/xlearn/utils/_encode.py +376 -0
  1591. jax_sklearn-0.1.0/xlearn/utils/_estimator_html_repr.py +34 -0
  1592. jax_sklearn-0.1.0/xlearn/utils/_fast_dict.pxd +19 -0
  1593. jax_sklearn-0.1.0/xlearn/utils/_fast_dict.pyx +137 -0
  1594. jax_sklearn-0.1.0/xlearn/utils/_heap.pxd +14 -0
  1595. jax_sklearn-0.1.0/xlearn/utils/_heap.pyx +85 -0
  1596. jax_sklearn-0.1.0/xlearn/utils/_indexing.py +755 -0
  1597. jax_sklearn-0.1.0/xlearn/utils/_isfinite.pyx +51 -0
  1598. jax_sklearn-0.1.0/xlearn/utils/_mask.py +181 -0
  1599. jax_sklearn-0.1.0/xlearn/utils/_metadata_requests.py +1628 -0
  1600. jax_sklearn-0.1.0/xlearn/utils/_missing.py +68 -0
  1601. jax_sklearn-0.1.0/xlearn/utils/_mocking.py +419 -0
  1602. jax_sklearn-0.1.0/xlearn/utils/_openmp_helpers.pxd +33 -0
  1603. jax_sklearn-0.1.0/xlearn/utils/_openmp_helpers.pyx +77 -0
  1604. jax_sklearn-0.1.0/xlearn/utils/_optional_dependencies.py +46 -0
  1605. jax_sklearn-0.1.0/xlearn/utils/_param_validation.py +910 -0
  1606. jax_sklearn-0.1.0/xlearn/utils/_plotting.py +419 -0
  1607. jax_sklearn-0.1.0/xlearn/utils/_pprint.py +463 -0
  1608. jax_sklearn-0.1.0/xlearn/utils/_random.pxd +34 -0
  1609. jax_sklearn-0.1.0/xlearn/utils/_random.pyx +355 -0
  1610. jax_sklearn-0.1.0/xlearn/utils/_repr_html/__init__.py +2 -0
  1611. jax_sklearn-0.1.0/xlearn/utils/_repr_html/base.py +152 -0
  1612. jax_sklearn-0.1.0/xlearn/utils/_repr_html/estimator.css +413 -0
  1613. jax_sklearn-0.1.0/xlearn/utils/_repr_html/estimator.js +42 -0
  1614. jax_sklearn-0.1.0/xlearn/utils/_repr_html/estimator.py +497 -0
  1615. jax_sklearn-0.1.0/xlearn/utils/_repr_html/params.css +63 -0
  1616. jax_sklearn-0.1.0/xlearn/utils/_repr_html/params.py +83 -0
  1617. jax_sklearn-0.1.0/xlearn/utils/_repr_html/tests/__init__.py +0 -0
  1618. jax_sklearn-0.1.0/xlearn/utils/_repr_html/tests/test_estimator.py +616 -0
  1619. jax_sklearn-0.1.0/xlearn/utils/_repr_html/tests/test_params.py +74 -0
  1620. jax_sklearn-0.1.0/xlearn/utils/_response.py +317 -0
  1621. jax_sklearn-0.1.0/xlearn/utils/_seq_dataset.pxd.tp +76 -0
  1622. jax_sklearn-0.1.0/xlearn/utils/_seq_dataset.pyx.tp +348 -0
  1623. jax_sklearn-0.1.0/xlearn/utils/_set_output.py +460 -0
  1624. jax_sklearn-0.1.0/xlearn/utils/_show_versions.py +115 -0
  1625. jax_sklearn-0.1.0/xlearn/utils/_sorting.pxd +9 -0
  1626. jax_sklearn-0.1.0/xlearn/utils/_sorting.pyx +93 -0
  1627. jax_sklearn-0.1.0/xlearn/utils/_tags.py +355 -0
  1628. jax_sklearn-0.1.0/xlearn/utils/_test_common/__init__.py +2 -0
  1629. jax_sklearn-0.1.0/xlearn/utils/_test_common/instance_generator.py +1293 -0
  1630. jax_sklearn-0.1.0/xlearn/utils/_testing.py +1454 -0
  1631. jax_sklearn-0.1.0/xlearn/utils/_typedefs.pxd +41 -0
  1632. jax_sklearn-0.1.0/xlearn/utils/_typedefs.pyx +23 -0
  1633. jax_sklearn-0.1.0/xlearn/utils/_unique.py +108 -0
  1634. jax_sklearn-0.1.0/xlearn/utils/_user_interface.py +57 -0
  1635. jax_sklearn-0.1.0/xlearn/utils/_vector_sentinel.pxd +12 -0
  1636. jax_sklearn-0.1.0/xlearn/utils/_vector_sentinel.pyx +118 -0
  1637. jax_sklearn-0.1.0/xlearn/utils/_weight_vector.pxd.tp +45 -0
  1638. jax_sklearn-0.1.0/xlearn/utils/_weight_vector.pyx.tp +207 -0
  1639. jax_sklearn-0.1.0/xlearn/utils/arrayfuncs.pyx +118 -0
  1640. jax_sklearn-0.1.0/xlearn/utils/class_weight.py +231 -0
  1641. jax_sklearn-0.1.0/xlearn/utils/deprecation.py +149 -0
  1642. jax_sklearn-0.1.0/xlearn/utils/discovery.py +255 -0
  1643. jax_sklearn-0.1.0/xlearn/utils/estimator_checks.py +5348 -0
  1644. jax_sklearn-0.1.0/xlearn/utils/extmath.py +1395 -0
  1645. jax_sklearn-0.1.0/xlearn/utils/fixes.py +427 -0
  1646. jax_sklearn-0.1.0/xlearn/utils/graph.py +162 -0
  1647. jax_sklearn-0.1.0/xlearn/utils/meson.build +75 -0
  1648. jax_sklearn-0.1.0/xlearn/utils/metadata_routing.py +23 -0
  1649. jax_sklearn-0.1.0/xlearn/utils/metaestimators.py +163 -0
  1650. jax_sklearn-0.1.0/xlearn/utils/multiclass.py +584 -0
  1651. jax_sklearn-0.1.0/xlearn/utils/murmurhash.pxd +21 -0
  1652. jax_sklearn-0.1.0/xlearn/utils/murmurhash.pyx +135 -0
  1653. jax_sklearn-0.1.0/xlearn/utils/optimize.py +389 -0
  1654. jax_sklearn-0.1.0/xlearn/utils/parallel.py +177 -0
  1655. jax_sklearn-0.1.0/xlearn/utils/random.py +101 -0
  1656. jax_sklearn-0.1.0/xlearn/utils/sparsefuncs.py +742 -0
  1657. jax_sklearn-0.1.0/xlearn/utils/sparsefuncs_fast.pyx +640 -0
  1658. jax_sklearn-0.1.0/xlearn/utils/src/MurmurHash3.cpp +345 -0
  1659. jax_sklearn-0.1.0/xlearn/utils/src/MurmurHash3.h +45 -0
  1660. jax_sklearn-0.1.0/xlearn/utils/stats.py +122 -0
  1661. jax_sklearn-0.1.0/xlearn/utils/tests/__init__.py +0 -0
  1662. jax_sklearn-0.1.0/xlearn/utils/tests/test_arpack.py +16 -0
  1663. jax_sklearn-0.1.0/xlearn/utils/tests/test_array_api.py +605 -0
  1664. jax_sklearn-0.1.0/xlearn/utils/tests/test_arrayfuncs.py +40 -0
  1665. jax_sklearn-0.1.0/xlearn/utils/tests/test_bunch.py +32 -0
  1666. jax_sklearn-0.1.0/xlearn/utils/tests/test_chunking.py +73 -0
  1667. jax_sklearn-0.1.0/xlearn/utils/tests/test_class_weight.py +334 -0
  1668. jax_sklearn-0.1.0/xlearn/utils/tests/test_cython_blas.py +250 -0
  1669. jax_sklearn-0.1.0/xlearn/utils/tests/test_deprecation.py +98 -0
  1670. jax_sklearn-0.1.0/xlearn/utils/tests/test_encode.py +274 -0
  1671. jax_sklearn-0.1.0/xlearn/utils/tests/test_estimator_checks.py +1665 -0
  1672. jax_sklearn-0.1.0/xlearn/utils/tests/test_estimator_html_repr.py +21 -0
  1673. jax_sklearn-0.1.0/xlearn/utils/tests/test_extmath.py +1121 -0
  1674. jax_sklearn-0.1.0/xlearn/utils/tests/test_fast_dict.py +47 -0
  1675. jax_sklearn-0.1.0/xlearn/utils/tests/test_fixes.py +160 -0
  1676. jax_sklearn-0.1.0/xlearn/utils/tests/test_graph.py +80 -0
  1677. jax_sklearn-0.1.0/xlearn/utils/tests/test_indexing.py +663 -0
  1678. jax_sklearn-0.1.0/xlearn/utils/tests/test_mask.py +19 -0
  1679. jax_sklearn-0.1.0/xlearn/utils/tests/test_metaestimators.py +63 -0
  1680. jax_sklearn-0.1.0/xlearn/utils/tests/test_missing.py +27 -0
  1681. jax_sklearn-0.1.0/xlearn/utils/tests/test_mocking.py +205 -0
  1682. jax_sklearn-0.1.0/xlearn/utils/tests/test_multiclass.py +645 -0
  1683. jax_sklearn-0.1.0/xlearn/utils/tests/test_murmurhash.py +73 -0
  1684. jax_sklearn-0.1.0/xlearn/utils/tests/test_optimize.py +220 -0
  1685. jax_sklearn-0.1.0/xlearn/utils/tests/test_parallel.py +155 -0
  1686. jax_sklearn-0.1.0/xlearn/utils/tests/test_param_validation.py +786 -0
  1687. jax_sklearn-0.1.0/xlearn/utils/tests/test_plotting.py +544 -0
  1688. jax_sklearn-0.1.0/xlearn/utils/tests/test_pprint.py +695 -0
  1689. jax_sklearn-0.1.0/xlearn/utils/tests/test_random.py +192 -0
  1690. jax_sklearn-0.1.0/xlearn/utils/tests/test_response.py +394 -0
  1691. jax_sklearn-0.1.0/xlearn/utils/tests/test_seq_dataset.py +183 -0
  1692. jax_sklearn-0.1.0/xlearn/utils/tests/test_set_output.py +471 -0
  1693. jax_sklearn-0.1.0/xlearn/utils/tests/test_shortest_path.py +65 -0
  1694. jax_sklearn-0.1.0/xlearn/utils/tests/test_show_versions.py +40 -0
  1695. jax_sklearn-0.1.0/xlearn/utils/tests/test_sparsefuncs.py +998 -0
  1696. jax_sklearn-0.1.0/xlearn/utils/tests/test_stats.py +352 -0
  1697. jax_sklearn-0.1.0/xlearn/utils/tests/test_tags.py +153 -0
  1698. jax_sklearn-0.1.0/xlearn/utils/tests/test_testing.py +1143 -0
  1699. jax_sklearn-0.1.0/xlearn/utils/tests/test_typedefs.py +25 -0
  1700. jax_sklearn-0.1.0/xlearn/utils/tests/test_unique.py +54 -0
  1701. jax_sklearn-0.1.0/xlearn/utils/tests/test_user_interface.py +65 -0
  1702. jax_sklearn-0.1.0/xlearn/utils/tests/test_validation.py +2374 -0
  1703. jax_sklearn-0.1.0/xlearn/utils/tests/test_weight_vector.py +25 -0
  1704. jax_sklearn-0.1.0/xlearn/utils/validation.py +2977 -0
@@ -0,0 +1,40 @@
1
+ #!/bin/bash
2
+
3
+ set -e
4
+
5
+ # This script is called in a binder context. When this script is called, we are
6
+ # inside a git checkout of the jax-sklearn/jax-sklearn repo. This script is
7
+ # generating notebooks from the jax-sklearn python examples.
8
+
9
+ if [[ -z "${REPO_DIR}" ]]; then
10
+ echo "This script was written for repo2docker and the REPO_DIR environment variable is supposed to be set."
11
+ echo "Exiting because this script can delete data if run outside of a repo2docker context."
12
+ exit 1
13
+ fi
14
+
15
+ # Back up content we need from the jax-sklearn repo
16
+ TMP_CONTENT_DIR=/tmp/jax-sklearn
17
+ mkdir -p $TMP_CONTENT_DIR
18
+ cp -r examples .binder $TMP_CONTENT_DIR
19
+ # delete everything in current directory including dot files and dot folders
20
+ find . -delete
21
+
22
+ # Generate notebooks and remove other files from examples folder
23
+ GENERATED_NOTEBOOKS_DIR=.generated-notebooks
24
+ cp -r $TMP_CONTENT_DIR/examples $GENERATED_NOTEBOOKS_DIR
25
+
26
+ find $GENERATED_NOTEBOOKS_DIR -name '*.py' -exec sphinx_gallery_py2jupyter '{}' +
27
+ NON_NOTEBOOKS=$(find $GENERATED_NOTEBOOKS_DIR -type f | grep -v '\.ipynb')
28
+ rm -f $NON_NOTEBOOKS
29
+
30
+ # Put the .binder folder back (may be useful for debugging purposes)
31
+ mv $TMP_CONTENT_DIR/.binder .
32
+ # Final clean up
33
+ rm -rf $TMP_CONTENT_DIR
34
+
35
+ # This is for compatibility with binder sphinx-gallery integration: this makes
36
+ # sure that the binder links generated by sphinx-gallery are correct even tough
37
+ # the repo we use for binder (jax-sklearn/jax-sklearn) is not the repo of the
38
+ # generated doc (jax-sklearn/jax-sklearn.github.io)
39
+ mkdir notebooks
40
+ ln -s ../$GENERATED_NOTEBOOKS_DIR notebooks/auto_examples
@@ -0,0 +1,10 @@
1
+ --find-links https://pypi.anaconda.org/scientific-python-nightly-wheels/simple/jax-sklearn
2
+ --pre
3
+ matplotlib
4
+ scikit-image
5
+ pandas
6
+ seaborn
7
+ Pillow
8
+ sphinx-gallery
9
+ jax-sklearn
10
+ polars
@@ -0,0 +1 @@
1
+ python-3.9
@@ -0,0 +1,129 @@
1
+ version: 2.1
2
+
3
+ jobs:
4
+ lint:
5
+ docker:
6
+ - image: cimg/python:3.10.16
7
+ steps:
8
+ - checkout
9
+ - run:
10
+ name: dependencies
11
+ command: |
12
+ source build_tools/shared.sh
13
+ # Include pytest compatibility with mypy
14
+ pip install pytest $(get_dep ruff min) $(get_dep mypy min) cython-lint
15
+ - run:
16
+ name: linting
17
+ command: ./build_tools/linting.sh
18
+
19
+ doc-min-dependencies:
20
+ docker:
21
+ - image: cimg/base:current-22.04
22
+ environment:
23
+ - MKL_NUM_THREADS: 2
24
+ - OPENBLAS_NUM_THREADS: 2
25
+ - CONDA_ENV_NAME: testenv
26
+ - LOCK_FILE: build_tools/circle/doc_min_dependencies_linux-64_conda.lock
27
+ # Do not fail if the documentation build generates warnings with minimum
28
+ # dependencies as long as we can avoid raising warnings with more recent
29
+ # versions of the same dependencies.
30
+ - XLEARN_WARNINGS_AS_ERRORS: '0'
31
+ steps:
32
+ - checkout
33
+ - run: ./build_tools/circle/checkout_merge_commit.sh
34
+ - restore_cache:
35
+ key: v1-doc-min-deps-datasets-{{ .Branch }}
36
+ - restore_cache:
37
+ keys:
38
+ - doc-min-deps-ccache-{{ .Branch }}
39
+ - doc-min-deps-ccache
40
+ - run: ./build_tools/circle/build_doc.sh
41
+ - save_cache:
42
+ key: doc-min-deps-ccache-{{ .Branch }}-{{ .BuildNum }}
43
+ paths:
44
+ - ~/.ccache
45
+ - ~/.cache/pip
46
+ - save_cache:
47
+ key: v1-doc-min-deps-datasets-{{ .Branch }}
48
+ paths:
49
+ - ~/scikit_learn_data
50
+ - store_artifacts:
51
+ path: doc/_build/html/stable
52
+ destination: doc
53
+ - store_artifacts:
54
+ path: ~/log.txt
55
+ destination: log.txt
56
+
57
+ doc:
58
+ docker:
59
+ - image: cimg/base:current-22.04
60
+ environment:
61
+ - MKL_NUM_THREADS: 2
62
+ - OPENBLAS_NUM_THREADS: 2
63
+ - CONDA_ENV_NAME: testenv
64
+ - LOCK_FILE: build_tools/circle/doc_linux-64_conda.lock
65
+ # Make sure that we fail if the documentation build generates warnings with
66
+ # recent versions of the dependencies.
67
+ - XLEARN_WARNINGS_AS_ERRORS: '1'
68
+ steps:
69
+ - checkout
70
+ - run: ./build_tools/circle/checkout_merge_commit.sh
71
+ - restore_cache:
72
+ key: v1-doc-datasets-{{ .Branch }}
73
+ - restore_cache:
74
+ keys:
75
+ - doc-ccache-{{ .Branch }}
76
+ - doc-ccache
77
+ - run: ./build_tools/circle/build_doc.sh
78
+ - save_cache:
79
+ key: doc-ccache-{{ .Branch }}-{{ .BuildNum }}
80
+ paths:
81
+ - ~/.ccache
82
+ - ~/.cache/pip
83
+ - save_cache:
84
+ key: v1-doc-datasets-{{ .Branch }}
85
+ paths:
86
+ - ~/scikit_learn_data
87
+ - store_artifacts:
88
+ path: doc/_build/html/stable
89
+ destination: doc
90
+ - store_artifacts:
91
+ path: ~/log.txt
92
+ destination: log.txt
93
+ # Persists generated documentation so that it can be attached and deployed
94
+ # in the 'deploy' step.
95
+ - persist_to_workspace:
96
+ root: doc/_build/html
97
+ paths: .
98
+
99
+ deploy:
100
+ docker:
101
+ - image: cimg/base:current-22.04
102
+ steps:
103
+ - checkout
104
+ - run: ./build_tools/circle/checkout_merge_commit.sh
105
+ # Attach documentation generated in the 'doc' step so that it can be
106
+ # deployed.
107
+ - attach_workspace:
108
+ at: doc/_build/html
109
+ - run: ls -ltrh doc/_build/html/stable
110
+ - run:
111
+ command: |
112
+ if [[ "${CIRCLE_BRANCH}" =~ ^main$|^[0-9]+\.[0-9]+\.X$ ]]; then
113
+ bash build_tools/circle/push_doc.sh doc/_build/html/stable
114
+ fi
115
+
116
+ workflows:
117
+ version: 2
118
+ build-doc-and-deploy:
119
+ jobs:
120
+ - lint
121
+ - doc:
122
+ requires:
123
+ - lint
124
+ - doc-min-dependencies:
125
+ requires:
126
+ - lint
127
+ - deploy:
128
+ requires:
129
+ - doc
@@ -0,0 +1,33 @@
1
+ comment: false
2
+
3
+ coverage:
4
+ status:
5
+ project:
6
+ default:
7
+ # Commits pushed to main should not make the overall
8
+ # project coverage decrease by more than 1%:
9
+ target: auto
10
+ threshold: 1%
11
+ patch:
12
+ default:
13
+ # Be tolerant on slight code coverage diff on PRs to limit
14
+ # noisy red coverage status on github PRs.
15
+ # Note: The coverage stats are still uploaded
16
+ # to codecov so that PR reviewers can see uncovered lines
17
+ target: auto
18
+ threshold: 1%
19
+
20
+ codecov:
21
+ notify:
22
+ # Prevent coverage status to upload multiple times for parallel and long
23
+ # running CI pipelines. This configuration is particularly useful on PRs
24
+ # to avoid confusion. Note that this value is set to the number of Azure
25
+ # Pipeline jobs uploading coverage reports.
26
+ after_n_builds: 6
27
+
28
+ ignore:
29
+ - "xlearn/externals"
30
+ - "xlearn/_build_utils"
31
+ - "xlearn/__check_build"
32
+ - "xlearn/_min_dependencies.py"
33
+ - "**/conftest.py"
@@ -0,0 +1,11 @@
1
+ [run]
2
+ # Use statement coverage rather than branch coverage because
3
+ # COVERAGE_CORE=sysmon can make branch coverage slower rather than faster. See
4
+ # https://github.com/nedbat/coveragepy/issues/1812 for more details.
5
+ branch = False
6
+ source = xlearn
7
+ parallel = True
8
+ omit =
9
+ */xlearn/externals/*
10
+ */xlearn/_build_utils/*
11
+ */benchmarks/*
@@ -0,0 +1,12 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ otechie: # Replace with a single Otechie username
12
+ custom: ['https://numfocus.org/donate-to-jax-sklearn']
@@ -0,0 +1,95 @@
1
+ name: Bug Report
2
+ description: Create a report to help us reproduce and correct the bug
3
+ labels: ['Bug', 'Needs Triage']
4
+
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: >
9
+ #### Before submitting a bug, please make sure the issue hasn't been already
10
+ addressed by searching through [the past issues](https://github.com/chenxingqiang/jax-sklearn/issues).
11
+ - type: textarea
12
+ attributes:
13
+ label: Describe the bug
14
+ description: >
15
+ A clear and concise description of what the bug is.
16
+ validations:
17
+ required: true
18
+ - type: textarea
19
+ attributes:
20
+ label: Steps/Code to Reproduce
21
+ description: |
22
+ Please add a [minimal code example](https://jax-sklearn.org/dev/developers/minimal_reproducer.html) that can reproduce the error when running it. Be as succinct as possible, **do not depend on external data files**: instead you can generate synthetic data using `numpy.random`, [xlearn.datasets.make_regression](https://jax-sklearn.org/stable/modules/generated/xlearn.datasets.make_regression.html), [xlearn.datasets.make_classification](https://jax-sklearn.org/stable/modules/generated/xlearn.datasets.make_classification.html) or a few lines of Python code. Example:
23
+
24
+ ```python
25
+ from xlearn.feature_extraction.text import CountVectorizer
26
+ from xlearn.decomposition import LatentDirichletAllocation
27
+ docs = ["Help I have a bug" for i in range(1000)]
28
+ vectorizer = CountVectorizer(input=docs, analyzer='word')
29
+ lda_features = vectorizer.fit_transform(docs)
30
+ lda_model = LatentDirichletAllocation(
31
+ n_topics=10,
32
+ learning_method='online',
33
+ evaluate_every=10,
34
+ n_jobs=4,
35
+ )
36
+ model = lda_model.fit(lda_features)
37
+ ```
38
+
39
+ If the code is too long, feel free to put it in a public gist and link it in the issue: https://gist.github.com.
40
+
41
+ In short, **we are going to copy-paste your code** to run it and we expect to get the same result as you.
42
+
43
+ We acknowledge that crafting a [minimal reproducible code example](https://jax-sklearn.org/dev/developers/minimal_reproducer.html) requires some effort on your side but it really helps the maintainers quickly reproduce the problem and analyze its cause without any ambiguity. Ambiguous bug reports tend to be slower to fix because they will require more effort and back and forth discussion between the maintainers and the reporter to pin-point the precise conditions necessary to reproduce the problem.
44
+ placeholder: |
45
+ ```
46
+ Sample code to reproduce the problem
47
+ ```
48
+ validations:
49
+ required: true
50
+ - type: textarea
51
+ attributes:
52
+ label: Expected Results
53
+ description: >
54
+ Please paste or describe the expected results.
55
+ placeholder: >
56
+ Example: No error is thrown.
57
+ validations:
58
+ required: true
59
+ - type: textarea
60
+ attributes:
61
+ label: Actual Results
62
+ description: |
63
+ Please paste or describe the results you observe instead of the expected results. If you observe an error, please paste the error message including the **full traceback** of the exception. For instance the code above raises the following exception:
64
+
65
+ ```python-traceback
66
+ ---------------------------------------------------------------------------
67
+ TypeError Traceback (most recent call last)
68
+ <ipython-input-1-a674e682c281> in <module>
69
+ 4 vectorizer = CountVectorizer(input=docs, analyzer='word')
70
+ 5 lda_features = vectorizer.fit_transform(docs)
71
+ ----> 6 lda_model = LatentDirichletAllocation(
72
+ 7 n_topics=10,
73
+ 8 learning_method='online',
74
+
75
+ TypeError: __init__() got an unexpected keyword argument 'n_topics'
76
+ ```
77
+ placeholder: >
78
+ Please paste or specifically describe the actual output or traceback.
79
+ validations:
80
+ required: true
81
+ - type: textarea
82
+ attributes:
83
+ label: Versions
84
+ render: shell
85
+ description: |
86
+ Please run the following and paste the output below.
87
+ ```python
88
+ import xlearn; xlearn.show_versions()
89
+ ```
90
+ validations:
91
+ required: true
92
+ - type: markdown
93
+ attributes:
94
+ value: >
95
+ Thanks for contributing 🎉!
@@ -0,0 +1,17 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: Discussions
4
+ url: https://github.com/chenxingqiang/jax-sklearn/discussions/new
5
+ about: Ask questions and discuss with other jax-sklearn community members
6
+ - name: Stack Overflow
7
+ url: https://stackoverflow.com/questions/tagged/jax-sklearn
8
+ about: Please ask and answer usage questions on Stack Overflow
9
+ - name: Mailing list
10
+ url: https://mail.python.org/mailman/listinfo/jax-sklearn
11
+ about: General discussions and announcements on the mailing list
12
+ - name: Discord server
13
+ url: https://discord.gg/h9qyrK8Jc8
14
+ about: Developers and users can be found on the Discord server
15
+ - name: Blank issue
16
+ url: https://github.com/chenxingqiang/jax-sklearn/issues/new?template=BLANK_ISSUE
17
+ about: Please note that GitHub Discussions should be used in most cases instead
@@ -0,0 +1,17 @@
1
+ name: Documentation improvement
2
+ description: Create a report to help us improve the documentation. Alternatively you can just open a pull request with the suggested change.
3
+ labels: [Documentation, 'Needs Triage']
4
+
5
+ body:
6
+ - type: textarea
7
+ attributes:
8
+ label: Describe the issue linked to the documentation
9
+ description: >
10
+ Tell us about the confusion introduced in the documentation.
11
+ validations:
12
+ required: true
13
+ - type: textarea
14
+ attributes:
15
+ label: Suggest a potential alternative/fix
16
+ description: >
17
+ Tell us how we could improve the documentation in this regard.
@@ -0,0 +1,25 @@
1
+ name: Feature request
2
+ description: Suggest a new algorithm, enhancement to an existing algorithm, etc.
3
+ labels: ['New Feature', 'Needs Triage']
4
+
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: >
9
+ #### If you want to propose a new algorithm, please refer first to the [jax-sklearn inclusion criterion](https://jax-sklearn.org/stable/faq.html#what-are-the-inclusion-criteria-for-new-algorithms).
10
+ - type: textarea
11
+ attributes:
12
+ label: Describe the workflow you want to enable
13
+ validations:
14
+ required: true
15
+ - type: textarea
16
+ attributes:
17
+ label: Describe your proposed solution
18
+ validations:
19
+ required: true
20
+ - type: textarea
21
+ attributes:
22
+ label: Describe alternatives you've considered, if relevant
23
+ - type: textarea
24
+ attributes:
25
+ label: Additional context
@@ -0,0 +1,32 @@
1
+ <!--
2
+ Thanks for contributing a pull request! Please ensure you have taken a look at
3
+ the contribution guidelines: https://github.com/chenxingqiang/jax-sklearn/blob/main/CONTRIBUTING.md
4
+ -->
5
+
6
+ #### Reference Issues/PRs
7
+ <!--
8
+ Example: Fixes #1234. See also #3456.
9
+ Please use keywords (e.g., Fixes) to create link to the issues or pull requests
10
+ you resolved, so that they will automatically be closed when your pull request
11
+ is merged. See https://github.com/blog/1506-closing-issues-via-pull-requests
12
+ -->
13
+
14
+
15
+ #### What does this implement/fix? Explain your changes.
16
+
17
+
18
+ #### Any other comments?
19
+
20
+
21
+ <!--
22
+ Please be aware that we are a loose team of volunteers so patience is
23
+ necessary; assistance handling other issues is very welcome. We value
24
+ all user contributions, no matter how minor they are. If we are slow to
25
+ review, either the pull request needs some benchmarking, tinkering,
26
+ convincing, etc. or more likely the reviewers are simply busy. In either
27
+ case, we ask for your understanding during the review process.
28
+ For more information, see our FAQ on this topic:
29
+ https://jax-sklearn.org/dev/faq.html#why-is-my-pull-request-not-getting-any-attention.
30
+
31
+ Thanks for contributing!
32
+ -->
@@ -0,0 +1,21 @@
1
+ version: 2
2
+ updates:
3
+ # Maintain dependencies for GitHub Actions as recommended in SPEC8:
4
+ # https://github.com/scientific-python/specs/pull/325
5
+ # At the time of writing, release critical workflows such as
6
+ # pypa/gh-action-pypi-publish should use hash-based versioning for security
7
+ # reasons. This strategy may be generalized to all other github actions
8
+ # in the future.
9
+ - package-ecosystem: "github-actions"
10
+ directory: "/"
11
+ schedule:
12
+ interval: "monthly"
13
+ groups:
14
+ actions:
15
+ patterns:
16
+ - "*"
17
+ labels:
18
+ - "Build / CI"
19
+ - "dependencies"
20
+ reviewers:
21
+ - "jax-sklearn/core-devs"
@@ -0,0 +1,8 @@
1
+ cython:
2
+ - xlearn/**/*.pyx
3
+ - xlearn/**/*.pxd
4
+ - xlearn/**/*.pxi
5
+ # Tempita templates
6
+ - xlearn/**/*.pyx.tp
7
+ - xlearn/**/*.pxd.tp
8
+ - xlearn/**/*.pxi.tp
@@ -0,0 +1,80 @@
1
+ module:cluster:
2
+ - xlearn/cluster/**/*
3
+
4
+ module:common:
5
+ - xlearn/common/**/*
6
+
7
+ module:compose:
8
+ - xlearn/compose/**/*
9
+
10
+ module:covariance:
11
+ - xlearn/covariance/**/*
12
+
13
+ module:cross_decomposition:
14
+ - xlearn/cross_decomposition/**/*
15
+
16
+ module:datasets:
17
+ - xlearn/datasets/**/*
18
+
19
+ module:decomposition:
20
+ - xlearn/decomposition/**/*
21
+
22
+ module:ensemble:
23
+ - xlearn/ensemble/**/*
24
+
25
+ module:feature_extraction:
26
+ - xlearn/feature_extraction/**/*
27
+
28
+ module:feature_selection:
29
+ - xlearn/feature_selection/**/*
30
+
31
+ module:gaussian_process:
32
+ - xlearn/gaussian_process/**/*
33
+
34
+ module:impute:
35
+ - xlearn/impute/**/*
36
+
37
+ module:inspection:
38
+ - xlearn/inspection/**/*
39
+
40
+ module:linear_model:
41
+ - xlearn/linear_model/**/*
42
+
43
+ module:manifold:
44
+ - xlearn/manifold/**/*
45
+
46
+ module:metrics:
47
+ - xlearn/metrics/**/*
48
+
49
+ module:mixture:
50
+ - xlearn/mixture/**/*
51
+
52
+ module:model_selection:
53
+ - xlearn/model_selection/**/*
54
+
55
+ module:naive_bayes:
56
+ - xlearn/naive_bayes.py
57
+
58
+ module:neighbors:
59
+ - xlearn/neighbors/**/*
60
+
61
+ module:neural_network:
62
+ - xlearn/neural_network/**/*
63
+
64
+ module:pipeline:
65
+ - xlearn/pipeline.py
66
+
67
+ module:preprocessing:
68
+ - xlearn/preprocessing/**/*
69
+
70
+ module:semi_supervised:
71
+ - xlearn/semi_supervised/**/*
72
+
73
+ module:svm:
74
+ - xlearn/svm/**/*
75
+
76
+ module:tree:
77
+ - xlearn/tree/**/*
78
+
79
+ module:utils:
80
+ - xlearn/utils/**/*
@@ -0,0 +1,25 @@
1
+ """Labels PRs based on title. Must be run in a github action with the
2
+ pull_request_target event."""
3
+
4
+ import json
5
+ import os
6
+ import re
7
+
8
+ from github import Github
9
+
10
+ context_dict = json.loads(os.getenv("CONTEXT_GITHUB"))
11
+
12
+ repo = context_dict["repository"]
13
+ g = Github(context_dict["token"])
14
+ repo = g.get_repo(repo)
15
+ pr_number = context_dict["event"]["number"]
16
+ issue = repo.get_issue(number=pr_number)
17
+ title = issue.title
18
+
19
+
20
+ regex_to_labels = [(r"\bDOC\b", "Documentation"), (r"\bCI\b", "Build / CI")]
21
+
22
+ labels_to_add = [label for regex, label in regex_to_labels if re.search(regex, title)]
23
+
24
+ if labels_to_add:
25
+ issue.add_to_labels(*labels_to_add)
@@ -0,0 +1,54 @@
1
+ name: Unit test for ARM
2
+ permissions:
3
+ contents: read
4
+
5
+ on:
6
+ push:
7
+ pull_request:
8
+
9
+ concurrency:
10
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
11
+ cancel-in-progress: true
12
+
13
+ jobs:
14
+ lint:
15
+ name: Lint
16
+ runs-on: ubuntu-latest
17
+ if: github.repository == 'jax-sklearn/jax-sklearn'
18
+
19
+ steps:
20
+ - name: Checkout
21
+ uses: actions/checkout@v4
22
+ - uses: actions/setup-python@v5
23
+ with:
24
+ python-version: '3.12'
25
+ cache: 'pip'
26
+ - name: Install linters
27
+ run: |
28
+ source build_tools/shared.sh
29
+ # Include pytest compatibility with mypy
30
+ pip install pytest $(get_dep ruff min) $(get_dep mypy min) cython-lint
31
+ - name: Run linters
32
+ run: ./build_tools/linting.sh
33
+ - name: Run Meson OpenMP checks
34
+ run: |
35
+ pip install ninja meson scipy
36
+ python build_tools/check-meson-openmp-dependencies.py
37
+
38
+ run-unit-tests:
39
+ name: Run unit tests
40
+ runs-on: ubuntu-24.04-arm
41
+ if: github.repository == 'jax-sklearn/jax-sklearn'
42
+ needs: [lint]
43
+ steps:
44
+ - name: Checkout
45
+ uses: actions/checkout@v4
46
+ - uses: mamba-org/setup-micromamba@v2
47
+ with:
48
+ environment-file: build_tools/github/pymin_conda_forge_arm_linux-aarch64_conda.lock
49
+ environment-name: ci
50
+ cache-environment: true
51
+
52
+ - name: Build and run tests
53
+ shell: bash -el {0}
54
+ run: bash build_tools/github/build_test_arm.sh
@@ -0,0 +1,24 @@
1
+ name: CircleCI artifacts redirector
2
+ on: [status]
3
+
4
+ # Restrict the permissions granted to the use of secrets.GITHUB_TOKEN in this
5
+ # github actions workflow:
6
+ # https://docs.github.com/en/actions/security-guides/automatic-token-authentication
7
+ permissions:
8
+ statuses: write
9
+
10
+ jobs:
11
+ circleci_artifacts_redirector_job:
12
+ runs-on: ubuntu-latest
13
+ # For testing this action on a fork, remove the "github.repository =="" condition.
14
+ if: "github.repository == 'jax-sklearn/jax-sklearn' && github.event.context == 'ci/circleci: doc'"
15
+ name: Run CircleCI artifacts redirector
16
+ steps:
17
+ - name: GitHub Action step
18
+ uses: scientific-python/circleci-artifacts-redirector-action@v1
19
+ with:
20
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
21
+ api-token: ${{ secrets.CIRCLECI_TOKEN }}
22
+ artifact-path: 0/doc/_changed.html
23
+ circleci-jobs: doc
24
+ job-title: Check the rendered docs here!