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.
- jax_sklearn-0.1.0/.binder/postBuild +40 -0
- jax_sklearn-0.1.0/.binder/requirements.txt +10 -0
- jax_sklearn-0.1.0/.binder/runtime.txt +1 -0
- jax_sklearn-0.1.0/.circleci/config.yml +129 -0
- jax_sklearn-0.1.0/.codecov.yml +33 -0
- jax_sklearn-0.1.0/.coveragerc +11 -0
- jax_sklearn-0.1.0/.github/FUNDING.yml +12 -0
- jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/bug_report.yml +95 -0
- jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/config.yml +17 -0
- jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/doc_improvement.yml +17 -0
- jax_sklearn-0.1.0/.github/ISSUE_TEMPLATE/feature_request.yml +25 -0
- jax_sklearn-0.1.0/.github/PULL_REQUEST_TEMPLATE.md +32 -0
- jax_sklearn-0.1.0/.github/dependabot.yml +21 -0
- jax_sklearn-0.1.0/.github/labeler-file-extensions.yml +8 -0
- jax_sklearn-0.1.0/.github/labeler-module.yml +80 -0
- jax_sklearn-0.1.0/.github/scripts/label_title_regex.py +25 -0
- jax_sklearn-0.1.0/.github/workflows/arm-unit-tests.yml +54 -0
- jax_sklearn-0.1.0/.github/workflows/artifact-redirector.yml +24 -0
- jax_sklearn-0.1.0/.github/workflows/assign.yml +30 -0
- jax_sklearn-0.1.0/.github/workflows/check-changelog.yml +36 -0
- jax_sklearn-0.1.0/.github/workflows/check-sdist.yml +35 -0
- jax_sklearn-0.1.0/.github/workflows/codeql.yml +73 -0
- jax_sklearn-0.1.0/.github/workflows/cuda-ci.yml +78 -0
- jax_sklearn-0.1.0/.github/workflows/cuda-label-remover.yml +23 -0
- jax_sklearn-0.1.0/.github/workflows/emscripten.yml +108 -0
- jax_sklearn-0.1.0/.github/workflows/label-blank-issue.yml +16 -0
- jax_sklearn-0.1.0/.github/workflows/labeler-module.yml +33 -0
- jax_sklearn-0.1.0/.github/workflows/labeler-title-regex.yml +27 -0
- jax_sklearn-0.1.0/.github/workflows/lint.yml +103 -0
- jax_sklearn-0.1.0/.github/workflows/publish_pypi.yml +51 -0
- jax_sklearn-0.1.0/.github/workflows/unassign.yml +24 -0
- jax_sklearn-0.1.0/.github/workflows/update-lock-files.yml +88 -0
- jax_sklearn-0.1.0/.github/workflows/update_tracking_issue.yml +51 -0
- jax_sklearn-0.1.0/.github/workflows/wheels.yml +276 -0
- jax_sklearn-0.1.0/.gitignore +99 -0
- jax_sklearn-0.1.0/.spin/cmds.py +29 -0
- jax_sklearn-0.1.0/COPYING +33 -0
- jax_sklearn-0.1.0/Makefile +27 -0
- jax_sklearn-0.1.0/PKG-INFO +402 -0
- jax_sklearn-0.1.0/README.md +299 -0
- jax_sklearn-0.1.0/asv_benchmarks/.gitignore +6 -0
- jax_sklearn-0.1.0/asv_benchmarks/asv.conf.json +146 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/__init__.py +1 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/cluster.py +104 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/common.py +256 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/config.json +33 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/datasets.py +168 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/decomposition.py +96 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/ensemble.py +121 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/linear_model.py +257 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/manifold.py +34 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/metrics.py +45 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/model_selection.py +84 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/neighbors.py +39 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/svm.py +30 -0
- jax_sklearn-0.1.0/asv_benchmarks/benchmarks/utils.py +47 -0
- jax_sklearn-0.1.0/azure-pipelines.yml +271 -0
- jax_sklearn-0.1.0/benchmarks/.gitignore +4 -0
- jax_sklearn-0.1.0/benchmarks/bench_20newsgroups.py +94 -0
- jax_sklearn-0.1.0/benchmarks/bench_covertype.py +234 -0
- jax_sklearn-0.1.0/benchmarks/bench_feature_expansions.py +58 -0
- jax_sklearn-0.1.0/benchmarks/bench_glm.py +57 -0
- jax_sklearn-0.1.0/benchmarks/bench_glmnet.py +140 -0
- jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting.py +292 -0
- jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_adult.py +100 -0
- jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_categorical_only.py +79 -0
- jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_higgsboson.py +127 -0
- jax_sklearn-0.1.0/benchmarks/bench_hist_gradient_boosting_threading.py +347 -0
- jax_sklearn-0.1.0/benchmarks/bench_isolation_forest.py +164 -0
- jax_sklearn-0.1.0/benchmarks/bench_isolation_forest_predict.py +213 -0
- jax_sklearn-0.1.0/benchmarks/bench_isotonic.py +111 -0
- jax_sklearn-0.1.0/benchmarks/bench_kernel_pca_solvers_time_vs_n_components.py +177 -0
- jax_sklearn-0.1.0/benchmarks/bench_kernel_pca_solvers_time_vs_n_samples.py +183 -0
- jax_sklearn-0.1.0/benchmarks/bench_lasso.py +99 -0
- jax_sklearn-0.1.0/benchmarks/bench_lof.py +113 -0
- jax_sklearn-0.1.0/benchmarks/bench_mnist.py +229 -0
- jax_sklearn-0.1.0/benchmarks/bench_multilabel_metrics.py +227 -0
- jax_sklearn-0.1.0/benchmarks/bench_online_ocsvm.py +294 -0
- jax_sklearn-0.1.0/benchmarks/bench_pca_solvers.py +165 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_fastkmeans.py +141 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_hierarchical.py +77 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_incremental_pca.py +159 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_lasso_path.py +113 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_neighbors.py +191 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_nmf.py +472 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_omp_lars.py +120 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_parallel_pairwise.py +48 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_polynomial_kernel_approximation.py +176 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_randomized_svd.py +529 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_svd.py +80 -0
- jax_sklearn-0.1.0/benchmarks/bench_plot_ward.py +48 -0
- jax_sklearn-0.1.0/benchmarks/bench_random_projections.py +304 -0
- jax_sklearn-0.1.0/benchmarks/bench_rcv1_logreg_convergence.py +311 -0
- jax_sklearn-0.1.0/benchmarks/bench_saga.py +386 -0
- jax_sklearn-0.1.0/benchmarks/bench_sample_without_replacement.py +233 -0
- jax_sklearn-0.1.0/benchmarks/bench_sgd_regression.py +151 -0
- jax_sklearn-0.1.0/benchmarks/bench_sparsify.py +107 -0
- jax_sklearn-0.1.0/benchmarks/bench_text_vectorizers.py +74 -0
- jax_sklearn-0.1.0/benchmarks/bench_tree.py +123 -0
- jax_sklearn-0.1.0/benchmarks/bench_tsne_mnist.py +208 -0
- jax_sklearn-0.1.0/benchmarks/plot_tsne_mnist.py +33 -0
- jax_sklearn-0.1.0/build_tools/Makefile +4 -0
- jax_sklearn-0.1.0/build_tools/azure/combine_coverage_reports.sh +18 -0
- jax_sklearn-0.1.0/build_tools/azure/debian_32bit_lock.txt +41 -0
- jax_sklearn-0.1.0/build_tools/azure/debian_32bit_requirements.txt +10 -0
- jax_sklearn-0.1.0/build_tools/azure/get_commit_message.py +65 -0
- jax_sklearn-0.1.0/build_tools/azure/get_selected_tests.py +34 -0
- jax_sklearn-0.1.0/build_tools/azure/install.sh +138 -0
- jax_sklearn-0.1.0/build_tools/azure/install_setup_conda.sh +36 -0
- jax_sklearn-0.1.0/build_tools/azure/posix-all-parallel.yml +50 -0
- jax_sklearn-0.1.0/build_tools/azure/posix-docker.yml +134 -0
- jax_sklearn-0.1.0/build_tools/azure/posix.yml +109 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_linux-64_conda.lock +248 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_linux-64_environment.yml +31 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_no_openmp_environment.yml +25 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_no_openmp_osx-64_conda.lock +102 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_osx-64_conda.lock +134 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_conda_forge_mkl_osx-64_environment.yml +27 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_free_threaded_environment.yml +18 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_free_threaded_linux-64_conda.lock +63 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_openblas_pandas_environment.yml +31 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_openblas_pandas_linux-64_conda.lock +97 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_scipy_dev_environment.yml +22 -0
- jax_sklearn-0.1.0/build_tools/azure/pylatest_pip_scipy_dev_linux-64_conda.lock +76 -0
- jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_environment.yml +24 -0
- jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_min_dependencies_environment.yml +27 -0
- jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_min_dependencies_linux-64_conda.lock +231 -0
- jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_ubuntu_2204_environment.yml +24 -0
- jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_ubuntu_2204_linux-64_conda.lock +117 -0
- jax_sklearn-0.1.0/build_tools/azure/pymin_conda_forge_openblas_win-64_conda.lock +115 -0
- jax_sklearn-0.1.0/build_tools/azure/test_docs.sh +19 -0
- jax_sklearn-0.1.0/build_tools/azure/test_pytest_soft_dependency.sh +24 -0
- jax_sklearn-0.1.0/build_tools/azure/test_script.sh +90 -0
- jax_sklearn-0.1.0/build_tools/azure/ubuntu_atlas_lock.txt +47 -0
- jax_sklearn-0.1.0/build_tools/azure/ubuntu_atlas_requirements.txt +10 -0
- jax_sklearn-0.1.0/build_tools/azure/upload_codecov.sh +59 -0
- jax_sklearn-0.1.0/build_tools/azure/windows.yml +102 -0
- jax_sklearn-0.1.0/build_tools/check-meson-openmp-dependencies.py +172 -0
- jax_sklearn-0.1.0/build_tools/circle/build_doc.sh +283 -0
- jax_sklearn-0.1.0/build_tools/circle/checkout_merge_commit.sh +32 -0
- jax_sklearn-0.1.0/build_tools/circle/doc_environment.yml +44 -0
- jax_sklearn-0.1.0/build_tools/circle/doc_linux-64_conda.lock +338 -0
- jax_sklearn-0.1.0/build_tools/circle/doc_min_dependencies_environment.yml +42 -0
- jax_sklearn-0.1.0/build_tools/circle/doc_min_dependencies_linux-64_conda.lock +296 -0
- jax_sklearn-0.1.0/build_tools/circle/download_documentation.sh +8 -0
- jax_sklearn-0.1.0/build_tools/circle/list_versions.py +142 -0
- jax_sklearn-0.1.0/build_tools/circle/push_doc.sh +65 -0
- jax_sklearn-0.1.0/build_tools/codespell_ignore_words.txt +56 -0
- jax_sklearn-0.1.0/build_tools/generate_authors_table.py +255 -0
- jax_sklearn-0.1.0/build_tools/get_comment.py +351 -0
- jax_sklearn-0.1.0/build_tools/github/build_minimal_windows_image.sh +51 -0
- jax_sklearn-0.1.0/build_tools/github/build_source.sh +20 -0
- jax_sklearn-0.1.0/build_tools/github/build_test_arm.sh +44 -0
- jax_sklearn-0.1.0/build_tools/github/check_build_trigger.sh +13 -0
- jax_sklearn-0.1.0/build_tools/github/check_wheels.py +30 -0
- jax_sklearn-0.1.0/build_tools/github/create_gpu_environment.sh +20 -0
- jax_sklearn-0.1.0/build_tools/github/pylatest_conda_forge_cuda_array-api_linux-64_conda.lock +256 -0
- jax_sklearn-0.1.0/build_tools/github/pylatest_conda_forge_cuda_array-api_linux-64_environment.yml +32 -0
- jax_sklearn-0.1.0/build_tools/github/pymin_conda_forge_arm_environment.yml +22 -0
- jax_sklearn-0.1.0/build_tools/github/pymin_conda_forge_arm_linux-aarch64_conda.lock +161 -0
- jax_sklearn-0.1.0/build_tools/github/repair_windows_wheels.sh +16 -0
- jax_sklearn-0.1.0/build_tools/github/test_source.sh +18 -0
- jax_sklearn-0.1.0/build_tools/github/test_windows_wheels.sh +30 -0
- jax_sklearn-0.1.0/build_tools/github/upload_anaconda.sh +21 -0
- jax_sklearn-0.1.0/build_tools/github/vendor.py +96 -0
- jax_sklearn-0.1.0/build_tools/linting.sh +123 -0
- jax_sklearn-0.1.0/build_tools/shared.sh +51 -0
- jax_sklearn-0.1.0/build_tools/update_environments_and_lock_files.py +773 -0
- jax_sklearn-0.1.0/build_tools/wheels/LICENSE_linux.txt +80 -0
- jax_sklearn-0.1.0/build_tools/wheels/LICENSE_macos.txt +286 -0
- jax_sklearn-0.1.0/build_tools/wheels/LICENSE_windows.txt +25 -0
- jax_sklearn-0.1.0/build_tools/wheels/build_wheels.sh +57 -0
- jax_sklearn-0.1.0/build_tools/wheels/check_license.py +30 -0
- jax_sklearn-0.1.0/build_tools/wheels/cibw_before_build.sh +18 -0
- jax_sklearn-0.1.0/build_tools/wheels/test_wheels.sh +30 -0
- jax_sklearn-0.1.0/doc/Makefile +153 -0
- jax_sklearn-0.1.0/doc/README.md +6 -0
- jax_sklearn-0.1.0/doc/about.rst +681 -0
- jax_sklearn-0.1.0/doc/api/deprecated.rst.template +24 -0
- jax_sklearn-0.1.0/doc/api/index.rst.template +77 -0
- jax_sklearn-0.1.0/doc/api/module.rst.template +46 -0
- jax_sklearn-0.1.0/doc/api_reference.py +1352 -0
- jax_sklearn-0.1.0/doc/binder/requirements.txt +5 -0
- jax_sklearn-0.1.0/doc/common_pitfalls.rst +574 -0
- jax_sklearn-0.1.0/doc/communication_team.rst +16 -0
- jax_sklearn-0.1.0/doc/communication_team_emeritus.rst +1 -0
- jax_sklearn-0.1.0/doc/computing/computational_performance.rst +366 -0
- jax_sklearn-0.1.0/doc/computing/parallelism.rst +338 -0
- jax_sklearn-0.1.0/doc/computing/scaling_strategies.rst +136 -0
- jax_sklearn-0.1.0/doc/computing.rst +10 -0
- jax_sklearn-0.1.0/doc/conf.py +1092 -0
- jax_sklearn-0.1.0/doc/conftest.py +179 -0
- jax_sklearn-0.1.0/doc/contributor_experience_team.rst +52 -0
- jax_sklearn-0.1.0/doc/contributor_experience_team_emeritus.rst +1 -0
- jax_sklearn-0.1.0/doc/css/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/data_transforms.rst +35 -0
- jax_sklearn-0.1.0/doc/datasets/loading_other_datasets.rst +317 -0
- jax_sklearn-0.1.0/doc/datasets/real_world.rst +40 -0
- jax_sklearn-0.1.0/doc/datasets/sample_generators.rst +181 -0
- jax_sklearn-0.1.0/doc/datasets/toy_dataset.rst +36 -0
- jax_sklearn-0.1.0/doc/datasets.rst +62 -0
- jax_sklearn-0.1.0/doc/developers/advanced_installation.rst +417 -0
- jax_sklearn-0.1.0/doc/developers/bug_triaging.rst +159 -0
- jax_sklearn-0.1.0/doc/developers/contributing.rst +1596 -0
- jax_sklearn-0.1.0/doc/developers/cython.rst +154 -0
- jax_sklearn-0.1.0/doc/developers/develop.rst +794 -0
- jax_sklearn-0.1.0/doc/developers/index.rst +19 -0
- jax_sklearn-0.1.0/doc/developers/maintainer.rst.template +486 -0
- jax_sklearn-0.1.0/doc/developers/minimal_reproducer.rst +434 -0
- jax_sklearn-0.1.0/doc/developers/performance.rst +406 -0
- jax_sklearn-0.1.0/doc/developers/plotting.rst +97 -0
- jax_sklearn-0.1.0/doc/developers/tips.rst +418 -0
- jax_sklearn-0.1.0/doc/developers/utilities.rst +242 -0
- jax_sklearn-0.1.0/doc/dispatching.rst +8 -0
- jax_sklearn-0.1.0/doc/documentation_team.rst +24 -0
- jax_sklearn-0.1.0/doc/faq.rst +548 -0
- jax_sklearn-0.1.0/doc/getting_started.rst +235 -0
- jax_sklearn-0.1.0/doc/glossary.rst +1898 -0
- jax_sklearn-0.1.0/doc/governance.rst +201 -0
- jax_sklearn-0.1.0/doc/images/Tidelift-logo-on-light.svg +33 -0
- jax_sklearn-0.1.0/doc/images/axa-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/axa.png +0 -0
- jax_sklearn-0.1.0/doc/images/bcg.png +0 -0
- jax_sklearn-0.1.0/doc/images/beta_divergence.png +0 -0
- jax_sklearn-0.1.0/doc/images/bnp-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/bnp.png +0 -0
- jax_sklearn-0.1.0/doc/images/cds-logo.png +0 -0
- jax_sklearn-0.1.0/doc/images/chanel-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/chanel.png +0 -0
- jax_sklearn-0.1.0/doc/images/columbia-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/columbia.png +0 -0
- jax_sklearn-0.1.0/doc/images/czi-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/czi.png +0 -0
- jax_sklearn-0.1.0/doc/images/dataiku-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/dataiku.png +0 -0
- jax_sklearn-0.1.0/doc/images/digicosme.png +0 -0
- jax_sklearn-0.1.0/doc/images/dysco.png +0 -0
- jax_sklearn-0.1.0/doc/images/fnrs-logo-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/fujitsu.png +0 -0
- jax_sklearn-0.1.0/doc/images/generated-doc-ci.png +0 -0
- jax_sklearn-0.1.0/doc/images/google-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/grid_search_cross_validation.png +0 -0
- jax_sklearn-0.1.0/doc/images/grid_search_workflow.png +0 -0
- jax_sklearn-0.1.0/doc/images/huggingface_logo-noborder.png +0 -0
- jax_sklearn-0.1.0/doc/images/inria-logo.jpg +0 -0
- jax_sklearn-0.1.0/doc/images/inria-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/intel-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/intel.png +0 -0
- jax_sklearn-0.1.0/doc/images/iris.pdf +0 -0
- jax_sklearn-0.1.0/doc/images/iris.svg +239 -0
- jax_sklearn-0.1.0/doc/images/last_digit.png +0 -0
- jax_sklearn-0.1.0/doc/images/lda_model_graph.png +0 -0
- jax_sklearn-0.1.0/doc/images/logo_APHP.png +0 -0
- jax_sklearn-0.1.0/doc/images/logo_APHP_text.png +0 -0
- jax_sklearn-0.1.0/doc/images/microsoft-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/microsoft.png +0 -0
- jax_sklearn-0.1.0/doc/images/ml_map.README.rst +24 -0
- jax_sklearn-0.1.0/doc/images/ml_map.svg +4 -0
- jax_sklearn-0.1.0/doc/images/multi_org_chart.png +0 -0
- jax_sklearn-0.1.0/doc/images/multilayerperceptron_network.png +0 -0
- jax_sklearn-0.1.0/doc/images/no_image.png +0 -0
- jax_sklearn-0.1.0/doc/images/nvidia-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/nvidia.png +0 -0
- jax_sklearn-0.1.0/doc/images/nyu_short_color.png +0 -0
- jax_sklearn-0.1.0/doc/images/permuted_non_predictive_feature.png +0 -0
- jax_sklearn-0.1.0/doc/images/permuted_predictive_feature.png +0 -0
- jax_sklearn-0.1.0/doc/images/plot_digits_classification.png +0 -0
- jax_sklearn-0.1.0/doc/images/plot_face_recognition_1.png +0 -0
- jax_sklearn-0.1.0/doc/images/plot_face_recognition_2.png +0 -0
- jax_sklearn-0.1.0/doc/images/png-logo-inria-la-fondation.png +0 -0
- jax_sklearn-0.1.0/doc/images/probabl.png +0 -0
- jax_sklearn-0.1.0/doc/images/quansight-labs-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/quansight-labs.png +0 -0
- jax_sklearn-0.1.0/doc/images/rbm_graph.png +0 -0
- jax_sklearn-0.1.0/doc/images/scikit-learn-logo-notext.png +0 -0
- jax_sklearn-0.1.0/doc/images/scikit-learn-logo-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/sloan_banner.png +0 -0
- jax_sklearn-0.1.0/doc/images/sloan_logo-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/sydney-primary.jpeg +0 -0
- jax_sklearn-0.1.0/doc/images/sydney-stacked-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/target_encoder_cross_validation.svg +3 -0
- jax_sklearn-0.1.0/doc/images/telecom-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/telecom.png +0 -0
- jax_sklearn-0.1.0/doc/images/visual-studio-build-tools-selection.png +0 -0
- jax_sklearn-0.1.0/doc/images/wellcome-trust-small.png +0 -0
- jax_sklearn-0.1.0/doc/images/wellcome-trust.png +0 -0
- jax_sklearn-0.1.0/doc/index.rst.template +24 -0
- jax_sklearn-0.1.0/doc/inspection.rst +25 -0
- jax_sklearn-0.1.0/doc/install.rst +399 -0
- jax_sklearn-0.1.0/doc/install_instructions_conda.rst +16 -0
- jax_sklearn-0.1.0/doc/js/scripts/api-search.js +12 -0
- jax_sklearn-0.1.0/doc/js/scripts/dropdown.js +63 -0
- jax_sklearn-0.1.0/doc/js/scripts/sg_plotly_resize.js +10 -0
- jax_sklearn-0.1.0/doc/js/scripts/vendor/svg-pan-zoom.min.js +31 -0
- jax_sklearn-0.1.0/doc/js/scripts/version-switcher.js +40 -0
- jax_sklearn-0.1.0/doc/jupyter-lite.json +10 -0
- jax_sklearn-0.1.0/doc/jupyter_lite_config.json +5 -0
- jax_sklearn-0.1.0/doc/logos/1280px-scikit-learn-logo.png +0 -0
- jax_sklearn-0.1.0/doc/logos/README.md +66 -0
- jax_sklearn-0.1.0/doc/logos/brand_colors/colorswatch_29ABE2_cyan.png +0 -0
- jax_sklearn-0.1.0/doc/logos/brand_colors/colorswatch_9B4600_brown.png +0 -0
- jax_sklearn-0.1.0/doc/logos/brand_colors/colorswatch_F7931E_orange.png +0 -0
- jax_sklearn-0.1.0/doc/logos/brand_guidelines/scikitlearn_logo_clearspace_updated.png +0 -0
- jax_sklearn-0.1.0/doc/logos/favicon.ico +0 -0
- jax_sklearn-0.1.0/doc/logos/identity.pdf +0 -0
- jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-notext.png +0 -0
- jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-small.png +0 -0
- jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-thumb.png +0 -0
- jax_sklearn-0.1.0/doc/logos/scikit-learn-logo-without-subtitle.svg +1 -0
- jax_sklearn-0.1.0/doc/logos/scikit-learn-logo.bmp +0 -0
- jax_sklearn-0.1.0/doc/logos/scikit-learn-logo.png +0 -0
- jax_sklearn-0.1.0/doc/logos/scikit-learn-logo.svg +1 -0
- jax_sklearn-0.1.0/doc/machine_learning_map.rst +76 -0
- jax_sklearn-0.1.0/doc/maintainers.rst +84 -0
- jax_sklearn-0.1.0/doc/maintainers_emeritus.rst +42 -0
- jax_sklearn-0.1.0/doc/make.bat +144 -0
- jax_sklearn-0.1.0/doc/metadata_routing.rst +326 -0
- jax_sklearn-0.1.0/doc/min_dependency_substitutions.rst.template +3 -0
- jax_sklearn-0.1.0/doc/min_dependency_table.rst.template +13 -0
- jax_sklearn-0.1.0/doc/model_persistence.rst +394 -0
- jax_sklearn-0.1.0/doc/model_selection.rst +13 -0
- jax_sklearn-0.1.0/doc/modules/array_api.rst +330 -0
- jax_sklearn-0.1.0/doc/modules/biclustering.rst +306 -0
- jax_sklearn-0.1.0/doc/modules/calibration.rst +326 -0
- jax_sklearn-0.1.0/doc/modules/classification_threshold.rst +159 -0
- jax_sklearn-0.1.0/doc/modules/clustering.rst +2237 -0
- jax_sklearn-0.1.0/doc/modules/compose.rst +615 -0
- jax_sklearn-0.1.0/doc/modules/covariance.rst +351 -0
- jax_sklearn-0.1.0/doc/modules/cross_decomposition.rst +189 -0
- jax_sklearn-0.1.0/doc/modules/cross_validation.rst +1026 -0
- jax_sklearn-0.1.0/doc/modules/decomposition.rst +1097 -0
- jax_sklearn-0.1.0/doc/modules/density.rst +187 -0
- jax_sklearn-0.1.0/doc/modules/ensemble.rst +1724 -0
- jax_sklearn-0.1.0/doc/modules/feature_extraction.rst +1077 -0
- jax_sklearn-0.1.0/doc/modules/feature_selection.rst +352 -0
- jax_sklearn-0.1.0/doc/modules/gaussian_process.rst +503 -0
- jax_sklearn-0.1.0/doc/modules/glm_data/lasso_enet_coordinate_descent.png +0 -0
- jax_sklearn-0.1.0/doc/modules/glm_data/poisson_gamma_tweedie_distributions.png +0 -0
- jax_sklearn-0.1.0/doc/modules/grid_search.rst +747 -0
- jax_sklearn-0.1.0/doc/modules/impute.rst +360 -0
- jax_sklearn-0.1.0/doc/modules/isotonic.rst +37 -0
- jax_sklearn-0.1.0/doc/modules/kernel_approximation.rst +315 -0
- jax_sklearn-0.1.0/doc/modules/kernel_ridge.rst +65 -0
- jax_sklearn-0.1.0/doc/modules/lda_qda.rst +265 -0
- jax_sklearn-0.1.0/doc/modules/learning_curve.rst +187 -0
- jax_sklearn-0.1.0/doc/modules/linear_model.rst +1853 -0
- jax_sklearn-0.1.0/doc/modules/manifold.rst +693 -0
- jax_sklearn-0.1.0/doc/modules/metrics.rst +231 -0
- jax_sklearn-0.1.0/doc/modules/mixture.rst +350 -0
- jax_sklearn-0.1.0/doc/modules/model_evaluation.rst +3209 -0
- jax_sklearn-0.1.0/doc/modules/multiclass.rst +617 -0
- jax_sklearn-0.1.0/doc/modules/naive_bayes.rst +290 -0
- jax_sklearn-0.1.0/doc/modules/neighbors.rst +843 -0
- jax_sklearn-0.1.0/doc/modules/neural_networks_supervised.rst +371 -0
- jax_sklearn-0.1.0/doc/modules/neural_networks_unsupervised.rst +161 -0
- jax_sklearn-0.1.0/doc/modules/outlier_detection.rst +420 -0
- jax_sklearn-0.1.0/doc/modules/partial_dependence.rst +291 -0
- jax_sklearn-0.1.0/doc/modules/permutation_importance.rst +236 -0
- jax_sklearn-0.1.0/doc/modules/pipeline.rst +10 -0
- jax_sklearn-0.1.0/doc/modules/preprocessing.rst +1309 -0
- jax_sklearn-0.1.0/doc/modules/preprocessing_targets.rst +102 -0
- jax_sklearn-0.1.0/doc/modules/random_projection.rst +200 -0
- jax_sklearn-0.1.0/doc/modules/semi_supervised.rst +151 -0
- jax_sklearn-0.1.0/doc/modules/sgd.rst +584 -0
- jax_sklearn-0.1.0/doc/modules/svm.rst +817 -0
- jax_sklearn-0.1.0/doc/modules/tree.rst +715 -0
- jax_sklearn-0.1.0/doc/modules/unsupervised_reduction.rst +59 -0
- jax_sklearn-0.1.0/doc/presentations.rst +60 -0
- jax_sklearn-0.1.0/doc/related_projects.rst +353 -0
- jax_sklearn-0.1.0/doc/roadmap.rst +200 -0
- jax_sklearn-0.1.0/doc/scss/api-search.scss +111 -0
- jax_sklearn-0.1.0/doc/scss/api.scss +52 -0
- jax_sklearn-0.1.0/doc/scss/colors.scss +51 -0
- jax_sklearn-0.1.0/doc/scss/custom.scss +264 -0
- jax_sklearn-0.1.0/doc/scss/index.scss +176 -0
- jax_sklearn-0.1.0/doc/sphinxext/MANIFEST.in +2 -0
- jax_sklearn-0.1.0/doc/sphinxext/allow_nan_estimators.py +58 -0
- jax_sklearn-0.1.0/doc/sphinxext/autoshortsummary.py +53 -0
- jax_sklearn-0.1.0/doc/sphinxext/doi_role.py +47 -0
- jax_sklearn-0.1.0/doc/sphinxext/dropdown_anchors.py +58 -0
- jax_sklearn-0.1.0/doc/sphinxext/github_link.py +84 -0
- jax_sklearn-0.1.0/doc/sphinxext/override_pst_pagetoc.py +84 -0
- jax_sklearn-0.1.0/doc/sphinxext/sphinx_issues.py +218 -0
- jax_sklearn-0.1.0/doc/supervised_learning.rst +25 -0
- jax_sklearn-0.1.0/doc/support.rst +132 -0
- jax_sklearn-0.1.0/doc/templates/base.rst +36 -0
- jax_sklearn-0.1.0/doc/templates/index.html +313 -0
- jax_sklearn-0.1.0/doc/templates/numpydoc_docstring.rst +16 -0
- jax_sklearn-0.1.0/doc/templates/redirects.html +15 -0
- jax_sklearn-0.1.0/doc/testimonials/README.txt +7 -0
- jax_sklearn-0.1.0/doc/testimonials/images/Makefile +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/aweber.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/bestofmedia-logo.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/betaworks.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/birchbox.jpg +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/bnp_paribas_cardif.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/booking.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/change-logo.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/dataiku_logo.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/datapublica.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/datarobot.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/evernote.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/howaboutwe.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/huggingface.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/infonea.jpg +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/inria.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/jpmorgan.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/lovely.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/machinalis.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/mars.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/okcupid.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/ottogroup_logo.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/peerindex.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/phimeca.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/rangespan.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/solido_logo.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/spotify.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/telecomparistech.jpg +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/yhat.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/images/zopa.png +0 -0
- jax_sklearn-0.1.0/doc/testimonials/testimonials.rst +752 -0
- jax_sklearn-0.1.0/doc/unsupervised_learning.rst +17 -0
- jax_sklearn-0.1.0/doc/user_guide.rst +24 -0
- jax_sklearn-0.1.0/doc/visualizations.rst +138 -0
- jax_sklearn-0.1.0/doc/whats_new/_contributors.rst +181 -0
- jax_sklearn-0.1.0/doc/whats_new/changelog_legend.inc +11 -0
- jax_sklearn-0.1.0/doc/whats_new/older_versions.rst +1388 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/README.md +52 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/array-api/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/changed-models/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/custom-top-level/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/many-modules/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/metadata-routing/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/security/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.base/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.calibration/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.cluster/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.compose/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.covariance/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.cross_decomposition/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.datasets/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.decomposition/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.discriminant_analysis/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.dummy/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.ensemble/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.exceptions/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.feature_extraction/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.feature_selection/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.frozen/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.gaussian_process/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.impute/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.inspection/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.isotonic/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.kernel_approximation/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.kernel_ridge/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.linear_model/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.manifold/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.metrics/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.mixture/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.model_selection/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.multiclass/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.multioutput/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.naive_bayes/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.neighbors/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.neural_network/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.pipeline/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.preprocessing/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.random_projection/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.semi_supervised/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.svm/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.tree/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/sklearn.utils/.gitkeep +0 -0
- jax_sklearn-0.1.0/doc/whats_new/upcoming_changes/towncrier_template.rst.jinja2 +49 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.13.rst +396 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.14.rst +391 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.15.rst +625 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.16.rst +544 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.17.rst +515 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.18.rst +814 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.19.rst +1072 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.20.rst +1749 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.21.rst +1120 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.22.rst +1169 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.23.rst +862 -0
- jax_sklearn-0.1.0/doc/whats_new/v0.24.rst +1071 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.0.rst +1278 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.1.rst +1409 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.2.rst +1071 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.3.rst +1003 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.4.rst +1034 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.5.rst +714 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.6.rst +785 -0
- jax_sklearn-0.1.0/doc/whats_new/v1.7.rst +575 -0
- jax_sklearn-0.1.0/doc/whats_new.rst +38 -0
- jax_sklearn-0.1.0/examples/README.txt +9 -0
- jax_sklearn-0.1.0/examples/applications/README.txt +7 -0
- jax_sklearn-0.1.0/examples/applications/plot_cyclical_feature_engineering.py +836 -0
- jax_sklearn-0.1.0/examples/applications/plot_digits_denoising.py +151 -0
- jax_sklearn-0.1.0/examples/applications/plot_face_recognition.py +162 -0
- jax_sklearn-0.1.0/examples/applications/plot_model_complexity_influence.py +292 -0
- jax_sklearn-0.1.0/examples/applications/plot_out_of_core_classification.py +432 -0
- jax_sklearn-0.1.0/examples/applications/plot_outlier_detection_wine.py +137 -0
- jax_sklearn-0.1.0/examples/applications/plot_prediction_latency.py +348 -0
- jax_sklearn-0.1.0/examples/applications/plot_species_distribution_modeling.py +246 -0
- jax_sklearn-0.1.0/examples/applications/plot_stock_market.py +274 -0
- jax_sklearn-0.1.0/examples/applications/plot_time_series_lagged_features.py +438 -0
- jax_sklearn-0.1.0/examples/applications/plot_tomography_l1_reconstruction.py +145 -0
- jax_sklearn-0.1.0/examples/applications/plot_topics_extraction_with_nmf_lda.py +224 -0
- jax_sklearn-0.1.0/examples/applications/wikipedia_principal_eigenvector.py +228 -0
- jax_sklearn-0.1.0/examples/bicluster/README.txt +6 -0
- jax_sklearn-0.1.0/examples/bicluster/plot_bicluster_newsgroups.py +163 -0
- jax_sklearn-0.1.0/examples/bicluster/plot_spectral_biclustering.py +123 -0
- jax_sklearn-0.1.0/examples/bicluster/plot_spectral_coclustering.py +56 -0
- jax_sklearn-0.1.0/examples/calibration/README.txt +6 -0
- jax_sklearn-0.1.0/examples/calibration/plot_calibration.py +140 -0
- jax_sklearn-0.1.0/examples/calibration/plot_calibration_curve.py +336 -0
- jax_sklearn-0.1.0/examples/calibration/plot_calibration_multiclass.py +304 -0
- jax_sklearn-0.1.0/examples/calibration/plot_compare_calibration.py +282 -0
- jax_sklearn-0.1.0/examples/classification/README.txt +6 -0
- jax_sklearn-0.1.0/examples/classification/plot_classification_probability.py +241 -0
- jax_sklearn-0.1.0/examples/classification/plot_classifier_comparison.py +157 -0
- jax_sklearn-0.1.0/examples/classification/plot_digits_classification.py +128 -0
- jax_sklearn-0.1.0/examples/classification/plot_lda.py +107 -0
- jax_sklearn-0.1.0/examples/classification/plot_lda_qda.py +228 -0
- jax_sklearn-0.1.0/examples/cluster/README.txt +6 -0
- jax_sklearn-0.1.0/examples/cluster/plot_adjusted_for_chance_measures.py +229 -0
- jax_sklearn-0.1.0/examples/cluster/plot_affinity_propagation.py +78 -0
- jax_sklearn-0.1.0/examples/cluster/plot_agglomerative_clustering.py +84 -0
- jax_sklearn-0.1.0/examples/cluster/plot_agglomerative_clustering_metrics.py +146 -0
- jax_sklearn-0.1.0/examples/cluster/plot_agglomerative_dendrogram.py +55 -0
- jax_sklearn-0.1.0/examples/cluster/plot_birch_vs_minibatchkmeans.py +108 -0
- jax_sklearn-0.1.0/examples/cluster/plot_bisect_kmeans.py +68 -0
- jax_sklearn-0.1.0/examples/cluster/plot_cluster_comparison.py +287 -0
- jax_sklearn-0.1.0/examples/cluster/plot_coin_segmentation.py +104 -0
- jax_sklearn-0.1.0/examples/cluster/plot_coin_ward_segmentation.py +92 -0
- jax_sklearn-0.1.0/examples/cluster/plot_dbscan.py +132 -0
- jax_sklearn-0.1.0/examples/cluster/plot_dict_face_patches.py +94 -0
- jax_sklearn-0.1.0/examples/cluster/plot_digits_agglomeration.py +58 -0
- jax_sklearn-0.1.0/examples/cluster/plot_digits_linkage.py +88 -0
- jax_sklearn-0.1.0/examples/cluster/plot_face_compress.py +190 -0
- jax_sklearn-0.1.0/examples/cluster/plot_feature_agglomeration_vs_univariate_selection.py +113 -0
- jax_sklearn-0.1.0/examples/cluster/plot_hdbscan.py +249 -0
- jax_sklearn-0.1.0/examples/cluster/plot_inductive_clustering.py +129 -0
- jax_sklearn-0.1.0/examples/cluster/plot_kmeans_assumptions.py +178 -0
- jax_sklearn-0.1.0/examples/cluster/plot_kmeans_digits.py +206 -0
- jax_sklearn-0.1.0/examples/cluster/plot_kmeans_plusplus.py +45 -0
- jax_sklearn-0.1.0/examples/cluster/plot_kmeans_silhouette_analysis.py +162 -0
- jax_sklearn-0.1.0/examples/cluster/plot_kmeans_stability_low_dim_dense.py +132 -0
- jax_sklearn-0.1.0/examples/cluster/plot_linkage_comparison.py +178 -0
- jax_sklearn-0.1.0/examples/cluster/plot_mean_shift.py +69 -0
- jax_sklearn-0.1.0/examples/cluster/plot_mini_batch_kmeans.py +147 -0
- jax_sklearn-0.1.0/examples/cluster/plot_optics.py +108 -0
- jax_sklearn-0.1.0/examples/cluster/plot_segmentation_toy.py +118 -0
- jax_sklearn-0.1.0/examples/cluster/plot_ward_structured_vs_unstructured.py +128 -0
- jax_sklearn-0.1.0/examples/compose/README.txt +6 -0
- jax_sklearn-0.1.0/examples/compose/plot_column_transformer.py +186 -0
- jax_sklearn-0.1.0/examples/compose/plot_column_transformer_mixed_types.py +231 -0
- jax_sklearn-0.1.0/examples/compose/plot_compare_reduction.py +132 -0
- jax_sklearn-0.1.0/examples/compose/plot_digits_pipe.py +85 -0
- jax_sklearn-0.1.0/examples/compose/plot_feature_union.py +61 -0
- jax_sklearn-0.1.0/examples/compose/plot_transformed_target.py +233 -0
- jax_sklearn-0.1.0/examples/covariance/README.txt +6 -0
- jax_sklearn-0.1.0/examples/covariance/plot_covariance_estimation.py +159 -0
- jax_sklearn-0.1.0/examples/covariance/plot_lw_vs_oas.py +108 -0
- jax_sklearn-0.1.0/examples/covariance/plot_mahalanobis_distances.py +216 -0
- jax_sklearn-0.1.0/examples/covariance/plot_robust_vs_empirical_covariance.py +189 -0
- jax_sklearn-0.1.0/examples/covariance/plot_sparse_cov.py +158 -0
- jax_sklearn-0.1.0/examples/cross_decomposition/README.txt +6 -0
- jax_sklearn-0.1.0/examples/cross_decomposition/plot_compare_cross_decomposition.py +174 -0
- jax_sklearn-0.1.0/examples/cross_decomposition/plot_pcr_vs_pls.py +169 -0
- jax_sklearn-0.1.0/examples/datasets/README.txt +6 -0
- jax_sklearn-0.1.0/examples/datasets/plot_random_multilabel_dataset.py +109 -0
- jax_sklearn-0.1.0/examples/decomposition/README.txt +6 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_faces_decomposition.py +335 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_ica_blind_source_separation.py +85 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_ica_vs_pca.py +115 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_image_denoising.py +192 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_incremental_pca.py +63 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_kernel_pca.py +163 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_pca_iris.py +105 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_pca_vs_fa_model_selection.py +143 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_pca_vs_lda.py +67 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_sparse_coding.py +123 -0
- jax_sklearn-0.1.0/examples/decomposition/plot_varimax_fa.py +78 -0
- jax_sklearn-0.1.0/examples/developing_estimators/README.txt +6 -0
- jax_sklearn-0.1.0/examples/developing_estimators/xlearn_is_fitted.py +75 -0
- jax_sklearn-0.1.0/examples/ensemble/README.txt +6 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_adaboost_multiclass.py +252 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_adaboost_regression.py +79 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_adaboost_twoclass.py +106 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_bias_variance.py +191 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_ensemble_oob.py +102 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_feature_transformation.py +170 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_forest_hist_grad_boosting_comparison.py +226 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_forest_importances.py +120 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_forest_iris.py +176 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_categorical.py +281 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_early_stopping.py +182 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_oob.py +143 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_quantile.py +338 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_regression.py +166 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_gradient_boosting_regularization.py +90 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_hgbt_regression.py +429 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_isolation_forest.py +126 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_monotonic_constraints.py +112 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_random_forest_embedding.py +111 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_random_forest_regression_multioutput.py +96 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_stack_predictors.py +258 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_voting_decision_regions.py +218 -0
- jax_sklearn-0.1.0/examples/ensemble/plot_voting_regressor.py +93 -0
- jax_sklearn-0.1.0/examples/feature_selection/README.txt +6 -0
- jax_sklearn-0.1.0/examples/feature_selection/plot_f_test_vs_mi.py +52 -0
- jax_sklearn-0.1.0/examples/feature_selection/plot_feature_selection.py +133 -0
- jax_sklearn-0.1.0/examples/feature_selection/plot_feature_selection_pipeline.py +86 -0
- jax_sklearn-0.1.0/examples/feature_selection/plot_rfe_digits.py +57 -0
- jax_sklearn-0.1.0/examples/feature_selection/plot_rfe_with_cross_validation.py +115 -0
- jax_sklearn-0.1.0/examples/feature_selection/plot_select_from_model_diabetes.py +192 -0
- jax_sklearn-0.1.0/examples/frozen/README.txt +6 -0
- jax_sklearn-0.1.0/examples/frozen/plot_frozen_examples.py +98 -0
- jax_sklearn-0.1.0/examples/gaussian_process/README.txt +6 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_compare_gpr_krr.py +396 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc.py +127 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc_iris.py +66 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc_isoprobability.py +97 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpc_xor.py +60 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_co2.py +228 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_noisy.py +227 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_noisy_targets.py +150 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_on_structured_data.py +190 -0
- jax_sklearn-0.1.0/examples/gaussian_process/plot_gpr_prior_posterior.py +257 -0
- jax_sklearn-0.1.0/examples/impute/README.txt +6 -0
- jax_sklearn-0.1.0/examples/impute/plot_iterative_imputer_variants_comparison.py +171 -0
- jax_sklearn-0.1.0/examples/impute/plot_missing_values.py +272 -0
- jax_sklearn-0.1.0/examples/inspection/README.txt +6 -0
- jax_sklearn-0.1.0/examples/inspection/plot_causal_interpretation.py +189 -0
- jax_sklearn-0.1.0/examples/inspection/plot_linear_model_coefficient_interpretation.py +786 -0
- jax_sklearn-0.1.0/examples/inspection/plot_partial_dependence.py +618 -0
- jax_sklearn-0.1.0/examples/inspection/plot_permutation_importance.py +246 -0
- jax_sklearn-0.1.0/examples/inspection/plot_permutation_importance_multicollinear.py +192 -0
- jax_sklearn-0.1.0/examples/kernel_approximation/README.txt +6 -0
- jax_sklearn-0.1.0/examples/kernel_approximation/plot_scalable_poly_kernels.py +251 -0
- jax_sklearn-0.1.0/examples/linear_model/README.txt +6 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_ard.py +212 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_bayesian_ridge_curvefit.py +93 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_elastic_net_precomputed_gram_matrix_with_weighted_samples.py +55 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_huber_vs_ridge.py +64 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_lasso_and_elasticnet.py +249 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_lasso_dense_vs_sparse_data.py +89 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_lasso_lars_ic.py +115 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_lasso_lasso_lars_elasticnet_path.py +136 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_lasso_model_selection.py +249 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_logistic.py +66 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_logistic_l1_l2_sparsity.py +88 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_logistic_multinomial.py +193 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_logistic_path.py +103 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_multi_task_lasso_support.py +82 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_nnls.py +72 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_ols_ridge.py +167 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_omp.py +80 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_poisson_regression_non_normal_loss.py +594 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_polynomial_interpolation.py +212 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_quantile_regression.py +314 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_ransac.py +81 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_ridge_coeffs.py +181 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_ridge_path.py +71 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_robust_fit.py +119 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sgd_early_stopping.py +154 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sgd_iris.py +87 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sgd_loss_functions.py +52 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sgd_penalties.py +57 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sgd_separating_hyperplane.py +47 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sgd_weighted_samples.py +63 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sgdocsvm_vs_ocsvm.py +200 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sparse_logistic_regression_20newsgroups.py +132 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_sparse_logistic_regression_mnist.py +83 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_theilsen.py +125 -0
- jax_sklearn-0.1.0/examples/linear_model/plot_tweedie_regression_insurance_claims.py +700 -0
- jax_sklearn-0.1.0/examples/manifold/README.txt +6 -0
- jax_sklearn-0.1.0/examples/manifold/plot_compare_methods.py +213 -0
- jax_sklearn-0.1.0/examples/manifold/plot_lle_digits.py +178 -0
- jax_sklearn-0.1.0/examples/manifold/plot_manifold_sphere.py +157 -0
- jax_sklearn-0.1.0/examples/manifold/plot_mds.py +129 -0
- jax_sklearn-0.1.0/examples/manifold/plot_swissroll.py +123 -0
- jax_sklearn-0.1.0/examples/manifold/plot_t_sne_perplexity.py +146 -0
- jax_sklearn-0.1.0/examples/miscellaneous/README.txt +6 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_anomaly_comparison.py +189 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_display_object_visualization.py +93 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_estimator_representation.py +52 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_isotonic_regression.py +75 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_johnson_lindenstrauss_bound.py +211 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_kernel_approximation.py +259 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_kernel_ridge_regression.py +217 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_metadata_routing.py +719 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_multilabel.py +130 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_multioutput_face_completion.py +98 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_outlier_detection_bench.py +453 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_partial_dependence_visualization_api.py +140 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_pipeline_display.py +183 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_roc_curve_visualization_api.py +61 -0
- jax_sklearn-0.1.0/examples/miscellaneous/plot_set_output.py +151 -0
- jax_sklearn-0.1.0/examples/mixture/README.txt +6 -0
- jax_sklearn-0.1.0/examples/mixture/plot_concentration_prior.py +164 -0
- jax_sklearn-0.1.0/examples/mixture/plot_gmm.py +96 -0
- jax_sklearn-0.1.0/examples/mixture/plot_gmm_covariances.py +138 -0
- jax_sklearn-0.1.0/examples/mixture/plot_gmm_init.py +110 -0
- jax_sklearn-0.1.0/examples/mixture/plot_gmm_pdf.py +56 -0
- jax_sklearn-0.1.0/examples/mixture/plot_gmm_selection.py +176 -0
- jax_sklearn-0.1.0/examples/mixture/plot_gmm_sin.py +190 -0
- jax_sklearn-0.1.0/examples/model_selection/README.txt +6 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_confusion_matrix.py +71 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_cost_sensitive_learning.py +693 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_cv_indices.py +218 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_cv_predict.py +82 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_det.py +163 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_digits.py +211 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_refit_callable.py +380 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_stats.py +569 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_grid_search_text_feature_extraction.py +263 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_learning_curve.py +187 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_likelihood_ratios.py +326 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_multi_metric_evaluation.py +116 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_nested_cross_validation_iris.py +130 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_permutation_tests_for_classification.py +144 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_precision_recall.py +279 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_randomized_search.py +95 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_roc.py +463 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_roc_crossval.py +142 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_successive_halving_heatmap.py +132 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_successive_halving_iterations.py +88 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_train_error_vs_test_error.py +166 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_tuned_decision_threshold.py +187 -0
- jax_sklearn-0.1.0/examples/model_selection/plot_underfitting_overfitting.py +82 -0
- jax_sklearn-0.1.0/examples/multiclass/README.txt +6 -0
- jax_sklearn-0.1.0/examples/multiclass/plot_multiclass_overview.py +202 -0
- jax_sklearn-0.1.0/examples/multioutput/README.txt +6 -0
- jax_sklearn-0.1.0/examples/multioutput/plot_classifier_chain_yeast.py +153 -0
- jax_sklearn-0.1.0/examples/neighbors/README.txt +6 -0
- jax_sklearn-0.1.0/examples/neighbors/approximate_nearest_neighbors.py +314 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_caching_nearest_neighbors.py +70 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_classification.py +97 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_digits_kde_sampling.py +67 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_kde_1d.py +158 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_lof_novelty_detection.py +93 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_lof_outlier_detection.py +95 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_nca_classification.py +97 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_nca_dim_reduction.py +99 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_nca_illustration.py +102 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_nearest_centroid.py +50 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_regression.py +52 -0
- jax_sklearn-0.1.0/examples/neighbors/plot_species_kde.py +150 -0
- jax_sklearn-0.1.0/examples/neural_networks/README.txt +6 -0
- jax_sklearn-0.1.0/examples/neural_networks/plot_mlp_alpha.py +147 -0
- jax_sklearn-0.1.0/examples/neural_networks/plot_mlp_training_curves.py +144 -0
- jax_sklearn-0.1.0/examples/neural_networks/plot_mnist_filters.py +74 -0
- jax_sklearn-0.1.0/examples/neural_networks/plot_rbm_logistic_classification.py +146 -0
- jax_sklearn-0.1.0/examples/preprocessing/README.txt +6 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_all_scaling.py +416 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_discretization.py +92 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_discretization_classification.py +233 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_discretization_strategies.py +108 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_map_data_to_normal.py +144 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_scaling_importance.py +256 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_target_encoder.py +228 -0
- jax_sklearn-0.1.0/examples/preprocessing/plot_target_encoder_cross_val.py +194 -0
- jax_sklearn-0.1.0/examples/release_highlights/README.txt +6 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_0_22_0.py +296 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_0_23_0.py +194 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_0_24_0.py +267 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_0_0.py +246 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_1_0.py +240 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_2_0.py +172 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_3_0.py +163 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_4_0.py +238 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_5_0.py +230 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_6_0.py +214 -0
- jax_sklearn-0.1.0/examples/release_highlights/plot_release_highlights_1_7_0.py +115 -0
- jax_sklearn-0.1.0/examples/semi_supervised/README.txt +6 -0
- jax_sklearn-0.1.0/examples/semi_supervised/plot_label_propagation_digits.py +118 -0
- jax_sklearn-0.1.0/examples/semi_supervised/plot_label_propagation_digits_active_learning.py +125 -0
- jax_sklearn-0.1.0/examples/semi_supervised/plot_label_propagation_structure.py +105 -0
- jax_sklearn-0.1.0/examples/semi_supervised/plot_self_training_varying_threshold.py +119 -0
- jax_sklearn-0.1.0/examples/semi_supervised/plot_semi_supervised_newsgroups.py +111 -0
- jax_sklearn-0.1.0/examples/semi_supervised/plot_semi_supervised_versus_svm_iris.py +88 -0
- jax_sklearn-0.1.0/examples/svm/README.txt +6 -0
- jax_sklearn-0.1.0/examples/svm/plot_custom_kernel.py +60 -0
- jax_sklearn-0.1.0/examples/svm/plot_iris_svc.py +92 -0
- jax_sklearn-0.1.0/examples/svm/plot_linearsvc_support_vectors.py +61 -0
- jax_sklearn-0.1.0/examples/svm/plot_oneclass.py +105 -0
- jax_sklearn-0.1.0/examples/svm/plot_rbf_parameters.py +221 -0
- jax_sklearn-0.1.0/examples/svm/plot_separating_hyperplane.py +51 -0
- jax_sklearn-0.1.0/examples/svm/plot_separating_hyperplane_unbalanced.py +95 -0
- jax_sklearn-0.1.0/examples/svm/plot_svm_anova.py +71 -0
- jax_sklearn-0.1.0/examples/svm/plot_svm_kernels.py +304 -0
- jax_sklearn-0.1.0/examples/svm/plot_svm_margin.py +90 -0
- jax_sklearn-0.1.0/examples/svm/plot_svm_regression.py +79 -0
- jax_sklearn-0.1.0/examples/svm/plot_svm_scale_c.py +208 -0
- jax_sklearn-0.1.0/examples/svm/plot_svm_tie_breaking.py +66 -0
- jax_sklearn-0.1.0/examples/svm/plot_weighted_samples.py +89 -0
- jax_sklearn-0.1.0/examples/text/README.txt +6 -0
- jax_sklearn-0.1.0/examples/text/plot_document_classification_20newsgroups.py +450 -0
- jax_sklearn-0.1.0/examples/text/plot_document_clustering.py +448 -0
- jax_sklearn-0.1.0/examples/text/plot_hashing_vs_dict_vectorizer.py +383 -0
- jax_sklearn-0.1.0/examples/tree/README.txt +6 -0
- jax_sklearn-0.1.0/examples/tree/plot_cost_complexity_pruning.py +110 -0
- jax_sklearn-0.1.0/examples/tree/plot_iris_dtc.py +89 -0
- jax_sklearn-0.1.0/examples/tree/plot_tree_regression.py +144 -0
- jax_sklearn-0.1.0/examples/tree/plot_unveil_tree_structure.py +237 -0
- jax_sklearn-0.1.0/maint_tools/bump-dependencies-versions.py +171 -0
- jax_sklearn-0.1.0/maint_tools/check_xfailed_checks.py +37 -0
- jax_sklearn-0.1.0/maint_tools/sort_whats_new.py +43 -0
- jax_sklearn-0.1.0/maint_tools/update_tracking_issue.py +163 -0
- jax_sklearn-0.1.0/maint_tools/vendor_array_api_compat.sh +24 -0
- jax_sklearn-0.1.0/maint_tools/vendor_array_api_extra.sh +24 -0
- jax_sklearn-0.1.0/maint_tools/whats_missing.sh +61 -0
- jax_sklearn-0.1.0/meson.build +53 -0
- jax_sklearn-0.1.0/pyproject.toml +506 -0
- jax_sklearn-0.1.0/xlearn/__check_build/__init__.py +54 -0
- jax_sklearn-0.1.0/xlearn/__check_build/_check_build.pyx +2 -0
- jax_sklearn-0.1.0/xlearn/__check_build/meson.build +6 -0
- jax_sklearn-0.1.0/xlearn/__init__.py +217 -0
- jax_sklearn-0.1.0/xlearn/_build_utils/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/_build_utils/tempita.py +62 -0
- jax_sklearn-0.1.0/xlearn/_build_utils/version.py +16 -0
- jax_sklearn-0.1.0/xlearn/_config.py +407 -0
- jax_sklearn-0.1.0/xlearn/_distributor_init.py +13 -0
- jax_sklearn-0.1.0/xlearn/_isotonic.pyx +116 -0
- jax_sklearn-0.1.0/xlearn/_jax/__init__.py +102 -0
- jax_sklearn-0.1.0/xlearn/_jax/_accelerator.py +203 -0
- jax_sklearn-0.1.0/xlearn/_jax/_config.py +171 -0
- jax_sklearn-0.1.0/xlearn/_jax/_data_conversion.py +305 -0
- jax_sklearn-0.1.0/xlearn/_jax/_linear_regression_jax.py +332 -0
- jax_sklearn-0.1.0/xlearn/_jax/_proxy.py +284 -0
- jax_sklearn-0.1.0/xlearn/_jax/_universal_jax.py +376 -0
- jax_sklearn-0.1.0/xlearn/_loss/__init__.py +33 -0
- jax_sklearn-0.1.0/xlearn/_loss/_loss.pxd +101 -0
- jax_sklearn-0.1.0/xlearn/_loss/_loss.pyx.tp +1505 -0
- jax_sklearn-0.1.0/xlearn/_loss/link.py +282 -0
- jax_sklearn-0.1.0/xlearn/_loss/loss.py +1181 -0
- jax_sklearn-0.1.0/xlearn/_loss/meson.build +23 -0
- jax_sklearn-0.1.0/xlearn/_loss/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/_loss/tests/test_link.py +111 -0
- jax_sklearn-0.1.0/xlearn/_loss/tests/test_loss.py +1358 -0
- jax_sklearn-0.1.0/xlearn/_min_dependencies.py +78 -0
- jax_sklearn-0.1.0/xlearn/base.py +1369 -0
- jax_sklearn-0.1.0/xlearn/calibration.py +1448 -0
- jax_sklearn-0.1.0/xlearn/cluster/__init__.py +56 -0
- jax_sklearn-0.1.0/xlearn/cluster/_affinity_propagation.py +607 -0
- jax_sklearn-0.1.0/xlearn/cluster/_agglomerative.py +1333 -0
- jax_sklearn-0.1.0/xlearn/cluster/_bicluster.py +621 -0
- jax_sklearn-0.1.0/xlearn/cluster/_birch.py +749 -0
- jax_sklearn-0.1.0/xlearn/cluster/_bisect_k_means.py +543 -0
- jax_sklearn-0.1.0/xlearn/cluster/_dbscan.py +480 -0
- jax_sklearn-0.1.0/xlearn/cluster/_dbscan_inner.pyx +41 -0
- jax_sklearn-0.1.0/xlearn/cluster/_feature_agglomeration.py +76 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_linkage.pyx +274 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_reachability.pyx +210 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_tree.pxd +49 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/_tree.pyx +799 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/hdbscan.py +1000 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/meson.build +15 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hdbscan/tests/test_reachibility.py +63 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hierarchical_fast.pxd +9 -0
- jax_sklearn-0.1.0/xlearn/cluster/_hierarchical_fast.pyx +507 -0
- jax_sklearn-0.1.0/xlearn/cluster/_k_means_common.pxd +48 -0
- jax_sklearn-0.1.0/xlearn/cluster/_k_means_common.pyx +328 -0
- jax_sklearn-0.1.0/xlearn/cluster/_k_means_elkan.pyx +686 -0
- jax_sklearn-0.1.0/xlearn/cluster/_k_means_lloyd.pyx +420 -0
- jax_sklearn-0.1.0/xlearn/cluster/_k_means_minibatch.pyx +218 -0
- jax_sklearn-0.1.0/xlearn/cluster/_kmeans.py +2303 -0
- jax_sklearn-0.1.0/xlearn/cluster/_mean_shift.py +579 -0
- jax_sklearn-0.1.0/xlearn/cluster/_optics.py +1202 -0
- jax_sklearn-0.1.0/xlearn/cluster/_spectral.py +805 -0
- jax_sklearn-0.1.0/xlearn/cluster/meson.build +26 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/common.py +37 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_affinity_propagation.py +321 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_bicluster.py +264 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_birch.py +250 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_bisect_k_means.py +158 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_dbscan.py +434 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_feature_agglomeration.py +55 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_hdbscan.py +582 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_hierarchical.py +889 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_k_means.py +1364 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_mean_shift.py +215 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_optics.py +868 -0
- jax_sklearn-0.1.0/xlearn/cluster/tests/test_spectral.py +335 -0
- jax_sklearn-0.1.0/xlearn/compose/__init__.py +23 -0
- jax_sklearn-0.1.0/xlearn/compose/_column_transformer.py +1599 -0
- jax_sklearn-0.1.0/xlearn/compose/_target.py +397 -0
- jax_sklearn-0.1.0/xlearn/compose/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/compose/tests/test_column_transformer.py +2799 -0
- jax_sklearn-0.1.0/xlearn/compose/tests/test_target.py +412 -0
- jax_sklearn-0.1.0/xlearn/conftest.py +375 -0
- jax_sklearn-0.1.0/xlearn/covariance/__init__.py +46 -0
- jax_sklearn-0.1.0/xlearn/covariance/_elliptic_envelope.py +266 -0
- jax_sklearn-0.1.0/xlearn/covariance/_empirical_covariance.py +370 -0
- jax_sklearn-0.1.0/xlearn/covariance/_graph_lasso.py +1145 -0
- jax_sklearn-0.1.0/xlearn/covariance/_robust_covariance.py +874 -0
- jax_sklearn-0.1.0/xlearn/covariance/_shrunk_covariance.py +822 -0
- jax_sklearn-0.1.0/xlearn/covariance/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/covariance/tests/test_covariance.py +374 -0
- jax_sklearn-0.1.0/xlearn/covariance/tests/test_elliptic_envelope.py +52 -0
- jax_sklearn-0.1.0/xlearn/covariance/tests/test_graphical_lasso.py +318 -0
- jax_sklearn-0.1.0/xlearn/covariance/tests/test_robust_covariance.py +171 -0
- jax_sklearn-0.1.0/xlearn/cross_decomposition/__init__.py +8 -0
- jax_sklearn-0.1.0/xlearn/cross_decomposition/_pls.py +1097 -0
- jax_sklearn-0.1.0/xlearn/cross_decomposition/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/cross_decomposition/tests/test_pls.py +677 -0
- jax_sklearn-0.1.0/xlearn/datasets/__init__.py +166 -0
- jax_sklearn-0.1.0/xlearn/datasets/_arff_parser.py +543 -0
- jax_sklearn-0.1.0/xlearn/datasets/_base.py +1636 -0
- jax_sklearn-0.1.0/xlearn/datasets/_california_housing.py +248 -0
- jax_sklearn-0.1.0/xlearn/datasets/_covtype.py +252 -0
- jax_sklearn-0.1.0/xlearn/datasets/_kddcup99.py +429 -0
- jax_sklearn-0.1.0/xlearn/datasets/_lfw.py +648 -0
- jax_sklearn-0.1.0/xlearn/datasets/_olivetti_faces.py +184 -0
- jax_sklearn-0.1.0/xlearn/datasets/_openml.py +1160 -0
- jax_sklearn-0.1.0/xlearn/datasets/_rcv1.py +334 -0
- jax_sklearn-0.1.0/xlearn/datasets/_samples_generator.py +2383 -0
- jax_sklearn-0.1.0/xlearn/datasets/_species_distributions.py +289 -0
- jax_sklearn-0.1.0/xlearn/datasets/_svmlight_format_fast.pyx +252 -0
- jax_sklearn-0.1.0/xlearn/datasets/_svmlight_format_io.py +585 -0
- jax_sklearn-0.1.0/xlearn/datasets/_twenty_newsgroups.py +625 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/breast_cancer.csv +570 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/diabetes_data_raw.csv.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/diabetes_target.csv.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/digits.csv.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/iris.csv +151 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/linnerud_exercise.csv +21 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/linnerud_physiological.csv +21 -0
- jax_sklearn-0.1.0/xlearn/datasets/data/wine_data.csv +179 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/breast_cancer.rst +118 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/california_housing.rst +46 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/covtype.rst +30 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/diabetes.rst +38 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/digits.rst +46 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/iris.rst +63 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/kddcup99.rst +94 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/lfw.rst +124 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/linnerud.rst +24 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/olivetti_faces.rst +44 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/rcv1.rst +72 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/species_distributions.rst +40 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/twenty_newsgroups.rst +248 -0
- jax_sklearn-0.1.0/xlearn/datasets/descr/wine_data.rst +94 -0
- jax_sklearn-0.1.0/xlearn/datasets/images/README.txt +18 -0
- jax_sklearn-0.1.0/xlearn/datasets/images/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/datasets/images/china.jpg +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/images/flower.jpg +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/meson.build +7 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/api-v1-jd-1.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/api-v1-jdf-1.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/api-v1-jdq-1.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1/data-v1-dl-1.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jd-1119.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jdf-1119.json.gz +0 -0
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/api-v1-jdq-1119.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1119/data-v1-dl-54002.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/api-v1-jd-1590.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/api-v1-jdf-1590.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/api-v1-jdq-1590.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_1590/data-v1-dl-1595261.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jd-2.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jdf-2.json.gz +0 -0
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/api-v1-jdq-2.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_2/data-v1-dl-1666876.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jd-292.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jd-40981.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jdf-292.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/api-v1-jdf-40981.json.gz +0 -0
- 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
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_292/data-v1-dl-49822.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/api-v1-jd-3.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/api-v1-jdf-3.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/api-v1-jdq-3.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_3/data-v1-dl-3.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jd-40589.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jdf-40589.json.gz +0 -0
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/api-v1-jdq-40589.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40589/data-v1-dl-4644182.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jd-40675.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jdf-40675.json.gz +0 -0
- 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
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/api-v1-jdq-40675.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40675/data-v1-dl-4965250.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/api-v1-jd-40945.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/api-v1-jdf-40945.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/api-v1-jdq-40945.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40945/data-v1-dl-16826755.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jd-40966.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jdf-40966.json.gz +0 -0
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/api-v1-jdq-40966.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_40966/data-v1-dl-17928620.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/api-v1-jd-42074.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/api-v1-jdf-42074.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/api-v1-jdq-42074.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42074/data-v1-dl-21552912.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/api-v1-jd-42585.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/api-v1-jdf-42585.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/api-v1-jdq-42585.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_42585/data-v1-dl-21854866.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jd-561.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jdf-561.json.gz +0 -0
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/api-v1-jdq-561.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_561/data-v1-dl-52739.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jd-61.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jdf-61.json.gz +0 -0
- 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
- 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
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/api-v1-jdq-61.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_61/data-v1-dl-61.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/api-v1-jd-62.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/api-v1-jdf-62.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/api-v1-jdq-62.json.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/openml/id_62/data-v1-dl-52352.arff.gz +0 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_classification.txt +9 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_invalid.txt +3 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_invalid_order.txt +1 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/data/svmlight_multilabel.txt +5 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_20news.py +143 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_arff_parser.py +284 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_base.py +658 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_california_housing.py +38 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_common.py +136 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_covtype.py +55 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_kddcup99.py +89 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_lfw.py +229 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_olivetti_faces.py +26 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_openml.py +1634 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_rcv1.py +71 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_samples_generator.py +744 -0
- jax_sklearn-0.1.0/xlearn/datasets/tests/test_svmlight_format.py +613 -0
- jax_sklearn-0.1.0/xlearn/decomposition/__init__.py +54 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_base.py +202 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_cdnmf_fast.pyx +38 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_dict_learning.py +2329 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_factor_analysis.py +457 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_fastica.py +804 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_incremental_pca.py +426 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_kernel_pca.py +577 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_lda.py +959 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_nmf.py +2409 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_online_lda_fast.pyx +110 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_pca.py +857 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_sparse_pca.py +548 -0
- jax_sklearn-0.1.0/xlearn/decomposition/_truncated_svd.py +322 -0
- jax_sklearn-0.1.0/xlearn/decomposition/meson.build +14 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_dict_learning.py +988 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_factor_analysis.py +109 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_fastica.py +457 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_incremental_pca.py +487 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_kernel_pca.py +566 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_nmf.py +1010 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_online_lda.py +482 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_pca.py +1154 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_sparse_pca.py +347 -0
- jax_sklearn-0.1.0/xlearn/decomposition/tests/test_truncated_svd.py +212 -0
- jax_sklearn-0.1.0/xlearn/discriminant_analysis.py +1129 -0
- jax_sklearn-0.1.0/xlearn/dummy.py +704 -0
- jax_sklearn-0.1.0/xlearn/ensemble/__init__.py +45 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_bagging.py +1480 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_base.py +307 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_forest.py +3045 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_gb.py +2196 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_gradient_boosting.pyx +262 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/__init__.py +8 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_binning.pyx +85 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_bitset.pxd +20 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_bitset.pyx +65 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_gradient_boosting.pyx +59 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/_predictor.pyx +256 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/binning.py +333 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/common.pxd +43 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/common.pyx +44 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/gradient_boosting.py +2371 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/grower.py +821 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/histogram.pyx +520 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/meson.build +20 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/predictor.py +146 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/splitting.pyx +1201 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_binning.py +489 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_bitset.py +64 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_compare_lightgbm.py +291 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_gradient_boosting.py +1760 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_grower.py +650 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_histogram.py +239 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_monotonic_constraints.py +446 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_predictor.py +187 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_splitting.py +1070 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/tests/test_warm_start.py +231 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_hist_gradient_boosting/utils.py +149 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_iforest.py +673 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_stacking.py +1145 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_voting.py +734 -0
- jax_sklearn-0.1.0/xlearn/ensemble/_weight_boosting.py +1173 -0
- jax_sklearn-0.1.0/xlearn/ensemble/meson.build +9 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_bagging.py +1043 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_base.py +109 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_common.py +262 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_forest.py +1865 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_gradient_boosting.py +1711 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_iforest.py +393 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_stacking.py +1019 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_voting.py +793 -0
- jax_sklearn-0.1.0/xlearn/ensemble/tests/test_weight_boosting.py +639 -0
- jax_sklearn-0.1.0/xlearn/exceptions.py +249 -0
- jax_sklearn-0.1.0/xlearn/experimental/__init__.py +10 -0
- jax_sklearn-0.1.0/xlearn/experimental/enable_halving_search_cv.py +35 -0
- jax_sklearn-0.1.0/xlearn/experimental/enable_hist_gradient_boosting.py +23 -0
- jax_sklearn-0.1.0/xlearn/experimental/enable_iterative_imputer.py +23 -0
- jax_sklearn-0.1.0/xlearn/experimental/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/experimental/tests/test_enable_hist_gradient_boosting.py +19 -0
- jax_sklearn-0.1.0/xlearn/experimental/tests/test_enable_iterative_imputer.py +51 -0
- jax_sklearn-0.1.0/xlearn/experimental/tests/test_enable_successive_halving.py +53 -0
- jax_sklearn-0.1.0/xlearn/externals/README +7 -0
- jax_sklearn-0.1.0/xlearn/externals/__init__.py +5 -0
- jax_sklearn-0.1.0/xlearn/externals/_arff.py +1107 -0
- jax_sklearn-0.1.0/xlearn/externals/_array_api_compat_vendor.py +5 -0
- jax_sklearn-0.1.0/xlearn/externals/_packaging/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/externals/_packaging/_structures.py +90 -0
- jax_sklearn-0.1.0/xlearn/externals/_packaging/version.py +535 -0
- jax_sklearn-0.1.0/xlearn/externals/_scipy/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/externals/_scipy/sparse/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/externals/_scipy/sparse/csgraph/__init__.py +1 -0
- jax_sklearn-0.1.0/xlearn/externals/_scipy/sparse/csgraph/_laplacian.py +557 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/LICENSE +21 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/README.md +1 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/__init__.py +22 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/_internal.py +59 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/__init__.py +1 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_aliases.py +727 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_fft.py +213 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_helpers.py +1058 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_linalg.py +232 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/common/_typing.py +192 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/__init__.py +13 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/_aliases.py +156 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/_info.py +336 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/_typing.py +31 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/fft.py +36 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/cupy/linalg.py +49 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/__init__.py +12 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/_aliases.py +376 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/_info.py +416 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/fft.py +21 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/dask/array/linalg.py +72 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/__init__.py +28 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/_aliases.py +190 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/_info.py +366 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/_typing.py +30 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/fft.py +35 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/numpy/linalg.py +143 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/py.typed +0 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/__init__.py +22 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/_aliases.py +855 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/_info.py +369 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/_typing.py +3 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/fft.py +85 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_compat/torch/linalg.py +121 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/LICENSE +21 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/README.md +1 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/__init__.py +38 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_delegation.py +172 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/__init__.py +5 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_at.py +454 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_backends.py +51 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_funcs.py +915 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_lazy.py +352 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_testing.py +220 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/__init__.py +1 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_compat.py +70 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_compat.pyi +40 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_helpers.py +272 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_typing.py +10 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/_lib/_utils/_typing.pyi +105 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/py.typed +0 -0
- jax_sklearn-0.1.0/xlearn/externals/array_api_extra/testing.py +324 -0
- jax_sklearn-0.1.0/xlearn/externals/conftest.py +6 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/__init__.py +18 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/_dict_vectorizer.py +459 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/_hash.py +208 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/_hashing_fast.pyx +89 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/_stop_words.py +328 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/image.py +687 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/meson.build +7 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_dict_vectorizer.py +261 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_feature_hasher.py +160 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_image.py +359 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/tests/test_text.py +1628 -0
- jax_sklearn-0.1.0/xlearn/feature_extraction/text.py +2136 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/__init__.py +50 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/_base.py +267 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/_from_model.py +513 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/_mutual_info.py +580 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/_rfe.py +1025 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/_sequential.py +363 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/_univariate_selection.py +1171 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/_variance_threshold.py +141 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_base.py +154 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_chi2.py +93 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_feature_select.py +1018 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_from_model.py +704 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_mutual_info.py +270 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_rfe.py +755 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_sequential.py +332 -0
- jax_sklearn-0.1.0/xlearn/feature_selection/tests/test_variance_threshold.py +72 -0
- jax_sklearn-0.1.0/xlearn/frozen/__init__.py +6 -0
- jax_sklearn-0.1.0/xlearn/frozen/_frozen.py +166 -0
- jax_sklearn-0.1.0/xlearn/frozen/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/frozen/tests/test_frozen.py +223 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/__init__.py +10 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/_gpc.py +973 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/_gpr.py +675 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/kernels.py +2408 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/tests/_mini_sequence_kernel.py +54 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/tests/test_gpc.py +320 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/tests/test_gpr.py +849 -0
- jax_sklearn-0.1.0/xlearn/gaussian_process/tests/test_kernels.py +403 -0
- jax_sklearn-0.1.0/xlearn/impute/__init__.py +28 -0
- jax_sklearn-0.1.0/xlearn/impute/_base.py +1139 -0
- jax_sklearn-0.1.0/xlearn/impute/_iterative.py +1030 -0
- jax_sklearn-0.1.0/xlearn/impute/_knn.py +411 -0
- jax_sklearn-0.1.0/xlearn/impute/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/impute/tests/test_base.py +107 -0
- jax_sklearn-0.1.0/xlearn/impute/tests/test_common.py +220 -0
- jax_sklearn-0.1.0/xlearn/impute/tests/test_impute.py +1935 -0
- jax_sklearn-0.1.0/xlearn/impute/tests/test_knn.py +570 -0
- jax_sklearn-0.1.0/xlearn/inspection/__init__.py +16 -0
- jax_sklearn-0.1.0/xlearn/inspection/_partial_dependence.py +775 -0
- jax_sklearn-0.1.0/xlearn/inspection/_pd_utils.py +68 -0
- jax_sklearn-0.1.0/xlearn/inspection/_permutation_importance.py +313 -0
- jax_sklearn-0.1.0/xlearn/inspection/_plot/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/inspection/_plot/decision_boundary.py +564 -0
- jax_sklearn-0.1.0/xlearn/inspection/_plot/partial_dependence.py +1495 -0
- jax_sklearn-0.1.0/xlearn/inspection/_plot/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/inspection/_plot/tests/test_boundary_decision_display.py +710 -0
- jax_sklearn-0.1.0/xlearn/inspection/_plot/tests/test_plot_partial_dependence.py +1315 -0
- jax_sklearn-0.1.0/xlearn/inspection/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/inspection/tests/test_partial_dependence.py +1217 -0
- jax_sklearn-0.1.0/xlearn/inspection/tests/test_pd_utils.py +47 -0
- jax_sklearn-0.1.0/xlearn/inspection/tests/test_permutation_importance.py +540 -0
- jax_sklearn-0.1.0/xlearn/isotonic.py +517 -0
- jax_sklearn-0.1.0/xlearn/kernel_approximation.py +1106 -0
- jax_sklearn-0.1.0/xlearn/kernel_ridge.py +240 -0
- jax_sklearn-0.1.0/xlearn/linear_model/__init__.py +95 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_base.py +869 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_bayes.py +826 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_cd_fast.pyx +962 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_coordinate_descent.py +3403 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_glm/__init__.py +16 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_glm/_newton_solver.py +618 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_glm/glm.py +911 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_glm/tests/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_glm/tests/test_glm.py +1142 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_huber.py +363 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_least_angle.py +2346 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_linear_loss.py +825 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_logistic.py +2327 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_omp.py +1121 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_passive_aggressive.py +573 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_perceptron.py +226 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_quantile.py +301 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_ransac.py +726 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_ridge.py +2899 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_sag.py +370 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_sag_fast.pyx.tp +642 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_sgd_fast.pyx.tp +661 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_stochastic_gradient.py +2604 -0
- jax_sklearn-0.1.0/xlearn/linear_model/_theil_sen.py +467 -0
- jax_sklearn-0.1.0/xlearn/linear_model/meson.build +32 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_base.py +791 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_bayes.py +314 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_common.py +234 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_coordinate_descent.py +1805 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_huber.py +216 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_least_angle.py +869 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_linear_loss.py +510 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_logistic.py +2439 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_omp.py +273 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_passive_aggressive.py +268 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_perceptron.py +88 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_quantile.py +283 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_ransac.py +545 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_ridge.py +2380 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_sag.py +861 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_sgd.py +2195 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_sparse_coordinate_descent.py +384 -0
- jax_sklearn-0.1.0/xlearn/linear_model/tests/test_theil_sen.py +303 -0
- jax_sklearn-0.1.0/xlearn/manifold/__init__.py +22 -0
- jax_sklearn-0.1.0/xlearn/manifold/_barnes_hut_tsne.pyx +295 -0
- jax_sklearn-0.1.0/xlearn/manifold/_isomap.py +442 -0
- jax_sklearn-0.1.0/xlearn/manifold/_locally_linear.py +879 -0
- jax_sklearn-0.1.0/xlearn/manifold/_mds.py +714 -0
- jax_sklearn-0.1.0/xlearn/manifold/_spectral_embedding.py +776 -0
- jax_sklearn-0.1.0/xlearn/manifold/_t_sne.py +1184 -0
- jax_sklearn-0.1.0/xlearn/manifold/_utils.pyx +120 -0
- jax_sklearn-0.1.0/xlearn/manifold/meson.build +14 -0
- jax_sklearn-0.1.0/xlearn/manifold/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/manifold/tests/test_isomap.py +348 -0
- jax_sklearn-0.1.0/xlearn/manifold/tests/test_locally_linear.py +171 -0
- jax_sklearn-0.1.0/xlearn/manifold/tests/test_mds.py +234 -0
- jax_sklearn-0.1.0/xlearn/manifold/tests/test_spectral_embedding.py +503 -0
- jax_sklearn-0.1.0/xlearn/manifold/tests/test_t_sne.py +1187 -0
- jax_sklearn-0.1.0/xlearn/meson.build +273 -0
- jax_sklearn-0.1.0/xlearn/metrics/__init__.py +181 -0
- jax_sklearn-0.1.0/xlearn/metrics/_base.py +193 -0
- jax_sklearn-0.1.0/xlearn/metrics/_classification.py +3730 -0
- jax_sklearn-0.1.0/xlearn/metrics/_dist_metrics.pxd.tp +152 -0
- jax_sklearn-0.1.0/xlearn/metrics/_dist_metrics.pyx.tp +2811 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/__init__.py +112 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_argkmin.pxd.tp +31 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_argkmin.pyx.tp +512 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_argkmin_classmode.pyx.tp +182 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_base.pxd.tp +135 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_base.pyx.tp +504 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_classmode.pxd +5 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_datasets_pair.pxd.tp +67 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_datasets_pair.pyx.tp +406 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_dispatcher.py +767 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_middle_term_computer.pxd.tp +228 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_middle_term_computer.pyx.tp +633 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_radius_neighbors.pxd.tp +90 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_radius_neighbors.pyx.tp +514 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/_radius_neighbors_classmode.pyx.tp +217 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_distances_reduction/meson.build +193 -0
- jax_sklearn-0.1.0/xlearn/metrics/_pairwise_fast.pyx +107 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/confusion_matrix.py +499 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/det_curve.py +371 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/precision_recall_curve.py +555 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/regression.py +413 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/roc_curve.py +795 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_common_curve_display.py +292 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_confusion_matrix_display.py +374 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_det_curve_display.py +114 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_precision_recall_display.py +382 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_predict_error_display.py +169 -0
- jax_sklearn-0.1.0/xlearn/metrics/_plot/tests/test_roc_curve_display.py +987 -0
- jax_sklearn-0.1.0/xlearn/metrics/_ranking.py +2077 -0
- jax_sklearn-0.1.0/xlearn/metrics/_regression.py +1930 -0
- jax_sklearn-0.1.0/xlearn/metrics/_scorer.py +1166 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/__init__.py +55 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/_bicluster.py +114 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/_expected_mutual_info_fast.pyx +69 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/_supervised.py +1314 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/_unsupervised.py +463 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/meson.build +6 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_bicluster.py +56 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_common.py +234 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_supervised.py +522 -0
- jax_sklearn-0.1.0/xlearn/metrics/cluster/tests/test_unsupervised.py +413 -0
- jax_sklearn-0.1.0/xlearn/metrics/meson.build +49 -0
- jax_sklearn-0.1.0/xlearn/metrics/pairwise.py +2675 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_classification.py +3397 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_common.py +2348 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_dist_metrics.py +431 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_pairwise.py +1683 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_pairwise_distances_reduction.py +1643 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_ranking.py +2270 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_regression.py +636 -0
- jax_sklearn-0.1.0/xlearn/metrics/tests/test_score_objects.py +1665 -0
- jax_sklearn-0.1.0/xlearn/mixture/__init__.py +9 -0
- jax_sklearn-0.1.0/xlearn/mixture/_base.py +571 -0
- jax_sklearn-0.1.0/xlearn/mixture/_bayesian_mixture.py +891 -0
- jax_sklearn-0.1.0/xlearn/mixture/_gaussian_mixture.py +934 -0
- jax_sklearn-0.1.0/xlearn/mixture/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/mixture/tests/test_bayesian_mixture.py +464 -0
- jax_sklearn-0.1.0/xlearn/mixture/tests/test_gaussian_mixture.py +1473 -0
- jax_sklearn-0.1.0/xlearn/mixture/tests/test_mixture.py +30 -0
- jax_sklearn-0.1.0/xlearn/model_selection/__init__.py +99 -0
- jax_sklearn-0.1.0/xlearn/model_selection/_classification_threshold.py +889 -0
- jax_sklearn-0.1.0/xlearn/model_selection/_plot.py +885 -0
- jax_sklearn-0.1.0/xlearn/model_selection/_search.py +1996 -0
- jax_sklearn-0.1.0/xlearn/model_selection/_search_successive_halving.py +1095 -0
- jax_sklearn-0.1.0/xlearn/model_selection/_split.py +3055 -0
- jax_sklearn-0.1.0/xlearn/model_selection/_validation.py +2530 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/common.py +24 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/test_classification_threshold.py +618 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/test_plot.py +572 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/test_search.py +2966 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/test_split.py +2102 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/test_successive_halving.py +853 -0
- jax_sklearn-0.1.0/xlearn/model_selection/tests/test_validation.py +2739 -0
- jax_sklearn-0.1.0/xlearn/multiclass.py +1287 -0
- jax_sklearn-0.1.0/xlearn/multioutput.py +1328 -0
- jax_sklearn-0.1.0/xlearn/naive_bayes.py +1540 -0
- jax_sklearn-0.1.0/xlearn/neighbors/__init__.py +42 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_ball_tree.pyx.tp +284 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_base.py +1404 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_binary_tree.pxi.tp +2478 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_classification.py +919 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_graph.py +704 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_kd_tree.pyx.tp +336 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_kde.py +359 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_lof.py +518 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_nca.py +534 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_nearest_centroid.py +359 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_partition_nodes.pxd +10 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_partition_nodes.pyx +122 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_quad_tree.pxd +92 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_quad_tree.pyx +609 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_regression.py +513 -0
- jax_sklearn-0.1.0/xlearn/neighbors/_unsupervised.py +179 -0
- jax_sklearn-0.1.0/xlearn/neighbors/meson.build +53 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_ball_tree.py +200 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_graph.py +101 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_kd_tree.py +100 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_kde.py +252 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_lof.py +394 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_nca.py +563 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_nearest_centroid.py +237 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_neighbors.py +2503 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_neighbors_pipeline.py +256 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_neighbors_tree.py +296 -0
- jax_sklearn-0.1.0/xlearn/neighbors/tests/test_quad_tree.py +144 -0
- jax_sklearn-0.1.0/xlearn/neural_network/__init__.py +9 -0
- jax_sklearn-0.1.0/xlearn/neural_network/_base.py +287 -0
- jax_sklearn-0.1.0/xlearn/neural_network/_multilayer_perceptron.py +1797 -0
- jax_sklearn-0.1.0/xlearn/neural_network/_rbm.py +445 -0
- jax_sklearn-0.1.0/xlearn/neural_network/_stochastic_optimizers.py +287 -0
- jax_sklearn-0.1.0/xlearn/neural_network/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/neural_network/tests/test_base.py +52 -0
- jax_sklearn-0.1.0/xlearn/neural_network/tests/test_mlp.py +1094 -0
- jax_sklearn-0.1.0/xlearn/neural_network/tests/test_rbm.py +251 -0
- jax_sklearn-0.1.0/xlearn/neural_network/tests/test_stochastic_optimizers.py +112 -0
- jax_sklearn-0.1.0/xlearn/pipeline.py +2188 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/__init__.py +63 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_csr_polynomial_expansion.pyx +258 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_data.py +3706 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_discretization.py +548 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_encoders.py +1698 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_function_transformer.py +446 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_label.py +963 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_polynomial.py +1153 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_target_encoder.py +534 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/_target_encoder_fast.pyx +167 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/meson.build +13 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_common.py +187 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_data.py +2693 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_discretization.py +665 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_encoders.py +2367 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_function_transformer.py +579 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_label.py +748 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_polynomial.py +1230 -0
- jax_sklearn-0.1.0/xlearn/preprocessing/tests/test_target_encoder.py +714 -0
- jax_sklearn-0.1.0/xlearn/random_projection.py +824 -0
- jax_sklearn-0.1.0/xlearn/semi_supervised/__init__.py +13 -0
- jax_sklearn-0.1.0/xlearn/semi_supervised/_label_propagation.py +630 -0
- jax_sklearn-0.1.0/xlearn/semi_supervised/_self_training.py +625 -0
- jax_sklearn-0.1.0/xlearn/semi_supervised/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/semi_supervised/tests/test_label_propagation.py +238 -0
- jax_sklearn-0.1.0/xlearn/semi_supervised/tests/test_self_training.py +395 -0
- jax_sklearn-0.1.0/xlearn/svm/__init__.py +21 -0
- jax_sklearn-0.1.0/xlearn/svm/_base.py +1262 -0
- jax_sklearn-0.1.0/xlearn/svm/_bounds.py +98 -0
- jax_sklearn-0.1.0/xlearn/svm/_classes.py +1789 -0
- jax_sklearn-0.1.0/xlearn/svm/_liblinear.pxi +43 -0
- jax_sklearn-0.1.0/xlearn/svm/_liblinear.pyx +147 -0
- jax_sklearn-0.1.0/xlearn/svm/_libsvm.pxi +75 -0
- jax_sklearn-0.1.0/xlearn/svm/_libsvm.pyx +917 -0
- jax_sklearn-0.1.0/xlearn/svm/_libsvm_sparse.pyx +550 -0
- jax_sklearn-0.1.0/xlearn/svm/_newrand.pyx +13 -0
- jax_sklearn-0.1.0/xlearn/svm/meson.build +48 -0
- jax_sklearn-0.1.0/xlearn/svm/src/liblinear/COPYRIGHT +31 -0
- jax_sklearn-0.1.0/xlearn/svm/src/liblinear/_cython_blas_helpers.h +16 -0
- jax_sklearn-0.1.0/xlearn/svm/src/liblinear/liblinear_helper.c +236 -0
- jax_sklearn-0.1.0/xlearn/svm/src/liblinear/linear.cpp +3075 -0
- jax_sklearn-0.1.0/xlearn/svm/src/liblinear/linear.h +86 -0
- jax_sklearn-0.1.0/xlearn/svm/src/liblinear/tron.cpp +223 -0
- jax_sklearn-0.1.0/xlearn/svm/src/liblinear/tron.h +37 -0
- jax_sklearn-0.1.0/xlearn/svm/src/libsvm/LIBSVM_CHANGES +11 -0
- jax_sklearn-0.1.0/xlearn/svm/src/libsvm/_svm_cython_blas_helpers.h +9 -0
- jax_sklearn-0.1.0/xlearn/svm/src/libsvm/libsvm_helper.c +425 -0
- jax_sklearn-0.1.0/xlearn/svm/src/libsvm/libsvm_sparse_helper.c +472 -0
- jax_sklearn-0.1.0/xlearn/svm/src/libsvm/libsvm_template.cpp +8 -0
- jax_sklearn-0.1.0/xlearn/svm/src/libsvm/svm.cpp +3187 -0
- jax_sklearn-0.1.0/xlearn/svm/src/libsvm/svm.h +176 -0
- jax_sklearn-0.1.0/xlearn/svm/src/newrand/newrand.h +59 -0
- jax_sklearn-0.1.0/xlearn/svm/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/svm/tests/test_bounds.py +147 -0
- jax_sklearn-0.1.0/xlearn/svm/tests/test_sparse.py +496 -0
- jax_sklearn-0.1.0/xlearn/svm/tests/test_svm.py +1440 -0
- jax_sklearn-0.1.0/xlearn/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/tests/metadata_routing_common.py +584 -0
- jax_sklearn-0.1.0/xlearn/tests/test_base.py +1081 -0
- jax_sklearn-0.1.0/xlearn/tests/test_build.py +34 -0
- jax_sklearn-0.1.0/xlearn/tests/test_calibration.py +1136 -0
- jax_sklearn-0.1.0/xlearn/tests/test_check_build.py +15 -0
- jax_sklearn-0.1.0/xlearn/tests/test_common.py +406 -0
- jax_sklearn-0.1.0/xlearn/tests/test_config.py +168 -0
- jax_sklearn-0.1.0/xlearn/tests/test_discriminant_analysis.py +670 -0
- jax_sklearn-0.1.0/xlearn/tests/test_docstring_parameters.py +328 -0
- jax_sklearn-0.1.0/xlearn/tests/test_docstring_parameters_consistency.py +113 -0
- jax_sklearn-0.1.0/xlearn/tests/test_docstrings.py +208 -0
- jax_sklearn-0.1.0/xlearn/tests/test_dummy.py +715 -0
- jax_sklearn-0.1.0/xlearn/tests/test_init.py +20 -0
- jax_sklearn-0.1.0/xlearn/tests/test_isotonic.py +708 -0
- jax_sklearn-0.1.0/xlearn/tests/test_kernel_approximation.py +495 -0
- jax_sklearn-0.1.0/xlearn/tests/test_kernel_ridge.py +80 -0
- jax_sklearn-0.1.0/xlearn/tests/test_metadata_routing.py +1158 -0
- jax_sklearn-0.1.0/xlearn/tests/test_metaestimators.py +337 -0
- jax_sklearn-0.1.0/xlearn/tests/test_metaestimators_metadata_routing.py +927 -0
- jax_sklearn-0.1.0/xlearn/tests/test_min_dependencies_readme.py +133 -0
- jax_sklearn-0.1.0/xlearn/tests/test_multiclass.py +971 -0
- jax_sklearn-0.1.0/xlearn/tests/test_multioutput.py +880 -0
- jax_sklearn-0.1.0/xlearn/tests/test_naive_bayes.py +979 -0
- jax_sklearn-0.1.0/xlearn/tests/test_pipeline.py +2413 -0
- jax_sklearn-0.1.0/xlearn/tests/test_public_functions.py +403 -0
- jax_sklearn-0.1.0/xlearn/tests/test_random_projection.py +584 -0
- jax_sklearn-0.1.0/xlearn/tree/__init__.py +24 -0
- jax_sklearn-0.1.0/xlearn/tree/_classes.py +1997 -0
- jax_sklearn-0.1.0/xlearn/tree/_criterion.pxd +109 -0
- jax_sklearn-0.1.0/xlearn/tree/_criterion.pyx +1697 -0
- jax_sklearn-0.1.0/xlearn/tree/_export.py +1167 -0
- jax_sklearn-0.1.0/xlearn/tree/_partitioner.pxd +178 -0
- jax_sklearn-0.1.0/xlearn/tree/_partitioner.pyx +821 -0
- jax_sklearn-0.1.0/xlearn/tree/_reingold_tilford.py +188 -0
- jax_sklearn-0.1.0/xlearn/tree/_splitter.pxd +106 -0
- jax_sklearn-0.1.0/xlearn/tree/_splitter.pyx +901 -0
- jax_sklearn-0.1.0/xlearn/tree/_tree.pxd +133 -0
- jax_sklearn-0.1.0/xlearn/tree/_tree.pyx +1989 -0
- jax_sklearn-0.1.0/xlearn/tree/_utils.pxd +100 -0
- jax_sklearn-0.1.0/xlearn/tree/_utils.pyx +460 -0
- jax_sklearn-0.1.0/xlearn/tree/meson.build +28 -0
- jax_sklearn-0.1.0/xlearn/tree/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/tree/tests/test_export.py +630 -0
- jax_sklearn-0.1.0/xlearn/tree/tests/test_monotonic_tree.py +512 -0
- jax_sklearn-0.1.0/xlearn/tree/tests/test_reingold_tilford.py +49 -0
- jax_sklearn-0.1.0/xlearn/tree/tests/test_tree.py +2839 -0
- jax_sklearn-0.1.0/xlearn/utils/__init__.py +84 -0
- jax_sklearn-0.1.0/xlearn/utils/_arpack.py +33 -0
- jax_sklearn-0.1.0/xlearn/utils/_array_api.py +1006 -0
- jax_sklearn-0.1.0/xlearn/utils/_available_if.py +96 -0
- jax_sklearn-0.1.0/xlearn/utils/_bunch.py +70 -0
- jax_sklearn-0.1.0/xlearn/utils/_chunking.py +178 -0
- jax_sklearn-0.1.0/xlearn/utils/_cython_blas.pxd +41 -0
- jax_sklearn-0.1.0/xlearn/utils/_cython_blas.pyx +239 -0
- jax_sklearn-0.1.0/xlearn/utils/_encode.py +376 -0
- jax_sklearn-0.1.0/xlearn/utils/_estimator_html_repr.py +34 -0
- jax_sklearn-0.1.0/xlearn/utils/_fast_dict.pxd +19 -0
- jax_sklearn-0.1.0/xlearn/utils/_fast_dict.pyx +137 -0
- jax_sklearn-0.1.0/xlearn/utils/_heap.pxd +14 -0
- jax_sklearn-0.1.0/xlearn/utils/_heap.pyx +85 -0
- jax_sklearn-0.1.0/xlearn/utils/_indexing.py +755 -0
- jax_sklearn-0.1.0/xlearn/utils/_isfinite.pyx +51 -0
- jax_sklearn-0.1.0/xlearn/utils/_mask.py +181 -0
- jax_sklearn-0.1.0/xlearn/utils/_metadata_requests.py +1628 -0
- jax_sklearn-0.1.0/xlearn/utils/_missing.py +68 -0
- jax_sklearn-0.1.0/xlearn/utils/_mocking.py +419 -0
- jax_sklearn-0.1.0/xlearn/utils/_openmp_helpers.pxd +33 -0
- jax_sklearn-0.1.0/xlearn/utils/_openmp_helpers.pyx +77 -0
- jax_sklearn-0.1.0/xlearn/utils/_optional_dependencies.py +46 -0
- jax_sklearn-0.1.0/xlearn/utils/_param_validation.py +910 -0
- jax_sklearn-0.1.0/xlearn/utils/_plotting.py +419 -0
- jax_sklearn-0.1.0/xlearn/utils/_pprint.py +463 -0
- jax_sklearn-0.1.0/xlearn/utils/_random.pxd +34 -0
- jax_sklearn-0.1.0/xlearn/utils/_random.pyx +355 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/base.py +152 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/estimator.css +413 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/estimator.js +42 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/estimator.py +497 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/params.css +63 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/params.py +83 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/tests/test_estimator.py +616 -0
- jax_sklearn-0.1.0/xlearn/utils/_repr_html/tests/test_params.py +74 -0
- jax_sklearn-0.1.0/xlearn/utils/_response.py +317 -0
- jax_sklearn-0.1.0/xlearn/utils/_seq_dataset.pxd.tp +76 -0
- jax_sklearn-0.1.0/xlearn/utils/_seq_dataset.pyx.tp +348 -0
- jax_sklearn-0.1.0/xlearn/utils/_set_output.py +460 -0
- jax_sklearn-0.1.0/xlearn/utils/_show_versions.py +115 -0
- jax_sklearn-0.1.0/xlearn/utils/_sorting.pxd +9 -0
- jax_sklearn-0.1.0/xlearn/utils/_sorting.pyx +93 -0
- jax_sklearn-0.1.0/xlearn/utils/_tags.py +355 -0
- jax_sklearn-0.1.0/xlearn/utils/_test_common/__init__.py +2 -0
- jax_sklearn-0.1.0/xlearn/utils/_test_common/instance_generator.py +1293 -0
- jax_sklearn-0.1.0/xlearn/utils/_testing.py +1454 -0
- jax_sklearn-0.1.0/xlearn/utils/_typedefs.pxd +41 -0
- jax_sklearn-0.1.0/xlearn/utils/_typedefs.pyx +23 -0
- jax_sklearn-0.1.0/xlearn/utils/_unique.py +108 -0
- jax_sklearn-0.1.0/xlearn/utils/_user_interface.py +57 -0
- jax_sklearn-0.1.0/xlearn/utils/_vector_sentinel.pxd +12 -0
- jax_sklearn-0.1.0/xlearn/utils/_vector_sentinel.pyx +118 -0
- jax_sklearn-0.1.0/xlearn/utils/_weight_vector.pxd.tp +45 -0
- jax_sklearn-0.1.0/xlearn/utils/_weight_vector.pyx.tp +207 -0
- jax_sklearn-0.1.0/xlearn/utils/arrayfuncs.pyx +118 -0
- jax_sklearn-0.1.0/xlearn/utils/class_weight.py +231 -0
- jax_sklearn-0.1.0/xlearn/utils/deprecation.py +149 -0
- jax_sklearn-0.1.0/xlearn/utils/discovery.py +255 -0
- jax_sklearn-0.1.0/xlearn/utils/estimator_checks.py +5348 -0
- jax_sklearn-0.1.0/xlearn/utils/extmath.py +1395 -0
- jax_sklearn-0.1.0/xlearn/utils/fixes.py +427 -0
- jax_sklearn-0.1.0/xlearn/utils/graph.py +162 -0
- jax_sklearn-0.1.0/xlearn/utils/meson.build +75 -0
- jax_sklearn-0.1.0/xlearn/utils/metadata_routing.py +23 -0
- jax_sklearn-0.1.0/xlearn/utils/metaestimators.py +163 -0
- jax_sklearn-0.1.0/xlearn/utils/multiclass.py +584 -0
- jax_sklearn-0.1.0/xlearn/utils/murmurhash.pxd +21 -0
- jax_sklearn-0.1.0/xlearn/utils/murmurhash.pyx +135 -0
- jax_sklearn-0.1.0/xlearn/utils/optimize.py +389 -0
- jax_sklearn-0.1.0/xlearn/utils/parallel.py +177 -0
- jax_sklearn-0.1.0/xlearn/utils/random.py +101 -0
- jax_sklearn-0.1.0/xlearn/utils/sparsefuncs.py +742 -0
- jax_sklearn-0.1.0/xlearn/utils/sparsefuncs_fast.pyx +640 -0
- jax_sklearn-0.1.0/xlearn/utils/src/MurmurHash3.cpp +345 -0
- jax_sklearn-0.1.0/xlearn/utils/src/MurmurHash3.h +45 -0
- jax_sklearn-0.1.0/xlearn/utils/stats.py +122 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/__init__.py +0 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_arpack.py +16 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_array_api.py +605 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_arrayfuncs.py +40 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_bunch.py +32 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_chunking.py +73 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_class_weight.py +334 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_cython_blas.py +250 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_deprecation.py +98 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_encode.py +274 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_estimator_checks.py +1665 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_estimator_html_repr.py +21 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_extmath.py +1121 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_fast_dict.py +47 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_fixes.py +160 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_graph.py +80 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_indexing.py +663 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_mask.py +19 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_metaestimators.py +63 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_missing.py +27 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_mocking.py +205 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_multiclass.py +645 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_murmurhash.py +73 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_optimize.py +220 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_parallel.py +155 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_param_validation.py +786 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_plotting.py +544 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_pprint.py +695 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_random.py +192 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_response.py +394 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_seq_dataset.py +183 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_set_output.py +471 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_shortest_path.py +65 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_show_versions.py +40 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_sparsefuncs.py +998 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_stats.py +352 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_tags.py +153 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_testing.py +1143 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_typedefs.py +25 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_unique.py +54 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_user_interface.py +65 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_validation.py +2374 -0
- jax_sklearn-0.1.0/xlearn/utils/tests/test_weight_vector.py +25 -0
- 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 @@
|
|
|
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,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!
|