Jobs

Start training job

POST
Start a new custom models training job.

Request

This endpoint expects an object.
custom_model
objectRequired
dataset
unionRequired
target_feature
stringOptional
task
unionOptional
evaluation
objectOptional
alternatives
list of "language_only"Optional
callback_url
stringOptional
notify
booleanOptional

Response

This endpoint returns an object
job_id
string
The ID of the started job.
POST
$curl -X POST https://api.hume.ai/v0/registry/v0/batch/jobs/tl/train \
> -H "X-Hume-Api-Key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "custom_model": {
> "name": "name"
> },
> "dataset": {
> "id": "id"
> }
>}'
Response
1{
2 "job_id": "job_id"
3}