Skip to main content

Scikit-learn Wrapper for Regularized Greedy Forest

Project description

License Python Versions PyPI Version Downloads

rgf_python

The wrapper of machine learning algorithm Regularized Greedy Forest (RGF) [1] for Python.

Features

Scikit-learn interface and possibility of usage for multiclass classification problem.

rgf_python contains both original RGF from the paper [1] and FastRGF implementations.

Note that FastRGF is developed to be used with large (and sparse) datasets, so on small datasets it often shows poorer performance compared to vanilla RGF.

Original RGF implementations are available only for regression and binary classification, but rgf_python is also available for multiclass classification by “One-vs-Rest” method.

Examples

from sklearn import datasets
from sklearn.utils.validation import check_random_state
from sklearn.model_selection import StratifiedKFold, cross_val_score
from rgf.sklearn import RGFClassifier

iris = datasets.load_iris()
rng = check_random_state(0)
perm = rng.permutation(iris.target.size)
iris.data = iris.data[perm]
iris.target = iris.target[perm]

rgf = RGFClassifier(max_leaf=400,
                    algorithm="RGF_Sib",
                    test_interval=100,
                    verbose=True)

n_folds = 3

rgf_scores = cross_val_score(rgf,
                             iris.data,
                             iris.target,
                             cv=StratifiedKFold(n_folds))

rgf_score = sum(rgf_scores)/n_folds
print('RGF Classifier score: {0:.5f}'.format(rgf_score))

More examples of using RGF estimators could be found here.

Examples of using FastRGF estimators could be found here.

Software Requirements

  • Python (>= 3.7)

  • joblib

  • scikit-learn (>= 0.18)

Installation

From PyPI using pip:

pip install rgf_python

or from GitHub:

git clone https://github.com/RGF-team/rgf.git
cd rgf/python-package
python setup.py install

MacOS users, rgf_python after the 3.10.0 version is built with g++-11 and cannot be launched on systems with g++-10 and earlier. You should update your g++ compiler if you don’t want to build from sources or install rgf_python 3.10.0 from PyPI which is the last version built with g++-10.

MacOS users, rgf_python after the 3.8.0 version is built with g++-10 and cannot be launched on systems with g++-9 and earlier. You should update your g++ compiler if you don’t want to build from sources or install rgf_python 3.8.0 from PyPI which is the last version built with g++-9.

MacOS users, rgf_python after the 3.5.0 version is built with g++-9 and cannot be launched on systems with g++-8 and earlier. You should update your g++ compiler if you don’t want to build from sources or install rgf_python 3.5.0 from PyPI which is the last version built with g++-8.

MacOS users, rgf_python after the 3.1.0 version is built with g++-8 and cannot be launched on systems with g++-7 and earlier. You should update your g++ compiler if you don’t want to build from sources or install rgf_python 3.1.0 from PyPI which is the last version built with g++-7.

If you have any problems while installing by methods listed above, you should build RGF and FastRGF executable files from binaries on your own and place compiled executable files into directory which is included in environmental variable ‘PATH’ or into directory with installed package. Alternatively, you may specify actual locations of executable files and directory for placing temp files by corresponding flags in configuration file .rgfrc, which you should create into your home directory. The default values are the following: rgf_location=$HOME/rgf ($HOME/rgf.exe for Windows), fastrgf_location=$HOME, temp_location=tempfile.gettempdir() (here is more details about tempfile.gettempdir()). Please take a look at the example of the .rgfrc file:

rgf_location=C:/Program Files/RGF/bin/rgf.exe
fastrgf_location=C:/Program Files/FastRGF/bin
temp_location=C:/Program Files/RGF/temp

Note that while rgf_location should point to a concrete RGF executable file, fastrgf_location should point to a folder in which forest_train.exe and forest_predict.exe FastRGF executable files are located.

Also, you may directly specify installation without automatic compilation:

pip install rgf_python --install-option=--nocompilation

or

git clone https://github.com/RGF-team/rgf.git
cd rgf/python-package
python setup.py install --nocompilation

sudo (or administrator privileges in Windows) may be needed to perform installation commands.

Detailed guides how you can build executable files of RGF and FastRGF from source files could be found in their folders here and here respectively.

Docker image

We provide docker image with installed rgf_python.

# Run docker image
docker run -it rgfteam/rgf /bin/bash
# Run RGF example
python ./rgf/python-package/examples/RGF/comparison_RGF_and_RF_regressors_on_boston_dataset.py
# Run FastRGF example
python ./rgf/python-package/examples/FastRGF/FastRGF_classifier_on_iris_dataset.py

Tuning Hyperparameters

RGF

You can tune hyperparameters as follows.

  • max_leaf: Appropriate values are data-dependent and usually varied from 1000 to 10000.

  • test_interval: For efficiency, it must be either multiple or divisor of 100 (default value of the optimization interval).

  • algorithm: You can select “RGF”, “RGF Opt” or “RGF Sib”.

  • loss: You can select “LS”, “Log”, “Expo” or “Abs”.

  • reg_depth: Must be no smaller than 1. Meant for being used with algorithm = “RGF Opt” or “RGF Sib”.

  • l2: Either 1, 0.1, or 0.01 often produces good results though with exponential loss (loss = “Expo”) and logistic loss (loss = “Log”), some data requires smaller values such as 1e-10 or 1e-20.

  • sl2: Default value is equal to l2. On some data, l2/100 works well.

  • normalize: If turned on, training targets are normalized so that the average becomes zero.

  • min_samples_leaf: Smaller values may slow down training. Too large values may degrade model accuracy.

  • n_iter: Number of iterations of coordinate descent to optimize weights.

  • n_tree_search: Number of trees to be searched for the nodes to split. The most recently grown trees are searched first.

  • opt_interval: Weight optimization interval in terms of the number of leaf nodes.

  • learning_rate: Step size of Newton updates used in coordinate descent to optimize weights.

Detailed instruction of tuning hyperparameters is here.

FastRGF

  • n_estimators: Typical range is [100, 10000], and a typical value is 1000.

  • max_depth: Controls the tree depth.

  • max_leaf: Controls the tree size.

  • tree_gain_ratio: Controls when to start a new tree.

  • min_samples_leaf: Controls the tree growth process.

  • loss: You can select “LS”, “MODLS” or “LOGISTIC”.

  • l1: Typical range is [0, 1000], and a large value induces sparsity.

  • l2: Use a relatively large value such as 1000 or 10000. The larger value is, the larger n_estimators you need to use: the resulting accuracy is often better with a longer training time.

  • opt_algorithm: You can select “rgf” or “epsilon-greedy”.

  • learning_rate: Step size of epsilon-greedy boosting. Meant for being used with opt_algorithm = “epsilon-greedy”.

  • max_bin: Typical range for dense data is [10, 65000] and for sparse data is [10, 250].

  • min_child_weight: Controls the process of discretization (creating bins).

  • data_l2: Controls the degree of L2 regularization for discretization (creating bins).

  • sparse_max_features: Typical range is [1000, 10000000]. Meant for being used with sparse data.

  • sparse_min_occurences: Controls which feature will be selected. Meant for being used with sparse data.

Using at Kaggle Kernels

Kaggle Kernels support rgf_python. Please see this page.

Troubleshooting

If you meet any error, please try to run test_rgf_python.py to confirm successful package installation.

Then feel free to open new issue.

Known Issues

  • FastRGF crashes if training dataset is too small (#data < 28). (rgf#92)

  • FastRGFClassifier and FastRGFRegressor do not provide any built-in method to calculate feature importances. (rgf#109)

FAQ

  • Q: Temporary files use too much space on my hard drive (Kaggle Kernels disc space is exhausted while fitting rgf_python model).

    A: Please see rgf#75.

  • Q: GridSearchCV/RandomizedSearchCV/RFECV or other scikit-learn tool with n_jobs parameter hangs/freezes/crashes when runs with rgf_python estimator.

    A: This is a known general problem of multiprocessing in Python. You should set n_jobs=1 parameter of either estimator or scikit-learn tool.

License

rgf_python is distributed under the MIT license. Please read file LICENSE for more information.

Many thanks to Rie Johnson and Tong Zhang (the authors of RGF).

Other

Shamelessly, some part of the implementation is based on the following code. Thanks!

References

[1] Rie Johnson and Tong Zhang. Learning Nonlinear Functions Using Regularized Greedy Forest. IEEE Transactions on Pattern Analysis and Machine Intelligence, 36(5):942-954, May 2014

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

rgf_python-3.12.0.tar.gz (220.1 kB view details)

Uploaded Source

Built Distributions

rgf_python-3.12.0-py3-none-win_amd64.whl (1.8 MB view details)

Uploaded Python 3 Windows x86-64

rgf_python-3.12.0-py3-none-manylinux1_x86_64.whl (757.8 kB view details)

Uploaded Python 3

rgf_python-3.12.0-py3-none-macosx_10_15_x86_64.macosx_11_6_x86_64.macosx_12_0_x86_64.whl (743.6 kB view details)

Uploaded Python 3 macOS 10.15+ x86-64 macOS 11.6+ x86-64 macOS 12.0+ x86-64

File details

Details for the file rgf_python-3.12.0.tar.gz.

File metadata

  • Download URL: rgf_python-3.12.0.tar.gz
  • Upload date:
  • Size: 220.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for rgf_python-3.12.0.tar.gz
Algorithm Hash digest
SHA256 256885634e94412820c1d95ee8f765207d663d5b64c4bb4cf62d361698a32acc
MD5 d920377f3671f318e408665673f7133f
BLAKE2b-256 8e76f54da5d5adb09db12ea4dbf28ee038f7b6978ac04d006f8e0561974abf05

See more details on using hashes here.

File details

Details for the file rgf_python-3.12.0-py3-none-win_amd64.whl.

File metadata

  • Download URL: rgf_python-3.12.0-py3-none-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for rgf_python-3.12.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 4ede4a61f0a478bbc8f3c326a31a099cc654702ede7e3f2099329b1cdca9ee17
MD5 eab066c41051db9e728599a57edf9da5
BLAKE2b-256 1b0b41ab9b6be4c04cf95d17e4688bb7308bbe1c00d786647ce21b2d3934a3cb

See more details on using hashes here.

File details

Details for the file rgf_python-3.12.0-py3-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: rgf_python-3.12.0-py3-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 757.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/3.10.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for rgf_python-3.12.0-py3-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7b6d0a1f9e9463b056d234e3a181178f3f19d721dc2d1cc180c600f1a9f7a83e
MD5 d88be58140c65875f9621aaf5ed10e52
BLAKE2b-256 ad144c5c69054ef1fc2a76b2824a8fc272541ccd17cef417d077e74fe6725dfb

See more details on using hashes here.

File details

Details for the file rgf_python-3.12.0-py3-none-macosx_10_15_x86_64.macosx_11_6_x86_64.macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for rgf_python-3.12.0-py3-none-macosx_10_15_x86_64.macosx_11_6_x86_64.macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 112838cc99cd312253cdd33c2ad42332dc5c697a9a2117e9694da9f44fba3249
MD5 7a6869b619e35c1b9550178799ad1625
BLAKE2b-256 ce7ec43ac7b0ae984ab859837c26e8bee7729e855389974b2a1166304427ebd7

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