如何在Python中初始化具有特定群体的遗传算法(GA)

时间:2016-06-17 22:30:23

标签: python random theano genetic-algorithm genetic-programming

以下等式显示了Python遗传算法的随机初始种群 toolbox.register("attr_bool", random.randint, 0, 1)

toolbox.register("individual", tools.initRepeat, creator.Individual, toolbox.attr_bool, 100)

toolbox.register("population", tools.initRepeat, list, toolbox.individual)

问题是如何使用特定矩阵初始化人口?我对随机初始化启动GA不感兴趣。

1 个答案:

答案 0 :(得分:0)

https://groups.google.com/forum/#!topic/deap-users/B_KaNroEJjE”中找到的最佳答案。它来自谷歌集团