boax.core.optimizers.solvers.scipy#
- boax.core.optimizers.solvers.scipy(bounds, method='bfgs')#
Scipy solver.
Example
>>> solver = scipy(fun, bounds) >>> next_candidates, values = solver(candidates)
- Parameters:
bounds (
Union[Array,ndarray,bool,number]) – The bounds of the search space.method (
str) – The solver method.
- Return type:
- Returns:
The scipy Solver.