Skip to main content

Scikit-learn Wrapper for Regularized Greedy Forest

Project description

Build Status Travis Build Status AppVeyor License Python Versions PyPI Version

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 vanilla RGF from the paper [1] and FastRGF [2] 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 Classfier 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 (2.7 or >= 3.4)

  • scikit-learn (>= 0.18)

Installation

From PyPI using pip:

pip install rgf_python

or from GitHub:

git clone --recursive https://github.com/fukatani/rgf_python.git
cd rgf_python
python setup.py install

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 platform dependent: for Windows exe_location=$HOME/rgf.exe, fastrgf_location=$HOME, temp_location=$HOME/temp/rgf and for others exe_location=$HOME/rgf, fastrgf_location=$HOME, temp_location=/tmp/rgf. Here is the example of .rgfrc file:

exe_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 exe_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 --recursive https://github.com/fukatani/rgf_python.git
cd rgf_python
python setup.py install --nocompilation

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

Here is the guide how you can build executable files from binaries. The file for RGF will be in rgf_python/include/rgf/bin folder and files for FastRGF will appear in rgf_python/include/fast_rgf/bin folder.

RGF Compilation

Windows
Precompiled file

The easiest way. Just take precompiled file from rgf_python/include/rgf/bin. For Windows 32-bit rename rgf32.exe to rgf.exe and take it.

Visual Studio (existing solution)
  1. Open directory rgf_python/include/rgf/Windows/rgf.

  2. Open rgf.sln file with Visual Studio and choose BUILD -> Build Solution (Ctrl+Shift+B). If you are asked to upgrade solution file after opening it click OK. If you have errors about Platform Toolset go to PROJECT -> Properties -> Configuration Properties -> General and select the toolset installed on your machine.

MinGW (existing makefile)

Build executable file with MinGW g++ from existing makefile (you may want to customize this file for your environment).

cd rgf_python/include/rgf/build
mingw32-make
CMake and Visual Studio

Create solution file with CMake and then compile with Visual Studio.

cd rgf_python/include/rgf/build
cmake ../ -G "Visual Studio 10 2010"
cmake --build . --config Release

If you are compiling on 64-bit machine then add Win64 to the end of generator’s name: Visual Studio 10 2010 Win64. We tested following versions of Visual Studio:

  • Visual Studio 10 2010 [Win64]

  • Visual Studio 11 2012 [Win64]

  • Visual Studio 12 2013 [Win64]

  • Visual Studio 14 2015 [Win64]

  • Visual Studio 15 2017 [Win64]

Other versions may work but are untested.

CMake and MinGW

Create makefile with CMake and then compile with MinGW.

cd rgf_python/include/rgf/build
cmake ../ -G "MinGW Makefiles"
cmake --build . --config Release
*nix
g++ (existing makefile)

Build executable file with g++ from existing makefile (you may want to customize this file for your environment).

cd rgf_python/include/rgf/build
make
CMake

Create makefile with CMake and then compile.

cd rgf_python/include/rgf/build
cmake ../
cmake --build . --config Release

FastRGF Compilation

Note that compilation only with g++-5 and newer versions is possible. Other compilers are unsupported and older versions are produces corrupted files.

Windows

CMake and MinGW-w64

On Windows compilation only with MinGW-w64 is supported because only this version provides POSIX threads.

cd rgf_python/include/fast_rgf/build
cmake .. -G "MinGW Makefiles"
mingw32-make
mingw32-make install
*nix
CMake
cd rgf_python/include/fast_rgf/build
cmake ..
make
make install
Docker image

We provide docker image with installed rgf_python.

# Run docker image
docker run -it fukatani/rgf_python /bin/bash
# Run RGF example
python ./rgf_python/examples/RGF/comparison_RGF_and_RF_regressors_on_boston_dataset.py
# Run FastRGF example
python ./rgf_python/examples/FastRGF/FastRGF_classifier_on_iris_dataset.py

Tuning Hyper-parameters

RGF

You can tune hyper-parameters 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” or “Expo”.

  • 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 hyper-parameters 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_python#92)

  • FastRGF crashes if sample weights is too small. The value of the weight is dependent on the size of the dataset. (rgf_python#137)

    For instance, sample_weight = [0.001, 0.001, ..., 0.001] leads to a crash for #data < 200.

  • rgf_python does not provide any built-in method to calculate feature importances. (rgf_python#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_python#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 GNU General Public License v3 (GPLv3). Please read file LICENSE for more information.

rgf_python includes RGF version 1.2 which is distributed under the GPLv3. Original CLI implementation of RGF you can download at http://tongzhang-ml.org/software/rgf.

rgf_python includes FastRGF version 0.5 which is distributed under the MIT license. Original CLI implementation of FastRGF you can download at https://github.com/baidu/fast_rgf.

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

[2] Tong Zhang, FastRGF: Multi-core Implementation of Regularized Greedy Forest

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.0.0.tar.gz (215.9 kB view hashes)

Uploaded Source

Built Distributions

rgf_python-3.0.0-py2.py3-none-win_amd64.whl (1.7 MB view hashes)

Uploaded Python 2 Python 3 Windows x86-64

rgf_python-3.0.0-py2.py3-none-win32.whl (1.6 MB view hashes)

Uploaded Python 2 Python 3 Windows x86

rgf_python-3.0.0-py2.py3-none-manylinux1_x86_64.whl (761.7 kB view hashes)

Uploaded Python 2 Python 3

rgf_python-3.0.0-py2.py3-none-manylinux1_i686.whl (795.7 kB view hashes)

Uploaded Python 2 Python 3

rgf_python-3.0.0-py2.py3-none-macosx_10_6_x86_64.macosx_10_7_x86_64.macosx_10_8_x86_64.macosx_10_9_x86_64.macosx_10_10_x86_64.macosx_10_11_x86_64.macosx_10_12_x86_64.macosx_10_13_x86_64.whl (728.0 kB view hashes)

Uploaded Python 2 Python 3 macOS 10.10+ x86-64 macOS 10.11+ x86-64 macOS 10.12+ x86-64 macOS 10.13+ x86-64 macOS 10.6+ x86-64 macOS 10.7+ x86-64 macOS 10.8+ x86-64 macOS 10.9+ x86-64

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