qiskit.algorithms.optimizers.SPSA.optimize¶
- SPSA.optimize(num_vars, objective_function, gradient_function=None, variable_bounds=None, initial_point=None)[source]¶
Perform optimization.
- Parameters
num_vars (int) – Number of parameters to be optimized.
objective_function (callable) – A function that computes the objective function.
gradient_function (callable) – Not supported for SPSA.
variable_bounds (list[(float, float)]) – Not supported for SPSA.
initial_point (numpy.ndarray[float]) – Initial point.
- Returns
- point, value, nfev
point: is a 1D numpy.ndarray[float] containing the solution value: is a float with the objective function value nfev: number of objective function calls made if available or None
- Return type
tuple