nestedsoftware / blog_comments

Comments for https://nestedsoftware.com using utterances
0 stars 0 forks source link

Tic-Tac-Toe with MCTS #6

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

Tic-Tac-Toe with MCTS

Simple implementation of MCTS for tic-tac-toe in Python

https://nestedsoftware.com/2019/08/07/tic-tac-toe-with-mcts-2h5k.152104.html

Balerion14 commented 1 year ago

hello, when I want to change the number of squares on the board as well as the number of pawns to align to win, the mcts sometimes makes bad moves by keeping the same parameters as you for pre-training as well as the number of playouts in line. Maybe I made a mistake in the modifications, if so, I would like you to confirm me where to modify its parameters, but normally everything is fine. If I'm not mistaken, should I increase the number of pre-training and online playout (4000 and 200 at the base) when we increase the number of squares on the board as well as the number of squares to align to have best result?