gpt4 book ai didi

python - 如何在sklearn的python代码中使用SwarmPackagePy进行回归?

转载 作者:行者123 更新时间:2023-12-01 09:30:53 25 4
gpt4 key购买 nike

我能够使用 SwarmPackagePy 库绘制 Firefly 算法的 3D 动画。

3D animation of Firefly algoirthm

我想使用这个算法来优化高斯过程回归(GPR)中的超参数。为此,我将 GPR 的优化器定义为:

alh = SwarmPackagePy.fa(50, tf.easom_function, 0, 16, 2, 10, 1, 1, 1, 0.1, 0, 0.1)

animation3D(alh.get_agents(),tf.easom_function, 10,-10)

然后我在 GPR 中使用了这个优化器(alh),如下所示:

gp = GaussianProcessRegressor(kernel=kernel, alpha=1.5, optimizer=alh, n_restarts_optimizer=5)

但是,运行python代码后,出现如下错误:

ValueError: Unknown optimizer <SwarmPackagePy.fa.fa object at 0x0982A3B0>.

我是不是做错了?错误的原因可能是什么?

谢谢!

最佳答案

作为documentation sklearn 说,optimizer 参数需要一个可调用的。但是,SwarmPackagePy.fa 不是可调用的。因为它既不是方法,也不是实现 __call__ 方法的类,从这里可以看出:

https://github.com/SISDevelop/SwarmPackagePy/blob/master/SwarmPackagePy/fa.py

您可以在该文件中编写自己的 __call__ 方法,使用与以下相同的签名:

def __call__(obj_func, initial_theta, bounds):
# you need to write
# * 'obj_func' is the objective function to be maximized, which
# takes the hyperparameters theta as parameter and an
# optional flag eval_gradient, which determines if the
# gradient is returned additionally to the function value
# * 'initial_theta': the initial value for theta, which can be
# used by local optimizers
# * 'bounds': the bounds on the values of theta
....
# Returned are the best found hyperparameters theta and
# the corresponding value of the target function.
return theta_opt, func_min

关于python - 如何在sklearn的python代码中使用SwarmPackagePy进行回归?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49974855/

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