POST
/
v1
/
fine-tuning
/
{job_name}
/
cancel
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "status": "NEW",
  "base_model_name": "<string>",
  "dataset_name": "<string>",
  "name": "<string>",
  "type": "LORA",
  "current_step": 123,
  "total_steps": 123,
  "current_epoch": 123,
  "total_epochs": 123,
  "num_tokens": 123,
  "parameters": {
    "batch_size": 8,
    "num_epochs": 3,
    "shuffle": true,
    "lr": 0.0003,
    "seed": 42
  },
  "metrics": {}
}

Authorizations

x-api-key
string
header
required

Path Parameters

job_name
string
required

Response

200
application/json
Job cancelled successfully
id
string
created_at
string
updated_at
string
status
enum<string>
Available options:
NEW,
QUEUED,
RUNNING,
COMPLETED,
FAILED,
STOPPING,
STOPPED
base_model_name
string
dataset_name
string
name
string
type
enum<string>
Available options:
LORA,
QLORA
current_step
integer
total_steps
integer
current_epoch
integer
total_epochs
integer
num_tokens
integer

Number of tokens processed in the fine-tuning job

parameters
object
metrics
object