我正在使用 Python 的 PyGMO 包进行多目标优化。我无法在构造函数中修复适应度函数的维度,并且文档也不是很有描述性。我想知道这里是否有人过去曾使用过 PyGMO:这可能相当简单。
我尝试在下面构建一个最小示例:
from PyGMO.problem import base
from PyGMO import algorithm, population
import numpy as np
import matplotlib.pyplot as plt
class my_problem(base):
def __init__(self, fdim=2):
NUM_PARAMS = 4
super(my_problem, self).__init__(NUM_PARAMS)
self.set_bounds(0.01, 100)
def _objfun_impl(self, K):
E1 = K[0] + K[2]
E2 = K[1] + K[3]
return (E1, E2, )
if __name__ == '__main__':
prob = my_problem() # Create the problem
print (prob)
algo = algorithm.sms_emoa(gen=100)
pop = population(prob, 50)
pop = algo.evolve(pop)
F = np.array([ind.cur_f for ind in pop]).T
plt.scatter(F[0], F[1])
plt.xlabel("$E_1$")
plt.ylabel("$E_2$")
plt.show()
fdim=2
以上是设置适应度维度的失败尝试。代码失败并出现以下错误:
ValueError: ..\..\src\problem\base.cpp,584: fitness dimension was changed inside objfun_impl().
如果有人可以帮助解决这个问题,我将不胜感激。谢谢!