AttributeError:模块“ pygmo”没有属性“ spea2”

时间:2019-06-12 03:10:51

标签: python pygmo

SELECT * FROM ( SELECT rn = row_number() over (partition by Attrib.SkillTargetID order by AgentLV.DateTime desc), {other columns that you required} FROM Agent_Attribute Attrib INNER JOIN [prod_awdb].[dbo].[Agent_Event_Detail] AgentLV ON Attrib.SkillTargetID = AgentLV.SkillTargetID ) AS D WHERE D.rn = 1 尚未实施Pygmo 2.1算法吗?

我问是因为SPEA2SPEA2文档上看起来已完全实现

Pygmo算法没问题。

重现错误的步骤:

nsga2

我希望没有错误,但是我得到了

import pygmo as pg <br/>
algo = pg.algorithm(pg.spea2(archive_size = 0))

1 个答案:

答案 0 :(得分:0)

我正在看示例documentation,我认为这可能有效:

from PyGMO import *
alg = algorithm.spea2(archive_size = 0)

您正在尝试从基本模块访问spea2,而它是算法子模块的一部分。