peter1591 / hearthstone-ai

A Hearthstone AI based on Monte Carlo tree search and neural nets written in modern C++.
302 stars 49 forks source link

Game ai #42

Closed peter1591 closed 7 years ago

peter1591 commented 7 years ago

Q learning + deep neural network

https://medium.com/emergent-future/simple-reinforcement-learning-with-tensorflow-part-0-q-learning-with-tables-and-neural-networks-d195264329d0

peter1591 commented 7 years ago

Multiple tree MCTS: https://arxiv.org/pdf/1102.1580.pdf

Belief states in MCTS http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=7317917

peter1591 commented 7 years ago

exploitation & exploration coefficient

peter1591 commented 7 years ago

MO-ISMCTS

peter1591 commented 7 years ago

The MCTS part is now finished. Move the simulation policy to issue #55