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
算法吗?
我问是因为SPEA2
在SPEA2
文档上看起来已完全实现
Pygmo
算法没问题。
重现错误的步骤:
nsga2
我希望没有错误,但是我得到了
import pygmo as pg <br/>
algo = pg.algorithm(pg.spea2(archive_size = 0))
答案 0 :(得分:0)
我正在看示例documentation,我认为这可能有效:
from PyGMO import *
alg = algorithm.spea2(archive_size = 0)
您正在尝试从基本模块访问spea2
,而它是算法子模块的一部分。