Skip to main content

License Coverage Status Tests Read the Docs

PyPI Version PyPI status Code Style

ALPBench: A Benchmark for Active Learning Pipelines on Tabular Data

ALPBench is a Python package for the specification, execution, and performance monitoring of active learning pipelines (ALP) consisting of a learning algorithm and a query strategy for real-world tabular classification tasks. It has built-in measures to ensure evaluations are done reproducibly, saving exact dataset splits and hyperparameter settings of used algorithms. In total, ALPBench consists of 86 real-world tabular classification datasets and 5 active learning settings, yielding 430 active learning problems. However, the benchmark allows for easy extension such as implementing your own learning algorithm and/or query strategy and benchmark it against existing approaches.

🛠️ Install

ALPBench is intended to work with Python 3.10 and above.

# The base package can be installed via pip:
pip install alpbench

# Alternatively, you can install the full package via pip:
pip install alpbench[full]

# Or you can install the package from source:
git clone https://github.com/ValentinMargraf/ActiveLearningPipelines.git
cd ActiveLearningPipelines
conda create --name alpbench python=3.10
conda activate alpbench

# Install for usage (without TabNet and TabPFN)
pip install -r requirements.txt

# Install for usage (with TabNet and TabPFN)
pip install -r requirements_full.txt

Documentation at https://activelearningpipelines.readthedocs.io/en/latest/

⭐ Quickstart

You can use ALPBench in different ways. There already exist quite some learners and query strategies that can be run through accessing them with their name, as can be seen in the minimal example below. In the ALP.pipeline module you can also implement your own (new) query strategies.

📈 Fit an Active Learning Pipeline

Fit an ALP on dataset with openmlid 31, using a random forest and margin sampling. You can find similar example code snippets in examples/.

from sklearn.metrics import accuracy_score

from alpbench.benchmark.BenchmarkConnector import DataFileBenchmarkConnector
from alpbench.evaluation.experimenter.DefaultSetup import ensure_default_setup
from alpbench.pipeline.ALPEvaluator import ALPEvaluator

# create benchmark connector and establish database connection
benchmark_connector = DataFileBenchmarkConnector()

# load some default settings and algorithm choices
ensure_default_setup(benchmark_connector)

evaluator = ALPEvaluator(benchmark_connector=benchmark_connector,
                         setting_name="small", openml_id=31, query_strategy_name="margin", learner_name="rf_gini")
alp = evaluator.fit()

# fit / predict and evaluate predictions
X_test, y_test = evaluator.get_test_data()
y_hat = alp.predict(X=X_test)
print("final test acc", accuracy_score(y_test, y_hat))

>> final
test
acc
0.7181818181818181

Changelog

v0.1.0 (2024-06-13)

Initial release

  • pipeline can be used to combine learning algorithms and query strategies into active learning pipelines
  • evaluation provides tools to evaluate active learning pipelines
  • benchmark monitors the performance of active learning pipelines over time and store results in a database

v0.1.1 (2024-06-14)

  • extra code for tabnet does no longer need to be included from the repo

v0.1.2 (2024-07-10)

  • added plotting functionality to evaluation to generate budget curves
  • notebook in docs explains how to extract results from previously run experiments and plot budget curves

Release files for alpbench 0.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for alpbench 0.1.2
File Size Uploaded
alpbench-0.1.2.tar.gz 90.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for alpbench 0.1.2
File Interpreter ABI Platform
alpbench-0.1.2-py3-none-any.whl Python 3 none any Details

Total release size: 196.6 kB

Release files / alpbench-0.1.2.tar.gz

Download URL alpbench-0.1.2.tar.gz
Size 90.3 kB
Tags Source
SHA-256 checksum
How to use checksums
e90884afc979c0e8e560bc20d176415e5155bcb5790f2c05c723a627eb543189
BLAKE2b-256 checksum
How to use checksums
472e9f184459a6771fe09eb31ddd64e7d372ad34d96192b43245d78abb0320bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.10.12

Release files / alpbench-0.1.2-py3-none-any.whl

Download URL alpbench-0.1.2-py3-none-any.whl
Size 106.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
e7afff22409a3b1fe9606c49edd637cef4968baac1929fb9dc5fa12e52141066
BLAKE2b-256 checksum
How to use checksums
66a30e4fd16d665957b47180d5539c58b17c4dfce268b1ea11a39f8482abfbda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.10.12

Release history Release notifications | RSS feed

This release

0.1.2 This release

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page