gpt4 book ai didi

python - go bot with minimax tree search 太慢了

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:20:39 24 4
gpt4 key购买 nike

我正在读《深度学习与围棋》这本书,我在书中没有走多远;我编写了基础(规则、辅助类)和 Qt GUI 界面。一切正常,我决定编写 minimax 程序的示例,看看我是否能打败它 ;-)但它太慢了:走一步需要几分钟,初始棋盘为 9x9。默认深度为 3 步,我认为第一步的计算需要 (9x9)x(9x9-1)x(9x9-2)~ 500 000 个位置。好的,它是 python,不是 C,但我认为这最多可以在一分钟内计算出来。

我删除了一个对 copy.deepcopy() 的调用,它似乎消耗了很多时间。但它停留得太慢了。

这里有一些东西:计算线程:

class BotPlay(QThread):
"""
Thread de calcul du prochain coup par le bot
"""

def __init__(self, bot, bots, game):
"""
constructeur, pour le prochain coup à jouer

:param bot: le bot qui doit jouer
:param bots: l'ensemble des 2
:param game: l'état actuel du jeu (avant le coup à jouer)
"""
QThread.__init__(self)
self.bot = bot
self.bots = bots
self.game = game

played = pyqtSignal(Move, dict, GameState)

def __del__(self):
self.wait()

def run(self):
self.msleep(300)
bot_move = self.bot.select_move(self.game)
self.played.emit(bot_move, self.bots, self.game)

选择移动方法及其类:

class DepthPrunedMinimaxAgent(Agent):

@bot_thinking(associated_name="minimax prof. -> LONG")
def select_move(self, game_state: GameState):
PonderedMove = namedtuple('PonderedMove', 'move outcome')
best_move_so_far = None
for possible_move in game_state.legal_moves():
next_state = game_state.apply_move(possible_move)
our_best_outcome = -1 * self.best_result(next_state, capture_diff)
if best_move_so_far is None or our_best_outcome > best_move_so_far.outcome:
best_move_so_far = PonderedMove(possible_move, our_best_outcome)
return best_move_so_far.move

def best_result(self, game_state: GameState, eval_fn, max_depth: int = 2):
if game_state.is_over():
if game_state.next_player == game_state.winner():
return sys.maxsize
else:
return -sys.maxsize

if max_depth == 0:
return eval_fn(game_state)

best_so_far = -sys.maxsize
for candidate_move in game_state.legal_moves():
next_state = game_state.apply_move(candidate_move)
opponent_best_result = self.best_result(next_state, eval_fn, max_depth - 1)
our_result = -opponent_best_result
if our_result > best_so_far:
best_so_far = our_result
return best_so_far

我几乎可以肯定问题不是来自 GUI,因为这本书给出的程序的初始版本完全处于控制台模式,它和我的一样慢。

我的要求是什么?好吧,要确定这种缓慢的行为是不正常的,并且也许可以找到问题所在的线索。 minimax算法来自书本,所以还可以。

谢谢

最佳答案

机器学习通常用 Python 完成,因为:

    1. 简单安全
    1. 灵活
    1. 所有繁重的工作都在专门的模块中完成,例如 tensorflow 和 keras

在您的情况下,3. 不成立。所有这些嵌套调用、参数传递、复制和电路板评估都在 Python 中完成。成本是编译语言的 10 到 100 倍[需要引用]。

流行的 ML 项目似乎都是用 Python 完成的,但实际的 Python 代码只是围绕处理和提供数据、控制对 tensorflow 的调用以及显示结果。这就是他们能够做到的原因。

所以,是的,你的故事没有什么不寻常的。你查过Leela-zero吗?它更复杂/涉及更多,但开源且做得很好,它可能已经打败了你。

关于python - go bot with minimax tree search 太慢了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58016916/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com