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.2.tar.gz (41.0 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.2-py3-none-any.whl (29.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for transformerlab_client-0.1.2.tar.gz
Algorithm Hash digest
SHA256 72dc354836d8235cf88be02a438e664b5c1bdd37db0a76e4dd767a735681c243
MD5 6a8cbfc1b957f3154ba2d85167e14f15
BLAKE2b-256 61a0849c5799cd7013f2582b7b96edac1caece684f9f2a15214e9f0d95c319f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for transformerlab_client-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f5232a6d1f0246057098697acca785510f3940361efe6968b7b10156b39d2c22
MD5 4076c2ddbe63707ef79ff49f1e2b628d
BLAKE2b-256 995643b997e50985e6dc37be26b0f3d9bd913bff88c40aa11b7b9f574a89641b

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