bundles / scipy latest / scipy / optimize / _shgo / shgo
function
scipy.optimize._shgo:shgo
source: /scipy/optimize/_shgo.py :22
Signature
def shgo ( func , bounds , args = () , constraints = None , n = 100 , iters = 1 , callback = None , minimizer_kwargs = None , options = None , sampling_method = simplicial , * , workers = 1 ) Summary
Finds the global minimum of a function using SHG optimization.
Extended Summary
SHGO stands for "simplicial homology global optimization".
Parameters
func: callableThe objective function to be minimized. Must be in the form
f(x, *args), wherexis the argument in the form of a 1-D array andargsis a tuple of any additional fixed parameters needed to completely specify the function.bounds: sequence or `Bounds`Bounds for variables. There are two ways to specify the bounds:
Instance of Bounds class.
Sequence of
(min, max)pairs for each element inx.
args: tuple, optionalAny additional fixed parameters needed to completely specify the objective function.
constraints: {Constraint, dict} or List of {Constraint, dict}, optionalConstraints definition. Only for COBYLA, COBYQA, SLSQP and trust-constr. See the tutorial [5] for further details on specifying constraints.
n: int, optionalNumber of sampling points used in the construction of the simplicial complex. For the default
simplicialsampling method 2**dim + 1 sampling points are generated instead of the defaultn=100. For all other specified valuesnsampling points are generated. Forsobol,haltonand other arbitrarysampling_methodsn=100or another specified number of sampling points are generated.iters: int, optionalNumber of iterations used in the construction of the simplicial complex. Default is 1.
callback: callable, optionalCalled after each iteration, as
callback(xk), wherexkis the current parameter vector.minimizer_kwargs: dict, optionalExtra keyword arguments to be passed to the minimizer
scipy.optimize.minimize. Some important options could be:method
method
args
args
options
options
options: dict, optionalA dictionary of solver options. Many of the options specified for the global routine are also passed to the
scipy.optimize.minimizeroutine. The options that are also passed to the local routine are marked with "(L)".Stopping criteria, the algorithm will terminate if any of the specified criteria are met. However, the default algorithm does not require any to be specified:
maxfev
maxfev
f_min
f_min
f_tol
f_tol
maxiter
maxiter
maxev
maxev
maxtime
maxtime
minhgrd
minhgrd
Objective function knowledge:
symmetry
symmetry
jac
jac
hess,hessp
hess, hessp
Algorithm settings:
minimize_every_iter
minimize_every_iter
local_iter
local_iter
infty_constraints
infty_constraints
Feedback:
disp
disp
sampling_method: str or function, optionalCurrent built in sampling method options are
halton,sobolandsimplicial. The defaultsimplicialprovides the theoretical guarantee of convergence to the global minimum in finite time.haltonandsobolmethod are faster in terms of sampling point generation at the cost of the loss of guaranteed convergence. It is more appropriate for most "easier" problems where the convergence is relatively fast. User defined sampling functions must accept two arguments ofnsampling points of dimensiondimper call and output an array of sampling points with shapen x dim.workers: int or map-like callable, optionalSample and run the local serial minimizations in parallel. Supply -1 to use all available CPU cores, or an int to use that many Processes (uses
multiprocessing.Pool <multiprocessing>).Alternatively supply a map-like callable, such as
multiprocessing.Pool.mapfor parallel evaluation. This evaluation is carried out asworkers(func, iterable). Requires thatfuncbe pickleable.
Returns
res: OptimizeResultThe optimization result represented as a OptimizeResult object. Important attributes are:
xthe solution array corresponding to the global minimum,funthe function output at the global solution,xlan ordered list of local minima solutions,funlthe function output at the corresponding local solutions,successa Boolean flag indicating if the optimizer exited successfully,messagewhich describes the cause of the termination,nfevthe total number of objective function evaluations including the sampling calls,nlfevthe total number of objective function evaluations culminating from all local search optimizations,nitnumber of iterations performed by the global routine.
Notes
Global optimization using simplicial homology global optimization [1]. Appropriate for solving general purpose NLP and blackbox optimization problems to global optimality (low-dimensional problems).
In general, the optimization problems are of the form
minimize f(x) subject to g_i(x) >= 0, i = 1,...,m h_j(x) = 0, j = 1,...,p
where x is a vector of one or more variables. f(x) is the objective function R^n -> R, g_i(x) are the inequality constraints, and h_j(x) are the equality constraints.
Optionally, the lower and upper bounds for each element in x can also be specified using the bounds argument.
While most of the theoretical advantages of SHGO are only proven for when f(x) is a Lipschitz smooth function, the algorithm is also proven to converge to the global optimum for the more general case where f(x) is non-continuous, non-convex and non-smooth, if the default sampling method is used [1].
The local search method may be specified using the minimizer_kwargs parameter which is passed on to scipy.optimize.minimize. By default, the SLSQP method is used. In general, it is recommended to use the SLSQP, COBYLA, or COBYQA local minimization if inequality constraints are defined for the problem since the other methods do not use constraints.
The halton and sobol method points are generated using scipy.stats.qmc. Any other QMC method could be used.
Examples
First consider the problem of minimizing the Rosenbrock function, `rosen`:from scipy.optimize import rosen, shgo bounds = [(0,2), (0, 2), (0, 2), (0, 2), (0, 2)] result = shgo(rosen, bounds)✓
result.x, result.fun
✗bounds = [(None, None), ]*4 result = shgo(rosen, bounds)✓
result.x
✗import numpy as np def eggholder(x): return (-(x[1] + 47.0) * np.sin(np.sqrt(abs(x[0]/2.0 + (x[1] + 47.0)))) - x[0] * np.sin(np.sqrt(abs(x[0] - (x[1] + 47.0)))) ) bounds = [(-512, 512), (-512, 512)]✓
result = shgo(eggholder, bounds, n=64, sampling_method='sobol')
✓result.x, result.fun
✗result.xl
✗result.funl
✗result_2 = shgo(eggholder, bounds, n=64, iters=3, sampling_method='sobol') len(result.xl), len(result_2.xl)✓
def f(x): # (cattle-feed) return 24.55*x[0] + 26.75*x[1] + 39*x[2] + 40.50*x[3] def g1(x): return 2.3*x[0] + 5.6*x[1] + 11.1*x[2] + 1.3*x[3] - 5 # >=0 def g2(x): return (12*x[0] + 11.9*x[1] +41.8*x[2] + 52.1*x[3] - 21 - 1.645 * np.sqrt(0.28*x[0]**2 + 0.19*x[1]**2 + 20.5*x[2]**2 + 0.62*x[3]**2) ) # >=0 def h1(x): return x[0] + x[1] + x[2] + x[3] - 1 # == 0 cons = ({'type': 'ineq', 'fun': g1}, {'type': 'ineq', 'fun': g2}, {'type': 'eq', 'fun': h1}) bounds = [(0, 1.0),]*4 res = shgo(f, bounds, n=150, constraints=cons)✓
res
✗g1(res.x), g2(res.x), h1(res.x)
✗Aliases
-
scipy.optimize.shgo