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
- By default, the client connects to
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 IDreport_progress(progress, metrics=None): Report training progress (0-100) and any metrics in json formatcomplete(message="Training completed successfully"): Mark job as completestop(message="Training stopped"): Mark job as stoppedsave_model(saved_model_path): Save model to specified pathlog_info(message): Log info messagelog_error(message): Log error messagelog_warning(message): Log warning messagelog_debug(message): Log debug message
TLabProgressCallback
Callback for Hugging Face Transformers Trainer that reports progress to Transformer Lab.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78601ee387c82d675b52782caea8e1eaececb1159baf7513b7c9388b5f653019
|
|
| MD5 |
821c4660ed08111c18bb51621ee7cd01
|
|
| BLAKE2b-256 |
58ad192f201d12ddd15b7936f7effe2a3936e7e69e3922fa2931b4ff024a78f9
|
File details
Details for the file transformerlab_client-0.1.4-py3-none-any.whl.
File metadata
- Download URL: transformerlab_client-0.1.4-py3-none-any.whl
- Upload date:
- Size: 31.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7650d278677cb3b9ca35dc542cf6a5c30658bb41ffc9a8edd392f66d8d71c8f0
|
|
| MD5 |
576d8990f99ffe43ad6196555d72ff0a
|
|
| BLAKE2b-256 |
5816bb480f0cd7bbf9a434bed7251de96394d0eb6b68fad28d5ef8ce4011e295
|