scikit-learn


Namescikit-learn JSON
Version 1.5.1 PyPI version JSON
download
home_pagehttps://scikit-learn.org
SummaryA set of python modules for machine learning and data mining
upload_time2024-07-03 09:12:21
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licensenew BSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. -*- mode: rst -*-

|Azure| |CirrusCI| |Codecov| |CircleCI| |Nightly wheels| |Black| |PythonVersion| |PyPi| |DOI| |Benchmark|

.. |Azure| image:: https://dev.azure.com/scikit-learn/scikit-learn/_apis/build/status/scikit-learn.scikit-learn?branchName=main
   :target: https://dev.azure.com/scikit-learn/scikit-learn/_build/latest?definitionId=1&branchName=main

.. |CircleCI| image:: https://circleci.com/gh/scikit-learn/scikit-learn/tree/main.svg?style=shield
   :target: https://circleci.com/gh/scikit-learn/scikit-learn

.. |CirrusCI| image:: https://img.shields.io/cirrus/github/scikit-learn/scikit-learn/main?label=Cirrus%20CI
   :target: https://cirrus-ci.com/github/scikit-learn/scikit-learn/main

.. |Codecov| image:: https://codecov.io/gh/scikit-learn/scikit-learn/branch/main/graph/badge.svg?token=Pk8G9gg3y9
   :target: https://codecov.io/gh/scikit-learn/scikit-learn

.. |Nightly wheels| image:: https://github.com/scikit-learn/scikit-learn/workflows/Wheel%20builder/badge.svg?event=schedule
   :target: https://github.com/scikit-learn/scikit-learn/actions?query=workflow%3A%22Wheel+builder%22+event%3Aschedule

.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/scikit-learn.svg
   :target: https://pypi.org/project/scikit-learn/

.. |PyPi| image:: https://img.shields.io/pypi/v/scikit-learn
   :target: https://pypi.org/project/scikit-learn

.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/psf/black

.. |DOI| image:: https://zenodo.org/badge/21369/scikit-learn/scikit-learn.svg
   :target: https://zenodo.org/badge/latestdoi/21369/scikit-learn/scikit-learn

.. |Benchmark| image:: https://img.shields.io/badge/Benchmarked%20by-asv-blue
   :target: https://scikit-learn.org/scikit-learn-benchmarks

.. |PythonMinVersion| replace:: 3.9
.. |NumPyMinVersion| replace:: 1.19.5
.. |SciPyMinVersion| replace:: 1.6.0
.. |JoblibMinVersion| replace:: 1.2.0
.. |ThreadpoolctlMinVersion| replace:: 3.1.0
.. |MatplotlibMinVersion| replace:: 3.3.4
.. |Scikit-ImageMinVersion| replace:: 0.17.2
.. |PandasMinVersion| replace:: 1.1.5
.. |SeabornMinVersion| replace:: 0.9.0
.. |PytestMinVersion| replace:: 7.1.2
.. |PlotlyMinVersion| replace:: 5.14.0

.. image:: https://raw.githubusercontent.com/scikit-learn/scikit-learn/main/doc/logos/scikit-learn-logo.png
  :target: https://scikit-learn.org/

**scikit-learn** is a Python module for machine learning built on top of
SciPy and is distributed under the 3-Clause BSD license.

The project was started in 2007 by David Cournapeau as a Google Summer
of Code project, and since then many volunteers have contributed. See
the `About us <https://scikit-learn.org/dev/about.html#authors>`__ page
for a list of core contributors.

It is currently maintained by a team of volunteers.

Website: https://scikit-learn.org

Installation
------------

Dependencies
~~~~~~~~~~~~

scikit-learn requires:

- Python (>= |PythonMinVersion|)
- NumPy (>= |NumPyMinVersion|)
- SciPy (>= |SciPyMinVersion|)
- joblib (>= |JoblibMinVersion|)
- threadpoolctl (>= |ThreadpoolctlMinVersion|)

=======

**Scikit-learn 0.20 was the last version to support Python 2.7 and Python 3.4.**
scikit-learn 1.0 and later require Python 3.7 or newer.
scikit-learn 1.1 and later require Python 3.8 or newer.

Scikit-learn plotting capabilities (i.e., functions start with ``plot_`` and
classes end with ``Display``) require Matplotlib (>= |MatplotlibMinVersion|).
For running the examples Matplotlib >= |MatplotlibMinVersion| is required.
A few examples require scikit-image >= |Scikit-ImageMinVersion|, a few examples
require pandas >= |PandasMinVersion|, some examples require seaborn >=
|SeabornMinVersion| and plotly >= |PlotlyMinVersion|.

User installation
~~~~~~~~~~~~~~~~~

If you already have a working installation of NumPy and SciPy,
the easiest way to install scikit-learn is using ``pip``::

    pip install -U scikit-learn

or ``conda``::

    conda install -c conda-forge scikit-learn

The documentation includes more detailed `installation instructions <https://scikit-learn.org/stable/install.html>`_.


Changelog
---------

See the `changelog <https://scikit-learn.org/dev/whats_new.html>`__
for a history of notable changes to scikit-learn.

Development
-----------

We welcome new contributors of all experience levels. The scikit-learn
community goals are to be helpful, welcoming, and effective. The
`Development Guide <https://scikit-learn.org/stable/developers/index.html>`_
has detailed information about contributing code, documentation, tests, and
more. We've included some basic information in this README.

Important links
~~~~~~~~~~~~~~~

- Official source code repo: https://github.com/scikit-learn/scikit-learn
- Download releases: https://pypi.org/project/scikit-learn/
- Issue tracker: https://github.com/scikit-learn/scikit-learn/issues

Source code
~~~~~~~~~~~

You can check the latest sources with the command::

    git clone https://github.com/scikit-learn/scikit-learn.git

Contributing
~~~~~~~~~~~~

To learn more about making a contribution to scikit-learn, please see our
`Contributing guide
<https://scikit-learn.org/dev/developers/contributing.html>`_.

Testing
~~~~~~~

After installation, you can launch the test suite from outside the source
directory (you will need to have ``pytest`` >= |PyTestMinVersion| installed)::

    pytest sklearn

See the web page https://scikit-learn.org/dev/developers/contributing.html#testing-and-improving-test-coverage
for more information.

    Random number generation can be controlled during testing by setting
    the ``SKLEARN_SEED`` environment variable.

Submitting a Pull Request
~~~~~~~~~~~~~~~~~~~~~~~~~

Before opening a Pull Request, have a look at the
full Contributing page to make sure your code complies
with our guidelines: https://scikit-learn.org/stable/developers/index.html

Project History
---------------

The project was started in 2007 by David Cournapeau as a Google Summer
of Code project, and since then many volunteers have contributed. See
the `About us <https://scikit-learn.org/dev/about.html#authors>`__ page
for a list of core contributors.

The project is currently maintained by a team of volunteers.

**Note**: `scikit-learn` was previously referred to as `scikits.learn`.

Help and Support
----------------

Documentation
~~~~~~~~~~~~~

- HTML documentation (stable release): https://scikit-learn.org
- HTML documentation (development version): https://scikit-learn.org/dev/
- FAQ: https://scikit-learn.org/stable/faq.html

Communication
~~~~~~~~~~~~~

- Mailing list: https://mail.python.org/mailman/listinfo/scikit-learn
- Logos & Branding: https://github.com/scikit-learn/scikit-learn/tree/main/doc/logos
- Blog: https://blog.scikit-learn.org
- Calendar: https://blog.scikit-learn.org/calendar/
- Twitter: https://twitter.com/scikit_learn
- Stack Overflow: https://stackoverflow.com/questions/tagged/scikit-learn
- GitHub Discussions: https://github.com/scikit-learn/scikit-learn/discussions
- Website: https://scikit-learn.org
- LinkedIn: https://www.linkedin.com/company/scikit-learn
- YouTube: https://www.youtube.com/channel/UCJosFjYm0ZYVUARxuOZqnnw/playlists
- Facebook: https://www.facebook.com/scikitlearnofficial/
- Instagram: https://www.instagram.com/scikitlearnofficial/
- TikTok: https://www.tiktok.com/@scikit.learn
- Mastodon: https://mastodon.social/@sklearn@fosstodon.org
- Discord: https://discord.gg/h9qyrK8Jc8


Citation
~~~~~~~~

If you use scikit-learn in a scientific publication, we would appreciate citations: https://scikit-learn.org/stable/about.html#citing-scikit-learn

            

Raw data

            {
    "_id": null,
    "home_page": "https://scikit-learn.org",
    "name": "scikit-learn",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "scikit-learn developers <scikit-learn@python.org>",
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/92/72/2961b9874a9ddf2b0f95f329d4e67f67c3301c1d88ba5e239ff25661bb85/scikit_learn-1.5.1.tar.gz",
    "platform": null,
    "description": ".. -*- mode: rst -*-\n\n|Azure| |CirrusCI| |Codecov| |CircleCI| |Nightly wheels| |Black| |PythonVersion| |PyPi| |DOI| |Benchmark|\n\n.. |Azure| image:: https://dev.azure.com/scikit-learn/scikit-learn/_apis/build/status/scikit-learn.scikit-learn?branchName=main\n   :target: https://dev.azure.com/scikit-learn/scikit-learn/_build/latest?definitionId=1&branchName=main\n\n.. |CircleCI| image:: https://circleci.com/gh/scikit-learn/scikit-learn/tree/main.svg?style=shield\n   :target: https://circleci.com/gh/scikit-learn/scikit-learn\n\n.. |CirrusCI| image:: https://img.shields.io/cirrus/github/scikit-learn/scikit-learn/main?label=Cirrus%20CI\n   :target: https://cirrus-ci.com/github/scikit-learn/scikit-learn/main\n\n.. |Codecov| image:: https://codecov.io/gh/scikit-learn/scikit-learn/branch/main/graph/badge.svg?token=Pk8G9gg3y9\n   :target: https://codecov.io/gh/scikit-learn/scikit-learn\n\n.. |Nightly wheels| image:: https://github.com/scikit-learn/scikit-learn/workflows/Wheel%20builder/badge.svg?event=schedule\n   :target: https://github.com/scikit-learn/scikit-learn/actions?query=workflow%3A%22Wheel+builder%22+event%3Aschedule\n\n.. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/scikit-learn.svg\n   :target: https://pypi.org/project/scikit-learn/\n\n.. |PyPi| image:: https://img.shields.io/pypi/v/scikit-learn\n   :target: https://pypi.org/project/scikit-learn\n\n.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/psf/black\n\n.. |DOI| image:: https://zenodo.org/badge/21369/scikit-learn/scikit-learn.svg\n   :target: https://zenodo.org/badge/latestdoi/21369/scikit-learn/scikit-learn\n\n.. |Benchmark| image:: https://img.shields.io/badge/Benchmarked%20by-asv-blue\n   :target: https://scikit-learn.org/scikit-learn-benchmarks\n\n.. |PythonMinVersion| replace:: 3.9\n.. |NumPyMinVersion| replace:: 1.19.5\n.. |SciPyMinVersion| replace:: 1.6.0\n.. |JoblibMinVersion| replace:: 1.2.0\n.. |ThreadpoolctlMinVersion| replace:: 3.1.0\n.. |MatplotlibMinVersion| replace:: 3.3.4\n.. |Scikit-ImageMinVersion| replace:: 0.17.2\n.. |PandasMinVersion| replace:: 1.1.5\n.. |SeabornMinVersion| replace:: 0.9.0\n.. |PytestMinVersion| replace:: 7.1.2\n.. |PlotlyMinVersion| replace:: 5.14.0\n\n.. image:: https://raw.githubusercontent.com/scikit-learn/scikit-learn/main/doc/logos/scikit-learn-logo.png\n  :target: https://scikit-learn.org/\n\n**scikit-learn** is a Python module for machine learning built on top of\nSciPy and is distributed under the 3-Clause BSD license.\n\nThe project was started in 2007 by David Cournapeau as a Google Summer\nof Code project, and since then many volunteers have contributed. See\nthe `About us <https://scikit-learn.org/dev/about.html#authors>`__ page\nfor a list of core contributors.\n\nIt is currently maintained by a team of volunteers.\n\nWebsite: https://scikit-learn.org\n\nInstallation\n------------\n\nDependencies\n~~~~~~~~~~~~\n\nscikit-learn requires:\n\n- Python (>= |PythonMinVersion|)\n- NumPy (>= |NumPyMinVersion|)\n- SciPy (>= |SciPyMinVersion|)\n- joblib (>= |JoblibMinVersion|)\n- threadpoolctl (>= |ThreadpoolctlMinVersion|)\n\n=======\n\n**Scikit-learn 0.20 was the last version to support Python 2.7 and Python 3.4.**\nscikit-learn 1.0 and later require Python 3.7 or newer.\nscikit-learn 1.1 and later require Python 3.8 or newer.\n\nScikit-learn plotting capabilities (i.e., functions start with ``plot_`` and\nclasses end with ``Display``) require Matplotlib (>= |MatplotlibMinVersion|).\nFor running the examples Matplotlib >= |MatplotlibMinVersion| is required.\nA few examples require scikit-image >= |Scikit-ImageMinVersion|, a few examples\nrequire pandas >= |PandasMinVersion|, some examples require seaborn >=\n|SeabornMinVersion| and plotly >= |PlotlyMinVersion|.\n\nUser installation\n~~~~~~~~~~~~~~~~~\n\nIf you already have a working installation of NumPy and SciPy,\nthe easiest way to install scikit-learn is using ``pip``::\n\n    pip install -U scikit-learn\n\nor ``conda``::\n\n    conda install -c conda-forge scikit-learn\n\nThe documentation includes more detailed `installation instructions <https://scikit-learn.org/stable/install.html>`_.\n\n\nChangelog\n---------\n\nSee the `changelog <https://scikit-learn.org/dev/whats_new.html>`__\nfor a history of notable changes to scikit-learn.\n\nDevelopment\n-----------\n\nWe welcome new contributors of all experience levels. The scikit-learn\ncommunity goals are to be helpful, welcoming, and effective. The\n`Development Guide <https://scikit-learn.org/stable/developers/index.html>`_\nhas detailed information about contributing code, documentation, tests, and\nmore. We've included some basic information in this README.\n\nImportant links\n~~~~~~~~~~~~~~~\n\n- Official source code repo: https://github.com/scikit-learn/scikit-learn\n- Download releases: https://pypi.org/project/scikit-learn/\n- Issue tracker: https://github.com/scikit-learn/scikit-learn/issues\n\nSource code\n~~~~~~~~~~~\n\nYou can check the latest sources with the command::\n\n    git clone https://github.com/scikit-learn/scikit-learn.git\n\nContributing\n~~~~~~~~~~~~\n\nTo learn more about making a contribution to scikit-learn, please see our\n`Contributing guide\n<https://scikit-learn.org/dev/developers/contributing.html>`_.\n\nTesting\n~~~~~~~\n\nAfter installation, you can launch the test suite from outside the source\ndirectory (you will need to have ``pytest`` >= |PyTestMinVersion| installed)::\n\n    pytest sklearn\n\nSee the web page https://scikit-learn.org/dev/developers/contributing.html#testing-and-improving-test-coverage\nfor more information.\n\n    Random number generation can be controlled during testing by setting\n    the ``SKLEARN_SEED`` environment variable.\n\nSubmitting a Pull Request\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nBefore opening a Pull Request, have a look at the\nfull Contributing page to make sure your code complies\nwith our guidelines: https://scikit-learn.org/stable/developers/index.html\n\nProject History\n---------------\n\nThe project was started in 2007 by David Cournapeau as a Google Summer\nof Code project, and since then many volunteers have contributed. See\nthe `About us <https://scikit-learn.org/dev/about.html#authors>`__ page\nfor a list of core contributors.\n\nThe project is currently maintained by a team of volunteers.\n\n**Note**: `scikit-learn` was previously referred to as `scikits.learn`.\n\nHelp and Support\n----------------\n\nDocumentation\n~~~~~~~~~~~~~\n\n- HTML documentation (stable release): https://scikit-learn.org\n- HTML documentation (development version): https://scikit-learn.org/dev/\n- FAQ: https://scikit-learn.org/stable/faq.html\n\nCommunication\n~~~~~~~~~~~~~\n\n- Mailing list: https://mail.python.org/mailman/listinfo/scikit-learn\n- Logos & Branding: https://github.com/scikit-learn/scikit-learn/tree/main/doc/logos\n- Blog: https://blog.scikit-learn.org\n- Calendar: https://blog.scikit-learn.org/calendar/\n- Twitter: https://twitter.com/scikit_learn\n- Stack Overflow: https://stackoverflow.com/questions/tagged/scikit-learn\n- GitHub Discussions: https://github.com/scikit-learn/scikit-learn/discussions\n- Website: https://scikit-learn.org\n- LinkedIn: https://www.linkedin.com/company/scikit-learn\n- YouTube: https://www.youtube.com/channel/UCJosFjYm0ZYVUARxuOZqnnw/playlists\n- Facebook: https://www.facebook.com/scikitlearnofficial/\n- Instagram: https://www.instagram.com/scikitlearnofficial/\n- TikTok: https://www.tiktok.com/@scikit.learn\n- Mastodon: https://mastodon.social/@sklearn@fosstodon.org\n- Discord: https://discord.gg/h9qyrK8Jc8\n\n\nCitation\n~~~~~~~~\n\nIf you use scikit-learn in a scientific publication, we would appreciate citations: https://scikit-learn.org/stable/about.html#citing-scikit-learn\n",
    "bugtrack_url": null,
    "license": "new BSD",
    "summary": "A set of python modules for machine learning and data mining",
    "version": "1.5.1",
    "project_urls": {
        "Download": "https://pypi.org/project/scikit-learn/#files",
        "Homepage": "https://scikit-learn.org",
        "Release notes": "https://scikit-learn.org/stable/whats_new",
        "Source": "https://github.com/scikit-learn/scikit-learn",
        "Tracker": "https://github.com/scikit-learn/scikit-learn/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f859d8ea8c05e61d2afa988dfcfe47526595b531e94d23babf58d2e00a35f646",
                "md5": "64d23975585a49f5fa73d92207c0b6e4",
                "sha256": "781586c414f8cc58e71da4f3d7af311e0505a683e112f2f62919e3019abd3745"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64d23975585a49f5fa73d92207c0b6e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 12102257,
            "upload_time": "2024-07-03T09:11:11",
            "upload_time_iso_8601": "2024-07-03T09:11:11.034112Z",
            "url": "https://files.pythonhosted.org/packages/f8/59/d8ea8c05e61d2afa988dfcfe47526595b531e94d23babf58d2e00a35f646/scikit_learn-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fc6ba8e5691acca616adc8f0d6f8f5e79d55b927530aa404ee712b077acf0cf",
                "md5": "b7cd7d07315985d089b15584c1182c62",
                "sha256": "f5b213bc29cc30a89a3130393b0e39c847a15d769d6e59539cd86b75d276b1a7"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b7cd7d07315985d089b15584c1182c62",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 10975310,
            "upload_time": "2024-07-03T09:11:15",
            "upload_time_iso_8601": "2024-07-03T09:11:15.080528Z",
            "url": "https://files.pythonhosted.org/packages/1f/c6/ba8e5691acca616adc8f0d6f8f5e79d55b927530aa404ee712b077acf0cf/scikit_learn-1.5.1-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cc6e362563cc7dfe37e4699cbf2b2d22c2854be227c254976de1c4854fc6e84",
                "md5": "a54e1b92f99980d073085bc60ec82d94",
                "sha256": "1ff4ba34c2abff5ec59c803ed1d97d61b036f659a17f55be102679e88f926fac"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a54e1b92f99980d073085bc60ec82d94",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 12496508,
            "upload_time": "2024-07-03T09:11:18",
            "upload_time_iso_8601": "2024-07-03T09:11:18.593208Z",
            "url": "https://files.pythonhosted.org/packages/5c/c6/e362563cc7dfe37e4699cbf2b2d22c2854be227c254976de1c4854fc6e84/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2606c589c91e474721efdcec82ea9cc5c743359e52637e46c364ee5236666ef",
                "md5": "3fee7a97a897ca9299dedc35f6c74f7c",
                "sha256": "161808750c267b77b4a9603cf9c93579c7a74ba8486b1336034c2f1579546d21"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3fee7a97a897ca9299dedc35f6c74f7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 13352348,
            "upload_time": "2024-07-03T09:11:22",
            "upload_time_iso_8601": "2024-07-03T09:11:22.053780Z",
            "url": "https://files.pythonhosted.org/packages/f2/60/6c589c91e474721efdcec82ea9cc5c743359e52637e46c364ee5236666ef/scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f113de29b945fb28fc0c24159d3a83f1250c5232c1c9abac12434c7c3447e9cc",
                "md5": "78ad07af739761917fe5f3c504fcfa64",
                "sha256": "10e49170691514a94bb2e03787aa921b82dbc507a4ea1f20fd95557862c98dc1"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "78ad07af739761917fe5f3c504fcfa64",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 10966250,
            "upload_time": "2024-07-03T09:11:24",
            "upload_time_iso_8601": "2024-07-03T09:11:24.942254Z",
            "url": "https://files.pythonhosted.org/packages/f1/13/de29b945fb28fc0c24159d3a83f1250c5232c1c9abac12434c7c3447e9cc/scikit_learn-1.5.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0386ab9f95e338c5ef5b4e79463ee91e55aae553213835e59bf038bc0cc21bf8",
                "md5": "93feaa011e500f88855a4b49f528910b",
                "sha256": "154297ee43c0b83af12464adeab378dee2d0a700ccd03979e2b821e7dd7cc1c2"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93feaa011e500f88855a4b49f528910b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 12087598,
            "upload_time": "2024-07-03T09:11:28",
            "upload_time_iso_8601": "2024-07-03T09:11:28.057873Z",
            "url": "https://files.pythonhosted.org/packages/03/86/ab9f95e338c5ef5b4e79463ee91e55aae553213835e59bf038bc0cc21bf8/scikit_learn-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dd7fb80c63062b60b1fa5dcb2d4dd3a4e83bd8c68cdc83cf6ff8c016228f184",
                "md5": "72a8114611cbe42c63177de54e2fa8e8",
                "sha256": "b5e865e9bd59396220de49cb4a57b17016256637c61b4c5cc81aaf16bc123bbe"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "72a8114611cbe42c63177de54e2fa8e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 10979067,
            "upload_time": "2024-07-03T09:11:30",
            "upload_time_iso_8601": "2024-07-03T09:11:30.853844Z",
            "url": "https://files.pythonhosted.org/packages/7d/d7/fb80c63062b60b1fa5dcb2d4dd3a4e83bd8c68cdc83cf6ff8c016228f184/scikit_learn-1.5.1-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1f8fd3fa610cac686952d8c78b8b44cf5263c6c03885bd8e5d5819c684b44e8",
                "md5": "51dc7c9cbb2b2a29bc8ac376cb10cb64",
                "sha256": "909144d50f367a513cee6090873ae582dba019cb3fca063b38054fa42704c3a4"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51dc7c9cbb2b2a29bc8ac376cb10cb64",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 12485469,
            "upload_time": "2024-07-03T09:11:34",
            "upload_time_iso_8601": "2024-07-03T09:11:34.413871Z",
            "url": "https://files.pythonhosted.org/packages/c1/f8/fd3fa610cac686952d8c78b8b44cf5263c6c03885bd8e5d5819c684b44e8/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3263ed228892adad313aab0d0f9261241e7bf1efe36730a2788ad424bcad00ca",
                "md5": "5fc42b8b953b70c85c12d6bee526076d",
                "sha256": "689b6f74b2c880276e365fe84fe4f1befd6a774f016339c65655eaff12e10cbf"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5fc42b8b953b70c85c12d6bee526076d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 13335048,
            "upload_time": "2024-07-03T09:11:39",
            "upload_time_iso_8601": "2024-07-03T09:11:39.005813Z",
            "url": "https://files.pythonhosted.org/packages/32/63/ed228892adad313aab0d0f9261241e7bf1efe36730a2788ad424bcad00ca/scikit_learn-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d550403bf2031250ac982c8053397889fbc5a3a2b3798b913dae4f51c3af6a4",
                "md5": "7d35c9ec3685fc5da4b537a361b672ee",
                "sha256": "9a07f90846313a7639af6a019d849ff72baadfa4c74c778821ae0fad07b7275b"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7d35c9ec3685fc5da4b537a361b672ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 10988436,
            "upload_time": "2024-07-03T09:11:42",
            "upload_time_iso_8601": "2024-07-03T09:11:42.653101Z",
            "url": "https://files.pythonhosted.org/packages/5d/55/0403bf2031250ac982c8053397889fbc5a3a2b3798b913dae4f51c3af6a4/scikit_learn-1.5.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b18dcf392a56e24627093a467642c8b9263052372131359b570df29aaf4811ab",
                "md5": "b5d7b36922cc37fdc08950f556bee3e7",
                "sha256": "5944ce1faada31c55fb2ba20a5346b88e36811aab504ccafb9f0339e9f780395"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5d7b36922cc37fdc08950f556bee3e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 12102404,
            "upload_time": "2024-07-03T09:11:46",
            "upload_time_iso_8601": "2024-07-03T09:11:46.261945Z",
            "url": "https://files.pythonhosted.org/packages/b1/8d/cf392a56e24627093a467642c8b9263052372131359b570df29aaf4811ab/scikit_learn-1.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d52c734fc9269bdb6768905ac41b82d75264b26925b1e462f4ebf45fe4f17646",
                "md5": "eccc7f9883f3f85188b971efe8308795",
                "sha256": "0828673c5b520e879f2af6a9e99eee0eefea69a2188be1ca68a6121b809055c1"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eccc7f9883f3f85188b971efe8308795",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 11037398,
            "upload_time": "2024-07-03T09:11:49",
            "upload_time_iso_8601": "2024-07-03T09:11:49.783574Z",
            "url": "https://files.pythonhosted.org/packages/d5/2c/734fc9269bdb6768905ac41b82d75264b26925b1e462f4ebf45fe4f17646/scikit_learn-1.5.1-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3a915774b178bcd1cde1c470adbdb554e1504dce7c302e02ff736c90d65e014",
                "md5": "7da0048ef692870620a4f27139cbd8df",
                "sha256": "508907e5f81390e16d754e8815f7497e52139162fd69c4fdbd2dfa5d6cc88915"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7da0048ef692870620a4f27139cbd8df",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 12089887,
            "upload_time": "2024-07-03T09:11:53",
            "upload_time_iso_8601": "2024-07-03T09:11:53.134957Z",
            "url": "https://files.pythonhosted.org/packages/d3/a9/15774b178bcd1cde1c470adbdb554e1504dce7c302e02ff736c90d65e014/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a5d047cde25131eef3a38d03317fa7d25d6f60ce6e8ccfd24ac88b3e309fc00",
                "md5": "37fe8300fdc084f8dcbfa47721e3c6ad",
                "sha256": "97625f217c5c0c5d0505fa2af28ae424bd37949bb2f16ace3ff5f2f81fb4498b"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37fe8300fdc084f8dcbfa47721e3c6ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 13079093,
            "upload_time": "2024-07-03T09:11:55",
            "upload_time_iso_8601": "2024-07-03T09:11:55.930772Z",
            "url": "https://files.pythonhosted.org/packages/8a/5d/047cde25131eef3a38d03317fa7d25d6f60ce6e8ccfd24ac88b3e309fc00/scikit_learn-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbbedec2a8d31d133034a8ec51ae68ac564ec9bde1c78a64551f1438c3690b9e",
                "md5": "56d2de8e66daa188f07c15d33503de80",
                "sha256": "da3f404e9e284d2b0a157e1b56b6566a34eb2798205cba35a211df3296ab7a74"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "56d2de8e66daa188f07c15d33503de80",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 10945350,
            "upload_time": "2024-07-03T09:12:02",
            "upload_time_iso_8601": "2024-07-03T09:12:02.494708Z",
            "url": "https://files.pythonhosted.org/packages/cb/be/dec2a8d31d133034a8ec51ae68ac564ec9bde1c78a64551f1438c3690b9e/scikit_learn-1.5.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb9fd2837e96be692f99b92a3cb192e8f46501f7ddab6c93a07a9b206f7b3297",
                "md5": "c8ffbe053a24fa1626643e127c78ab47",
                "sha256": "88e0672c7ac21eb149d409c74cc29f1d611d5158175846e7a9c2427bd12b3956"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8ffbe053a24fa1626643e127c78ab47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 12138083,
            "upload_time": "2024-07-03T09:12:06",
            "upload_time_iso_8601": "2024-07-03T09:12:06.854435Z",
            "url": "https://files.pythonhosted.org/packages/cb/9f/d2837e96be692f99b92a3cb192e8f46501f7ddab6c93a07a9b206f7b3297/scikit_learn-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "183eb46f298305c243395b88f0f201c32946bdd448e9583315255d87706c3170",
                "md5": "556348646abe9e19cdc112d5de1e5b55",
                "sha256": "7b073a27797a283187a4ef4ee149959defc350b46cbf63a84d8514fe16b69855"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "556348646abe9e19cdc112d5de1e5b55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 11005997,
            "upload_time": "2024-07-03T09:12:09",
            "upload_time_iso_8601": "2024-07-03T09:12:09.888207Z",
            "url": "https://files.pythonhosted.org/packages/18/3e/b46f298305c243395b88f0f201c32946bdd448e9583315255d87706c3170/scikit_learn-1.5.1-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00848d2174ef802da1b9eedc8691883ed08a16318e2189fd5377e5bc2d404c0b",
                "md5": "2e524c091be6b53c5f1c425d09eb75cf",
                "sha256": "b59e3e62d2be870e5c74af4e793293753565c7383ae82943b83383fdcf5cc5c1"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2e524c091be6b53c5f1c425d09eb75cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 12532003,
            "upload_time": "2024-07-03T09:12:13",
            "upload_time_iso_8601": "2024-07-03T09:12:13.106309Z",
            "url": "https://files.pythonhosted.org/packages/00/84/8d2174ef802da1b9eedc8691883ed08a16318e2189fd5377e5bc2d404c0b/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12f8d6bc56d20c60b2b66e005dfed16fdf8c46dbe559d40896d06c448a65f134",
                "md5": "7e426c45ce5708756a985c1cf337875a",
                "sha256": "1bd8d3a19d4bd6dc5a7d4f358c8c3a60934dc058f363c34c0ac1e9e12a31421d"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e426c45ce5708756a985c1cf337875a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 13393818,
            "upload_time": "2024-07-03T09:12:16",
            "upload_time_iso_8601": "2024-07-03T09:12:16.324596Z",
            "url": "https://files.pythonhosted.org/packages/12/f8/d6bc56d20c60b2b66e005dfed16fdf8c46dbe559d40896d06c448a65f134/scikit_learn-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8ed941b210029c1051233b082a19c36b930f56dda34a8a5227dbbd1bc08f7eb",
                "md5": "52dd5604c9a01edb811a97a318182c1d",
                "sha256": "5f57428de0c900a98389c4a433d4a3cf89de979b3aa24d1c1d251802aa15e44d"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "52dd5604c9a01edb811a97a318182c1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 10993525,
            "upload_time": "2024-07-03T09:12:19",
            "upload_time_iso_8601": "2024-07-03T09:12:19.043021Z",
            "url": "https://files.pythonhosted.org/packages/a8/ed/941b210029c1051233b082a19c36b930f56dda34a8a5227dbbd1bc08f7eb/scikit_learn-1.5.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92722961b9874a9ddf2b0f95f329d4e67f67c3301c1d88ba5e239ff25661bb85",
                "md5": "a33c1a382b73834868cbecf89011ed1d",
                "sha256": "0ea5d40c0e3951df445721927448755d3fe1d80833b0b7308ebff5d2a45e6414"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a33c1a382b73834868cbecf89011ed1d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 6958368,
            "upload_time": "2024-07-03T09:12:21",
            "upload_time_iso_8601": "2024-07-03T09:12:21.925945Z",
            "url": "https://files.pythonhosted.org/packages/92/72/2961b9874a9ddf2b0f95f329d4e67f67c3301c1d88ba5e239ff25661bb85/scikit_learn-1.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-03 09:12:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scikit-learn",
    "github_project": "scikit-learn",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "circle": true,
    "lcname": "scikit-learn"
}
        
Elapsed time: 0.30602s