Name | scikit-learn JSON |
Version |
1.5.2
JSON |
| download |
home_page | https://scikit-learn.org |
Summary | A set of python modules for machine learning and data mining |
upload_time | 2024-09-11 15:50:10 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | BSD 3-Clause License Copyright (c) 2007-2024 The scikit-learn developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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/37/59/44985a2bdc95c74e34fef3d10cb5d93ce13b0e2a7baefffe1b53853b502d/scikit_learn-1.5.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 :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": "BSD 3-Clause License Copyright (c) 2007-2024 The scikit-learn developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
"summary": "A set of python modules for machine learning and data mining",
"version": "1.5.2",
"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": "9889be41419b4bec629a4691183a5eb1796f91252a13a5ffa243fd958cad7e91",
"md5": "ef5dc83fe79080af0aa6e759962cdcb1",
"sha256": "299406827fb9a4f862626d0fe6c122f5f87f8910b86fe5daa4c32dcd742139b6"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ef5dc83fe79080af0aa6e759962cdcb1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 12106070,
"upload_time": "2024-09-11T15:49:19",
"upload_time_iso_8601": "2024-09-11T15:49:19.633319Z",
"url": "https://files.pythonhosted.org/packages/98/89/be41419b4bec629a4691183a5eb1796f91252a13a5ffa243fd958cad7e91/scikit_learn-1.5.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bfe03b6d777d375f3b685f433c93384cdb724fb078e1dc8f8ff0950467e56c30",
"md5": "eaa12998c02024b1098dd0c3d2833914",
"sha256": "2d4cad1119c77930b235579ad0dc25e65c917e756fe80cab96aa3b9428bd3fb0"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp310-cp310-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "eaa12998c02024b1098dd0c3d2833914",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 10971758,
"upload_time": "2024-09-11T15:49:22",
"upload_time_iso_8601": "2024-09-11T15:49:22.484384Z",
"url": "https://files.pythonhosted.org/packages/bf/e0/3b6d777d375f3b685f433c93384cdb724fb078e1dc8f8ff0950467e56c30/scikit_learn-1.5.2-cp310-cp310-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b31eb7dd56c371640753953277de11356c46a3149bfeebb3d7dcd90b993715a",
"md5": "98767d4bfd057a9b72e2ad2544b3cee3",
"sha256": "8c412ccc2ad9bf3755915e3908e677b367ebc8d010acbb3f182814524f2e5540"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "98767d4bfd057a9b72e2ad2544b3cee3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 12500080,
"upload_time": "2024-09-11T15:49:24",
"upload_time_iso_8601": "2024-09-11T15:49:24.975928Z",
"url": "https://files.pythonhosted.org/packages/7b/31/eb7dd56c371640753953277de11356c46a3149bfeebb3d7dcd90b993715a/scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c1ea7c7357e704459c7d56a18df4a0bf08669442d1f8878cc0864beccd6306a",
"md5": "ce6b08e9d4bd41f9e19d6c1de16d805a",
"sha256": "3a686885a4b3818d9e62904d91b57fa757fc2bed3e465c8b177be652f4dd37c8"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ce6b08e9d4bd41f9e19d6c1de16d805a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 13347241,
"upload_time": "2024-09-11T15:49:27",
"upload_time_iso_8601": "2024-09-11T15:49:27.891637Z",
"url": "https://files.pythonhosted.org/packages/4c/1e/a7c7357e704459c7d56a18df4a0bf08669442d1f8878cc0864beccd6306a/scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4876154ebda6794faf0b0f3ccb1b5cd9a19f0a63cb9e1f3d2c61b6114002677b",
"md5": "6db965ce5449ca3d8f8d9cd1df85dbfe",
"sha256": "c15b1ca23d7c5f33cc2cb0a0d6aaacf893792271cddff0edbd6a40e8319bc113"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6db965ce5449ca3d8f8d9cd1df85dbfe",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 11000477,
"upload_time": "2024-09-11T15:49:30",
"upload_time_iso_8601": "2024-09-11T15:49:30.693658Z",
"url": "https://files.pythonhosted.org/packages/48/76/154ebda6794faf0b0f3ccb1b5cd9a19f0a63cb9e1f3d2c61b6114002677b/scikit_learn-1.5.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff91609961972f694cb9520c4c3d201e377a26583e1eb83bc5a334c893729214",
"md5": "9f38f6211b4d6befbf20840d4ca4e68d",
"sha256": "03b6158efa3faaf1feea3faa884c840ebd61b6484167c711548fce208ea09445"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9f38f6211b4d6befbf20840d4ca4e68d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 12088580,
"upload_time": "2024-09-11T15:49:33",
"upload_time_iso_8601": "2024-09-11T15:49:33.550742Z",
"url": "https://files.pythonhosted.org/packages/ff/91/609961972f694cb9520c4c3d201e377a26583e1eb83bc5a334c893729214/scikit_learn-1.5.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd7a19fe32c810c5ceddafcfda16276d98df299c8649e24e84d4f00df4a91e01",
"md5": "7d49bf0fd79c614cbdf42e9e998c0f5f",
"sha256": "1ff45e26928d3b4eb767a8f14a9a6efbf1cbff7c05d1fb0f95f211a89fd4f5de"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp311-cp311-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "7d49bf0fd79c614cbdf42e9e998c0f5f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 10975994,
"upload_time": "2024-09-11T15:49:35",
"upload_time_iso_8601": "2024-09-11T15:49:35.728751Z",
"url": "https://files.pythonhosted.org/packages/cd/7a/19fe32c810c5ceddafcfda16276d98df299c8649e24e84d4f00df4a91e01/scikit_learn-1.5.2-cp311-cp311-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c7562e49f8a62bf3c60b0e64d0fce540578ee4f0e752765beb2e1dc7c6d6098",
"md5": "695027059779ac50aedcb9a4b012f30c",
"sha256": "f763897fe92d0e903aa4847b0aec0e68cadfff77e8a0687cabd946c89d17e675"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "695027059779ac50aedcb9a4b012f30c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 12465782,
"upload_time": "2024-09-11T15:49:38",
"upload_time_iso_8601": "2024-09-11T15:49:38.596969Z",
"url": "https://files.pythonhosted.org/packages/4c/75/62e49f8a62bf3c60b0e64d0fce540578ee4f0e752765beb2e1dc7c6d6098/scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49213723de321531c9745e40f1badafd821e029d346155b6c79704e0b7197552",
"md5": "6fe05f23a7381ff53e984a422bab2d15",
"sha256": "f8b0ccd4a902836493e026c03256e8b206656f91fbcc4fde28c57a5b752561f1"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6fe05f23a7381ff53e984a422bab2d15",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 13322034,
"upload_time": "2024-09-11T15:49:41",
"upload_time_iso_8601": "2024-09-11T15:49:41.452589Z",
"url": "https://files.pythonhosted.org/packages/49/21/3723de321531c9745e40f1badafd821e029d346155b6c79704e0b7197552/scikit_learn-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "171cccdd103cfcc9435a18819856fbbe0c20b8fa60bfc3343580de4be13f0668",
"md5": "178d7aa56f4875fb58ca8950e6cea4b2",
"sha256": "6c16d84a0d45e4894832b3c4d0bf73050939e21b99b01b6fd59cbb0cf39163b6"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "178d7aa56f4875fb58ca8950e6cea4b2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 11015224,
"upload_time": "2024-09-11T15:49:43",
"upload_time_iso_8601": "2024-09-11T15:49:43.692427Z",
"url": "https://files.pythonhosted.org/packages/17/1c/ccdd103cfcc9435a18819856fbbe0c20b8fa60bfc3343580de4be13f0668/scikit_learn-1.5.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4dbb485c1ac54ff3bd9e7e6b39d3cc6609c4c76a65f52ab0a7b22b6c3ab0e9d",
"md5": "65fb040910b02309117e38df195b0208",
"sha256": "f932a02c3f4956dfb981391ab24bda1dbd90fe3d628e4b42caef3e041c67707a"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "65fb040910b02309117e38df195b0208",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 12110344,
"upload_time": "2024-09-11T15:49:46",
"upload_time_iso_8601": "2024-09-11T15:49:46.253008Z",
"url": "https://files.pythonhosted.org/packages/a4/db/b485c1ac54ff3bd9e7e6b39d3cc6609c4c76a65f52ab0a7b22b6c3ab0e9d/scikit_learn-1.5.2-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "541a7deb52fa23aebb855431ad659b3c6a2e1709ece582cb3a63d66905e735fe",
"md5": "2c02f52f611ce077c61126b92712122f",
"sha256": "3b923d119d65b7bd555c73be5423bf06c0105678ce7e1f558cb4b40b0a5502b1"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp312-cp312-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "2c02f52f611ce077c61126b92712122f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 11033502,
"upload_time": "2024-09-11T15:49:48",
"upload_time_iso_8601": "2024-09-11T15:49:48.656234Z",
"url": "https://files.pythonhosted.org/packages/54/1a/7deb52fa23aebb855431ad659b3c6a2e1709ece582cb3a63d66905e735fe/scikit_learn-1.5.2-cp312-cp312-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1324a7a205b14c11225609b75b28402c196e4396ac754dab6a81971b811781c",
"md5": "5a6b8391c66be55ec5a27329f40e8d3a",
"sha256": "f60021ec1574e56632be2a36b946f8143bf4e5e6af4a06d85281adc22938e0dd"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5a6b8391c66be55ec5a27329f40e8d3a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 12085794,
"upload_time": "2024-09-11T15:49:51",
"upload_time_iso_8601": "2024-09-11T15:49:51.388433Z",
"url": "https://files.pythonhosted.org/packages/a1/32/4a7a205b14c11225609b75b28402c196e4396ac754dab6a81971b811781c/scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c629044048c5e911373827c0e1d3051321b9183b2a4f8d4e2f11c08fcff83f13",
"md5": "43eff58b3c980d48a23d15483fe82567",
"sha256": "394397841449853c2290a32050382edaec3da89e35b3e03d6cc966aebc6a8ae6"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "43eff58b3c980d48a23d15483fe82567",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 12945797,
"upload_time": "2024-09-11T15:49:53",
"upload_time_iso_8601": "2024-09-11T15:49:53.579100Z",
"url": "https://files.pythonhosted.org/packages/c6/29/044048c5e911373827c0e1d3051321b9183b2a4f8d4e2f11c08fcff83f13/scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aacec0b912f2f31aeb1b756a6ba56bcd84dd1f8a148470526a48515a3f4d48cd",
"md5": "f180ca55c94593f686c1944a4333a428",
"sha256": "57cc1786cfd6bd118220a92ede80270132aa353647684efa385a74244a41e3b1"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f180ca55c94593f686c1944a4333a428",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 10985467,
"upload_time": "2024-09-11T15:49:56",
"upload_time_iso_8601": "2024-09-11T15:49:56.446607Z",
"url": "https://files.pythonhosted.org/packages/aa/ce/c0b912f2f31aeb1b756a6ba56bcd84dd1f8a148470526a48515a3f4d48cd/scikit_learn-1.5.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4508891028437858cc510e13578fe7046574a60c2aaaa92b02d64aac5b1b412",
"md5": "51a790cdc2b108cee701bd2d0dfc4918",
"sha256": "e9a702e2de732bbb20d3bad29ebd77fc05a6b427dc49964300340e4c9328b3f5"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "51a790cdc2b108cee701bd2d0dfc4918",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 12025584,
"upload_time": "2024-10-02T18:35:29",
"upload_time_iso_8601": "2024-10-02T18:35:29.369144Z",
"url": "https://files.pythonhosted.org/packages/a4/50/8891028437858cc510e13578fe7046574a60c2aaaa92b02d64aac5b1b412/scikit_learn-1.5.2-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d27917feef8a1c14149436083bec0e61d7befb4812e272d5b20f9d79ea3e9ab1",
"md5": "22d5709efbd24629b63ab9d7729f6aae",
"sha256": "b0768ad641981f5d3a198430a1d31c3e044ed2e8a6f22166b4d546a5116d7908"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp313-cp313-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "22d5709efbd24629b63ab9d7729f6aae",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10959795,
"upload_time": "2024-10-02T18:35:34",
"upload_time_iso_8601": "2024-10-02T18:35:34.220099Z",
"url": "https://files.pythonhosted.org/packages/d2/79/17feef8a1c14149436083bec0e61d7befb4812e272d5b20f9d79ea3e9ab1/scikit_learn-1.5.2-cp313-cp313-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1c8f08313f9e2e656bd0905930ae8bf99a573ea21c34666a813b749c338202f",
"md5": "7275ace90e1f233f99416633db1086fe",
"sha256": "178ddd0a5cb0044464fc1bfc4cca5b1833bfc7bb022d70b05db8530da4bb3dd3"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7275ace90e1f233f99416633db1086fe",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 12077302,
"upload_time": "2024-10-02T18:35:38",
"upload_time_iso_8601": "2024-10-02T18:35:38.911310Z",
"url": "https://files.pythonhosted.org/packages/b1/c8/f08313f9e2e656bd0905930ae8bf99a573ea21c34666a813b749c338202f/scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a748fbfb4dc72bed0fe31fe045fb30e924909ad03f717c36694351612973b1a9",
"md5": "5d9a923ed356fb2b1b9bace2c427fd28",
"sha256": "f7284ade780084d94505632241bf78c44ab3b6f1e8ccab3d2af58e0e950f9c12"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5d9a923ed356fb2b1b9bace2c427fd28",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 13002811,
"upload_time": "2024-10-02T18:35:43",
"upload_time_iso_8601": "2024-10-02T18:35:43.280011Z",
"url": "https://files.pythonhosted.org/packages/a7/48/fbfb4dc72bed0fe31fe045fb30e924909ad03f717c36694351612973b1a9/scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5e70c869f9e60d225a77af90d2aefa7a4a4c0e745b149325d1450f0f0ce5399",
"md5": "47ce268b00f6049e1b627684c0d3063a",
"sha256": "b7b0f9a0b1040830d38c39b91b3a44e1b643f4b36e36567b80b7c6bd2202a27f"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "47ce268b00f6049e1b627684c0d3063a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10951354,
"upload_time": "2024-10-02T18:35:47",
"upload_time_iso_8601": "2024-10-02T18:35:47.954265Z",
"url": "https://files.pythonhosted.org/packages/a5/e7/0c869f9e60d225a77af90d2aefa7a4a4c0e745b149325d1450f0f0ce5399/scikit_learn-1.5.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dba0e92af06a9fddd1fafbbf39cd32cbed5929b63cf99e03a438f838987e265d",
"md5": "f33f5cda1ce596f178f6af578423eb0f",
"sha256": "757c7d514ddb00ae249832fe87100d9c73c6ea91423802872d9e74970a0e40b9"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f33f5cda1ce596f178f6af578423eb0f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 12142022,
"upload_time": "2024-09-11T15:49:59",
"upload_time_iso_8601": "2024-09-11T15:49:59.205729Z",
"url": "https://files.pythonhosted.org/packages/db/a0/e92af06a9fddd1fafbbf39cd32cbed5929b63cf99e03a438f838987e265d/scikit_learn-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1bbe386ef63d9d5e2ddf8308f6a164e4b388d5c5aecc0504d25acc6b33d8b09e",
"md5": "e587fb0cca5561d1d959d9664ca899d1",
"sha256": "52788f48b5d8bca5c0736c175fa6bdaab2ef00a8f536cda698db61bd89c551c1"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp39-cp39-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "e587fb0cca5561d1d959d9664ca899d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 11002839,
"upload_time": "2024-09-11T15:50:01",
"upload_time_iso_8601": "2024-09-11T15:50:01.336863Z",
"url": "https://files.pythonhosted.org/packages/1b/be/386ef63d9d5e2ddf8308f6a164e4b388d5c5aecc0504d25acc6b33d8b09e/scikit_learn-1.5.2-cp39-cp39-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "120d94a03c006b01c1de27518d393f52ad3639705cd70184e106d24ffb3f28f6",
"md5": "89be00c2bd7dec35bf73070f43921052",
"sha256": "643964678f4b5fbdc95cbf8aec638acc7aa70f5f79ee2cdad1eec3df4ba6ead8"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "89be00c2bd7dec35bf73070f43921052",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 12546017,
"upload_time": "2024-09-11T15:50:03",
"upload_time_iso_8601": "2024-09-11T15:50:03.564689Z",
"url": "https://files.pythonhosted.org/packages/12/0d/94a03c006b01c1de27518d393f52ad3639705cd70184e106d24ffb3f28f6/scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a9dd332ec76e2cc442fce98bc43a44e69d3c281e6b4ede6b6db2616dc6fbec6",
"md5": "8250bcaf04bc336bced37979b3f0a1c0",
"sha256": "ca64b3089a6d9b9363cd3546f8978229dcbb737aceb2c12144ee3f70f95684b7"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8250bcaf04bc336bced37979b3f0a1c0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 13369870,
"upload_time": "2024-09-11T15:50:06",
"upload_time_iso_8601": "2024-09-11T15:50:06.464506Z",
"url": "https://files.pythonhosted.org/packages/2a/9d/d332ec76e2cc442fce98bc43a44e69d3c281e6b4ede6b6db2616dc6fbec6/scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "450574e453853c0b1b0773f46027848a17467f5dc9c5f15d096d911163d27550",
"md5": "f90d4fe342857addbb674494f3457767",
"sha256": "3bed4909ba187aca80580fe2ef370d9180dcf18e621a27c4cf2ef10d279a7efe"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "f90d4fe342857addbb674494f3457767",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 11031380,
"upload_time": "2024-09-11T15:50:08",
"upload_time_iso_8601": "2024-09-11T15:50:08.624351Z",
"url": "https://files.pythonhosted.org/packages/45/05/74e453853c0b1b0773f46027848a17467f5dc9c5f15d096d911163d27550/scikit_learn-1.5.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "375944985a2bdc95c74e34fef3d10cb5d93ce13b0e2a7baefffe1b53853b502d",
"md5": "e2df2bb829d461207fe8780f3e9a9cde",
"sha256": "b4237ed7b3fdd0a4882792e68ef2545d5baa50aca3bb45aa7df468138ad8f94d"
},
"downloads": -1,
"filename": "scikit_learn-1.5.2.tar.gz",
"has_sig": false,
"md5_digest": "e2df2bb829d461207fe8780f3e9a9cde",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7001680,
"upload_time": "2024-09-11T15:50:10",
"upload_time_iso_8601": "2024-09-11T15:50:10.957036Z",
"url": "https://files.pythonhosted.org/packages/37/59/44985a2bdc95c74e34fef3d10cb5d93ce13b0e2a7baefffe1b53853b502d/scikit_learn-1.5.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-11 15:50:10",
"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"
}