python 哪个包里有 遗传算法

 我来答
guofei写文章
2019-09-19
知道答主
回答量:49
采纳率:0%
帮助的人:14.8万
展开全部

scikit-opt 调研过很多遗传算法库,这个挺好用的。

# 目标函数
def demo_func(x):
    x1, x2, x3 = x    
    return x1 ** 2 + (x2 - 0.05) ** 2 + x3 ** 2
from ga import GA

调用遗传算法求解:

ga = GA(func=demo_func, lb=[-1, -10, -5], ub=[2, 10, 2], max_iter=500)
best_x, best_y = ga.fit()


甚至对tsp问题(Travelling Salesman Problem)也有很好的支持

ga_tsp = GA_TSP(func=cal_total_distance, points=points, pop=50, max_iter=200, Pm=0.001)

best_points, best_distance = ga_tsp.fit()

管理中心
2017-06-03 · TA获得超过174个赞
知道小有建树答主
回答量:173
采纳率:0%
帮助的人:130万
展开全部
当然是Biopython
http://biopython.org
里面常用的算法都有了。

https://pypi.python.org/pypi?%3Aaction=search&term=bioinformatics&submit=search
上面的链接里面有很多各种各样的库。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式