Skip to main content

Goldener - Make your data even more valuable

Project description

Goldener Logo

A Python library orchestrating data during the full life cycle of Machine Learning pipelines.

License PyPI Package

Overview | Principles | Features | Installation | Contribute

Overview

Goldener is an open-source Python library (Apache 2 licence) designed to manage the orchestration of data (sampling, splitting) during the full life cycle of Machine Learning (ML) pipelines.

In the artificial intelligence (AI) era, the data is the new gold. Being able to collect it is already something but creating value from it is the real challenge. Goldener is designed to help to make the most of the available data. It provides tools to orchestrate data during the full life cycle of Machine Learning pipelines, from the training phase to the monitoring phase.

Goldener makes the right data available at the right time, allowing to optimize the performance of any ML pipelines while minimizing the costs (time, performance, computing resources) of data sampling and labeling.

When it's time to annotate data, Goldener find the most representative subset to annotate. During annotation, it can help to define annotation guidelines by spotting specific cases or as well run annotation quality checks. Once enough data is annotated, Goldener can split it in multiple sets (train, validation, test) ensuring the reproduction of the task variability. During the training phase, Goldener can balance efficiently the data to optimize the training time and the model performance. Finally, when the model is deployed, Goldener can find the most informative data to monitor the model performance and detect any drift in the data distribution.

Key design principles

Goldener is designed to process large datasets efficiently. It is built on the assumption that every AI lifecycle is most of the time iterative and incremental. Its design principles are:

  • Progressive batch processing: Each task can be stopped and restarted on demand (or failure). Already computed results are not recomputed.
  • Multipurposes embeddings: The same embeddings are used for the different for different tasks (selection, splitting, monitoring, etc.).
  • Modality-agnostic: The same tool is actionable for any data modalities (text, image, video, tabular, etc.) and even for multimodality data.

This is not yet applied but for the next iterations, the following principles will be as well followed:

  • Distributed first: Any task can be distributed across multiple machines.
  • On demand access to pipelines: All processing pipelines are serializable. They are stored and available whenever a new request is made.

Example of features

Sampling among not annotated data

Goldener can find the most representative data subset to annotate. It can extract and store semantic knowledge of the data from embeddings extracted with pre-trained models. Then, it leverages this knowledge to find the most representative subset of data to annotate. This subset of data can be annotated in order to train or monitor a model.

from goldener import (
    GoldSelector,
    GoldDescriptor,
    GoldTorchEmbeddingTool,
    GoldTorchEmbeddingToolConfig,
    TensorVectorizer,
)

gd = GoldDescriptor(
    table_path="my_table_for_description",
    embedder=GoldTorchEmbeddingTool(
        GoldTorchEmbeddingToolConfig(
            model=my_model,
            layers=my_layers,
        )
    ),
    vectorizer=TensorVectorizer()
)

gs = GoldSelector(
    table_path="my_table_for_selection", selection_key="selection"
)

description = gd.describe_in_table(dataset)
selection_table = gs.select_in_table(description, 100, "to_annotate")
selected = GoldSelector.get_selection_indices(selection_table, "to_annotate", "selection")

Splitting annotated data in train and validation sets

Goldener can split data between the train and validation sets ensuring that the training set is containing most of the different situations for the tasks. From a description of the samples (embeddings), the most different/unique elements are kept for the training set while the least informative ones are kept for the validation set.

from goldener import (
    GoldSet,
    GoldSplitter,
    GoldDescriptor,
    GoldSelector,
)

gd = GoldDescriptor(...) # reuse the descriptor used for smart sampling
gselector = GoldSelector(...)
gs = GoldSplitter(
    sets=[GoldSet("train", 0.7), GoldSet("val", 0.3)],
    descriptor=gd,
    selector=gselector,
)

split_table = gs.split_in_table(dataset)
splits = gs.get_split_indices(
    split_table, selection_key="selected", idx_key="idx"
)
train_indices = splits["train"]
val_indices = splits["val"]

Clustering data to define annotation guidelines

Among the data, there are often multiple "modes" (e.g. different types of images, different types of text, etc.). Goldener can clusterize the data to find these different modes. Then, the different clusters can be leveraged to define annotation guidelines for each cluster.

from goldener import (
    GoldClusterizer,
    GoldSKLearnClusteringTool,
    GoldDescriptor,
    GoldTorchEmbeddingTool,
    GoldTorchEmbeddingToolConfig,
    TensorVectorizer,
)
from sklearn.cluster import KMeans

gd = GoldDescriptor(...) # reuse the descriptor used for smart sampling
gcluster = GoldClusterizer(
    table_path="my_table_for_clusterization",
    clustering_tool=GoldSKLearnClusteringTool(KMeans(n_clusters=10)),
    cluster_key="cluster",
)

description = gd.describe_in_table(dataset)
clustered_table = gcluster.clusterize_in_table(description)

for cluster_id in range(10):
    cluster_indices = get_cluster_indices(clustered_table, "cluster", cluster_id)

    # sample few samples and use them to define annotation guidelines for this cluster

Installation

Installing Goldener is as simple as running the following command:

pip install goldener

Contribute

We welcome contributions to Goldener! Here's how you can help:

Getting Started

  1. Fork the repository
  2. Clone your fork
  3. Install the dependencies
  4. Create your branch and make your proposals
  5. Push to your fork and create a pull request
  6. The PR will be automatically tested by GitHub Actions
  7. A maintainer will review your PR and may request changes
  8. Once approved, your PR will be merged

Development

To set up the development environment:

  1. Install uv if you haven't already:
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Create and activate a virtual environment (optional but recommended):
uv venv
source .venv/bin/activate  # On Unix/macOS
  1. Install development dependencies:
uv sync --all-extras  # Install all dependencies including development dependencies
  1. Run tests:
uv run pytest .
  1. Run type checking with mypy:
uv run mypy .
  1. Run linting with ruff:
# Run all checks
uv run ruff check .

# Format code
uv run ruff format .
  1. Set up pre-commit hooks:
# Install git hooks
uv run pre-commit install

# Run pre-commit on all files
uv run pre-commit run --all-files

The pre-commit hooks will automatically run:

  • mypy for type checking
  • ruff for linting and formatting
  • pytest for tests

whenever you make a commit.

Release Process

To release a new version of the goldener package:

  1. Create a new branch for the release: git checkout -b release-vX.Y.Z
  2. Update the version vX.Y.Z in pyproject.toml
  3. Run uv sync to update the lock file with the new version
  4. Commit the changes with a message like release vX.Y.Z
  5. Merge the branch into main
  6. Trigger a new release on GitHub with the tag vX.Y.Z

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

goldener-6.4.0.tar.gz (100.2 kB view details)

Uploaded Source

Built Distribution

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

goldener-6.4.0-py3-none-any.whl (76.9 kB view details)

Uploaded Python 3

File details

Details for the file goldener-6.4.0.tar.gz.

File metadata

  • Download URL: goldener-6.4.0.tar.gz
  • Upload date:
  • Size: 100.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for goldener-6.4.0.tar.gz
Algorithm Hash digest
SHA256 fe07109b60e18ae0f50aa89d7132a098b33aff6baef270e1ed422bfde31ce3df
MD5 9941e5b2f51997fccaf201782c8892ae
BLAKE2b-256 8428e7d4082b2192c0d2439febfc56dc7cea80fa64859baf6f8084966b01e393

See more details on using hashes here.

Provenance

The following attestation bundles were made for goldener-6.4.0.tar.gz:

Publisher: release.yaml on goldener-data/goldener

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file goldener-6.4.0-py3-none-any.whl.

File metadata

  • Download URL: goldener-6.4.0-py3-none-any.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for goldener-6.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b6c14ef8b1e0612288af5c5a8f13f2eb7b88ea2d018967ae6dfcc5738d43fa37
MD5 db25b990ac94a41f2ad4f3b1346f2ecb
BLAKE2b-256 a97c5247e41b9d9490431a9a4a13b20e514d4059b389f69a28dfa853e3430af7

See more details on using hashes here.

Provenance

The following attestation bundles were made for goldener-6.4.0-py3-none-any.whl:

Publisher: release.yaml on goldener-data/goldener

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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