Skip to main content

Active learning for computer vision.

Project description

Python Version PyPI Downloads License

active-vision

Explore the docs »
Quickstart · Feature Request · Report Bug · Discussions · About

The goal of this project is to create a framework for the active learning loop for computer vision. The diagram below shows a general workflow of how the active learning loop works.

active-vision

Supported tasks:

  • Image classification
  • Object detection
  • Segmentation

Supported models:

  • Fastai models
  • Torchvision models
  • Timm models
  • Hugging Face models

Supported Active Learning Strategies:

Uncertainty Sampling:

  • Least confidence
  • Margin of confidence
  • Ratio of confidence
  • Entropy

Diverse Sampling:

  • Random sampling
  • Model-based outlier
  • Embeddings-based outlier
  • Cluster-based
  • Representative

📦 Installation

Get a release from PyPI

pip install active-vision

Install bleeding edge from source

pip install git+https://github.com/dnth/active-vision.git

Local install

git clone https://github.com/dnth/active-vision.git
cd active-vision
pip install -e .

[!TIP] I recommend using uv to set up a virtual environment and install the package. You can also use other virtual env of your choice.

If you're using uv:

uv venv
uv sync

Once the virtual environment is created, you can install the package using pip.

If you're using uv add a uv before the pip install command to install into your virtual environment. Eg:

uv pip install active-vision

🚀 Quickstart

Open In Colab Open In Kaggle

The following are code snippets for the active learning loop in active-vision. I recommend running the quickstart notebook in Colab or Kaggle to see the full workflow.

from active_vision import ActiveLearner

# Create an active learner instance
al = ActiveLearner(name="cycle-1")

# Load model
al.load_model(model="resnet18", pretrained=True)

# Load dataset 
al.load_dataset(train_df, filepath_col="filepath", label_col="label", batch_size=8)

# Train model
al.train(epochs=10, lr=5e-3)

# Evaluate the model on a *labeled* evaluation set
accuracy = al.evaluate(eval_df, filepath_col="filepath", label_col="label")

# Get summary of the active learning cycle
al.summary()

# Get predictions from an *unlabeled* set
pred_df = al.predict(filepaths)

# Sample images using a combination of active learning strategies
samples = al.sample_combination(
    pred_df,
    num_samples=50,
    combination={
        "least-confidence": 0.4,
        "ratio-of-confidence": 0.2,
        "entropy": 0.2,
        "model-based-outlier": 0.1,
        "random": 0.1,
    },
)

# Launch a Gradio UI to label the samples, save the labeled samples to a file
al.label(samples, output_filename="samples.parquet")

Gradio UI

In the UI, you can optionally run zero-shot inference on the image. This will use a VLM to predict the label of the image. There are a dozen VLM models as supported in the x.infer project.

Zero-Shot Inference

Once complete, the labeled samples will be save into a new df. We can now add the newly labeled data to the training set.

al.add_to_dataset(labeled_df, output_filename="active_labeled.parquet")

Repeat the process until the model is good enough. Use the dataset to train a larger model and deploy.

📊 Benchmarks

This section contains the benchmarks I ran using the active learning loop on various datasets.

Column description:

  • #Labeled Images: The number of labeled images used to train the model.
  • Evaluation Accuracy: The accuracy of the model on the evaluation set.
  • Train Epochs: The number of epochs used to train the model.
  • Model: The model used to train.
  • Active Learning: Whether active learning was used to train the model.
  • Source: The source of the results.

Imagenette

  • num classes: 10
  • num images: 9469

To start the active learning loop, I labeled 100 images (10 images from each class) and iteratively relabeled the most informative images until I hit 275 labeled images.

The active learning loop is a iterative process and can keep going until you hit a stopping point. You can decide your own stopping point based on your use case. It could be:

  • You ran out of data to label.
  • You hit a performance goal.
  • You hit a budget.
  • Other criteria.

For this dataset, I decided to stop the active learning loop at 275 labeled images because the performance on the evaluation set exceeds the top performing model on the leaderboard.

#Labeled Images Evaluation Accuracy Train Epochs Model Active Learning Source
9469 94.90% 80 xse_resnext50 Link
9469 95.11% 200 xse_resnext50 Link
275 99.33% 6 convnext_small_in22k Link
275 93.40% 4 resnet18 Link

Dog Food

  • num classes: 2
  • num images: 2100

To start the active learning loop, I labeled 20 images (10 images from each class) and iteratively relabeled the most informative images until I hit 160 labeled images.

I decided to stop the active learning loop at 160 labeled images because the performance on the evaluation set is close to the top performing model on the leaderboard. You can decide your own stopping point based on your use case.

#Labeled Images Evaluation Accuracy Train Epochs Model Active Learning Source
2100 99.70% ? vit-base-patch16-224 Link
160 100.00% 6 convnext_small_in22k Link
160 97.60% 4 resnet18 Link

Oxford-IIIT Pet

  • num classes: 37
  • num images: 3680

To start the active learning loop, I labeled 370 images (10 images from each class) and iteratively relabeled the most informative images until I hit 612 labeled images.

I decided to stop the active learning loop at 612 labeled images because the performance on the evaluation set is close to the top performing model on the leaderboard. You can decide your own stopping point based on your use case.

#Labeled Images Evaluation Accuracy Train Epochs Model Active Learning Source
3680 95.40% 5 vit-base-patch16-224 Link
612 90.26% 11 convnext_small_in22k Link
612 91.38% 11 vit-base-patch16-224 Link

Eurosat RGB

  • num classes: 10
  • num images: 16100

To start the active learning loop, I labeled 100 images (10 images from each class) and iteratively labeled the most informative images until I hit 1188 labeled images.

I decided to stop the active learning loop at 1188 labeled images because the performance on the evaluation set is close to the top performing model on the leaderboard. You can decide your own stopping point based on your use case.

#Labeled Images Evaluation Accuracy Train Epochs Model Active Learning Source
16100 98.55% 6 vit-base-patch16-224 Link
1188 94.59% 6 vit-base-patch16-224 Link
1188 96.57% 13 vit-base-patch16-224 Link

Beans

  • num classes: 3
  • num images: 1034
#Labeled Images Evaluation Accuracy Train Epochs Model Active Learning Source
380 95.31% 13 vit_small_patch16_224 Link
1034 98.43% 13 vit_small_patch16_224 Link

🧱 Sampling Approaches

Uncertainty and diversity sampling are most effective when combined. Some recommmendations:

  • Least Confidence Sampling with Cluster-Based Sampling: This approach first selects a large sample of the most uncertain items using least confidence sampling, and then applies cluster-based sampling to ensure diversity within that selection. This method helps to select data points that are both uncertain and representative of different clusters in the data.

  • Uncertainty Sampling with Model-Based Outliers: This strategy combines uncertainty sampling to find items near the decision boundary with model-based outlier detection to identify items with features that are relatively unknown to the current model. This approach aims to maximize the model's current confusion by selecting items that are both uncertain and different from the current training data.

  • Uncertainty Sampling with Model-Based Outliers and Clustering: To address the issue of the previous approach potentially oversampling similar items, clustering can be applied after using uncertainty sampling with model-based outliers to ensure diversity.

  • Representative Sampling with Cluster-Based Sampling: This method addresses the limitation of basic representative sampling by independently clustering both the training data and the unlabeled data. It then identifies clusters that are most representative of the unlabeled data and oversamples from those clusters. This leads to a more diverse set of items compared to representative sampling alone.

  • Sampling from the Highest-Entropy Cluster: This method combines clustering with uncertainty by selecting the cluster with the highest average uncertainty (using entropy). This method aims to sample data points from the cluster that straddles the decision boundary most closely.

  • Combining Active Learning Scores: Rather than filtering the output of one sampling strategy with another, this approach combines the scores from different sampling strategies and ranks items based on an aggregate score. This allows for a more nuanced approach to selecting items.

➿ Workflows

This section describes a more detailed workflow for active learning. There are two workflows for active learning that we can use depending on the availability of labeled data.

With unlabeled data

If we have no labeled data, the goal of the active learning loop is to build a resonably good labeled dataset to train a larger model.

Steps:

  1. Load a small proxy model.
  2. Label an initial dataset. If there is none, you'll have to label some images.
  3. Train the proxy model on the labeled dataset.
  4. Run inference on the unlabeled dataset.
  5. Evaluate the performance of the proxy model.
  6. Is model good enough?
    • Yes: Save the proxy model and the dataset.
    • No: Select the most informative images to label using active learning.
  7. Label the most informative images and add them to the dataset.
  8. Repeat steps 3-6.
  9. Save the proxy model and the dataset.
  10. Train a larger model on the saved dataset.
graph TD
    A[Load a small proxy model] --> B[Label an initial dataset]
    B --> C[Train proxy model on labeled dataset]
    C --> D[Run inference on unlabeled dataset]
    D --> E[Evaluate proxy model performance]
    E --> F{Model good enough?}
    F -->|Yes| G[Save proxy model and dataset]
    G --> H[Train and deploy a larger model]
    F -->|No| I[Select informative images using active learning]
    I --> J[Label selected images]
    J --> C

With labeled data

If we already have a labeled dataset, the goal of the active learning loop is to iteratively improve the dataset and the model by fixing the most important label errors.

Steps:

  1. Load a small proxy model.
  2. Train the proxy model on the labeled dataset.
  3. Run inference on the entire labeled dataset.
  4. Get the most impactful label errors with active learning.
  5. Fix the label errors.
  6. Repeat steps 2-5 until the dataset is good enough.
  7. Save the labeled dataset.
  8. Train a larger model on the saved labeled dataset.
graph TD
    A[Load a small proxy model] --> B[Train proxy model on labeled dataset]
    B --> C[Run inference on labeled dataset]
    C --> D[Get label errors using active learning]
    D --> E[Fix label errors]
    E --> F{Dataset good enough?}
    F -->|No| B
    F -->|Yes| G[Save cleaned dataset]
    G --> H[Train and deploy larger model]

📚 Acknowledgements

This project is inspired by the book Human-in-the-Loop Machine Learning by Robert Monarch.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

active_vision-0.4.2.tar.gz (71.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

active_vision-0.4.2-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file active_vision-0.4.2.tar.gz.

File metadata

  • Download URL: active_vision-0.4.2.tar.gz
  • Upload date:
  • Size: 71.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for active_vision-0.4.2.tar.gz
Algorithm Hash digest
SHA256 22ecd43f2bec88a4ac146f37b0002b186212723e085dc19b86fcadd70ce35d5f
MD5 060899fad27a77e4cd23f379b2804776
BLAKE2b-256 d8018c36ef926ff1eea37d13f41b6fe4bb255cb85963639d518ce6a7945fd737

See more details on using hashes here.

File details

Details for the file active_vision-0.4.2-py3-none-any.whl.

File metadata

  • Download URL: active_vision-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for active_vision-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5ff5806df0db1fdf6799e09556bc913b928b8325debc2bc7ff4b08294e0e4b96
MD5 a93513a51d510ebd31a336db6d91d91a
BLAKE2b-256 1f3fff5171958c0ab7576bab45538f6b0f3dae943e329733c113656ec66e63e2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page