scikit-tree


Namescikit-tree JSON
Version 0.7.2 PyPI version JSON
download
home_page
SummaryModern decision trees in Python
upload_time2024-03-13 20:42:21
maintainer
docs_urlNone
author
requires_python>=3.9
license
keywords tree oblique trees manifold-learning scikit-learn
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![CircleCI](https://circleci.com/gh/neurodata/scikit-tree/tree/main.svg?style=svg)](https://circleci.com/gh/neurodata/scikit-tree/tree/main)
[![Main](https://github.com/neurodata/scikit-tree/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/neurodata/scikit-tree/actions/workflows/main.yml)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
[![codecov](https://codecov.io/gh/neurodata/scikit-tree/branch/main/graph/badge.svg?token=H1reh7Qwf4)](https://codecov.io/gh/neurodata/scikit-tree)
[![PyPI Download count](https://img.shields.io/pypi/dm/scikit-tree.svg)](https://pypistats.org/packages/scikit-tree)
[![Latest PyPI release](https://img.shields.io/pypi/v/scikit-tree.svg)](https://pypi.org/project/scikit-tree/)
[![DOI](https://zenodo.org/badge/491260497.svg)](https://zenodo.org/doi/10.5281/zenodo.8412279)

scikit-tree
===========

scikit-tree is a scikit-learn compatible API for building state-of-the-art decision trees. These include unsupervised trees, oblique trees, uncertainty trees, quantile trees and causal trees.

Tree-models have withstood the test of time, and are consistently used for modern-day data science and machine learning applications. They especially perform well when there are limited samples for a problem and are flexible learners that can be applied to a wide variety of different settings, such as tabular, images, time-series, genomics, EEG data and more.

Documentation
=============

See here for the documentation for our dev version: <https://docs.neurodata.io/scikit-tree/dev/index.html>

Why oblique trees and why trees beyond those in scikit-learn?
=============================================================

In 2001, Leo Breiman proposed two types of Random Forests. One was known as ``Forest-RI``, which is the axis-aligned traditional random forest. One was known as ``Forest-RC``, which is the random oblique linear combinations random forest. This leveraged random combinations of features to perform splits. [MORF](1) builds upon ``Forest-RC`` by proposing additional functions to combine features. Other modern tree variants such as Canonical Correlation Forests (CCF), Extended Isolation Forests, Quantile Forests, or unsupervised random forests are also important at solving real-world problems using robust decision tree models.

Installation
============

Our installation will try to follow scikit-learn installation as close as possible, as we contain Cython code subclassed, or inspired by the scikit-learn tree submodule.

Dependencies
------------

We minimally require:

    * Python (>=3.9)
    * numpy
    * scipy
    * scikit-learn >= 1.3

Installation with Pip (<https://pypi.org/project/scikit-tree/>)
-------------------------------------------------------------

Installing with pip on a conda environment is the recommended route.

    pip install scikit-tree

Building locally with Meson (For developers)
--------------------------------------------

Make sure you have the necessary packages installed

    # install build dependencies
    pip install -r build_requirements.txt

    # you may need these optional dependencies to build scikit-learn locally
    conda install -c conda-forge joblib threadpoolctl pytest compilers llvm-openmp

We use the ``spin`` CLI to abstract away build details:

    # run the build using Meson/Ninja
    ./spin build

    # you can run the following command to see what other options there are
    ./spin --help
    ./spin build --help

    # For example, you might want to start from a clean build
    ./spin build --clean

    # or build in parallel for faster builds
    ./spin build -j 2

    # you will need to double check the build-install has the proper path
    # this might be different from machine to machine
    export PYTHONPATH=${PWD}/build-install/usr/lib/python3.9/site-packages

    # run specific unit tests
    ./spin test -- sktree/tree/tests/test_tree.py

    # you can bring up the CLI menu
    ./spin --help

You can also do the same thing using Meson/Ninja itself. Run the following to build the local files:

    # generate ninja make files
    meson build --prefix=$PWD/build

    # compile
    ninja -C build

    # install scikit-tree package
    meson install -C build

    export PYTHONPATH=${PWD}/build/lib/python3.9/site-packages

    # to check installation, you need to be in a different directory
    cd docs;  
    python -c "from sktree import tree"
    python -c "import sklearn; print(sklearn.__version__);"

After building locally, you can use editable installs (warning: this only registers Python changes locally)

    pip install --no-build-isolation --editable .

Or if you have spin v0.8+ installed, you can just run directly

    spin install

Development
===========

We welcome contributions for modern tree-based algorithms. We use Cython to achieve fast C/C++ speeds, while abiding by a scikit-learn compatible (tested) API. Moreover, our Cython internals are easily extensible because they follow the internal Cython API of scikit-learn as well.

Due to the current state of scikit-learn's internal Cython code for trees, we have to instead leverage a fork of scikit-learn at <https://github.com/neurodata/scikit-learn> when
extending the decision tree model API of scikit-learn. Specifically, we extend the Python and Cython API of the tree submodule in scikit-learn in our submodule, so we can introduce the tree models housed in this package. Thus these extend the functionality of decision-tree based models in a way that is not possible yet in scikit-learn itself. As one example, we introduce an abstract API to allow users to implement their own oblique splits. Our plan in the future is to benchmark these functionalities and introduce them upstream to scikit-learn where applicable and inclusion criterion are met.

References
==========

[1]: [`Li, Adam, et al. "Manifold Oblique Random Forests: Towards Closing the Gap on Convolutional Deep Networks" SIAM Journal on Mathematics of Data Science, 5(1), 77-96, 2023`](https://doi.org/10.1137/21M1449117)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "scikit-tree",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Neurodata <adam.li@columbia.edu>",
    "keywords": "tree oblique trees manifold-learning scikit-learn",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/c4/93/4a9ae0ebfd00a53746113a129bdc0cb981f8b78db81b6a210482f2b7f360/scikit_tree-0.7.2.tar.gz",
    "platform": null,
    "description": "[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![CircleCI](https://circleci.com/gh/neurodata/scikit-tree/tree/main.svg?style=svg)](https://circleci.com/gh/neurodata/scikit-tree/tree/main)\n[![Main](https://github.com/neurodata/scikit-tree/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/neurodata/scikit-tree/actions/workflows/main.yml)\n[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)\n[![codecov](https://codecov.io/gh/neurodata/scikit-tree/branch/main/graph/badge.svg?token=H1reh7Qwf4)](https://codecov.io/gh/neurodata/scikit-tree)\n[![PyPI Download count](https://img.shields.io/pypi/dm/scikit-tree.svg)](https://pypistats.org/packages/scikit-tree)\n[![Latest PyPI release](https://img.shields.io/pypi/v/scikit-tree.svg)](https://pypi.org/project/scikit-tree/)\n[![DOI](https://zenodo.org/badge/491260497.svg)](https://zenodo.org/doi/10.5281/zenodo.8412279)\n\nscikit-tree\n===========\n\nscikit-tree is a scikit-learn compatible API for building state-of-the-art decision trees. These include unsupervised trees, oblique trees, uncertainty trees, quantile trees and causal trees.\n\nTree-models have withstood the test of time, and are consistently used for modern-day data science and machine learning applications. They especially perform well when there are limited samples for a problem and are flexible learners that can be applied to a wide variety of different settings, such as tabular, images, time-series, genomics, EEG data and more.\n\nDocumentation\n=============\n\nSee here for the documentation for our dev version: <https://docs.neurodata.io/scikit-tree/dev/index.html>\n\nWhy oblique trees and why trees beyond those in scikit-learn?\n=============================================================\n\nIn 2001, Leo Breiman proposed two types of Random Forests. One was known as ``Forest-RI``, which is the axis-aligned traditional random forest. One was known as ``Forest-RC``, which is the random oblique linear combinations random forest. This leveraged random combinations of features to perform splits. [MORF](1) builds upon ``Forest-RC`` by proposing additional functions to combine features. Other modern tree variants such as Canonical Correlation Forests (CCF), Extended Isolation Forests, Quantile Forests, or unsupervised random forests are also important at solving real-world problems using robust decision tree models.\n\nInstallation\n============\n\nOur installation will try to follow scikit-learn installation as close as possible, as we contain Cython code subclassed, or inspired by the scikit-learn tree submodule.\n\nDependencies\n------------\n\nWe minimally require:\n\n    * Python (>=3.9)\n    * numpy\n    * scipy\n    * scikit-learn >= 1.3\n\nInstallation with Pip (<https://pypi.org/project/scikit-tree/>)\n-------------------------------------------------------------\n\nInstalling with pip on a conda environment is the recommended route.\n\n    pip install scikit-tree\n\nBuilding locally with Meson (For developers)\n--------------------------------------------\n\nMake sure you have the necessary packages installed\n\n    # install build dependencies\n    pip install -r build_requirements.txt\n\n    # you may need these optional dependencies to build scikit-learn locally\n    conda install -c conda-forge joblib threadpoolctl pytest compilers llvm-openmp\n\nWe use the ``spin`` CLI to abstract away build details:\n\n    # run the build using Meson/Ninja\n    ./spin build\n\n    # you can run the following command to see what other options there are\n    ./spin --help\n    ./spin build --help\n\n    # For example, you might want to start from a clean build\n    ./spin build --clean\n\n    # or build in parallel for faster builds\n    ./spin build -j 2\n\n    # you will need to double check the build-install has the proper path\n    # this might be different from machine to machine\n    export PYTHONPATH=${PWD}/build-install/usr/lib/python3.9/site-packages\n\n    # run specific unit tests\n    ./spin test -- sktree/tree/tests/test_tree.py\n\n    # you can bring up the CLI menu\n    ./spin --help\n\nYou can also do the same thing using Meson/Ninja itself. Run the following to build the local files:\n\n    # generate ninja make files\n    meson build --prefix=$PWD/build\n\n    # compile\n    ninja -C build\n\n    # install scikit-tree package\n    meson install -C build\n\n    export PYTHONPATH=${PWD}/build/lib/python3.9/site-packages\n\n    # to check installation, you need to be in a different directory\n    cd docs;  \n    python -c \"from sktree import tree\"\n    python -c \"import sklearn; print(sklearn.__version__);\"\n\nAfter building locally, you can use editable installs (warning: this only registers Python changes locally)\n\n    pip install --no-build-isolation --editable .\n\nOr if you have spin v0.8+ installed, you can just run directly\n\n    spin install\n\nDevelopment\n===========\n\nWe welcome contributions for modern tree-based algorithms. We use Cython to achieve fast C/C++ speeds, while abiding by a scikit-learn compatible (tested) API. Moreover, our Cython internals are easily extensible because they follow the internal Cython API of scikit-learn as well.\n\nDue to the current state of scikit-learn's internal Cython code for trees, we have to instead leverage a fork of scikit-learn at <https://github.com/neurodata/scikit-learn> when\nextending the decision tree model API of scikit-learn. Specifically, we extend the Python and Cython API of the tree submodule in scikit-learn in our submodule, so we can introduce the tree models housed in this package. Thus these extend the functionality of decision-tree based models in a way that is not possible yet in scikit-learn itself. As one example, we introduce an abstract API to allow users to implement their own oblique splits. Our plan in the future is to benchmark these functionalities and introduce them upstream to scikit-learn where applicable and inclusion criterion are met.\n\nReferences\n==========\n\n[1]: [`Li, Adam, et al. \"Manifold Oblique Random Forests: Towards Closing the Gap on Convolutional Deep Networks\" SIAM Journal on Mathematics of Data Science, 5(1), 77-96, 2023`](https://doi.org/10.1137/21M1449117)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Modern decision trees in Python",
    "version": "0.7.2",
    "project_urls": null,
    "split_keywords": [
        "tree",
        "oblique",
        "trees",
        "manifold-learning",
        "scikit-learn"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d761bddef119f4ad328aa2a3d644d4f5a3b5bda8ddfda1db0f78aab30e4830ed",
                "md5": "75ebbb1037c869eacaa5955c0a38dd46",
                "sha256": "9562948ba4bdd0ffe8c096fa4c69533357afb1278b4cbe2159e781f6a00194ca"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75ebbb1037c869eacaa5955c0a38dd46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2194886,
            "upload_time": "2024-03-13T20:41:28",
            "upload_time_iso_8601": "2024-03-13T20:41:28.042516Z",
            "url": "https://files.pythonhosted.org/packages/d7/61/bddef119f4ad328aa2a3d644d4f5a3b5bda8ddfda1db0f78aab30e4830ed/scikit_tree-0.7.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "756d2e6836d23b0e6c1c0ca7d506ba0a02ba12eb2b405e430df22c95fd5b8f77",
                "md5": "a08bc0fc027fe1968302ddcca29c0530",
                "sha256": "c5c52a31dcdcc5e9b956571d39a0f1289cc496a4a531d7cfcf310548fdc0f79a"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a08bc0fc027fe1968302ddcca29c0530",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2062699,
            "upload_time": "2024-03-13T20:41:38",
            "upload_time_iso_8601": "2024-03-13T20:41:38.031887Z",
            "url": "https://files.pythonhosted.org/packages/75/6d/2e6836d23b0e6c1c0ca7d506ba0a02ba12eb2b405e430df22c95fd5b8f77/scikit_tree-0.7.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5516f4297f1540e1f3a592dac400459794d1dc7573afeb32ef806e210c653caf",
                "md5": "c97f476d67a3f64731f4c2700244ea05",
                "sha256": "7cbfbd8ff7d3e3c836d419c7fd143601aa2dce35f8efc02abbb768b7f95cb81b"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c97f476d67a3f64731f4c2700244ea05",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2668570,
            "upload_time": "2024-03-13T20:41:40",
            "upload_time_iso_8601": "2024-03-13T20:41:40.925773Z",
            "url": "https://files.pythonhosted.org/packages/55/16/f4297f1540e1f3a592dac400459794d1dc7573afeb32ef806e210c653caf/scikit_tree-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc2347bccc82eecdae74052aafb279f28857648d5b7f0bab50335579eb0bf2c0",
                "md5": "51a764e5d755996b189740cacbaa34e5",
                "sha256": "0e4ae7223070c1cbfe0a9a1f416c3207a8eee8e993615dda559be1b9bff48c42"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51a764e5d755996b189740cacbaa34e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5044109,
            "upload_time": "2024-03-13T20:41:44",
            "upload_time_iso_8601": "2024-03-13T20:41:44.691455Z",
            "url": "https://files.pythonhosted.org/packages/bc/23/47bccc82eecdae74052aafb279f28857648d5b7f0bab50335579eb0bf2c0/scikit_tree-0.7.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be6ef7964b9c022ba2894d21de4e09d87fb32fc17cd1f15f39f38f0042e7b503",
                "md5": "801308cf6f70c002e7d360261d10a61c",
                "sha256": "4d15e784cb60a1e91dfd766504f4e05a15b23afcf6aaf96e5780f96a0dd595ea"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "801308cf6f70c002e7d360261d10a61c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2194380,
            "upload_time": "2024-03-13T20:41:46",
            "upload_time_iso_8601": "2024-03-13T20:41:46.951951Z",
            "url": "https://files.pythonhosted.org/packages/be/6e/f7964b9c022ba2894d21de4e09d87fb32fc17cd1f15f39f38f0042e7b503/scikit_tree-0.7.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c4fa9f7ce564ab2416575aea1e46208048fdb15c276e7b6581fdd34375f846a",
                "md5": "3c135beceb94129a09a1770674d7a6bb",
                "sha256": "cebff0ce1425c50f0786de4a48bc2a92b3d9a12543ba51e29bab178b46ac9526"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3c135beceb94129a09a1770674d7a6bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2058479,
            "upload_time": "2024-03-13T20:41:49",
            "upload_time_iso_8601": "2024-03-13T20:41:49.401366Z",
            "url": "https://files.pythonhosted.org/packages/0c/4f/a9f7ce564ab2416575aea1e46208048fdb15c276e7b6581fdd34375f846a/scikit_tree-0.7.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a8e6fd1e180e4e899b44c56a9270f8484a802c851dbe157de66186cdbdf3b68",
                "md5": "5dc262ab5789d8d85118415d079c9997",
                "sha256": "cce0bcb52784cfcf99603706e7303cbd00e36ae753c9eabc4aef609710b9f21e"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5dc262ab5789d8d85118415d079c9997",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2661808,
            "upload_time": "2024-03-13T20:41:52",
            "upload_time_iso_8601": "2024-03-13T20:41:52.015302Z",
            "url": "https://files.pythonhosted.org/packages/4a/8e/6fd1e180e4e899b44c56a9270f8484a802c851dbe157de66186cdbdf3b68/scikit_tree-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e463fe70a9ff8c58049fd3bb0e58a8bf0e1cbd3e61fafd8d4ea93a6516b42bcb",
                "md5": "ce9ffecda5c6be2424402a9e11dcba89",
                "sha256": "c0743abbc7ffaf37df2f494de874884d74fb7b230fd81b946d435241028fa145"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ce9ffecda5c6be2424402a9e11dcba89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5040994,
            "upload_time": "2024-03-13T20:41:54",
            "upload_time_iso_8601": "2024-03-13T20:41:54.889725Z",
            "url": "https://files.pythonhosted.org/packages/e4/63/fe70a9ff8c58049fd3bb0e58a8bf0e1cbd3e61fafd8d4ea93a6516b42bcb/scikit_tree-0.7.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75b309a0f4f54b990e7f70baf0bb6ded32f5678ab4351aee286c061849925807",
                "md5": "332a68f060d2844da76ab3a309233eaa",
                "sha256": "bd9f31d955c893de67f7a6eced2e8d091f1804785adc44d39268a0091822ca53"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "332a68f060d2844da76ab3a309233eaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2208398,
            "upload_time": "2024-03-13T20:41:57",
            "upload_time_iso_8601": "2024-03-13T20:41:57.684583Z",
            "url": "https://files.pythonhosted.org/packages/75/b3/09a0f4f54b990e7f70baf0bb6ded32f5678ab4351aee286c061849925807/scikit_tree-0.7.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be3ab91126c780ec8ce7a9a9b62ce9993ea6819879da4f2615d60c2f313e2488",
                "md5": "aca922c3591e8856af304150e4ab4a20",
                "sha256": "6f05bd428483fc7ec921e9051af2ebbaa7052d7f1d916a4c19d80fe9cdc7aa23"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aca922c3591e8856af304150e4ab4a20",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2072339,
            "upload_time": "2024-03-13T20:42:00",
            "upload_time_iso_8601": "2024-03-13T20:42:00.051317Z",
            "url": "https://files.pythonhosted.org/packages/be/3a/b91126c780ec8ce7a9a9b62ce9993ea6819879da4f2615d60c2f313e2488/scikit_tree-0.7.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7267b3cba0c91b82abd33e6407e0ada1c00325fd0fa4bbd6ad8f5897602bea1",
                "md5": "c501d07f4cda82c02b5535cc6a5a3946",
                "sha256": "848f63b1e3222bc9f8fab189726bd5d9f1fec7d90f14dd5963f0ec86944da780"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c501d07f4cda82c02b5535cc6a5a3946",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2560340,
            "upload_time": "2024-03-13T20:42:02",
            "upload_time_iso_8601": "2024-03-13T20:42:02.020118Z",
            "url": "https://files.pythonhosted.org/packages/e7/26/7b3cba0c91b82abd33e6407e0ada1c00325fd0fa4bbd6ad8f5897602bea1/scikit_tree-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0cda8cf569bc9b8473f02cc4d1413064268638e70cd6b7f7da50fc2c493faae",
                "md5": "8a9cd5ec1addc820643e1afba454c303",
                "sha256": "63ec4deda83233e3dcbb4febd4aa5148330248d3472f39135cbebc6e529c8964"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a9cd5ec1addc820643e1afba454c303",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 4948746,
            "upload_time": "2024-03-13T20:42:04",
            "upload_time_iso_8601": "2024-03-13T20:42:04.814629Z",
            "url": "https://files.pythonhosted.org/packages/c0/cd/a8cf569bc9b8473f02cc4d1413064268638e70cd6b7f7da50fc2c493faae/scikit_tree-0.7.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab1f940d6cb73c658e771a7f1a3dc74ea61d3db1a50207f431c89a8ae9c09b6a",
                "md5": "96ef78e841459783acb84de5e0a689bb",
                "sha256": "2afeb074d446eeb6c12d8b9bdaa14e3bfdb2b96be55bd0d2365235ef105f4500"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96ef78e841459783acb84de5e0a689bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2205062,
            "upload_time": "2024-03-13T20:42:07",
            "upload_time_iso_8601": "2024-03-13T20:42:07.211094Z",
            "url": "https://files.pythonhosted.org/packages/ab/1f/940d6cb73c658e771a7f1a3dc74ea61d3db1a50207f431c89a8ae9c09b6a/scikit_tree-0.7.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1446e76187dc268f3c8ad294bd8282b68c81a7d21e053ff3f973339245292917",
                "md5": "dd65f5fbb28109834700f43fc4801817",
                "sha256": "e9ca4d403d0b95f58a46c573f373e5a37af21ae7ef333fb73fae7cd827302955"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd65f5fbb28109834700f43fc4801817",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2072773,
            "upload_time": "2024-03-13T20:42:09",
            "upload_time_iso_8601": "2024-03-13T20:42:09.335175Z",
            "url": "https://files.pythonhosted.org/packages/14/46/e76187dc268f3c8ad294bd8282b68c81a7d21e053ff3f973339245292917/scikit_tree-0.7.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "825d497e72f436e384a60484d27481e7440583add521d0562ae72b8ecf7fdb25",
                "md5": "6bd3fd4407f951b45db38de0d60185ce",
                "sha256": "0480a6baa20b3560f49fd2802cb2f06b586a5af534fb411b1aab85e4fe38c25a"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bd3fd4407f951b45db38de0d60185ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2674647,
            "upload_time": "2024-03-13T20:42:11",
            "upload_time_iso_8601": "2024-03-13T20:42:11.914594Z",
            "url": "https://files.pythonhosted.org/packages/82/5d/497e72f436e384a60484d27481e7440583add521d0562ae72b8ecf7fdb25/scikit_tree-0.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db701b41997c4ebfd597c2bbf4c985fb17859b96e81d3d8b8885dfc00ed35e67",
                "md5": "314181132de2d11117159a9f87c51ac9",
                "sha256": "a92dc9869999266146f530b9ab935f65d668d685a862219a0a30f5f869ce6a4e"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "314181132de2d11117159a9f87c51ac9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5052224,
            "upload_time": "2024-03-13T20:42:14",
            "upload_time_iso_8601": "2024-03-13T20:42:14.781263Z",
            "url": "https://files.pythonhosted.org/packages/db/70/1b41997c4ebfd597c2bbf4c985fb17859b96e81d3d8b8885dfc00ed35e67/scikit_tree-0.7.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4934a9ae0ebfd00a53746113a129bdc0cb981f8b78db81b6a210482f2b7f360",
                "md5": "b7fd805e2debde883def55b8f8799099",
                "sha256": "efe3ca670d57a72c097eca1d0ce82665ac560c7b8a0759a824ca401f30201564"
            },
            "downloads": -1,
            "filename": "scikit_tree-0.7.2.tar.gz",
            "has_sig": false,
            "md5_digest": "b7fd805e2debde883def55b8f8799099",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 16425022,
            "upload_time": "2024-03-13T20:42:21",
            "upload_time_iso_8601": "2024-03-13T20:42:21.791222Z",
            "url": "https://files.pythonhosted.org/packages/c4/93/4a9ae0ebfd00a53746113a129bdc0cb981f8b78db81b6a210482f2b7f360/scikit_tree-0.7.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-13 20:42:21",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "scikit-tree"
}
        
Elapsed time: 0.20525s