Our package scikit-activeml is a Python library for active learning on top of SciPy and scikit-learn.
Project description
Machine learning applications often need large amounts of training data to perform well. Whereas unlabeled data can be easily gathered, the labeling process is difficult, time-consuming, or expensive in most applications. Active learning can help solve this problem by querying labels for those data samples that will improve the performance the most. Thereby, the goal is that the learning algorithm performs sufficiently well with fewer labels
With this goal in mind, scikit-activeml has been developed as a Python module for active learning on top of scikit-learn. The project was initiated in 2020 by the Intelligent Embedded Systems Group at the University of Kassel and is distributed under the 3-Clause BSD licence.
User Installation
The easiest way of installing scikit-activeml is using pip:
pip install -U scikit-activeml
Examples
We provide a broad overview of different use-cases in our tutorial section offering
Deep Pool-based Active Learning - scikit-activeml with Skorch,
Pool-based Active Learning for Regression - Getting Started,
Multi-annotator Pool-based Active Learning - Getting Started,
and Batch Stream-based Active Learning with Pool Query Strategies.
Two simple examples illustrating the straightforwardness of implementing active learning cycles with our Python package skactiveml are given in the following.
Pool-based Active Learning
The following code snippet implements an active learning cycle with 20 iterations using a Gaussian process classifier and uncertainty sampling. To use other classifiers, you can simply wrap classifiers from sklearn or use classifiers provided by skactiveml. Note that the main difficulty using active learning with sklearn is the ability to handle unlabeled data, which we denote as a specific value (MISSING_LABEL) in the label vector y. More query strategies can be found in the documentation.
import numpy as np
from sklearn.gaussian_process import GaussianProcessClassifier
from sklearn.datasets import make_blobs
from skactiveml.pool import UncertaintySampling
from skactiveml.utils import unlabeled_indices, MISSING_LABEL
from skactiveml.classifier import SklearnClassifier
# Generate data set.
X, y_true = make_blobs(n_samples=200, centers=4, random_state=0)
y = np.full(shape=y_true.shape, fill_value=MISSING_LABEL)
# Use the first 10 instances as initial training data.
y[:10] = y_true[:10]
# Create classifier and query strategy.
clf = SklearnClassifier(
GaussianProcessClassifier(random_state=0),
classes=np.unique(y_true),
random_state=0
)
qs = UncertaintySampling(method='entropy')
# Execute active learning cycle.
n_cycles = 20
for c in range(n_cycles):
query_idx = qs.query(X=X, y=y, clf=clf)
y[query_idx] = y_true[query_idx]
# Fit final classifier.
clf.fit(X, y)
As a result, we obtain an actively trained Gaussian process classifier. A corresponding visualization of its decision boundary (black line) and the sample utilities (greenish contours) is given below.
Stream-based Active Learning
The following code snippet implements an active learning cycle with 200 data points and the default budget of 10% using a pwc classifier and split uncertainty sampling. Like in the pool-based example you can wrap other classifiers from sklearn, sklearn compatible classifiers or like the example classifiers provided by skactiveml.
import numpy as np
from sklearn.datasets import make_blobs
from skactiveml.classifier import ParzenWindowClassifier
from skactiveml.stream import Split
from skactiveml.utils import MISSING_LABEL
# Generate data set.
X, y_true = make_blobs(n_samples=200, centers=4, random_state=0)
# Create classifier and query strategy.
clf = ParzenWindowClassifier(random_state=0, classes=np.unique(y_true))
qs = Split(random_state=0)
# Initializing the training data as an empty array.
X_train = []
y_train = []
# Initialize the list that stores the result of the classifier's prediction.
correct_classifications = []
# Execute active learning cycle.
for x_t, y_t in zip(X, y_true):
X_cand = x_t.reshape([1, -1])
y_cand = y_t
clf.fit(X_train, y_train)
correct_classifications.append(clf.predict(X_cand)[0] == y_cand)
sampled_indices = qs.query(candidates=X_cand, clf=clf)
qs.update(candidates=X_cand, queried_indices=sampled_indices)
X_train.append(x_t)
y_train.append(y_cand if len(sampled_indices) > 0 else MISSING_LABEL)
As a result, we obtain an actively trained Parzen window classifier. A corresponding visualization of its accuracy curve accross the active learning cycle is given below.
Query Strategy Overview
For better orientation, we provide an overview (incl. paper references and visualizations) of the query strategies implemented by skactiveml.
Citing
If you use skactiveml in one of your research projects and find it helpful, please cite the following:
@article{skactiveml2021, title={scikit-activeml: {A} {L}ibrary and {T}oolbox for {A}ctive {L}earning {A}lgorithms}, author={Daniel Kottke and Marek Herde and Tuan Pham Minh and Alexander Benz and Pascal Mergard and Atal Roghman and Christoph Sandrock and Bernhard Sick}, journal={Preprints}, doi={10.20944/preprints202103.0194.v1}, year={2021}, url={https://github.com/scikit-activeml/scikit-activeml} }
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scikit-activeml-0.4.1.tar.gz
.
File metadata
- Download URL: scikit-activeml-0.4.1.tar.gz
- Upload date:
- Size: 177.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b05e821a7c1a407c6ab0da817f27830fdf6cfedbb70e5bfe91f1496bfdefb8c2 |
|
MD5 | 9e1a3f6281118e5bf44c64120673e51e |
|
BLAKE2b-256 | 4934ded2ec48583fe3b72235cb7a3d6b00fe715b615f66154bf3e9a6a5813b5e |
File details
Details for the file scikit_activeml-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: scikit_activeml-0.4.1-py3-none-any.whl
- Upload date:
- Size: 252.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7861f9e0f6080f3f74cc26128c36cf434ba59ef871f511d16d8fc17f468707de |
|
MD5 | a61131f806aa1cd28d375a9b05544a82 |
|
BLAKE2b-256 | 97686dbbf002a1ce2825c5d3e40823fbd64811c38f1880e487ffe7c79a2f21e1 |