You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The QC optimizer should be able to receive a custom 2D matrix of parameters and values such as:
{param_1: [1, 2, 5],
param_2: [10, 15, 35]}
Actual Behavior
The QC optimizer only supports a range of values for each parameter with a static step value, which means that consecutive values in each parameter vector must be equally distant one from another. This poses a problem since a lot of times the sensitive parameter values are found at irregular intervals, and trying every intermediate value in their range increases the optimization cost by a large margin. For example:
Expected Behavior
The QC optimizer should be able to receive a custom 2D matrix of parameters and values such as:
Actual Behavior
The QC optimizer only supports a range of values for each parameter with a static step value, which means that consecutive values in each parameter vector must be equally distant one from another. This poses a problem since a lot of times the sensitive parameter values are found at irregular intervals, and trying every intermediate value in their range increases the optimization cost by a large margin. For example:
Potential Solution
Implementing logic for handling a 2D parameter-value matrix.
Checklist
master
branchThe text was updated successfully, but these errors were encountered: