Inverse Schema
Inverse objects represent steps in the inverse solution and/or optimization process.
Schema
Fields
id
integer
Yes
Unique identifier
created_at
string
Yes
Creation timestamp
updated_at
string
Yes
Last update timestamp
disabled_at
string
No
Disable timestamp
loaded_at
string
No
When output was loaded
satisfied_at
string
No
When all objectives satisfied
stopped_at
string
No
When manually stopped
exhausted_at
string
No
When max iterations reached
iteration
integer
Yes
Current iteration number
l1_norm
float
Yes
Current L1 norm error
suggest_time
integer
Yes
Suggestion time (nanoseconds)
compute_time
integer
Yes
Computation time (nanoseconds)
input
array[float]
Yes
Input parameter values
output
array[float]
No
Output values (if loaded)
results
array[Result]
No
Individual objective results
Stop Reasons
The stop reason can be determined from timestamps:
Running
0
No stop timestamps set
Satisfied
1
satisfied_at is set
Stopped
2
stopped_at is set
Exhausted
3
exhausted_at is set
Priority order if multiple set:
satisfied_at
stopped_at
exhausted_at
Input/Output Arrays
input array length must match project input_count
output array length must match objective count
all values must be valid floats/integers
arrays must not contain null values
Performance Metrics
suggest_time: Time to generate next inputs
compute_time: Time to evaluate outputs
Higher times may indicate:
Complex objective landscape
Numerical instability
Resource constraints
Results Array
Contains Result objects matching objective count:
One Result per objective
Result.number matches objective index
Results track satisfaction status
Null until output is loaded
All results must be satisfied for inverse.satisfied_at to be set
Usage Notes
Check stopReason using helper methods:
Examine results for detailed status:
Monitor performance:
Track convergence:
Last updated