Trial Endpoints
Last updated
Last updated
Trials in globalMOO represent individual optimization runs. Each trial contains input values, objectives, and results of an optimization attempt.
- Retrieve information about a specific trial
A trial object contains the following fields:
id
integer
Unique identifier for the trial
project_id
integer
ID of the parent project
number
integer
Trial sequence number (auto-incrementing)
case_count
integer
Number of test cases in trial
output_count
integer
Number of outputs per case
output_cases
array[array[float]]
Array of test output case arrays
objectives
array[Objective]
Array of optimization objectives
created_at
string
ISO 8601 timestamp with millisecond precision
updated_at
string
ISO 8601 timestamp with millisecond precision
disabled_at
string
Optional ISO 8601 timestamp when trial was disabled
A trial is created when output cases are loaded
Trial progression:
Output cases are collected and validated
Objectives are defined with constraints
Inverse optimization steps are executed
Results are tracked through objectives
Trial completion can be determined by:
Checking if any objectives are satisfied
Examining inverse optimization stop reasons
Monitoring L1 norm convergence
Trials track optimization through Objective objects which contain:
Target values and types
Bounds and constraints
Inverse optimization steps
Result satisfaction details
Monitoring output collection progress
Retrieving trial output data
Analyzing output patterns
Managing multiple output cases