gpt4 book ai didi

python - 考虑到其他变量的不等式条件,使用 Scipy 最小化变量

转载 作者:行者123 更新时间:2023-11-30 22:30:32 25 4
gpt4 key购买 nike

作为一个实验,我想最小化以下目标函数:

enter image description here

参数 w1 和 w2 由 lambda 限定:

enter image description here

enter image description here

限制如下:

enter image description here

我还没有找到关于如何优化这样的多变量情况的合适的 Scipy 示例。如果有人可以就这个问题提供指导,我将不胜感激。

最佳答案

代码:

import numpy as np
from scipy.optimize import minimize

def fun(x):
return np.sum(x[2:])

x0 = np.zeros(4) # lambda1, lambda 2, w1, w2
cons = ({'type': 'ineq', 'fun': lambda x: x[2] - 2 + 10 * x[0] + 3 * x[1]},
{'type': 'ineq', 'fun': lambda x: x[3] - 2 + 5 * x[0] + 5 * x[1]},
{'type': 'ineq', 'fun': lambda x: x[2]},
{'type': 'ineq', 'fun': lambda x: x[3]},
{'type': 'eq', 'fun': lambda x: x[0] + x[1] - 1})
res = minimize(fun, x0, constraints=cons)
print(res)
print(np.round(res.x, 2))

输出:

fun: -3.3306690738754696e-16
jac: array([ 0., 0., 1., 1.])
message: 'Optimization terminated successfully.'
nfev: 7
nit: 1
njev: 1
status: 0
success: True
x: array([ 5.00000000e-01, 5.00000000e-01, -3.33066907e-16,
0.00000000e+00])
[ 0.5 0.5 -0. 0. ]

这基本上只使用 the official docs 中的信息.

编辑我在这里使用了一般优化函数,但您可能应该使用 scipy.optimize.linprog,因为这是一个 LP!

我没有检查它,但 linprog-usage 看起来有点像:

from scipy.optimize import linprog
c = [0, 0, 1, 1]
A = [[-10, -3, -1, 0], [-5, -5, 0, -1]]
b = [-2, -2]
A_eq = [[1, 1, 0, 0]]
b_eq = [1]
x0_bnds = (-np.inf, -np.inf, 0, 0)
x1_bnds = (np.inf, np.inf, np.inf, np.inf)
res = linprog(c, A, b, A_eq, b_eq, bounds=list(zip(x0_bnds, x1_bnds)))
print(res)

输出:

 fun: -0.0
message: 'Optimization terminated successfully.'
nit: 4
slack: array([ 0., 3.])
status: 0
success: True
x: array([-0.14285714, 1.14285714, 0. , 0. ])

关于python - 考虑到其他变量的不等式条件,使用 Scipy 最小化变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46018334/

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