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
Vla Type
string
x-api-key
Any of:
string
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
Valid

Whether the hyperparameters are valid

boolean
issues
Any of:
Array<object>
HyperparamsValidationIssue

A single validation issue for hyperparameters.

object
field
required
Field

The field with the issue

string
message
required
Message

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
Detail

Error message describing what went wrong

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

Validation Error

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