Inverse Optimization Endpoints
Last updated
Last updated
Inverse solution and/or optimization in globalMOO allows you to find input parameters that produce desired output values. This is particularly useful when you have target outputs and need to determine the inputs that would achieve those targets.
- Start an inverse optimization process
- Get next suggested input values
- Load output values from current iteration
Initialize the inverse solution/optimization with:
Target objectives and their types
Initial input/output values
Desired L1 norm for exact objectives
Bounds for percent/value objectives
Optional convergence parameters
Iterative optimization:
Get suggested input values
Run your simulation/model with these inputs
Load the resulting outputs
Repeat until convergence or maximum iterations
The inverse solution/optimization process can end in several ways, indicated by the stopReason
field:
Running
(0) - Process is still running or being evaluated
Satisfied
(1) - Found a satisfactory solution meeting all objectives
Stopped
(2) - Stopped due to duplicate suggested inputs
Exhausted
(3) - Exhausted all attempts to converge
Each inverse step includes a results array containing objective satisfaction details:
Inverse steps track performance metrics:
suggestTime
- Time taken to generate suggestion (microseconds)
computeTime
- Time taken to evaluate outputs (microseconds)
l1Norm
- Current L1 norm error value
Finding input parameters to achieve specific output targets
Calibrating models to match experimental data
Reverse engineering desired system behavior
Parameter estimation from observations