scikit-learn


Namescikit-learn JSON
Version 1.4.2 PyPI version JSON
download
home_pagehttps://scikit-learn.org
SummaryA set of python modules for machine learning and data mining
upload_time2024-04-09 19:54:06
maintainerAndreas Mueller
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
.. _Azure: 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
.. _CircleCI: https://circleci.com/gh/scikit-learn/scikit-learn

.. |CirrusCI| image:: https://img.shields.io/cirrus/github/scikit-learn/scikit-learn/main?label=Cirrus%20CI
.. _CirrusCI: 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
.. _Codecov: 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
.. _`Nightly wheels`: 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
.. _PythonVersion: https://pypi.org/project/scikit-learn/

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

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

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

.. |Benchmark| image:: https://img.shields.io/badge/Benchmarked%20by-asv-blue
.. _`Benchmark`: 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:: 2.0.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
- Gitter: https://gitter.im/scikit-learn/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

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": "Andreas Mueller",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "amueller@ais.uni-bonn.de",
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/ef/e5/c09d20723bfd91315f6f4ddc77912b0dcc09588b4ca7ad2ffa204607ad7f/scikit-learn-1.4.2.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.. _Azure: 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.. _CircleCI: 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.. _CirrusCI: 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.. _Codecov: 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.. _`Nightly wheels`: 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.. _PythonVersion: https://pypi.org/project/scikit-learn/\n\n.. |PyPi| image:: https://img.shields.io/pypi/v/scikit-learn\n.. _PyPi: https://pypi.org/project/scikit-learn\n\n.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n.. _Black: https://github.com/psf/black\n\n.. |DOI| image:: https://zenodo.org/badge/21369/scikit-learn/scikit-learn.svg\n.. _DOI: https://zenodo.org/badge/latestdoi/21369/scikit-learn/scikit-learn\n\n.. |Benchmark| image:: https://img.shields.io/badge/Benchmarked%20by-asv-blue\n.. _`Benchmark`: 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:: 2.0.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- Gitter: https://gitter.im/scikit-learn/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\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.4.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/scikit-learn/scikit-learn/issues",
        "Documentation": "https://scikit-learn.org/stable/documentation.html",
        "Download": "https://pypi.org/project/scikit-learn/#files",
        "Homepage": "https://scikit-learn.org",
        "Source Code": "https://github.com/scikit-learn/scikit-learn"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbf02fe83526acf1448ac6d5d579c65324dd0ff769fdf74a1989072edcac4210",
                "md5": "9c877c1af482364bd898be4191cfa8c6",
                "sha256": "8539a41b3d6d1af82eb629f9c57f37428ff1481c1e34dddb3b9d7af8ede67ac5"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c877c1af482364bd898be4191cfa8c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 11567295,
            "upload_time": "2024-04-09T19:53:06",
            "upload_time_iso_8601": "2024-04-09T19:53:06.085168Z",
            "url": "https://files.pythonhosted.org/packages/fb/f0/2fe83526acf1448ac6d5d579c65324dd0ff769fdf74a1989072edcac4210/scikit_learn-1.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f1c047e16924f1e26ec8047d954613cffd174ef9cdc110c08c9bbcf9cdded4d",
                "md5": "9c9b30ea8d161402a01c0ac91378dcd1",
                "sha256": "68b8404841f944a4a1459b07198fa2edd41a82f189b44f3e1d55c104dbc2e40c"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9c9b30ea8d161402a01c0ac91378dcd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 10447678,
            "upload_time": "2024-04-09T19:53:10",
            "upload_time_iso_8601": "2024-04-09T19:53:10.041059Z",
            "url": "https://files.pythonhosted.org/packages/7f/1c/047e16924f1e26ec8047d954613cffd174ef9cdc110c08c9bbcf9cdded4d/scikit_learn-1.4.2-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c8c54b363fe83d30f79545f0e8bc1ff02b062d1efe738fee31e9c8db6dad40a",
                "md5": "244f4507f23155312771b1b387e4f766",
                "sha256": "81bf5d8bbe87643103334032dd82f7419bc8c8d02a763643a6b9a5c7288c5054"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "244f4507f23155312771b1b387e4f766",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 11506998,
            "upload_time": "2024-04-09T19:53:12",
            "upload_time_iso_8601": "2024-04-09T19:53:12.697732Z",
            "url": "https://files.pythonhosted.org/packages/2c/8c/54b363fe83d30f79545f0e8bc1ff02b062d1efe738fee31e9c8db6dad40a/scikit_learn-1.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f38420ee614359d8f453ffe2bb5c2e963bf50459d9bbd3f5a92aa9059658955",
                "md5": "8896d88e3f174dec05b3cc475541c467",
                "sha256": "36f0ea5d0f693cb247a073d21a4123bdf4172e470e6d163c12b74cbb1536cf38"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8896d88e3f174dec05b3cc475541c467",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 12140555,
            "upload_time": "2024-04-09T19:53:16",
            "upload_time_iso_8601": "2024-04-09T19:53:16.435600Z",
            "url": "https://files.pythonhosted.org/packages/8f/38/420ee614359d8f453ffe2bb5c2e963bf50459d9bbd3f5a92aa9059658955/scikit_learn-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "544340a4ae4b05b00cd532fe77fdd1629dd5355776d0977a7e3b8890bec309a9",
                "md5": "19b1e0f34cf8ef49e01a5c65d5de5be7",
                "sha256": "87440e2e188c87db80ea4023440923dccbd56fbc2d557b18ced00fef79da0727"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "19b1e0f34cf8ef49e01a5c65d5de5be7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 10597017,
            "upload_time": "2024-04-09T19:53:19",
            "upload_time_iso_8601": "2024-04-09T19:53:19.213490Z",
            "url": "https://files.pythonhosted.org/packages/54/43/40a4ae4b05b00cd532fe77fdd1629dd5355776d0977a7e3b8890bec309a9/scikit_learn-1.4.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "591163de36e6933b03490fdfe5cbc9b5a68870a1281d8e705a23b33076dc82fb",
                "md5": "f02d9d6a3ab2c6f4ca772cce94d301c5",
                "sha256": "45dee87ac5309bb82e3ea633955030df9bbcb8d2cdb30383c6cd483691c546cc"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f02d9d6a3ab2c6f4ca772cce94d301c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 11558461,
            "upload_time": "2024-04-09T19:53:22",
            "upload_time_iso_8601": "2024-04-09T19:53:22.402304Z",
            "url": "https://files.pythonhosted.org/packages/59/11/63de36e6933b03490fdfe5cbc9b5a68870a1281d8e705a23b33076dc82fb/scikit_learn-1.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2301299e84d2ba3bc735baf17cebbf5b9d55144243c41b3ec6559ce3cf61e23",
                "md5": "ee65aa94cd6b568e93487b9cc5ae8445",
                "sha256": "1d0b25d9c651fd050555aadd57431b53d4cf664e749069da77f3d52c5ad14b3b"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ee65aa94cd6b568e93487b9cc5ae8445",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 10451621,
            "upload_time": "2024-04-09T19:53:25",
            "upload_time_iso_8601": "2024-04-09T19:53:25.577453Z",
            "url": "https://files.pythonhosted.org/packages/f2/30/1299e84d2ba3bc735baf17cebbf5b9d55144243c41b3ec6559ce3cf61e23/scikit_learn-1.4.2-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc6d2b03edb51e688db0dc2958ab18edf71c8cc313172636cbdc0b1fc7670777",
                "md5": "263dfd605640d00fea163f42d77ea0d0",
                "sha256": "b0203c368058ab92efc6168a1507d388d41469c873e96ec220ca8e74079bf62e"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "263dfd605640d00fea163f42d77ea0d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 11523470,
            "upload_time": "2024-04-09T19:53:29",
            "upload_time_iso_8601": "2024-04-09T19:53:29.433803Z",
            "url": "https://files.pythonhosted.org/packages/cc/6d/2b03edb51e688db0dc2958ab18edf71c8cc313172636cbdc0b1fc7670777/scikit_learn-1.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e5314405a47292b59235d811a2af8634aba188ccfd1a38ef4b8042f3447d79a",
                "md5": "0a905cc4031d1b45d33f0eef0de7c9a6",
                "sha256": "44c62f2b124848a28fd695db5bc4da019287abf390bfce602ddc8aa1ec186aae"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a905cc4031d1b45d33f0eef0de7c9a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 12146964,
            "upload_time": "2024-04-09T19:53:32",
            "upload_time_iso_8601": "2024-04-09T19:53:32.662593Z",
            "url": "https://files.pythonhosted.org/packages/4e/53/14405a47292b59235d811a2af8634aba188ccfd1a38ef4b8042f3447d79a/scikit_learn-1.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "793d02d5d3ed359498fec3abdf65407d3c07e3b8765af17464969055aaec5171",
                "md5": "4eff677ebc4c9ffb611e3904d2cc0a1a",
                "sha256": "5cd7b524115499b18b63f0c96f4224eb885564937a0b3477531b2b63ce331904"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4eff677ebc4c9ffb611e3904d2cc0a1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 10602955,
            "upload_time": "2024-04-09T19:53:35",
            "upload_time_iso_8601": "2024-04-09T19:53:35.147467Z",
            "url": "https://files.pythonhosted.org/packages/79/3d/02d5d3ed359498fec3abdf65407d3c07e3b8765af17464969055aaec5171/scikit_learn-1.4.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "813fbdd6c812eb5356410ed26a673f80670138c24eea1ea7c484da022783cc28",
                "md5": "8130b5434d6458dac36b9fe05405033e",
                "sha256": "90378e1747949f90c8f385898fff35d73193dfcaec3dd75d6b542f90c4e89755"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8130b5434d6458dac36b9fe05405033e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 11555151,
            "upload_time": "2024-04-09T19:53:37",
            "upload_time_iso_8601": "2024-04-09T19:53:37.797647Z",
            "url": "https://files.pythonhosted.org/packages/81/3f/bdd6c812eb5356410ed26a673f80670138c24eea1ea7c484da022783cc28/scikit_learn-1.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcf17028da970a41c542a0f3a2234f78040c820dae87ed7e949cec9f585f2b1a",
                "md5": "3f3976fab7b290a68dfed97eb282d64f",
                "sha256": "ff4effe5a1d4e8fed260a83a163f7dbf4f6087b54528d8880bab1d1377bd78be"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3f3976fab7b290a68dfed97eb282d64f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 10462894,
            "upload_time": "2024-04-09T19:53:41",
            "upload_time_iso_8601": "2024-04-09T19:53:41.271121Z",
            "url": "https://files.pythonhosted.org/packages/fc/f1/7028da970a41c542a0f3a2234f78040c820dae87ed7e949cec9f585f2b1a/scikit_learn-1.4.2-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dce8937a0c6afd79f3486f39361ff58dd299ca1b19deb6b9deb59fe510d212f",
                "md5": "4eef839c8e134b78d95146477e5eec84",
                "sha256": "671e2f0c3f2c15409dae4f282a3a619601fa824d2c820e5b608d9d775f91780c"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4eef839c8e134b78d95146477e5eec84",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 11507077,
            "upload_time": "2024-04-09T19:53:43",
            "upload_time_iso_8601": "2024-04-09T19:53:43.937717Z",
            "url": "https://files.pythonhosted.org/packages/5d/ce/8937a0c6afd79f3486f39361ff58dd299ca1b19deb6b9deb59fe510d212f/scikit_learn-1.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcf6761881cb1cec60874be76831571c76d596bcf3d13959390e73f4c745086f",
                "md5": "60bce6c55eb024d31b6e6c7b337bc1e6",
                "sha256": "d36d0bc983336bbc1be22f9b686b50c964f593c8a9a913a792442af9bf4f5e68"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "60bce6c55eb024d31b6e6c7b337bc1e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 12247981,
            "upload_time": "2024-04-09T19:53:46",
            "upload_time_iso_8601": "2024-04-09T19:53:46.531465Z",
            "url": "https://files.pythonhosted.org/packages/bc/f6/761881cb1cec60874be76831571c76d596bcf3d13959390e73f4c745086f/scikit_learn-1.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "407791f92b2fddbd14201bf36cd0c0e7279f1501a88e7a00ef11261c4b95bb7a",
                "md5": "64f005453331b6ee60599423fcd5fe85",
                "sha256": "d762070980c17ba3e9a4a1e043ba0518ce4c55152032f1af0ca6f39b376b5928"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64f005453331b6ee60599423fcd5fe85",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 10600450,
            "upload_time": "2024-04-09T19:53:49",
            "upload_time_iso_8601": "2024-04-09T19:53:49.637788Z",
            "url": "https://files.pythonhosted.org/packages/40/77/91f92b2fddbd14201bf36cd0c0e7279f1501a88e7a00ef11261c4b95bb7a/scikit_learn-1.4.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bcd4e813830641f5f890cd337154f0e5184f685bd4ce2a6d602310b661e9666",
                "md5": "99820cce5024b6c41cdbaab1918aae55",
                "sha256": "d9993d5e78a8148b1d0fdf5b15ed92452af5581734129998c26f481c46586d68"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99820cce5024b6c41cdbaab1918aae55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 11603188,
            "upload_time": "2024-04-09T19:53:52",
            "upload_time_iso_8601": "2024-04-09T19:53:52.183527Z",
            "url": "https://files.pythonhosted.org/packages/3b/cd/4e813830641f5f890cd337154f0e5184f685bd4ce2a6d602310b661e9666/scikit_learn-1.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9ff5ae7e924925499902104bf046ccd9b2b2e078171bcedc4ee2e2f2d2cacca",
                "md5": "e5215e53b4f39cc6a41e9399a5865e23",
                "sha256": "426d258fddac674fdf33f3cb2d54d26f49406e2599dbf9a32b4d1696091d4256"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5215e53b4f39cc6a41e9399a5865e23",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 10477064,
            "upload_time": "2024-04-09T19:53:55",
            "upload_time_iso_8601": "2024-04-09T19:53:55.410576Z",
            "url": "https://files.pythonhosted.org/packages/d9/ff/5ae7e924925499902104bf046ccd9b2b2e078171bcedc4ee2e2f2d2cacca/scikit_learn-1.4.2-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3fb228e197a9d43c8c05b667e965fee347e888408c421aa011b273d179567ae",
                "md5": "130d053bc6701d75d97e502cde31cc7a",
                "sha256": "5460a1a5b043ae5ae4596b3126a4ec33ccba1b51e7ca2c5d36dac2169f62ab1d"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "130d053bc6701d75d97e502cde31cc7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 11560172,
            "upload_time": "2024-04-09T19:53:58",
            "upload_time_iso_8601": "2024-04-09T19:53:58.678527Z",
            "url": "https://files.pythonhosted.org/packages/f3/fb/228e197a9d43c8c05b667e965fee347e888408c421aa011b273d179567ae/scikit_learn-1.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82405906b7ae6e303ece856a4262b0e7a963eb0187c167b539ff87bc1fe8f887",
                "md5": "311c71e4578ebf8db58c2d5c41c09d36",
                "sha256": "49d64ef6cb8c093d883e5a36c4766548d974898d378e395ba41a806d0e824db8"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "311c71e4578ebf8db58c2d5c41c09d36",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 12159991,
            "upload_time": "2024-04-09T19:54:01",
            "upload_time_iso_8601": "2024-04-09T19:54:01.423271Z",
            "url": "https://files.pythonhosted.org/packages/82/40/5906b7ae6e303ece856a4262b0e7a963eb0187c167b539ff87bc1fe8f887/scikit_learn-1.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1ed051ea344b38c8e0310c4eba02593d446e35656ed1328de7bd058e9223310",
                "md5": "7e9bca3f024a705a47921c78376ed203",
                "sha256": "c97a50b05c194be9146d61fe87dbf8eac62b203d9e87a3ccc6ae9aed2dfaf361"
            },
            "downloads": -1,
            "filename": "scikit_learn-1.4.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7e9bca3f024a705a47921c78376ed203",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 10627708,
            "upload_time": "2024-04-09T19:54:04",
            "upload_time_iso_8601": "2024-04-09T19:54:04.257821Z",
            "url": "https://files.pythonhosted.org/packages/b1/ed/051ea344b38c8e0310c4eba02593d446e35656ed1328de7bd058e9223310/scikit_learn-1.4.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efe5c09d20723bfd91315f6f4ddc77912b0dcc09588b4ca7ad2ffa204607ad7f",
                "md5": "d77dc562e994432fc730a2e02e7d3416",
                "sha256": "daa1c471d95bad080c6e44b4946c9390a4842adc3082572c20e4f8884e39e959"
            },
            "downloads": -1,
            "filename": "scikit-learn-1.4.2.tar.gz",
            "has_sig": false,
            "md5_digest": "d77dc562e994432fc730a2e02e7d3416",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 7763055,
            "upload_time": "2024-04-09T19:54:06",
            "upload_time_iso_8601": "2024-04-09T19:54:06.726863Z",
            "url": "https://files.pythonhosted.org/packages/ef/e5/c09d20723bfd91315f6f4ddc77912b0dcc09588b4ca7ad2ffa204607ad7f/scikit-learn-1.4.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-09 19:54:06",
    "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.26956s