Skip to main content

Python SDK for Transformer Lab

Project description

Transformer Lab SDK

The Transformer Lab Python SDK provides a way for ML scripts to integrate with Transformer Lab.

Install

pip install transformerlab

Usage

from lab import lab

# Initialize with experiment ID
lab.init("my-experiment")
lab.log("Job initiated")

config_artifact_path = lab.save_artifact(<config_file>, "training_config.json")
lab.log(f"Saved training config: {config_artifact_path}")
lab.update_progress(1)

...
lab.update_progress(99)

model_path = lab.save_model(<training_output_dir>, name="trained_model")
lab.log("Saved model file to {model_path}")

lab.finish("Training completed successfully")

Reporting metrics

Pass a dict of named metrics to lab.finish(score=...). The dict shape is required — metrics are stored under job_data.score and surfaced by lab job list (Score column) and lab job info, and read by sweep / autoresearch flows for optimization.

lab.finish(message="Done!")                              # success, no score
lab.finish(message="Done!", score={"accuracy": 0.78})    # success with one metric
lab.finish(score={"accuracy": 0.78, "f1": 0.83})         # multiple metrics

Do not pass a scalar (e.g. lab.finish(score=0.78)) — wrap it in a dict instead: lab.finish(score={"score": 0.78}).

Sample scripts can be found at https://github.com/transformerlab/transformerlab-app/tree/main/lab-sdk/scripts/examples

Development

The code for this can be found in the lab-sdk directory of https://github.com/transformerlab/transformerlab-app

To develop locally in editable mode and run automated tests:

cd lab-sdk
uv venv
uv pip install -e .
uv run pytest  # Run tests

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

transformerlab-0.1.35.tar.gz (112.8 kB view details)

Uploaded Source

Built Distribution

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

transformerlab-0.1.35-py3-none-any.whl (95.6 kB view details)

Uploaded Python 3

File details

Details for the file transformerlab-0.1.35.tar.gz.

File metadata

  • Download URL: transformerlab-0.1.35.tar.gz
  • Upload date:
  • Size: 112.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for transformerlab-0.1.35.tar.gz
Algorithm Hash digest
SHA256 66ada576457b9037b2110a45dbf1f1e16f363840056305d36804d02eedb9d222
MD5 3be4e02321f7a51f0a01ee2876a3ea73
BLAKE2b-256 947cbc05882a651437d994405957bbf097563d6697b7fadd2cdfb640a1c62c31

See more details on using hashes here.

File details

Details for the file transformerlab-0.1.35-py3-none-any.whl.

File metadata

File hashes

Hashes for transformerlab-0.1.35-py3-none-any.whl
Algorithm Hash digest
SHA256 fc608b069f6287bf12ad147d0476beac173f2bdd0e8d60fd6ba5ecb11939475d
MD5 87b31369336af1e857ae24f523ddf662
BLAKE2b-256 a822803e401a724f8918c7a9dea7c0f4acf921fc6e2eeaf1a421a447237fab7c

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