Skip to content

wsgan001/Multi-Directional-Rule-Set-Learning

 
 

Repository files navigation

Multi-Directional Rule Set Learning

This project contains a Python module for learning multi-directional rule sets, accompanying our paper:

Schouterden J., Davis J., Blockeel H.: Multi-Directional Rule Set Learning. To be presented at: Discovery Science 2020

Multi-directional rule sets are useful in cases where the user is not able to indicate a target attribute in advance, as they can predict any attribute given all others. A multi-directional rule set can consists of multi-target rules (i.e. rules with multiple targets in their head), or single-target rules (where different rules can have diffferent targets as their head).

Table of Contents

Abstract

The following is the abstract of our paper:

A rule set is a type of classifier that, given attributes X, predicts a target Y. Its main advantage over other types of classifiers is its simplicity and interpretability. A practical challenge is that the end user of a rule set does not always know in advance which target will need to be predicted. One way to deal with this is to learn a multi-directional rule set, which can predict any attribute from all others. An individual rule in such a multi-directional rule set can have multiple targets in its head, and thus be used to predict any one of these.

Compared to the naive approach of learning one rule set for each possible target and merging them, a multi-directional rule set containing multi-target rules is potentially smaller and more interpretable. Training a multi-directional rule set involves two key steps: generating candidate rules and selecting rules. However, the best way to tackle these steps remains an open question.

In this paper, we investigate the effect of using Random Forests as candidate rule generators and propose two new approaches for selecting rules with multi-target heads: MIDS, a generalization of the recent single-target IDS approach, and RR, a new simple algorithm focusing only on predictive performance.

Our experiments indicate that (1) using multi-target rules leads to smaller rule sets with a similar predictive performance, (2) using Forest-derived rules instead of association rules leads to rule sets of similar quality, and (3) RR outperforms MIDS, underlining the usefulness of simple selection objectives.

Basic use

The basic use of IDS, RR and MIDS is illustrated by the following Jupyter notebooks:

These notebooks illustrate these rule set classifiers on the Titanic toy dataset that was provided with the reference IDS implementation accompanying the original IDS paper.

Installation

To use this project as a Python module, you can install it in your Python environment after cloning this repository as follows:

git clone https://github.com/joschout/Multi-Directional_Rule_Set_Learning.git
cd Multi-Directional_Rule_Set_Learning/
python setup.py install develop --user

Depending on what you will use, you will need to install some of the following packages. Note: we assume you have a recent Python 3 distribution installed (we used Python 3.8). Our installation instructions assume the use of a Unix shell.

  • submodmax, for unconstrained submodular maximization of the (M)IDS objective functions. This package is required for our versions of single-target IDS and Multi-directional IDS, as it contains the algorithms used for finding a locally optimal rule set. You can install it as follows:

    git clone https://github.com/joschout/SubmodularMaximization.git
    cd SubmodularMaximization/
    python setup.py install develop --user
  • PyFIM, by Christian Borgelt. This package is used for frequent itemset mining and (single-target) association rule mining, and is a dependency for pyARC. We downloaded the precompiled version and added it to our conda environment. This package is necessary wherever import fim is used.

  • pyARC, by Jiří Filip. This package provides a Python implementation of the Classification Based on Association Rules (CBA) algorithn, which is one of the oldest associative classifiers. This package is a requirement for pyIDS. We make use of some of its data structures, and base some code snippets on theirs. Note: there seems to be an error in the pyARC pip package, making the QuantitativeDataFrame class unavailable. Thus, we recommend installing it directly from the repository.

    git clone https://github.com/jirifilip/pyARC.git
    cd pyARC/
    python setup.py install develop --user
  • pyIDS, by Jiří Filip and Tomas Kliegr. This package provides a great reimplementation of Interpretable Decision Sets (IDS). We include a reworked IDS implementation in this repository, based on and using classes from pyIDS. To install pyIDS, run:

    git clone https://github.com/jirifilip/pyIDS.git
    cd pyIDS  

    Next, copy our the install_utls/pyIDS/setup.py to the pyIDS directory and run:

     python setup.py install develop --user
  • MLxtend is a Python library with an implementation of FP-growth that allows to extract single-target class association rules. Most association rule mining implementations only allow to mine single-target rules for a given target attribute, out of efficiency considerations. We forked MLxtend and modified it to also generate multi-target association rules. Our fork can be found here, while the regular source code can be found here. To install our fork, run:

    git clone https://github.com/joschout/mlxtend.git
    cd mlxtend/
    python setup.py install develop --user
  • gzip and jsonpickle (code, docs) are used to save learned rule sets to disk.

  • tabulate is used to pretty-print tabular data, such as the different subfunction values of the (M)IDS objective function.

  • Apyori, by Yu Mochizuki. Apriori implementation completely in Python.

  • STAC: Statistical Tests for Algorithms Comparisons. (Website, code, doc, paper PDF)

  • graphviz, for visualizing decision trees during decision-tree-to-rule conversion.

  • bidict, used to encode the training data during association rule minin. This way, large strings don't have to be used as data. pip install bidict

Experiments

In our paper, we include two sets of experiments. Here, we describe how to reproduce these experiments. We use data generated using the scripts from the arcBench benchmarking suit, by Tomas Kliegr. You can find the data we used in this repository, in the data directory.

1. Comparing models generated from association rules and Random Forest derived rules.

In our first experiment, we compared two different single-target candidate rule sets our of which an asssociative classifier can be selected:

  1. single-target association rules, and
  2. single-target rules derived from Random Forest trees.

For this experiment, single-target IDS is used as the rule selection algorithm. (Note: in our experiments, we use our MIDS implementation, which corresponds to IDS when given single-target rules.) The code for this experiment can be found in experiments/e1_st_association_vs_tree_rules.

To reproduce this experiment, you can do the following for each candidate rule set type:

2. Comparing multi-directional model generated from multi-target and single-target tree rules

In our second experiment, we compare multi-directional models selected from the following candidate rule sets:

  1. multi-target rules derived from Random Forest trees, and
  2. single-target rules defived from Random Forest trees.

From the multi-target rules, we fit two multi-directional models:

  • a Round Robin model, and
  • a MIDS model.

From the single-target rules, we fit an ensemble of single-target IDS models. The code for this experiment can be found in experiments/e2_multi_directional_model_comparison.

To reproduce this experiments, you can do the following steps for each rule type:

References

This repository accompanies our paper:

Schouterden J., Davis J., Blockeel H.: Multi-Directional Rule Set Learning. To be presented at: Discovery Science 2020

The original Interpretable Decision Sets algorithm was proposed in:

Lakkaraju, H., Bach, S. H., & Leskovec, J. (2016). Interpretable Decision Sets: A Joint Framework for Description and Prediction. In Proceedings of the 22Nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining (pp. 1675–1684). New York, NY, USA: ACM. https://doi.org/10.1145/2939672.2939874

The reference IDS implementation associated with the original IDS paper can be found here. While it includes code to learn an IDS model, there is no code to actually apply the model, and no code to replicate the experiments from the paper. A great re-implementation of IDS by Jiri Filip and Tomas Kliegr called PyIDS can be found here, and is described here:

Jiri Filip, Tomas Kliegr. PyIDS - Python Implementation of Interpretable Decision Sets Algorithm by Lakkaraju et al, 2016. RuleML+RR2019@Rule Challenge 2019. http://ceur-ws.org/Vol-2438/paper8.pdf

Our experiments use data from the UCI machine learning repository, modified for association rule learning using the arcBench benchmarking suite, which was proposed by Tomas Kriegr in:

Kliegr, Tomas. Quantitative CBA: Small and Comprehensible Association Rule Classification Models. arXiv preprint arXiv:1711.10166, 2017.

For comparing our results, we use STAC, a great tool for statistically comparing the performance of algorithms, as proposed in:

I. Rodríguez-Fdez, A. Canosa, M. Mucientes, A. Bugarín, STAC: a web platform for the comparison of algorithms using statistical tests, in: Proceedings of the 2015 IEEE International Conference on Fuzzy Systems (FUZZ-IEEE), 2015.

About

Source code accompanying our paper 'Multi-Directional Rule Set Learning', Discovery Science 2020.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 86.8%
  • Jupyter Notebook 13.2%