SIRUS: Stable and Interpretable RUle Set

C. Benard (Safran Tech & Sorbonne University)

Introduction

SIRUS (Stable and Interpretable RUle Set) is a regression and classification algorithm based on random forests, which takes the form of a short list of rules. SIRUS combines the simplicity of decision trees with the predictivity of random forests. More importantly, the rule selection is stable with respect to data perturbation. The core aggregation principle of random forests is kept, but instead of aggregating predictions, SIRUS selects the most frequent nodes of the forest to form a stable rule ensemble model. SIRUS for classification is defined in (Benard et al. 2021a), and the extension to regression is provided in (Benard et al. 2021b). This R package is a fork from the project ranger (https://github.com/imbs-hl/ranger).

Example of SIRUS with the Titanic dataset, where ps is the survival probability:


Installation

To install sirus, download sirus_0.3.3.tar.gz and just run: install.packages(“sirus_0.3.3.tar.gz”, repos = NULL)

R version >= 3.6 is required. If you compile yourself, the new RTools toolchain is required.

Pre-compiled binaries are available for windows (sirus_0.3.3.zip) and linux (sirus_0.3.3_R_x86_64-pc-linux-gnu.tar.gz).

Usage

For usage of the package see the Examples section.

If you find any bug, or have any suggestions for improvement, please let us know !

References