AlphaZeroIncubator / AlphaZero

Our implementation of AlphaZero for simple games such as Tic-Tac-Toe and Connect4.
0 stars 0 forks source link

Initial mcts implementation, WIP #9

Closed PhilipEkfeldt closed 4 years ago

PhilipEkfeldt commented 4 years ago

Initial code for #5 , any feedback appreciated. Not ready for merge

guidopetri commented 4 years ago

I'd like to move the definition of Game to a different file, if that's alright. I'm currently writing it up on a _game.py file. I'll do a PR soon so you can take a look.

PhilipEkfeldt commented 4 years ago

I'd like to move the definition of Game to a different file, if that's alright. I'm currently writing it up on a _game.py file. I'll do a PR soon so you can take a look.

Of course, I just did it this way for removing linting warning :p

PhilipEkfeldt commented 4 years ago

@charlesoblack please review. This is an initial implementation to close #5, I will create a new issue with improvements that are needed.

PhilipEkfeldt commented 4 years ago

I'll clean up based on comments and stash some unused code as well

guidopetri commented 4 years ago

Take your time :) and thanks again for this!