gpt4 book ai didi

python-2.7 - 非凸优化器

转载 作者:行者123 更新时间:2023-12-03 06:54:54 33 4
gpt4 key购买 nike

我使用python2.7,需要找到多元标量函数的最大值。

换句话说我有这个功能:

def myFun(a,b,c,d,e,f):
# complex calculation that takes about 30 seconds
return res # res is a float

该函数不是凸函数。

我指定每个参数 a、b、c、d、e 和 f 的最小和最大可能值。我需要找到什么参数组合大约会导致 myFun 的最大值。我将为它提供一个不错的起点。

我尝试进行强力网格搜索,但考虑到我的函数需要多长时间来计算,它是不可行的。

我已经研究了 scipy 包。我特别看到了scipy.optimize.fmin_slsqp功能。这适合我的问题吗?或者也许scipy.optimize.fmin() ?还有其他适合此的功能/模块吗?

最佳答案

您可能想尝试 CVXPY (http://www.cvxpy.org/en/latest),奇怪的是,它是 CVXOPT(凸求解器)的非凸扩展。然后,您可以使用 CVXOPT 进行凸优化,或者使用 CVXPY 进行非凸优化,只要适合您的问题即可。

Python 中有很多非凸求解器,其中许多都列在这里: https://scicomp.stackexchange.com/questions/83/is-there-a-high-quality-nonlinear-programming-solver-for-python ...但看来您实际上是在询问连续求解器,它可能是局部的或全局的,并且可以处理昂贵的函数。

就个人而言,我建议mystic ( https://pypi.python.org/pypi/mystic )。确实,我是作者,但它已经获得了大约十年的充足资金,并且它可以解决其他软件包几乎无法解决的高度受限的非凸问题。它还可以处理具有非线性约束的基本凸优化。此外,mystic 专为大规模并行计算而构建,因此您可以在多个级别的优化中轻松利用并行计算。如果您有足够的资源,mystic 可以进行集成优化,您可以将其想象为能够进行网格搜索(您可以在其中选择点的初始分布),而不是使用固定点在网格上,mystic 使用并行启动的快速线性求解器。

以下是 mystic 附带的近 100 个示例之一:

'''
Maximize: f = 2*x[0]*x[1] + 2*x[0] - x[0]**2 - 2*x[1]**2

Subject to: x[0]**3 - x[1] == 0
x[1] >= 1
'''

提出了两种解决方案(一种用于线性求解器,一种用于全局求解器):

def objective(x):
return 2*x[0]*x[1] + 2*x[0] - x[0]**2 - 2*x[1]**2

equations = """
x0**3 - x1 == 0.0
"""
bounds = [(None, None),(1.0, None)]

# with penalty='penalty' applied, solution is:
xs = [1,1]; ys = -1.0

from mystic.symbolic import generate_conditions, generate_penalty
pf = generate_penalty(generate_conditions(equations), k=1e4)
from mystic.symbolic import generate_constraint, generate_solvers, solve
cf = generate_constraint(generate_solvers(solve(equations)))

# inverted objective, used in solving for the maximum
_objective = lambda x: -objective(x)


if __name__ == '__main__':

from mystic.solvers import diffev2, fmin_powell
from mystic.math import almostEqual

result = diffev2(_objective, x0=bounds, bounds=bounds, constraint=cf, penalty=pf, npop=40, ftol=1e-8, gtol=100, disp=False, full_output=True)
assert almostEqual(result[0], xs, rel=2e-2)
assert almostEqual(result[1], ys, rel=2e-2)

result = fmin_powell(_objective, x0=[-1.0,1.0], bounds=bounds, constraint=cf, penalty=pf, disp=False, full_output=True)
assert almostEqual(result[0], xs, rel=2e-2)
assert almostEqual(result[1], ys, rel=2e-2)

这是另一个:

"""
Fit linear and quadratic polynomial to noisy data:
y(x) ~ a + b * x --or-- y(x) ~ a + b * x + c * x**2
where:
0 >= x >= 4
y(x) = y0(x) + yn
y0(x) = 1.5 * exp(-0.2 * x) + 0.3
yn = 0.1 * Normal(0,1)
"""

解决方案:

from numpy import polyfit, poly1d, linspace, exp
from numpy.random import normal
from mystic.math import polyeval
from mystic import reduced

# Create clean data.
x = linspace(0, 4.0, 100)
y0 = 1.5 * exp(-0.2 * x) + 0.3

# Add a bit of noise.
noise = 0.1 * normal(size=100)
y = y0 + noise

@reduced(lambda x,y: abs(x)+abs(y))
def objective(coeffs, x, y):
return polyeval(coeffs, x) - y

bounds = [(None, None), (None, None), (None, None)]
args = (x, y)

# 'solution' is:
xs = polyfit(x, y, 2)
ys = objective(xs, x, y)


if __name__ == '__main__':

from mystic.solvers import diffev2, fmin_powell
from mystic.math import almostEqual

result = diffev2(objective, args=args, x0=bounds, bounds=bounds, npop=40, ftol=1e-8, gtol=100, disp=False, full_output=True)
assert almostEqual(result[0], xs, tol=1e-1)
assert almostEqual(result[1], ys, rel=1e-1)

result = fmin_powell(objective, args=args, x0=[0.0,0.0,0.0], bounds=bounds, disp=False, full_output=True)
assert almostEqual(result[0], xs, tol=1e-1)
assert almostEqual(result[1], ys, rel=1e-1)

对于并行计算,mystic 可以利用 pathospyina (参见:https://github.com/uqfoundation),您只需传递层次结构配置要用于并行运行的映射函数。这很容易。对于库存问题,它可能不是最快的,但(在我看来)对于无法解决的问题(由于大小或复杂性),它是最佳选择。

关于python-2.7 - 非凸优化器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35767277/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com