pip install rundpo
Train your models with just a few lines of code, without worrying about infrastructure or GPU management.
Monitor your training progress, manage API keys, and download your models through our web interface.
Simple, usage-based pricing at $3.28/GPU-hour, with no hidden fees.
from rundpo import RundpoClient
# Initialize the client
client = RundpoClient()
# Upload your data file
file_upload = client.upload_file("dpo_train.jsonl")
# Start DPO training
run_id = client.run_dpo({
"file_id": file_upload.file_id,
"base_model": "meta-llama/Meta-Llama-3.1-8B-Instruct",
"gpus": 2
})