Skip to main content

Python SDK client for running remote jobs on Transformer Lab.

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

transformerlab-client

Python client and callbacks for Transformer Lab.

Install

pip install transformerlab-client

Prerequisites

  • Python 3.10 or newer
  • A running instance of the Transformer Lab API server
    • By default, the client connects to http://localhost:8338
    • Make sure the Transformer Lab application is running before using this client

Usage

from transformers import TrainingArguments, Trainer
from transformerlab_client.client import TransformerLabClient
from transformerlab_client.callbacks.hf_callback import TLabProgressCallback

# Initialize client and register job
client = TransformerLabClient(server_url="<ENTER YOUR TRANSFORMER LAB API URL>")
job_id = client.start(your_config)

# Set up Hugging Face trainer with TLabProgressCallback
training_args = TrainingArguments(
    output_dir="./output",
    # other arguments...
)

trainer = Trainer(
    model=model,
    args=training_args,
    train_dataset=train_dataset,
    # other arguments...
    callbacks=[TLabProgressCallback(client)]  # Add Transformer Lab callback
)

# Train the model
trainer.train()

# Complete the job
client.complete()

Full Training Example

See the examples directory for a complete training script that demonstrates how to use the client for a full training workflow with Hugging Face Transformers.

API Reference

TransformerLabClient

Main client for communicating with Transformer Lab.

  • start(config): Register a training job and get a job ID
  • report_progress(progress, metrics=None): Report training progress (0-100) and any metrics in json format
  • complete(message="Training completed successfully"): Mark job as complete
  • stop(message="Training stopped"): Mark job as stopped
  • save_model(saved_model_path): Save model to specified path
  • log_info(message): Log info message
  • log_error(message): Log error message
  • log_warning(message): Log warning message
  • log_debug(message): Log debug message

TLabProgressCallback

Callback for Hugging Face Transformers Trainer that reports progress to Transformer Lab.

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

transformerlab_client-0.1.4.tar.gz (42.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_client-0.1.4-py3-none-any.whl (31.7 kB view details)

Uploaded Python 3

File details

Details for the file transformerlab_client-0.1.4.tar.gz.

File metadata

  • Download URL: transformerlab_client-0.1.4.tar.gz
  • Upload date:
  • Size: 42.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for transformerlab_client-0.1.4.tar.gz
Algorithm Hash digest
SHA256 78601ee387c82d675b52782caea8e1eaececb1159baf7513b7c9388b5f653019
MD5 821c4660ed08111c18bb51621ee7cd01
BLAKE2b-256 58ad192f201d12ddd15b7936f7effe2a3936e7e69e3922fa2931b4ff024a78f9

See more details on using hashes here.

File details

Details for the file transformerlab_client-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for transformerlab_client-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7650d278677cb3b9ca35dc542cf6a5c30658bb41ffc9a8edd392f66d8d71c8f0
MD5 576d8990f99ffe43ad6196555d72ff0a
BLAKE2b-256 5816bb480f0cd7bbf9a434bed7251de96394d0eb6b68fad28d5ef8ce4011e295

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