scikit-learn-intelex


Namescikit-learn-intelex JSON
Version 2024.3.0 PyPI version JSON
download
home_pagehttps://github.com/intel/scikit-learn-intelex
SummaryIntel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application.
upload_time2024-04-11 13:21:10
maintainerNone
docs_urlNone
authorIntel Corporation
requires_python>=3.7
licenseApache-2.0
keywords machine learning scikit-learn data science data analytics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Intel(R) Extension for Scikit-learn*

[![Build Status](https://dev.azure.com/daal/daal4py/_apis/build/status/CI?branchName=master)](https://dev.azure.com/daal/daal4py/_build/latest?definitionId=9&branchName=master)
[![Coverity Scan Build Status](https://scan.coverity.com/projects/21716/badge.svg)](https://scan.coverity.com/projects/daal4py)
[![Join the community on GitHub Discussions](https://badgen.net/badge/join%20the%20discussion/on%20github/black?icon=github)](https://github.com/intel/scikit-learn-intelex/discussions)
[![PyPI Version](https://img.shields.io/pypi/v/scikit-learn-intelex)](https://pypi.org/project/scikit-learn-intelex/)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/scikit-learn-intelex)](https://anaconda.org/conda-forge/scikit-learn-intelex)

With Intel(R) Extension for Scikit-learn you can accelerate your Scikit-learn applications and still have full conformance with all Scikit-Learn APIs and algorithms. This is a free software AI accelerator that brings over 10-100X acceleration across a variety of applications. And you do not even need to change the existing code!

The acceleration is achieved through the use of the Intel(R) oneAPI Data Analytics Library ([oneDAL](https://github.com/oneapi-src/oneDAL)). Patching scikit-learn makes it a well-suited machine learning framework for dealing with real-life problems.

⚠️Intel(R) Extension for Scikit-learn contains scikit-learn patching functionality that was originally available in [**daal4py**](https://github.com/intel/scikit-learn-intelex/tree/master/daal4py) package. All future updates for the patches will be available only in Intel(R) Extension for Scikit-learn. We recommend you to use scikit-learn-intelex package instead of daal4py.
You can learn more about daal4py in [daal4py documentation](https://intelpython.github.io/daal4py).

## 👀 Follow us on Medium

We publish blogs on Medium, so [follow us](https://medium.com/intel-analytics-software/tagged/machine-learning) to learn tips and tricks for more efficient data analysis with the help of Intel(R) Extension for Scikit-learn. Here are our latest blogs:

- [Save Time and Money with Intel Extension for Scikit-learn](https://medium.com/intel-analytics-software/save-time-and-money-with-intel-extension-for-scikit-learn-33627425ae4)
- [Superior Machine Learning Performance on the Latest Intel Xeon Scalable Processors](https://medium.com/intel-analytics-software/superior-machine-learning-performance-on-the-latest-intel-xeon-scalable-processor-efdec279f5a3)
- [Leverage Intel Optimizations in Scikit-Learn](https://medium.com/intel-analytics-software/leverage-intel-optimizations-in-scikit-learn-f562cb9d5544)
- [Intel Gives Scikit-Learn the Performance Boost Data Scientists Need](https://medium.com/intel-analytics-software/intel-gives-scikit-learn-the-performance-boost-data-scientists-need-42eb47c80b18)
- [From Hours to Minutes: 600x Faster SVM](https://medium.com/intel-analytics-software/from-hours-to-minutes-600x-faster-svm-647f904c31ae)
- [Improve the Performance of XGBoost and LightGBM Inference](https://medium.com/intel-analytics-software/improving-the-performance-of-xgboost-and-lightgbm-inference-3b542c03447e)
- [Accelerate Kaggle Challenges Using Intel AI Analytics Toolkit](https://medium.com/intel-analytics-software/accelerate-kaggle-challenges-using-intel-ai-analytics-toolkit-beb148f66d5a)
- [Accelerate Your scikit-learn Applications](https://medium.com/intel-analytics-software/improving-the-performance-of-xgboost-and-lightgbm-inference-3b542c03447e)
- [Accelerate Linear Models for Machine Learning](https://medium.com/intel-analytics-software/accelerating-linear-models-for-machine-learning-5a75ff50a0fe)
- [Accelerate K-Means Clustering](https://medium.com/intel-analytics-software/accelerate-k-means-clustering-6385088788a1)

## 🔗 Important links
- [Notebook examples](https://github.com/intel/scikit-learn-intelex/tree/master/examples/notebooks)
- [Documentation](https://intel.github.io/scikit-learn-intelex/)
- [scikit-learn API and patching](https://intel.github.io/scikit-learn-intelex/)
- [Benchmark code](https://github.com/IntelPython/scikit-learn_bench)
- [Building from Sources](https://github.com/intel/scikit-learn-intelex/blob/master/INSTALL.md)
- [About Intel(R) oneAPI Data Analytics Library](https://github.com/oneapi-src/oneDAL)
- [About Intel(R) daal4py](https://github.com/intel/scikit-learn-intelex/tree/master/daal4py)

## 💬 Support

Report issues, ask questions, and provide suggestions using:

- [GitHub Issues](https://github.com/intel/scikit-learn-intelex/issues)
- [GitHub Discussions](https://github.com/intel/scikit-learn-intelex/discussions)
- [Forum](https://community.intel.com/t5/Intel-Distribution-for-Python/bd-p/distribution-python)

You may reach out to project maintainers privately at onedal.maintainers@intel.com

# 🛠 Installation
Intel(R) Extension for Scikit-learn is available at the [Python Package Index](https://pypi.org/project/scikit-learn-intelex/),
on Anaconda Cloud in [Conda-Forge channel](https://anaconda.org/conda-forge/scikit-learn-intelex) and in [Intel channel](https://anaconda.org/intel/scikit-learn-intelex).
Intel(R) Extension for Scikit-learn is also available as a part of [Intel® oneAPI AI Analytics Toolkit](https://software.intel.com/content/www/us/en/develop/tools/oneapi/ai-analytics-toolkit.html) (AI Kit).

- PyPi (recommended by default)

```bash
pip install scikit-learn-intelex
```

- Anaconda Cloud from Conda-Forge channel (recommended for conda users by default)

```bash
  conda config --add channels conda-forge
  conda config --set channel_priority strict
  conda install scikit-learn-intelex
```

- Anaconda Cloud from Intel channel (recommended for Intel® Distribution for Python users)

```bash
  conda config --add channels intel
  conda config --set channel_priority strict
  conda install scikit-learn-intelex
```

<details><summary>[Click to expand] ℹ️ Supported configurations </summary>

#### 📦 PyPi channel

| OS / Python version     | **Python 3.8** | **Python 3.9** | **Python 3.10**| **Python 3.11**| **Python 3.12**|
| :-----------------------| :------------: | :-------------:| :------------: | :------------: | :------------: |
|    **Linux**            |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |
|    **Windows**          |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |

#### 📦 Anaconda Cloud: Conda-Forge channel

| OS / Python version     | **Python 3.8** | **Python 3.9** | **Python 3.10**| **Python 3.11**| **Python 3.12**|
| :-----------------------| :------------: | :------------: | :------------: | :------------: | :------------: |
|    **Linux**            |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |
|    **Windows**          |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |

#### 📦 Anaconda Cloud: Intel channel

| OS / Python version     | **Python 3.8** | **Python 3.9** | **Python 3.10**| **Python 3.11**| **Python 3.12**|
| :-----------------------| :------------: | :-------------:| :------------: | :------------: | :------------: |
|    **Linux**            |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |
|    **Windows**          |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |

</details>

⚠️ Note: *GPU support is an optional dependency. Required dependencies for GPU support
will not be downloaded. You need to manually install ***dpcpp_cpp_rt*** package.*

<details><summary>[Click to expand] ℹ️ How to install dpcpp_cpp_rt package </summary>

- PyPi

```bash
pip install --upgrade dpcpp_cpp_rt
```

- Anaconda Cloud

```bash
conda install dpcpp_cpp_rt -c intel
```

</details>

You can [build the package from sources](https://github.com/intel/scikit-learn-intelex/blob/master/INSTALL.md) as well.

# ⚡️ Get Started

Intel CPU optimizations patching
```py
import numpy as np
from sklearnex import patch_sklearn
patch_sklearn()

from sklearn.cluster import DBSCAN

X = np.array([[1., 2.], [2., 2.], [2., 3.],
              [8., 7.], [8., 8.], [25., 80.]], dtype=np.float32)
clustering = DBSCAN(eps=3, min_samples=2).fit(X)
```

Intel GPU optimizations patching
```py
import numpy as np
import dpctl
from sklearnex import patch_sklearn, config_context
patch_sklearn()

from sklearn.cluster import DBSCAN

X = np.array([[1., 2.], [2., 2.], [2., 3.],
              [8., 7.], [8., 8.], [25., 80.]], dtype=np.float32)
with config_context(target_offload="gpu:0"):
    clustering = DBSCAN(eps=3, min_samples=2).fit(X)
```

# 🚀 Scikit-learn patching

![](https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/doc/sources/_static/scikit-learn-acceleration-2021.2.3.PNG)
Configurations:
- HW: c5.24xlarge AWS EC2 Instance using an Intel Xeon Platinum 8275CL with 2 sockets and 24 cores per socket
- SW: scikit-learn version 0.24.2, scikit-learn-intelex version 2021.2.3, Python 3.8

[Benchmarks code](https://github.com/IntelPython/scikit-learn_bench)

<details><summary>[Click to expand] ℹ️ Reproduce results </summary>

- With Intel® Extension for Scikit-learn enabled:

```bash
python runner.py --configs configs/blogs/skl_conda_config.json -–report
```

- With the original Scikit-learn:

```bash
python runner.py --configs configs/blogs/skl_conda_config.json -–report --no-intel-optimized
```
</details>

Intel(R) Extension for Scikit-learn patching affects performance of specific Scikit-learn functionality. Refer to the [list of supported algorithms and parameters](https://intel.github.io/scikit-learn-intelex/algorithms.html) for details. In cases when unsupported parameters are used, the package fallbacks into original Scikit-learn. If the patching does not cover your scenarios, [submit an issue on GitHub](https://github.com/intel/scikit-learn-intelex/issues).

⚠️ We support optimizations for the last four versions of scikit-learn. The latest release of scikit-learn-intelex-2024.0.X supports scikit-learn 1.0.X, 1.1.X, 1.2.X and 1.3.X.

## 📜 Intel(R) Extension for Scikit-learn verbose

To find out which implementation of the algorithm is currently used (Intel(R) Extension for Scikit-learn or original Scikit-learn), set the environment variable:
- On Linux: `export SKLEARNEX_VERBOSE=INFO`
- On Windows: `set SKLEARNEX_VERBOSE=INFO`

For example, for DBSCAN you get one of these print statements depending on which implementation is used:
- `SKLEARNEX INFO: sklearn.cluster.DBSCAN.fit: running accelerated version on CPU`
- `SKLEARNEX INFO: sklearn.cluster.DBSCAN.fit: fallback to original Scikit-learn`

[Read more in the documentation](https://intel.github.io/scikit-learn-intelex/).



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/intel/scikit-learn-intelex",
    "name": "scikit-learn-intelex",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "onedal.maintainers@intel.com",
    "keywords": "machine learning, scikit-learn, data science, data analytics",
    "author": "Intel Corporation",
    "author_email": "onedal.maintainers@intel.com",
    "download_url": null,
    "platform": null,
    "description": "\n# Intel(R) Extension for Scikit-learn*\n\n[![Build Status](https://dev.azure.com/daal/daal4py/_apis/build/status/CI?branchName=master)](https://dev.azure.com/daal/daal4py/_build/latest?definitionId=9&branchName=master)\n[![Coverity Scan Build Status](https://scan.coverity.com/projects/21716/badge.svg)](https://scan.coverity.com/projects/daal4py)\n[![Join the community on GitHub Discussions](https://badgen.net/badge/join%20the%20discussion/on%20github/black?icon=github)](https://github.com/intel/scikit-learn-intelex/discussions)\n[![PyPI Version](https://img.shields.io/pypi/v/scikit-learn-intelex)](https://pypi.org/project/scikit-learn-intelex/)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/scikit-learn-intelex)](https://anaconda.org/conda-forge/scikit-learn-intelex)\n\nWith Intel(R) Extension for Scikit-learn you can accelerate your Scikit-learn applications and still have full conformance with all Scikit-Learn APIs and algorithms. This is a free software AI accelerator that brings over 10-100X acceleration across a variety of applications. And you do not even need to change the existing code!\n\nThe acceleration is achieved through the use of the Intel(R) oneAPI Data Analytics Library ([oneDAL](https://github.com/oneapi-src/oneDAL)). Patching scikit-learn makes it a well-suited machine learning framework for dealing with real-life problems.\n\n\u26a0\ufe0fIntel(R) Extension for Scikit-learn contains scikit-learn patching functionality that was originally available in [**daal4py**](https://github.com/intel/scikit-learn-intelex/tree/master/daal4py) package. All future updates for the patches will be available only in Intel(R) Extension for Scikit-learn. We recommend you to use scikit-learn-intelex package instead of daal4py.\nYou can learn more about daal4py in [daal4py documentation](https://intelpython.github.io/daal4py).\n\n## \ud83d\udc40 Follow us on Medium\n\nWe publish blogs on Medium, so [follow us](https://medium.com/intel-analytics-software/tagged/machine-learning) to learn tips and tricks for more efficient data analysis with the help of Intel(R) Extension for Scikit-learn. Here are our latest blogs:\n\n- [Save Time and Money with Intel Extension for Scikit-learn](https://medium.com/intel-analytics-software/save-time-and-money-with-intel-extension-for-scikit-learn-33627425ae4)\n- [Superior Machine Learning Performance on the Latest Intel Xeon Scalable Processors](https://medium.com/intel-analytics-software/superior-machine-learning-performance-on-the-latest-intel-xeon-scalable-processor-efdec279f5a3)\n- [Leverage Intel Optimizations in Scikit-Learn](https://medium.com/intel-analytics-software/leverage-intel-optimizations-in-scikit-learn-f562cb9d5544)\n- [Intel Gives Scikit-Learn the Performance Boost Data Scientists Need](https://medium.com/intel-analytics-software/intel-gives-scikit-learn-the-performance-boost-data-scientists-need-42eb47c80b18)\n- [From Hours to Minutes: 600x Faster SVM](https://medium.com/intel-analytics-software/from-hours-to-minutes-600x-faster-svm-647f904c31ae)\n- [Improve the Performance of XGBoost and LightGBM Inference](https://medium.com/intel-analytics-software/improving-the-performance-of-xgboost-and-lightgbm-inference-3b542c03447e)\n- [Accelerate Kaggle Challenges Using Intel AI Analytics Toolkit](https://medium.com/intel-analytics-software/accelerate-kaggle-challenges-using-intel-ai-analytics-toolkit-beb148f66d5a)\n- [Accelerate Your scikit-learn Applications](https://medium.com/intel-analytics-software/improving-the-performance-of-xgboost-and-lightgbm-inference-3b542c03447e)\n- [Accelerate Linear Models for Machine Learning](https://medium.com/intel-analytics-software/accelerating-linear-models-for-machine-learning-5a75ff50a0fe)\n- [Accelerate K-Means Clustering](https://medium.com/intel-analytics-software/accelerate-k-means-clustering-6385088788a1)\n\n## \ud83d\udd17 Important links\n- [Notebook examples](https://github.com/intel/scikit-learn-intelex/tree/master/examples/notebooks)\n- [Documentation](https://intel.github.io/scikit-learn-intelex/)\n- [scikit-learn API and patching](https://intel.github.io/scikit-learn-intelex/)\n- [Benchmark code](https://github.com/IntelPython/scikit-learn_bench)\n- [Building from Sources](https://github.com/intel/scikit-learn-intelex/blob/master/INSTALL.md)\n- [About Intel(R) oneAPI Data Analytics Library](https://github.com/oneapi-src/oneDAL)\n- [About Intel(R) daal4py](https://github.com/intel/scikit-learn-intelex/tree/master/daal4py)\n\n## \ud83d\udcac Support\n\nReport issues, ask questions, and provide suggestions using:\n\n- [GitHub Issues](https://github.com/intel/scikit-learn-intelex/issues)\n- [GitHub Discussions](https://github.com/intel/scikit-learn-intelex/discussions)\n- [Forum](https://community.intel.com/t5/Intel-Distribution-for-Python/bd-p/distribution-python)\n\nYou may reach out to project maintainers privately at onedal.maintainers@intel.com\n\n# \ud83d\udee0 Installation\nIntel(R) Extension for Scikit-learn is available at the [Python Package Index](https://pypi.org/project/scikit-learn-intelex/),\non Anaconda Cloud in [Conda-Forge channel](https://anaconda.org/conda-forge/scikit-learn-intelex) and in [Intel channel](https://anaconda.org/intel/scikit-learn-intelex).\nIntel(R) Extension for Scikit-learn is also available as a part of [Intel\u00ae oneAPI AI Analytics Toolkit](https://software.intel.com/content/www/us/en/develop/tools/oneapi/ai-analytics-toolkit.html)\u202f(AI Kit).\n\n- PyPi (recommended by default)\n\n```bash\npip install scikit-learn-intelex\n```\n\n- Anaconda Cloud from Conda-Forge channel (recommended for conda users by default)\n\n```bash\n  conda config --add channels conda-forge\n  conda config --set channel_priority strict\n  conda install scikit-learn-intelex\n```\n\n- Anaconda Cloud from Intel channel (recommended for Intel\u00ae Distribution for Python users)\n\n```bash\n  conda config --add channels intel\n  conda config --set channel_priority strict\n  conda install scikit-learn-intelex\n```\n\n<details><summary>[Click to expand] \u2139\ufe0f Supported configurations </summary>\n\n#### \ud83d\udce6 PyPi channel\n\n| OS / Python version     | **Python 3.8** | **Python 3.9** | **Python 3.10**| **Python 3.11**| **Python 3.12**|\n| :-----------------------| :------------: | :-------------:| :------------: | :------------: | :------------: |\n|    **Linux**            |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |\n|    **Windows**          |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |\n\n#### \ud83d\udce6 Anaconda Cloud: Conda-Forge channel\n\n| OS / Python version     | **Python 3.8** | **Python 3.9** | **Python 3.10**| **Python 3.11**| **Python 3.12**|\n| :-----------------------| :------------: | :------------: | :------------: | :------------: | :------------: |\n|    **Linux**            |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |\n|    **Windows**          |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |     [CPU]      |\n\n#### \ud83d\udce6 Anaconda Cloud: Intel channel\n\n| OS / Python version     | **Python 3.8** | **Python 3.9** | **Python 3.10**| **Python 3.11**| **Python 3.12**|\n| :-----------------------| :------------: | :-------------:| :------------: | :------------: | :------------: |\n|    **Linux**            |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |\n|    **Windows**          |    [CPU, GPU]  |  [CPU, GPU]    |   [CPU, GPU]   |   [CPU, GPU]   |   [CPU, GPU]   |\n\n</details>\n\n\u26a0\ufe0f Note: *GPU support is an optional dependency. Required dependencies for GPU support\nwill not be downloaded. You need to manually install ***dpcpp_cpp_rt*** package.*\n\n<details><summary>[Click to expand] \u2139\ufe0f How to install dpcpp_cpp_rt package </summary>\n\n- PyPi\n\n```bash\npip install --upgrade dpcpp_cpp_rt\n```\n\n- Anaconda Cloud\n\n```bash\nconda install dpcpp_cpp_rt -c intel\n```\n\n</details>\n\nYou can [build the package from sources](https://github.com/intel/scikit-learn-intelex/blob/master/INSTALL.md) as well.\n\n# \u26a1\ufe0f Get Started\n\nIntel CPU optimizations patching\n```py\nimport numpy as np\nfrom sklearnex import patch_sklearn\npatch_sklearn()\n\nfrom sklearn.cluster import DBSCAN\n\nX = np.array([[1., 2.], [2., 2.], [2., 3.],\n              [8., 7.], [8., 8.], [25., 80.]], dtype=np.float32)\nclustering = DBSCAN(eps=3, min_samples=2).fit(X)\n```\n\nIntel GPU optimizations patching\n```py\nimport numpy as np\nimport dpctl\nfrom sklearnex import patch_sklearn, config_context\npatch_sklearn()\n\nfrom sklearn.cluster import DBSCAN\n\nX = np.array([[1., 2.], [2., 2.], [2., 3.],\n              [8., 7.], [8., 8.], [25., 80.]], dtype=np.float32)\nwith config_context(target_offload=\"gpu:0\"):\n    clustering = DBSCAN(eps=3, min_samples=2).fit(X)\n```\n\n# \ud83d\ude80 Scikit-learn patching\n\n![](https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/doc/sources/_static/scikit-learn-acceleration-2021.2.3.PNG)\nConfigurations:\n- HW: c5.24xlarge AWS EC2 Instance using an Intel Xeon Platinum 8275CL with 2 sockets and 24 cores per socket\n- SW: scikit-learn version 0.24.2, scikit-learn-intelex version 2021.2.3, Python 3.8\n\n[Benchmarks code](https://github.com/IntelPython/scikit-learn_bench)\n\n<details><summary>[Click to expand] \u2139\ufe0f Reproduce results </summary>\n\n- With Intel\u00ae Extension for Scikit-learn enabled:\n\n```bash\npython runner.py --configs configs/blogs/skl_conda_config.json -\u2013report\n```\n\n- With the original Scikit-learn:\n\n```bash\npython runner.py --configs configs/blogs/skl_conda_config.json -\u2013report --no-intel-optimized\n```\n</details>\n\nIntel(R) Extension for Scikit-learn patching affects performance of specific Scikit-learn functionality. Refer to the [list of supported algorithms and parameters](https://intel.github.io/scikit-learn-intelex/algorithms.html) for details. In cases when unsupported parameters are used, the package fallbacks into original Scikit-learn. If the patching does not cover your scenarios, [submit an issue on GitHub](https://github.com/intel/scikit-learn-intelex/issues).\n\n\u26a0\ufe0f We support optimizations for the last four versions of scikit-learn. The latest release of scikit-learn-intelex-2024.0.X supports scikit-learn 1.0.X, 1.1.X, 1.2.X and 1.3.X.\n\n## \ud83d\udcdc Intel(R) Extension for Scikit-learn verbose\n\nTo find out which implementation of the algorithm is currently used (Intel(R) Extension for Scikit-learn or original Scikit-learn), set the environment variable:\n- On Linux: `export SKLEARNEX_VERBOSE=INFO`\n- On Windows: `set SKLEARNEX_VERBOSE=INFO`\n\nFor example, for DBSCAN you get one of these print statements depending on which implementation is used:\n- `SKLEARNEX INFO: sklearn.cluster.DBSCAN.fit: running accelerated version on CPU`\n- `SKLEARNEX INFO: sklearn.cluster.DBSCAN.fit: fallback to original Scikit-learn`\n\n[Read more in the documentation](https://intel.github.io/scikit-learn-intelex/).\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application.",
    "version": "2024.3.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/intel/scikit-learn-intelex/issues",
        "Documentation": "https://intel.github.io/scikit-learn-intelex/",
        "Homepage": "https://github.com/intel/scikit-learn-intelex",
        "Source Code": "https://github.com/intel/scikit-learn-intelex"
    },
    "split_keywords": [
        "machine learning",
        " scikit-learn",
        " data science",
        " data analytics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8ba6f3080f84a6a4c9b30db2bd059812e15c051f009caa4d9653672267aa06b",
                "md5": "9a47e645d4a8d7add572a7ad92e2601f",
                "sha256": "07bd13462224c35d72ceff8a745430fb2bc888382358240741f4046476cca5cc"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py310-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a47e645d4a8d7add572a7ad92e2601f",
            "packagetype": "bdist_wheel",
            "python_version": "py310",
            "requires_python": ">=3.7",
            "size": 137866,
            "upload_time": "2024-04-11T13:21:10",
            "upload_time_iso_8601": "2024-04-11T13:21:10.195467Z",
            "url": "https://files.pythonhosted.org/packages/f8/ba/6f3080f84a6a4c9b30db2bd059812e15c051f009caa4d9653672267aa06b/scikit_learn_intelex-2024.3.0-py310-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f4416008f64d0d14e38049de5028f6c25e4ce3f0e9fbcd923103a13ade57d00",
                "md5": "85e0b66c139a175f79f655b3251e9d86",
                "sha256": "a9aab115ad4da38d3fb20d04e37077b4522ddfec6dec8085b1185ea484748a17"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "85e0b66c139a175f79f655b3251e9d86",
            "packagetype": "bdist_wheel",
            "python_version": "py310",
            "requires_python": ">=3.7",
            "size": 148787,
            "upload_time": "2024-04-11T13:19:45",
            "upload_time_iso_8601": "2024-04-11T13:19:45.484124Z",
            "url": "https://files.pythonhosted.org/packages/6f/44/16008f64d0d14e38049de5028f6c25e4ce3f0e9fbcd923103a13ade57d00/scikit_learn_intelex-2024.3.0-py310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b9c015460f7c73bdb0d02dccb4a1d6cdef1aed03f238de06b40a37d8112522c",
                "md5": "b855db4e1edb6391c319d7c360b1d215",
                "sha256": "53b4d6fdc9b9f0fd6d8250dd62c769ab59755fff455ea8fd133baed0fb409865"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py311-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b855db4e1edb6391c319d7c360b1d215",
            "packagetype": "bdist_wheel",
            "python_version": "py311",
            "requires_python": ">=3.7",
            "size": 137864,
            "upload_time": "2024-04-11T13:21:51",
            "upload_time_iso_8601": "2024-04-11T13:21:51.255923Z",
            "url": "https://files.pythonhosted.org/packages/8b/9c/015460f7c73bdb0d02dccb4a1d6cdef1aed03f238de06b40a37d8112522c/scikit_learn_intelex-2024.3.0-py311-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fd9a40891b486714aed2081985ead404cf2ffaf8d510e38d39e4e89e027d34a",
                "md5": "c50f3d3591c418181f1bd14960c809c8",
                "sha256": "19147546dba3fb0c51b04e72d3213ecb10f823c13345459aad86960746cd1986"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c50f3d3591c418181f1bd14960c809c8",
            "packagetype": "bdist_wheel",
            "python_version": "py311",
            "requires_python": ">=3.7",
            "size": 148786,
            "upload_time": "2024-04-11T13:19:48",
            "upload_time_iso_8601": "2024-04-11T13:19:48.379557Z",
            "url": "https://files.pythonhosted.org/packages/9f/d9/a40891b486714aed2081985ead404cf2ffaf8d510e38d39e4e89e027d34a/scikit_learn_intelex-2024.3.0-py311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86d0a9f5f5e2c6bd42fd2a6cbe0964e7843850ff460abe1cb9a28eca9e6c8568",
                "md5": "86b4d38b286a9bc21d6a6f02814fabf9",
                "sha256": "ec1df8879f497efbb1126faf1205314f5c8b6331057682667092300d7786bd81"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py312-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86b4d38b286a9bc21d6a6f02814fabf9",
            "packagetype": "bdist_wheel",
            "python_version": "py312",
            "requires_python": ">=3.7",
            "size": 137866,
            "upload_time": "2024-04-11T13:21:30",
            "upload_time_iso_8601": "2024-04-11T13:21:30.417917Z",
            "url": "https://files.pythonhosted.org/packages/86/d0/a9f5f5e2c6bd42fd2a6cbe0964e7843850ff460abe1cb9a28eca9e6c8568/scikit_learn_intelex-2024.3.0-py312-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcbde68d3869db497ca233b6dd616043793a55571524d807001c42e2f53a4f1a",
                "md5": "b26921c6978f4e75b855d354f0d62bbe",
                "sha256": "5e2d2fc8f557ce6571cf722d19fb4c0120d993e4138ff9b9eb5734f8bbc7994d"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b26921c6978f4e75b855d354f0d62bbe",
            "packagetype": "bdist_wheel",
            "python_version": "py312",
            "requires_python": ">=3.7",
            "size": 148787,
            "upload_time": "2024-04-11T13:19:21",
            "upload_time_iso_8601": "2024-04-11T13:19:21.981421Z",
            "url": "https://files.pythonhosted.org/packages/fc/bd/e68d3869db497ca233b6dd616043793a55571524d807001c42e2f53a4f1a/scikit_learn_intelex-2024.3.0-py312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f44069500a1d729315ed4ac3a7c57538a87b757d6473958901686ec920682771",
                "md5": "2d28bedeb7465625aa56ea60b4f82991",
                "sha256": "0aaf74a718e636200b2fd1ca7e55f657f1566367d07ff6cbd869b05233969929"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py38-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d28bedeb7465625aa56ea60b4f82991",
            "packagetype": "bdist_wheel",
            "python_version": "py38",
            "requires_python": ">=3.7",
            "size": 137863,
            "upload_time": "2024-04-11T13:20:39",
            "upload_time_iso_8601": "2024-04-11T13:20:39.933882Z",
            "url": "https://files.pythonhosted.org/packages/f4/40/69500a1d729315ed4ac3a7c57538a87b757d6473958901686ec920682771/scikit_learn_intelex-2024.3.0-py38-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bf4f062e129909c80779ed82bd4ac66895cc23589973e812b84b14020e791eb",
                "md5": "bda12e92956967d25d11befe396ccae5",
                "sha256": "f3ab5494b5e67c7fb58455dca2881d3e292a7a6315dc504ea8a65c93cf0df6cf"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bda12e92956967d25d11befe396ccae5",
            "packagetype": "bdist_wheel",
            "python_version": "py38",
            "requires_python": ">=3.7",
            "size": 148785,
            "upload_time": "2024-04-11T13:19:49",
            "upload_time_iso_8601": "2024-04-11T13:19:49.473297Z",
            "url": "https://files.pythonhosted.org/packages/7b/f4/f062e129909c80779ed82bd4ac66895cc23589973e812b84b14020e791eb/scikit_learn_intelex-2024.3.0-py38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d68279b05877ee90427e5b25d54422d2e7ef4945b2d938b94e38b5a85c69caf4",
                "md5": "d5f0731047795c5366f131b0ea60e46a",
                "sha256": "f05157d5a0d16367b41456e5da0043a55e72aa1355b45eaba192699dd692b92d"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py39-none-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5f0731047795c5366f131b0ea60e46a",
            "packagetype": "bdist_wheel",
            "python_version": "py39",
            "requires_python": ">=3.7",
            "size": 137863,
            "upload_time": "2024-04-11T13:22:13",
            "upload_time_iso_8601": "2024-04-11T13:22:13.488078Z",
            "url": "https://files.pythonhosted.org/packages/d6/82/79b05877ee90427e5b25d54422d2e7ef4945b2d938b94e38b5a85c69caf4/scikit_learn_intelex-2024.3.0-py39-none-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6eac014aad93ca364c9f880312592aac4a3bf73d6ab4fcff2c9c0bd9ff293f3d",
                "md5": "a2695cfe3ab0b9627ddd981a86c14321",
                "sha256": "b96216eae71327c41f3679f0d8c961a9c98b37ef2462b39a591aff6441e1f65c"
            },
            "downloads": -1,
            "filename": "scikit_learn_intelex-2024.3.0-py39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a2695cfe3ab0b9627ddd981a86c14321",
            "packagetype": "bdist_wheel",
            "python_version": "py39",
            "requires_python": ">=3.7",
            "size": 148784,
            "upload_time": "2024-04-11T13:19:21",
            "upload_time_iso_8601": "2024-04-11T13:19:21.863297Z",
            "url": "https://files.pythonhosted.org/packages/6e/ac/014aad93ca364c9f880312592aac4a3bf73d6ab4fcff2c9c0bd9ff293f3d/scikit_learn_intelex-2024.3.0-py39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 13:21:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "intel",
    "github_project": "scikit-learn-intelex",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "scikit-learn-intelex"
}
        
Elapsed time: 0.23688s