mcts-simple is a Python3 library that implements Monte Carlo Tree Search and its variants to solve a host of problems, most commonly for reinforcement learning.
-
Reduced time taken to train MCTS and its variants.
-
Tic-Tac-Toe Example: 9 hours → 100 seconds (
$10^6$ iterations) -
CartPole Example: 15 hours → 22 minutes (
$10^6$ iterations)
-
-
Ported over to
msgpack
for saving and loading of MCTS objects.-
Eliminates security vulnerabilities that come with
pickle
. -
save()
andload()
is expected to be slightly slower with larger memory footprint.
-
-
Added the
seed
parameter andset_seed(seed)
method for reproducible MCTS training.-
Direct usage of
random
and global random seed will no longer affect MCTS training. However, global random seed may still affect game internals. -
Random number generator (RNG) for MCTS is now independent of the game's internal RNG.
-
RNG is saved when exporting a trained MCTS.
-
-
Support for Python 3.7 has been deprecated.
MCTS attempts to identify the most promising moves at each state by choosing random actions at that state for every episode (playouts/rollouts). The final game result of each episode is then used to determine the weight of all nodes traversed during that episode so that the probability of choosing an action that yields higher current and potential rewards is increased.
There are 4 stages to the MCTS:
- Selection
- Traverse through the search tree from the root node to a leaf node, while only selecting the most promising child nodes. Leaf node in this case refers to a node that has not yet gone through the expansion stage, rather than its traditional definition which is "a node without child nodes".
- Expansion
- If the leaf node does not lead to an outcome to the episode (e.g. win/lose/draw), create at least one child node for that leaf node and choose one child node from those created.
- Simulation
- Complete one episode starting from the chosen child node, where random actions are chosen for future states. An episode is only completed when an outcome can be yielded from it.
- Backpropagation
- The outcome yielded from the simulated episode in stage 3 should be used to update information in traversed nodes.
Note:
- We assume that states are unique.
- Root node's score is almost never evaluated, and at most only the number of visits, n, is used.
- We assume the node with the highest average returns is the most visited node.
UCT, a variation of MCTS, is often used instead of vanilla MCTS for a few reasons, mainly:
- MCTS emphasizes entirely on exploitation. On the other hand, UCT is able to balance exploration and exploitation.
- MCTS may favour a losing move despite the presence of one or few forced refutations. UCT attempts to deal with this limitation of the original MCTS.
UCT uses the UCB1 formula to evaluate actions at each state. The exploration parameter c in the UCB1 formula is theoretically equal to
Most of the time, a closed loop MCTS is sufficient in dealing with reinforcement learning problems. However, when it comes to games that have non-deterministic or non-discrete states, an open loop MCTS is required. Open loop MCTS would completely eliminate the need for chance nodes. Transpositions will also not be considered since we would ignore the game state entirely. Since the tree is now significantly smaller in an open loop MCTS, the branching factor is also a lot smaller and evaluations may be less accurate. This would also mean that results are more likely to converge at a faster rate. This variant of MCTS can be used for deterministic games as well.
Note:
- Since there is no transposition table in an open loop MCTS, we cannot change the initial starting state.
mcts-simple only supports Python 3.8 and above. If you want to use mcts-simple for other versions of Python, it may not function as intended.
mcts-simple requires the following libraries, which is automatically installed together with it:
tqdm
msgpack
The following libraries are used in our examples:
gymnasium
andimageio
(for CartPole)
To install the module:
pip install mcts-simple
To import the module:
from mcts_simple import *
Create a class for your game by inheriting the Game
class from mcts-simple, and define the following methods for your class:
Method | What it does |
---|---|
__init__() |
Initializes the object. |
render() |
Returns a visual representation of the current state of the game. |
get_state() |
Returns current state of the game. Note: MCTS will automatically apply str() on the state so that it becomes hashable and compatible with Python's dictionary. |
number_of_players() |
Returns number of players. |
current_player() |
Returns the player that is taking an action this turn. Note: Players are labelled from 0 to number of players - 1 . |
possible_actions() |
Returns the possible actions that can be taken by current player this turn. |
take_action(action: int) |
Player takes action. Note: Even if action leads to the end of the game, next player should still be chosen. |
has_outcome() |
Returns True if game has ended. Returns False if game is still ongoing. |
winner() |
Returns empty list if all players lose. Returns list of players if game ends in a draw. Returns list of winners if at least 1 player wins. |
After creating your game environment, you're basically done! You can train and export your MCTS with just 3 lines of code. To reproduce results, you can set the seed
parameter, or use the set_seed()
method. Note that YourGame()
should be the game environment that you have created.
mcts = MCTS(YourGame(), training = True)
mcts.self_play(iterations = 50000)
mcts.save("game.mcts")
You can import your trained MCTS and see how it performs with another 3 lines of code.
mcts = MCTS(YourGame(), training = False)
mcts.load("game.mcts")
mcts.self_play()
We recommend enabling transposition_table
(if the option is available), as it can substantially reduce the number of nodes created and improve efficiency. If you have any issues in creating your environment, you can browse the source code or check out the examples provided here.
I appreciate it if you can contribute to this project as this is my first public Python package. If you think that something is wrong with my code, you can open an issue and I'll try my best to resolve it!
- Implement PUCT (Predictor + UCT).