Skip to main content

RFGBoost: async Random Forest + gradient boosting engine in Rust with CI-based convergence

Project description

rfgboost

Gradient boosting with asynchronous random forests, implemented in Rust with Python bindings.

Installation

pip install rfgboost

From source (requires Rust toolchain):

pip install maturin
maturin develop --release

Quick Start

from rfgboost import RFGBoostClassifier, RFGBoostRegressor

# Classification
clf = RFGBoostClassifier(n_estimators=20, rf_n_estimators=50, rf_max_depth=6)
clf.fit(X_train, y_train)
proba = clf.predict_proba(X_test)
ci = clf.predict_ci(X_test)  # Wilson score intervals

# Regression
reg = RFGBoostRegressor(n_estimators=20, rf_n_estimators=50, rf_max_depth=6)
reg.fit(X_train, y_train)
pred = reg.predict(X_test)
ci = reg.predict_ci(X_test)  # Split conformal prediction intervals

# Async mode (adaptive early stopping via CI convergence)
clf = RFGBoostClassifier(async_mode=True, tol=0.0)

# Categorical features (WOE encoding via fastwoe-rs)
clf = RFGBoostClassifier(cat_features=[0, 1, 2])

Components

Class Description
RFGBoostClassifier Gradient boosting with RF base learners (binary + multiclass)
RFGBoostRegressor Gradient boosting with RF base learners (regression)
RandomForestClassifier Standalone random forest classifier
RandomForestRegressor Standalone random forest regressor
RandomForestUnsupervised Breiman's unsupervised RF (proximity, outliers, MDS)
DecisionTree Single decision tree (exact sklearn match)
TreeSHAP Exact tree-path-dependent SHAP values

Key Features

  • Async tree building: Rayon work-stealing with AtomicBool convergence flag. Unstarted trees skip once the ensemble converges.
  • CI-based stopping: Wilson intervals (classification) and normal CI (regression) determine convergence automatically with tol=0.
  • Histogram splitting: 256-bin quantile histograms for O(n + bins) split search.
  • Conformal prediction: Split conformal CIs for regression with coverage guarantees.
  • Unsupervised RF: Proximity matrix, outlier detection, MDS embedding, feature importance from Breiman's original method.
  • Exact TreeSHAP: Matches the official SHAP package to machine precision.

License

MIT

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

rfgboost-0.1.0.tar.gz (42.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rfgboost-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rfgboost-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (608.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (608.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (608.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-cp314-cp314-win_amd64.whl (436.8 kB view details)

Uploaded CPython 3.14Windows x86-64

rfgboost-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rfgboost-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (605.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (546.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rfgboost-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (563.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rfgboost-0.1.0-cp313-cp313-win_amd64.whl (436.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rfgboost-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rfgboost-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (605.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (546.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rfgboost-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (563.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rfgboost-0.1.0-cp312-cp312-win_amd64.whl (436.8 kB view details)

Uploaded CPython 3.12Windows x86-64

rfgboost-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rfgboost-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (605.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (546.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rfgboost-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (563.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rfgboost-0.1.0-cp311-cp311-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rfgboost-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rfgboost-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (607.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (545.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rfgboost-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (564.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rfgboost-0.1.0-cp310-cp310-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.10Windows x86-64

rfgboost-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (629.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rfgboost-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (607.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rfgboost-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rfgboost-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (607.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file rfgboost-0.1.0.tar.gz.

File metadata

  • Download URL: rfgboost-0.1.0.tar.gz
  • Upload date:
  • Size: 42.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rfgboost-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6c7e358e0eab7284be2d6e8b89f8ccea4df36b126fbfef0f1a73e1f4e0d81b05
MD5 700a3576b6b0708422b65cb7e3f4324e
BLAKE2b-256 95e233e88f7d43636afb0f50247b268ba3130953b183ea9c922f57264612588d

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b2d6deab7b22136e0a9e9cb4054c2d953d63ffc515d93f5b71850361ef16f1f
MD5 8c7cbbf155103de88bed36a5b76e905a
BLAKE2b-256 5fd8e0bf10979a38eacb63f47d208aafde18ba35df2c4016ff6a506d43b19e19

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b786ce5844561112d2feaad8679c55171fdaa0e0811212af085fad7fc8012e80
MD5 c66f097138f3c5e6ed48f1bddf19e1f5
BLAKE2b-256 a00f1e3fafa5a5f511afc6802e172bf9a1af72face18acf157af5d27eb7101ae

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b275a35451bc231f918246a442a64bcd453bf1f5a639de7d0f5c11d0a6781513
MD5 1422d53012472f5448dfdf08b0650d04
BLAKE2b-256 031063401305d3643a61ab77fccca8b9ac8269e6896e855a2fd49a3534a83d28

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4623510d3fe55d67571ef37a5bcc2c9b36ce0739d3beee28ca4cb24f2aa7534c
MD5 faf81d413ef001ede978fb3b9f014d58
BLAKE2b-256 a46eb84d7441ae278ad8914a051d0f571eee9a311719d4dd8a0803181b127467

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rfgboost-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 436.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rfgboost-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c15c4b5690a87148f213690095d623f8e42c9e7ec39c7cb0b52ac2c280c5b00f
MD5 e08ee7e7d8a210b559f28a3ec0cbe53b
BLAKE2b-256 8e5f1e65ea014dd6e217e60933c0daf70a26b11cebd4dc9ee5ab2c3aaf1fe211

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5464486802440e6103a5133125dc48a4ddc4c4d011dede2981c9967e0261fa3
MD5 c59de59d2c00c7612569facae41c0d20
BLAKE2b-256 0aa17095ccf038c91c028383e9f31cc70ada5441044bbd306cf309dcf6ac23de

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9803bdbb236ebbc186ac95c4da9a8c6ea126ccb90d5cf2e4df0c366361d776d3
MD5 aa1b213df9d86988661fc1da6af2ba56
BLAKE2b-256 746823ecdaaa0c1895403f9a2f3e625eb5e8dd281e7e3c0603f4caa461e1d20e

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f8d30bc0eb4504c7494e2639f8c94d21cb7fcfc5de91d3a60ca7b59ef79681b
MD5 26131f669ffb4d79e1882ffd36897f31
BLAKE2b-256 9adc170d69a44f9039da6bf66e2f08284dc6e2f1bb0a7859ccffef6843cdfcaf

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c903b61772897f8da440ee128bd2dfadee1c71060fc3ea9127c6993747a11a15
MD5 738fe181077da27466201e792dd6ffe4
BLAKE2b-256 2e137264b6b513786d9fc63ba2983974d78f0cc8fa6033f889a60d8f31378025

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rfgboost-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 436.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rfgboost-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f227929e2e3a6aee0509d7dd7813b683e3cc0b4d296d2f5ff73a7a36e2cf5579
MD5 8a27ac40bfc9360da60bd71c750d7636
BLAKE2b-256 ffbac25140144e6212ba6ec2ea3fc7af9627838a427dcd75e1cae5294cb170dc

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fb2771f2f4e19b7dc310d4e662000b4a52fa7c061303cc3e8003aa26549b3e8
MD5 f1dc14cc638e945fc32656b5f56aaeb1
BLAKE2b-256 0916150e5f40a4b78684eaebe6bf4910719f4d776c704ab69beba93d89bc0c3e

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6849752c115706693d82b353e2c44efe395dab6e2adf293074a005e6d911c27
MD5 bd2b1e5ecb7ae58e5caaf3000d569657
BLAKE2b-256 14f5e057a7a4356fa03c90e119032e579e60a50fe215db2a3adf2fd452ac9aad

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 055c993477bc6dd6c3de622425be3a24adcf8c8a2a8b7fa224131ac60093aa18
MD5 7c64e0d1acff34d86be04dd054fb8ef7
BLAKE2b-256 166b8cbbf9ba3068c67661ee6d0b3abf1e1311f0287f137b928371be24a7c890

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7c349dfb1b00cf95f957af18579afc4584cca5f6d5b53b643554ada3f353f2b
MD5 d06795a9bc6cdb08e25c2120584a45d7
BLAKE2b-256 4b71512ad067a52d311d4432b19f8b817a31d44483d542766cde98548a1eef79

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rfgboost-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 436.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rfgboost-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be332fea882295529c4d70e34227018e5eb18758c3f93c8cf409e11fedd31ff3
MD5 1aa052669c35fbbb054c70182f065e12
BLAKE2b-256 2b8ef4226a3073cd1012f6f41ce592ed2861742a0197f37ac0e2ae95004810d6

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 327b559445caab29872410249b58a31f29f6909d945b9a116d3cc12cf75bae74
MD5 9f4ca2569c34aa503665695df8ba99b1
BLAKE2b-256 61a772a9dd15aa8c04f2e1698ef9bb5449dbff2b82ba352bf825ea80fdb17ad0

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 625b12d5edfad949ecf1f6814a05ffc75c5d3847350664be944898f128b107f3
MD5 8d784bc288022a7da37a6e0218b7310a
BLAKE2b-256 d6f73a887d860a56847919c311d31d719cef5ac34f81cef4d5388fffd22bedb0

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52bcbba4f0ba325b37c6c50749db5c5ac44b3ecf90a4323d9ad9114c8f69b084
MD5 915265214d863bea7e63e9260588ce2a
BLAKE2b-256 2adc272d553d7156892c2a0e58a1c4ab31a07390536147edc2373cc1c84ad0e9

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39b3a1da64b4c826676b31ab52069860b73e4f05f4b106aa2556d232a2d9cfda
MD5 d7706ad8ac164eb7858e3283c241d442
BLAKE2b-256 0c04fc17b0b0f124522e855673e503f8f84b3ceacb154c5947e0a923214911f1

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rfgboost-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rfgboost-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86ac0c9f7e207b03e0f7c86692cdf237b98ccbc47ef1880cf7b0b35f59a91765
MD5 3d2537246aa0fbc40639ad111cf92d53
BLAKE2b-256 bf66b6d7e559a828335ec8afba6611f06d20f0e8b24009d253f66636e3bf9c1d

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38a3baf76cbb07142878fc460224f8f053150aec56cafbc89f789dc5654cec12
MD5 cd749257b1a9c143904239a1d31b7cff
BLAKE2b-256 922d17d60ac6d1eb1dbe51c3e6f9e786e838c431ff1de92d008ab86afce89ba8

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32a85487a57a6aa60445d153f0fe3c727ad8ba1ecf337e882b12a101f8ec7374
MD5 ceff6325f5f485147015d57c49648147
BLAKE2b-256 df0c18bad05349a4a0d22b28994bb645ef5f11aa3378945d6865229eb917a3b9

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 986316c2b1f21bb1797276d23a634454249bce041d19da5de79fd55e9475d243
MD5 b4da5bca5cd4676ec9025f07504e90e8
BLAKE2b-256 df85d08299fb687ea11f3270e48a0ecf58c16520d095f86a63dc8a47dcd4716d

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3147be041e8228ce79fb0a44300159cfc2d0df3f96ef32d2f23e47793e559c3
MD5 52b6afccf15afea1254ea2b60fa83b59
BLAKE2b-256 fb730ee11828526240a810d0879a976f07c2c42df62cc45b23b58b3aef1ec317

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rfgboost-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rfgboost-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3af635059a054fe05ad116baab81724382a4efe67ca41f1497a3023a28ab930
MD5 57258ad3afa838b1a8167d12b5dc0234
BLAKE2b-256 243e709fc5d3645f603ef36d9d834ee2ce9ab8d26e0a594fd0ce9decbb11aa1e

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8146e78bc50f3ca37918b501a0791e17eefb66d5e0a343c08b3e1ac5f8e17f9e
MD5 740123d590a952305f724b1b54984a6c
BLAKE2b-256 e3c7969a49d26dcaefe91e1793cc1ba26f668d8a01bf447dfde594d45e1126e1

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7b7c229db0e4acf0965c703ae9bf60c2db211acebb25b1e9b1a5ff34041c294
MD5 bc57dc6059425ff266b5ef61be7fa111
BLAKE2b-256 157c435327dd069e351369cc11518882b4b3b02ec1d377f4e2c9320d16a1f459

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e37c71e439578b1e9b415f056757d181914ed5fe876298a8791928e9ef802637
MD5 4fac57fef1a492cdea228a2df869ec76
BLAKE2b-256 795f5d8298230d458881e19447696aed00e0f752b6d13f796776ea1733b7c916

See more details on using hashes here.

File details

Details for the file rfgboost-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rfgboost-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f70e42da4b4fe6150be30ce90d7b0c2550b9d3c72666e31d05c1836fe41e4940
MD5 5f410589e88912558f6bffc84ffe2f6d
BLAKE2b-256 b51ca803acc5f23007c545e36061432c46401ad573b1fa52ff7f12f2e76cff90

See more details on using hashes here.

Supported by

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