This repository contains the code for
- two papers,
- (parts of) a dissertation,
- and the Python package
csd
.
This document provides:
- An overview of the related publications.
- An outline of the repo structure.
- Steps for setting up a virtual environment and reproducing the experiments.
Bach, Jakob. "Using Constraints to Discover Sparse and Alternative Subgroup Descriptions"
is published on arXiv.
You can find the paper here.
You can find the corresponding complete experimental data (inputs as well as results) on RADAR4KIT.
Use the tags run-2024-05-13
and evaluation-2024-05-15
for reproducing the experiments.
Bach, Jakob. "..."
(To be published at a conference or in a journal. Once it's published, we'll add a link to it here. We'll link the experimental data, too.)
Bach, Jakob. "Leveraging Constraints for User-Centric Feature Selection"
is a dissertation in progress.
Once it is published, we will link it here as well.
You can find the corresponding complete experimental data (inputs as well as results) on RADAR4KIT.
Use the tags run-2024-05-13-dissertation
and evaluation-2024-11-02-dissertation
for reproducing the experiments.
Currently, the repository contains seven Python files and four non-code files. The non-code files are:
.gitignore
: For Python development.LICENSE
: The software is MIT-licensed, so feel free to use the code.README.md
: You are here 🙃requirements.txt
: To set up an environment with all necessary dependencies; see below for details.
The code files comprise our experimental pipeline (see below for details):
prepare_datasets.py
: First stage of the experiments (download prediction datasets).prepare_demo_datasets.py
: Alternative script for the first stage of the experiments, preparing fewer and smaller datasets (used in some preliminary benchmarking experiments).run_experiments.py
: Second stage of the experiments (run subgroup discovery).run_evaluation_(arxiv|dissertation|short).py
: Third stage of the experiments (compute statistics and create plots).data_handling.py
: Functions for working with prediction datasets and experimental data.
Additionally, we have organized the subgroup-discovery methods for our experiments as the standalone Python package csd
,
located in the directory csd_package/
.
See the corresponding README for more information.
Before running the scripts to reproduce the experiments, you should
- Set up an environment (optional but recommended).
- Install all necessary dependencies.
Our code is implemented in Python (version 3.8; other versions, including lower ones, might work as well).
If you use conda
, you can directly install the correct Python version into a new conda
environment
and activate the environment as follows:
conda create --name <conda-env-name> python=3.8
conda activate <conda-env-name>
Choose <conda-env-name>
as you like.
To leave the environment, run
conda deactivate
We used virtualenv
(version 20.24.3; other versions might work as well)
to create an environment for our experiments.
First, you need to install the correct Python version yourself.
Let's assume the Python executable is located at <path/to/python>
.
Next, you install virtualenv
with
python -m pip install virtualenv==20.24.3
To set up an environment with virtualenv
, run
python -m virtualenv -p <path/to/python> <path/to/env/destination>
Choose <path/to/env/destination>
as you like.
Activate the environment in Linux with
source <path/to/env/destination>/bin/activate
Activate the environment in Windows (note the back-slashes) with
<path\to\env\destination>\Scripts\activate
To leave the environment, run
deactivate
After activating the environment, you can use python
and pip
as usual.
To install all necessary dependencies for this repo, run
python -m pip install -r requirements.txt
If you make changes to the environment and you want to persist them, run
python -m pip freeze > requirements.txt
After setting up and activating an environment, you are ready to run the code. Run
python -m prepare_datasets
to download and pre-process the input data for the experiments.
Next, start the experimental pipeline with
python -m run_experiments
Depending on your hardware, this might take some time. For example, we had a runtime of roughly 34 hours on a server with an AMD EPYC 7551 CPU (32 physical cores, base clock of 2.0 GHz).
To print statistics and create the plots, run
python -m run_evaluation_<<version>>
(The evaluation length differs between versions, as does the plot formatting. The arXiv version has the longest and most detailed evaluation.)
All scripts have a few command-line options, which you can see by running the scripts like
python -m prepare_datasets --help