Trial Schema
Structure
{
"id": 789, // Unique identifier
"created_at": "2025-01-31T11:00:00.000Z", // Creation timestamp
"updated_at": "2025-01-31T11:15:00.000Z", // Last update timestamp
"disabled_at": null, // Optional disable timestamp
"project_id": 456, // Parent project ID
"status": "completed", // Trial status
"start_time": "2025-01-31T11:00:10.000Z", // Execution start time
"end_time": "2025-01-31T11:14:55.000Z", // Execution end time
"duration": 885, // Duration in seconds
"iteration_count": 257, // Number of iterations executed
"stop_reason": "convergence", // Reason for stopping
"configuration": { // Trial-specific configuration
"seed": 12345,
"parameters": {
"max_iterations": 1000,
"convergence_threshold": 0.001
}
},
"metrics": { // Trial performance metrics
"convergence_rate": 0.0034,
"final_loss": 0.00089
},
"results": [ // Objective results
{
"objective_id": 321,
"name": "Maximize Revenue",
"value": 1520000,
"unit": "USD",
"improvement": 12.5
}
],
"checkpoints": [ // Trial checkpoints
{
"iteration": 100,
"timestamp": "2025-01-31T11:05:25.000Z",
"metrics": {
"loss": 0.0245
}
},
{
"iteration": 200,
"timestamp": "2025-01-31T11:10:40.000Z",
"metrics": {
"loss": 0.0028
}
}
]
}Fields
Field
Type
Description
Status Values
Status
Description
Stop Reason Values
Stop Reason
Description
Examples
Running Trial
Completed Trial
Related Endpoints
Last updated