mlinsights


Namemlinsights JSON
Version 0.5.0 PyPI version JSON
download
home_pagehttps://github.com/sdpython/mlinsights
SummaryExtends the list of supported operators in onnx reference implementation and onnxruntime, or implements faster versions in C++.
upload_time2023-11-05 12:20:27
maintainer
docs_urlNone
authorXavier Dupré
requires_python>=3.9
licenseCopyright (c) 2017-2023, Xavier Dupré Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords onnx cython scikit-learn machine-learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
.. image:: https://github.com/sdpython/mlinsights/blob/main/_doc/sphinxdoc/source/_static/project_ico.png?raw=true
    :target: https://github.com/sdpython/mlinsights/

mlinsights: extensions to scikit-learn
======================================

.. image:: https://dev.azure.com/xavierdupre3/mlinsights/_apis/build/status%2Fsdpython.mlinsights%20(2)?branchName=main
    :target: https://dev.azure.com/xavierdupre3/mlinsights/_build/latest?definitionId=16&branchName=main

.. image:: https://badge.fury.io/py/mlinsights.svg
    :target: http://badge.fury.io/py/mlinsights

.. image:: https://img.shields.io/badge/license-MIT-blue.svg
    :alt: MIT License
    :target: http://opensource.org/licenses/MIT

.. image:: https://codecov.io/github/sdpython/mlinsights/coverage.svg?branch=main
    :target: https://codecov.io/github/sdpython/mlinsights?branch=main

.. image:: http://img.shields.io/github/issues/sdpython/mlinsights.png
    :alt: GitHub Issues
    :target: https://github.com/sdpython/mlinsights/issues

.. image:: https://pepy.tech/badge/mlinsights/month
    :target: https://pepy.tech/project/mlinsights/month
    :alt: Downloads

.. image:: https://img.shields.io/github/forks/sdpython/mlinsights.svg
    :target: https://github.com/sdpython/mlinsights/
    :alt: Forks

.. image:: https://img.shields.io/github/stars/sdpython/mlinsights.svg
    :target: https://github.com/sdpython/mlinsights/
    :alt: Stars

.. image:: https://img.shields.io/github/repo-size/sdpython/mlinsights
    :target: https://github.com/sdpython/mlinsights/
    :alt: size

*mlinsights* extends *scikit-learn* with a couple of new models,
transformers, metrics, plotting. It provides new trainers such as
**QuantileLinearRegression** which trains a linear regression with *L1* norm
non-linear correlation based on decision trees, or
**QuantileMLPRegressor** a modification of scikit-learn's MLPRegressor
which trains a multi-layer perceptron with *L1* norm.
It also explores **PredictableTSNE** which trains a supervized
model to replicate *t-SNE* results or a **PiecewiseRegression**
which partitions the data before fitting a model on each bucket.
**PiecewiseTreeRegressor** trains a piecewise regressor using
a linear regression on each piece. **IntervalRegressor** produces
confidence interval by using bootstrapping. **ApproximateNMFPredictor**
approximates a NMF to produce prediction without retraining.

`mlinsights documentation <https://sdpython.github.io/doc/mlinsights/dev/>`_

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sdpython/mlinsights",
    "name": "mlinsights",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "onnx,cython,scikit-learn,machine-learning",
    "author": "Xavier Dupr\u00e9",
    "author_email": "Xavier Dupr\u00e9 <xavier.dupre@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/4e/83/60b9d2c8866bb0d437c3039c9c1f5a807f21176c2fb80e58d984f9519878/mlinsights-0.5.0.tar.gz",
    "platform": null,
    "description": "\n.. image:: https://github.com/sdpython/mlinsights/blob/main/_doc/sphinxdoc/source/_static/project_ico.png?raw=true\n    :target: https://github.com/sdpython/mlinsights/\n\nmlinsights: extensions to scikit-learn\n======================================\n\n.. image:: https://dev.azure.com/xavierdupre3/mlinsights/_apis/build/status%2Fsdpython.mlinsights%20(2)?branchName=main\n    :target: https://dev.azure.com/xavierdupre3/mlinsights/_build/latest?definitionId=16&branchName=main\n\n.. image:: https://badge.fury.io/py/mlinsights.svg\n    :target: http://badge.fury.io/py/mlinsights\n\n.. image:: https://img.shields.io/badge/license-MIT-blue.svg\n    :alt: MIT License\n    :target: http://opensource.org/licenses/MIT\n\n.. image:: https://codecov.io/github/sdpython/mlinsights/coverage.svg?branch=main\n    :target: https://codecov.io/github/sdpython/mlinsights?branch=main\n\n.. image:: http://img.shields.io/github/issues/sdpython/mlinsights.png\n    :alt: GitHub Issues\n    :target: https://github.com/sdpython/mlinsights/issues\n\n.. image:: https://pepy.tech/badge/mlinsights/month\n    :target: https://pepy.tech/project/mlinsights/month\n    :alt: Downloads\n\n.. image:: https://img.shields.io/github/forks/sdpython/mlinsights.svg\n    :target: https://github.com/sdpython/mlinsights/\n    :alt: Forks\n\n.. image:: https://img.shields.io/github/stars/sdpython/mlinsights.svg\n    :target: https://github.com/sdpython/mlinsights/\n    :alt: Stars\n\n.. image:: https://img.shields.io/github/repo-size/sdpython/mlinsights\n    :target: https://github.com/sdpython/mlinsights/\n    :alt: size\n\n*mlinsights* extends *scikit-learn* with a couple of new models,\ntransformers, metrics, plotting. It provides new trainers such as\n**QuantileLinearRegression** which trains a linear regression with *L1* norm\nnon-linear correlation based on decision trees, or\n**QuantileMLPRegressor** a modification of scikit-learn's MLPRegressor\nwhich trains a multi-layer perceptron with *L1* norm.\nIt also explores **PredictableTSNE** which trains a supervized\nmodel to replicate *t-SNE* results or a **PiecewiseRegression**\nwhich partitions the data before fitting a model on each bucket.\n**PiecewiseTreeRegressor** trains a piecewise regressor using\na linear regression on each piece. **IntervalRegressor** produces\nconfidence interval by using bootstrapping. **ApproximateNMFPredictor**\napproximates a NMF to produce prediction without retraining.\n\n`mlinsights documentation <https://sdpython.github.io/doc/mlinsights/dev/>`_\n",
    "bugtrack_url": null,
    "license": "\ufeffCopyright (c) 2017-2023, Xavier Dupr\u00e9  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Extends the list of supported operators in onnx reference implementation and onnxruntime, or implements faster versions in C++.",
    "version": "0.5.0",
    "project_urls": {
        "Homepage": "https://github.com/sdpython/mlinsights",
        "changelog": "https://sdpython.github.io/doc/mlinsights/dev/CHANGELOGS.html",
        "documentation": "https://sdpython.github.io/doc/mlinsights/dev/",
        "homepage": "https://sdpython.github.io/doc/mlinsights/dev/",
        "repository": "https://github.com/sdpython/mlinsights/"
    },
    "split_keywords": [
        "onnx",
        "cython",
        "scikit-learn",
        "machine-learning"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "393676c2980cb4611c51715e108cdcf30a999440d9ed2a6d77db3faa49921b34",
                "md5": "17778b5eff00c749383485989150f4a1",
                "sha256": "bfe300e068e6d58fc78850e81381613850f645f2522a087ff225efe8f00ad254"
            },
            "downloads": -1,
            "filename": "mlinsights-0.5.0-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17778b5eff00c749383485989150f4a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 928070,
            "upload_time": "2023-11-05T12:20:10",
            "upload_time_iso_8601": "2023-11-05T12:20:10.143007Z",
            "url": "https://files.pythonhosted.org/packages/39/36/76c2980cb4611c51715e108cdcf30a999440d9ed2a6d77db3faa49921b34/mlinsights-0.5.0-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc4635e5cbaa05b077df3f2e530afb3431839958651afa62c72d9bb4579899a9",
                "md5": "7000e1ef17181293bc5c60bd0f5a02e6",
                "sha256": "2754c8dd336dd0784ffe95d9e4bb542d4a9a4eea5d2a07f930e5bd29aad8e66f"
            },
            "downloads": -1,
            "filename": "mlinsights-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7000e1ef17181293bc5c60bd0f5a02e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 840247,
            "upload_time": "2023-11-05T12:20:13",
            "upload_time_iso_8601": "2023-11-05T12:20:13.208109Z",
            "url": "https://files.pythonhosted.org/packages/fc/46/35e5cbaa05b077df3f2e530afb3431839958651afa62c72d9bb4579899a9/mlinsights-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7df4625abe5351c7eed2ff92e9d26aa21270870cd4653716b90fce90bae65324",
                "md5": "9dcf127c34a734205801d3963925e14d",
                "sha256": "90c4f5ad9dd0c9e38ce773a3fc08349db350780934482f0905cf51c67479747b"
            },
            "downloads": -1,
            "filename": "mlinsights-0.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9dcf127c34a734205801d3963925e14d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 581671,
            "upload_time": "2023-11-05T12:20:15",
            "upload_time_iso_8601": "2023-11-05T12:20:15.957800Z",
            "url": "https://files.pythonhosted.org/packages/7d/f4/625abe5351c7eed2ff92e9d26aa21270870cd4653716b90fce90bae65324/mlinsights-0.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89a9e28e96f6155069209a554742386b99a9c28ffd69d851d18333849eff2514",
                "md5": "5f62bc6c3b74437a314a0453f086a06b",
                "sha256": "a628467ad2a8ad6adbb9d39894688fb124b7996222ae344d5b89f4d565b63cb6"
            },
            "downloads": -1,
            "filename": "mlinsights-0.5.0-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f62bc6c3b74437a314a0453f086a06b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1885189,
            "upload_time": "2023-11-05T12:20:18",
            "upload_time_iso_8601": "2023-11-05T12:20:18.978198Z",
            "url": "https://files.pythonhosted.org/packages/89/a9/e28e96f6155069209a554742386b99a9c28ffd69d851d18333849eff2514/mlinsights-0.5.0-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfe59685861665d9859971e249abdd8790e86495c4cb5d148b80a4ffcdb18e15",
                "md5": "47217888de3cf36bd6415a605985510d",
                "sha256": "c62991e600fc611eabeecd707abc80ab583d5f83bd0ccbff5aa0305f55f8594c"
            },
            "downloads": -1,
            "filename": "mlinsights-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47217888de3cf36bd6415a605985510d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1796086,
            "upload_time": "2023-11-05T12:20:21",
            "upload_time_iso_8601": "2023-11-05T12:20:21.937610Z",
            "url": "https://files.pythonhosted.org/packages/cf/e5/9685861665d9859971e249abdd8790e86495c4cb5d148b80a4ffcdb18e15/mlinsights-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f42689108c56d712689242b0d00af6a3f3bbd3d4a9d6c246fdd7e7834b03c5c",
                "md5": "7fa8b4424f36d0b46cdd3995ec71396e",
                "sha256": "416776e434c585e2f550e72e3bf90324597ae708ecabb62879c474ca1a44a901"
            },
            "downloads": -1,
            "filename": "mlinsights-0.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7fa8b4424f36d0b46cdd3995ec71396e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1538968,
            "upload_time": "2023-11-05T12:20:24",
            "upload_time_iso_8601": "2023-11-05T12:20:24.900963Z",
            "url": "https://files.pythonhosted.org/packages/6f/42/689108c56d712689242b0d00af6a3f3bbd3d4a9d6c246fdd7e7834b03c5c/mlinsights-0.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e8360b9d2c8866bb0d437c3039c9c1f5a807f21176c2fb80e58d984f9519878",
                "md5": "a670c5bccab3d1980415ac417b04e9e2",
                "sha256": "9090bcd584bd95fa1d9522a22329a8864cb2025680f64ee3940770d89820e48c"
            },
            "downloads": -1,
            "filename": "mlinsights-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a670c5bccab3d1980415ac417b04e9e2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1697778,
            "upload_time": "2023-11-05T12:20:27",
            "upload_time_iso_8601": "2023-11-05T12:20:27.862040Z",
            "url": "https://files.pythonhosted.org/packages/4e/83/60b9d2c8866bb0d437c3039c9c1f5a807f21176c2fb80e58d984f9519878/mlinsights-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-05 12:20:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sdpython",
    "github_project": "mlinsights",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "mlinsights"
}
        
Elapsed time: 0.13393s