Skip to main content

scikit-learn compatible quantile forests.

Project description

quantile-forest

PyPI - Version License GitHub Actions Codecov Code Style black DOI

quantile-forest offers a Python implementation of quantile regression forests compatible with scikit-learn.

Quantile regression forests (QRF) are a non-parametric, tree-based ensemble method for estimating conditional quantiles, with application to high-dimensional data and uncertainty estimation [1]. The estimators in this package are performant, Cython-optimized QRF implementations that extend the forest estimators available in scikit-learn to estimate conditional quantiles. The estimators can estimate arbitrary quantiles at prediction time without retraining and provide methods for out-of-bag estimation, calculating quantile ranks, and computing proximity counts. They are compatible with and can serve as drop-in replacements for the scikit-learn forest regressors.

Example of fitted model predictions and prediction intervals on California housing data (code)

Quick Start

Install quantile-forest from PyPI using pip:

pip install quantile-forest

Usage

from quantile_forest import RandomForestQuantileRegressor
from sklearn import datasets
X, y = datasets.fetch_california_housing(return_X_y=True)
qrf = RandomForestQuantileRegressor()
qrf.fit(X, y)
y_pred = qrf.predict(X, quantiles=[0.025, 0.5, 0.975])

Documentation

An installation guide, API documentation, and examples can be found in the documentation.

References

[1] N. Meinshausen, "Quantile Regression Forests", Journal of Machine Learning Research, 7(Jun), 983-999, 2006. http://www.jmlr.org/papers/volume7/meinshausen06a/meinshausen06a.pdf

Citation

If you use this package in academic work, please consider citing https://joss.theoj.org/papers/10.21105/joss.05976:

@article{Johnson2024,
    doi = {10.21105/joss.05976},
    url = {https://doi.org/10.21105/joss.05976},
    year = {2024},
    publisher = {The Open Journal},
    volume = {9},
    number = {93},
    pages = {5976},
    author = {Reid A. Johnson},
    title = {quantile-forest: A Python Package for Quantile Regression Forests},
    journal = {Journal of Open Source Software}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quantile_forest-1.3.11.tar.gz (97.2 kB view details)

Uploaded Source

Built Distributions

quantile_forest-1.3.11-cp313-cp313-win_amd64.whl (286.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

quantile_forest-1.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

quantile_forest-1.3.11-cp313-cp313-macosx_11_0_arm64.whl (302.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

quantile_forest-1.3.11-cp313-cp313-macosx_10_13_x86_64.whl (321.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

quantile_forest-1.3.11-cp313-cp313-macosx_10_13_universal2.whl (558.5 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

quantile_forest-1.3.11-cp312-cp312-win_amd64.whl (286.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

quantile_forest-1.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

quantile_forest-1.3.11-cp312-cp312-macosx_11_0_arm64.whl (305.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

quantile_forest-1.3.11-cp312-cp312-macosx_10_9_x86_64.whl (324.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

quantile_forest-1.3.11-cp312-cp312-macosx_10_9_universal2.whl (563.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

quantile_forest-1.3.11-cp311-cp311-win_amd64.whl (285.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

quantile_forest-1.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

quantile_forest-1.3.11-cp311-cp311-macosx_11_0_arm64.whl (303.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

quantile_forest-1.3.11-cp311-cp311-macosx_10_9_x86_64.whl (321.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

quantile_forest-1.3.11-cp311-cp311-macosx_10_9_universal2.whl (558.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

quantile_forest-1.3.11-cp310-cp310-win_amd64.whl (285.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

quantile_forest-1.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

quantile_forest-1.3.11-cp310-cp310-macosx_11_0_arm64.whl (303.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

quantile_forest-1.3.11-cp310-cp310-macosx_10_9_x86_64.whl (321.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

quantile_forest-1.3.11-cp310-cp310-macosx_10_9_universal2.whl (558.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

quantile_forest-1.3.11-cp39-cp39-win_amd64.whl (286.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

quantile_forest-1.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

quantile_forest-1.3.11-cp39-cp39-macosx_11_0_arm64.whl (304.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

quantile_forest-1.3.11-cp39-cp39-macosx_10_9_x86_64.whl (321.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

quantile_forest-1.3.11-cp39-cp39-macosx_10_9_universal2.whl (559.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

quantile_forest-1.3.11-cp38-cp38-win_amd64.whl (286.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

quantile_forest-1.3.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

quantile_forest-1.3.11-cp38-cp38-macosx_11_0_arm64.whl (303.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

quantile_forest-1.3.11-cp38-cp38-macosx_10_9_x86_64.whl (321.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

quantile_forest-1.3.11-cp38-cp38-macosx_10_9_universal2.whl (558.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file quantile_forest-1.3.11.tar.gz.

File metadata

  • Download URL: quantile_forest-1.3.11.tar.gz
  • Upload date:
  • Size: 97.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for quantile_forest-1.3.11.tar.gz
Algorithm Hash digest
SHA256 020bb88bb110bbdab461776fde8150c3503e76fde3cf0f51d4fd3119c6ce2f89
MD5 0c0e6154e5f8192485f9b63b7d13a347
BLAKE2b-256 24124daa5e369fd7c7c89e26aa0164fbdeca5d099c7378529def38a67dcb3919

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8268feb97e0ca412c23f56126e66ba03d0f1fdb5d25bc068632962eaa280f7bf
MD5 116c6906b71bda8feb05add98a653c45
BLAKE2b-256 b4a15b1684c3c2ce2a38016c9fe126004831e9a0ad823535fd1843acb638f8c0

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02d824032ad2bd38a0a851ad1f04443fd7344c221bbfca2049b725591656e055
MD5 ab5e46aebf3b5b466b50001a4009b581
BLAKE2b-256 1bca8d6ef9a51df5014c9e97f18b3217a1e59e7491e351e114ce9ef0955428ec

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe090851c78038f81f6094df2a222fb5f4d39ccbacf37531ac07dfc1ff3c1404
MD5 b7393052aef2bef271e47daa748cfa55
BLAKE2b-256 cf890b5b99b784673ba71239b006f949f0afe5bc878bb350a6730a5557479547

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6b73862ebeba17c64702f87bf2790e63ebbda84a78f823ccca7e6aff7891890f
MD5 edba25620d640fc275ec5b0e5f07f5c0
BLAKE2b-256 cd9301ddd46ec55f387b5359ac7c471f0f49cb40f1de8f498dc2b928c3ae53fb

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 dc7107001b5f69216b7d03ea8fe35e48368c38b350d8962726a8c4cbb1f634a5
MD5 d53250003ca75872476e668f51dc9e79
BLAKE2b-256 43c5a4066d23b78e1625f5fa6fb51382322fe44ed72dbc8de6c5d608978d70df

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4be9b10b3a3c69ebe3d7fca3f004cfe708ec5fdfd14d50be82a16aea8c79fb3e
MD5 4f0a797947dae46436b2e10cbd069ea3
BLAKE2b-256 ab9086ce2b520cfb05114524320fd48ad0d5782a107d6c8cc68bc111aead6d38

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba9caf897e879ad9fe53fe87ddb85fb1d4861ad412ae80db635c26fec9df9099
MD5 1bb2adb4dc5fef1cf92f80f2e77003d6
BLAKE2b-256 a47126cbef1a174648dad7e4562ff11ae2d9858b6dd8b95cd651c783f8abb877

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 692f954cf0481dd9b94108b3dd3e3a337bd7834077b9c95cfe3991652eaf4663
MD5 768c4fe7b2b6fd0f85beeb2a86e439f3
BLAKE2b-256 5c656db6153208fe140ba30a6fa77df5af55118d6de4a62a0f22ed22e0942e51

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad6dd2201ccd09c2293a5c4895d62597fcd3baf0033074a069e1312dc4d925f9
MD5 a5a05c03b2ca300f1e55fe003f9d5c25
BLAKE2b-256 232edef46453d288fe0c1cd8e82308cd4b19fd036acff5bcdeb326c637992ed6

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a632083875b3950f274fe310e72905338c0cd210721f83e51d2326f22cf9e3b1
MD5 1e0ec5920959e7033d52170069033eab
BLAKE2b-256 8df49f14f931e85f1df8a7aa45dd1d5b1fbc8e40fda578ee4d3931458d623634

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2eb2ae3780a3e67624214677d3e857ad3999367cdba2e955172febff3fcfe1ba
MD5 92aa584ea6e7576a60f00374ba03e7e1
BLAKE2b-256 2e7c4ce10c1551398d3b23269da10bb4e311dbe73d2545227e6b4c0fdd553a38

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90d4ef099184ddfa6c92e26a4e4edbc32baffef53d096dfbff59e5e52f310e94
MD5 04abfff625986576c83fd7dfbb60a938
BLAKE2b-256 99a4ba9712177f840f86c59154fee2d0fbf24c3312964f66eb8cadd7cb41be85

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8499a010202ad39a3337cfedd3dd4c41cd7cf322323c955b24f62d3af0d1221
MD5 50d08f0b08d9c16fc33b25c5d0081d3f
BLAKE2b-256 31c93fecddbd9c1f054cdf52134790f4807221eac122f6097ac3b14f6c76ab18

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 861c47a3756fe718b0e6225f58357e973f8752d34b2adbe30047025e73d0a27a
MD5 b815411734f2d864410e80d186b47924
BLAKE2b-256 9d440b005cd2b06772d12f541a1e9de770903b682df1195013a36c1f8cba9e22

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 37fc39685fd1fc37955eba060f2a0a33eab5e6ba6397dea2911e26f04815d7fe
MD5 bb7c80f3c2591357e8992c8bcd71038f
BLAKE2b-256 0ae15b9f03fe8c337a4ce3e5719ded08d683f6cc8190666fd936393c50821bd2

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6c769ca96ed9da77c81df5d55526304b2fdceb8d08a836f697b546ae28ed02a6
MD5 d5822934603fd1ddce2b316fdb8be339
BLAKE2b-256 2fabdde4c48f04b41bfbc00d476b083b29238191d5af683b411361f3b34417c1

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbbdc786394fc6e7f033d366741abc6eb02483ff7a585478fff7a1ed8ba3d631
MD5 71ee25dea10a1611b620e5bab1564e5a
BLAKE2b-256 476d7a6511b9e0c3cd4133f4245cde959aad65c7e8e6bfb546a2d8c9d677ea30

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6eb4424201abd70a411bc10fd67104e98f5ad18cd90e3e1e4d81cf3eefe4ff3
MD5 aa635e81a08e3d7c78bfd704b7405477
BLAKE2b-256 6eaad77e9f0648f60e23ebdead3e05efe17f41462eaeb0d0732b99f623819001

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8642595560fcb29cada7570e4b10c2bd85b3e38357228320263716d49bae83a
MD5 7150749f6fe988502423ea6165073dcd
BLAKE2b-256 cd0f6066a7501f83f469e0c16ae58cb76fd73838e8f347dae8afa2dc6c1b42e8

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b9d9c9a69c27fc74d1d35ab2ebc495a8c1aa2f7482599bd563c688bfb70d950f
MD5 ddccb2c457b57ce2b8bb79456c19b1b5
BLAKE2b-256 47ae1d55f2029a1dbc5e24a862e691b5c51d0f40d7795c937f4af66a31f64417

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 26a7e10f3fc9e3bfdb7db9ca722dd882206e9dd37197bfe48ad7445415dacdab
MD5 8298e8644fb52b8d89908aef2e60a2ee
BLAKE2b-256 c851ce692f53f1210c4b87132fcb7f9647b8fb5768c5001d6c37726fd2b43c38

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a68a46d98a8862b2c48c48d16df57c7e7ead2fa9c16eaf94f7e79f9b597805c
MD5 f9760f7462cd10c0aa99ab010e523f5c
BLAKE2b-256 35098166a23d41b3b158739c1b1c1c9596d0ad7a448287d2453f2e107c0936f6

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e5dffca26ec6ec21301fac93dbca85ac7cc58bb6e60f33516a8d27271b8863f
MD5 9495bd558e0b7ee63d858e245ba1562a
BLAKE2b-256 ab4f7662a36b74c95187b55d05b0592ee6772318e7c7928071e617b17ce37c92

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd58c888d762e43d766ba2d9ac7b9e037fd273924243c49a81a12af71dfdc4fe
MD5 944a4a4f051101073d3b086e50821a36
BLAKE2b-256 62787d884da37a2eacad957ac0fc3e69809ea29a5851cb74a244e136d177473b

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 64cda6e8166931ea14e5aabc67ef5236a22fa83c037fbb4b3e3a1d14defa6e37
MD5 039d564e3d4b55e1b2111820c322d583
BLAKE2b-256 93c2bfd455f174dc61e2d21eaf8045b136f2bdd64073a167a2065e82b2d5da11

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6f72f4b4e467330d87d1542b8a0f1acff422c9bcba7c0ac1365e06e7e2a51fe6
MD5 5f71f6c5a3e4d7c994135be64fcc256f
BLAKE2b-256 206435d7b312879263e5423bd9e25124207a74cb516bb253f9d1692b4760f61e

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e334760f3f6e33e61bf293e8b371b3ad454d770c459cb027d5f8db1dfbf8f59c
MD5 bb352966dcdcb8c74c2746c2f8d3fefb
BLAKE2b-256 fac5f1d0f2fbb7695fcdafecfa0078e347449cca196369ba2f43cb12cf271db6

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7768a1c854b052c905c6b8aae44b37d737ebdcfedca12ff5b5fac1627c1675e4
MD5 27fdbc37d10827b402409788229d932e
BLAKE2b-256 8bb57448e36cf85eddf579cfd11871433813170d46cea338f85efff70441443e

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd107064c38ee3436550b188b2722c934791add4acf871cff32edc6a03cecfb3
MD5 61cbbb98a25d05f9d5b2581218585784
BLAKE2b-256 3cb323fc9386f89e50c4e015949128658835cfee83d1f82c83705db6d39c7887

See more details on using hashes here.

File details

Details for the file quantile_forest-1.3.11-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for quantile_forest-1.3.11-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3f4fdf51369fb994bdbc9dc3bd9a561cbff7c472def1984888647ae8c21ccc70
MD5 eb4781a8467371b96e4f95c3da03a49e
BLAKE2b-256 e30eab19808c7a386c523657aa6f9a4a184feaef5d3d24b5e95476d70b4fde86

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page