Skip to content

Validate Hyperparameters

POST
/v1/finetune/hyperparams/validate
curl --request POST \
--url 'https://example.com/v1/finetune/hyperparams/validate?vla_type=example' \
--header 'Content-Type: application/json' \
--data '{}'

Validate hyperparameters for a VLA model type.

Returns whether the hyperparameters are valid, and any issues found.

vla_type
required
string
x-api-key
string | null
Media type application/json
Hyperparams
object
key
additional properties
any
Example generated
{}

Hyperparameters validation result

Media type application/json
HyperparamsValidationResponse

Result of hyperparameters validation.

object
valid
required

Whether the hyperparameters are valid

boolean
issues

Validation issues, if any

Array<object>
nullable
HyperparamsValidationIssue

A single validation issue for hyperparameters.

object
field
required

The field with the issue

string
message
required

Description of the issue

string
Example generated
{
"valid": true,
"issues": [
{
"field": "example",
"message": "example"
}
]
}

Invalid or missing API key

Media type application/json
ErrorResponse

Standard error response.

object
detail
required

Error message describing what went wrong

string
Example generated
{
"detail": "example"
}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationError
object
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}