Tianshou/AlphaGo/test.py

12 lines
153 B
Python
Raw Normal View History

2017-11-20 12:44:29 +08:00
from game import Game
from engine import GTPEngine
2017-11-28 01:15:46 +08:00
import utils
2017-11-20 12:44:29 +08:00
2017-12-05 23:17:20 +08:00
2017-11-20 12:44:29 +08:00
g = Game()
2017-12-05 23:17:20 +08:00
e = GTPEngine(game_obj = g)
res = e.run_cmd('8 genmove BLACK')
print(res)