3

目前我尝试使用 GPyOpt 最小化函数并获得优化的参数。

import GPy
import GPyOpt
from math import log
def f(x):
    x0,x1,x2,x3,x4,x5 = x[:,0],x[:,1],x[:,2],x[:,3],x[:,4],x[:,5],
    f0 = 0.2 * log(x0)
    f1 = 0.3 * log(x1)
    f2 = 0.4 * log(x2)
    f3 = 0.2 * log(x3)
    f4 = 0.5 * log(x4)
    f5 = 0.2 * log(x5)
    return -(f0 + f1 + f2 + f3 + f4 + f5) 

bounds = [
    {'name': 'x0', 'type': 'discrete', 'domain': (1,1000000)},
    {'name': 'x1', 'type': 'discrete', 'domain': (1,1000000)},
    {'name': 'x2', 'type': 'discrete', 'domain': (1,1000000)},
    {'name': 'x3', 'type': 'discrete', 'domain': (1,1000000)},
    {'name': 'x4', 'type': 'discrete', 'domain': (1,1000000)},
    {'name': 'x5', 'type': 'discrete', 'domain': (1,1000000)}
]

myBopt = GPyOpt.methods.BayesianOptimization(f=f, domain=bounds)
myBopt.run_optimization(max_iter=100)
print(myBopt.x_opt) 
print(myBopt.fx_opt) 

我想为这个函数添加限制条件。这是一个例子。

x0 + x1 + x2 + x3 + x4 + x5 == 100000000

我应该如何修改这段代码?

4

2 回答 2

2

GPyOpt 仅支持 形式的约束c(x0, x1, ..., xn) <= 0,因此您能做的最好的事情就是选择一个足够小的值,然后将您拥有的约束表达式“夹在中间”。假设 0.1 足够小,那么您可以这样做:

(x0 + x1 + x2 + x3 + x4 + x5) - 100000000 <= 0.1
(x0 + x1 + x2 + x3 + x4 + x5) - 100000000 >= -0.1

接着

(x0 + x1 + x2 + x3 + x4 + x5) - 100000000 - 0.1 <= 0
100000000 - (x0 + x1 + x2 + x3 + x4 + x5) - 0.1 <= 0

API 看起来像这样:

constraints = [
    {
        'name': 'constr_1',
        'constraint': '(x[:,0] + x[:,1] + x[:,2] + x[:,3] + x[:,4] + x[:,5]) - 100000000 - 0.1'
    },
    {
        'name': 'constr_2',
        'constraint': '100000000 - (x[:,0] + x[:,1] + x[:,2] + x[:,3] + x[:,4] + x[:,5]) - 0.1'
    }
]

myBopt = GPyOpt.methods.BayesianOptimization(f=f, domain=bounds, constraints = constraints)
于 2018-03-06T10:52:04.987 回答
0

我找到了一个更快的方法。

如果您需要 X0+X1.....Xn ==100000000 ,您只需将 X0+X1....Xn-1 提供给 GpyOpt。

GpyOpt给你(X0+X1.....Xn-1)后,你可以得到 Xn = 100000000 - sum(X0+X1.....Xn-1)

于 2018-12-12T06:59:09.570 回答