This is a basic working implementation of the MCTS algorithm. Though currently the algorithm is slow compared with other implemenations, and makes sub-optimal choices when playing tic-tac-toe. Therefore some modifications are needed
5 lines
75 B
Rust
5 lines
75 B
Rust
pub mod backprop;
|
|
pub mod decision;
|
|
pub mod selection;
|
|
pub mod simulation;
|