POST
/
training
/
start
{
  "message": "<string>",
  "status": "ok"
}

Body

application/json

Pydantic model for training request validation

dataset
string
required

Dataset repository ID

model_name
string
required

Name of the model to be trained

batch_size
integer
default:64

Batch size for training, default and max is 64

Required range: 0 < x <= 80
epochs
integer
default:20

Number of epochs to train for, default is 20

Required range: 0 < x <= 50
learning_rate
number
default:0.0002

Learning rate for training, default is 0.0002

Required range: 0 < x <= 1

Response

200
application/json
Successful Response

Default response. May contain other fields.

message
string | null
status
enum<string>
default:ok
Available options:
ok,
error