Validate Hyperparameters
POST
/v1/finetune/hyperparams/validate
const url = 'https://example.com/v1/finetune/hyperparams/validate?vla_type=example';const options = {method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” vla_type
required
Vla Type
string
Header Parameters
Section titled “Header Parameters ”Request Body required
Section titled “Request Body required ” Media type application/json
Hyperparams
object
key
additional properties
any
Example generated
{}Responses
Section titled “ Responses ”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>
HyperparamsValidationIssueA single validation issue for hyperparameters.
object
field
required
Field
The field with the issue
string
message
required
Message
Description of the issue
string
null
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>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}