我刚开始使用 GPy 和 GPyOpt。我的目标是设计一个迭代过程来找到 x 的位置,其中 y 是最大值。虚拟 x 数组从 0 到 100,步长为 0.5。虚拟 y 数组是 x 数组的函数。真正的函数是 y = -x**2 + 50*x + 5,所以 ymax 是 x = 25.0 时。
我通过将 5 个点随机分配给 x 数组(具有相应的 5 个 y 值)开始它,并运行贝叶斯优化以让它推荐下一个采样位置。我可以使用方便的 myBopt.plot_acquistion() 来生成绘图。示例图如下。
问题:
(1) 类高斯峰和垂直线是什么意思?他们有什么建议?我假设高斯峰的中心是建议的下一个采样位置,这是正确的吗?
(2)如何找回高斯峰的中心位置?我试图从 myBopt 打印出一些东西,但在任何地方都找不到(如果我知道如何获得这个数字,我可以将它附加到原始列表中以开始另一个 BO 并找到下一个位置,直到收敛)。
(3) 有没有办法检索原始数据以绘制采集函数图?这一定是保存在某个地方的。
(4)我还生成了收敛图(在采集图下),我真的无法理解。有人可以向我解释一下吗?
谢谢。
import GPyOpt
import GPy
from numpy.random import seed
import numpy as np
import matplotlib.pyplot as plt
import random
N = 5
x_array = np.arange(0,100,0.5)
x_random = np.array(sorted(random.sample(x_array, N)))
y_random = (-x_random**2 + 50*x_random + 5) # y = -x**2 + 50*x + 5
## x_feed and y_feed are the matrices that will be fed into Bayesian Optimization
x_feed = x_random[:, None] # (200, 1)
y_feed = y_random[:, None] # (200, 1)
##creat the objective function
class max_number(object):
def __init__(self, x_feed, y_feed):
self.x_feed = x_feed
self.y_feed = y_feed
def f(self, x):
return np.dot(1.0*(x_feed == x).sum(axis = 1), y_feed)[:, None]
func = max_number(x_feed, y_feed)
domain = [{'name' : 'guess_number',
'type' : 'bandit',
'domain': x_feed}]
seed(123)
myBopt = GPyOpt.methods.BayesianOptimization(f = func.f,
domain = domain,
acquisition_type = 'EI',
maximize = True,
exact_feval = False,
initial_design_numdata = 5,
verbosity = True)
max_iter = 50
myBopt.run_optimization(max_iter)
myBopt.plot_acquisition()
print 'x random initial points {}'.format(x_random)
print 'y random initial points {}'.format(y_random)
print 'myBopt.X {}'.format(myBopt.X)
print 'myBopt.x_opt {}'.format(myBopt.x_opt)
print 'myBopt.Y {}'.format(myBopt.Y)
print 'myBopt.Y_best {}'.format(myBopt.Y_best)
print 'myBopt.Y_new {}'.format(myBopt.Y_new)
print 'myBopt.suggest_next_locations {}'.format(myBopt.suggest_next_locations())