python人工智能算法包_Python 人工智能算法工具包 SimpleAI
发布日期:2021-06-24 11:40:59 浏览次数:2 分类:技术文章

本文共 659 字,大约阅读时间需要 2 分钟。

软件介绍

SimpleAI 是 Python 实现的人工智能算法工具包,示例代码:from simpleai.search import SearchProblem, astar

GOAL = 'HELLO WORLD'

class HelloProblem(SearchProblem):

def actions(self, state):

if len(state) < len(GOAL):

return list(' ABCDEFGHIJKLMNOPQRSTUVWXYZ')

else:

return []

def result(self, state, action):

return state + action

def is_goal(self, state):

return state == GOAL

def heuristic(self, state):

# how far are we from the goal?

wrong = sum([1 if state[i] != GOAL[i] else 0

for i in range(len(state))])

missing = len(GOAL) - len(state)

return wrong + missing

problem = HelloProblem(initial_state='')

result = astar(problem)

print result.state

print result.path()

为你推荐:

转载地址:https://blog.csdn.net/weixin_32553639/article/details/113503697 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:git切换版本后怎么切回去_git本地仓库管理方法总结
下一篇:MySQL重新设置密码语法_MySQL密码忘了怎么办?MySQL重置root密码方法

发表评论

最新留言

网站不错 人气很旺了 加油
[***.192.178.218]2024年04月10日 08时35分48秒