标签: python nonlinear-optimization genetic-programming deap
我正在通过DEAP软件包在python中使用遗传算法。 在此过程中,我想为个体中的每个基因设置不同的上限和下限。
我想知道怎么做? 有关更多说明, 假设我的个人有两个基因,那么我想给出以下界限
gene1:应限制为0,1 基因2:应该限制在2,3
答案 0 :(得分:0)
有关创建有界初始种群的信息,请参见this StackOverflow question。
有关在后代中强制执行范围的信息,请参见this DEAP documentation example。