作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我能够使用 SwarmPackagePy 库绘制 Firefly 算法的 3D 动画。
我想使用这个算法来优化高斯过程回归(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/
我是一名优秀的程序员,十分优秀!