Expand description
Monte Carlo Tree Search (MCTS) for AIXI.
This module implements the planning component of MC-AIXI. It use an upper confidence bounds applied to trees (UCT) approach to select actions by simulating future interactions with a world model.
Structs§
- Search
Node - A node in the MCTS search tree.
- Search
Tree - Manages the MCTS tree and provides the
searchentry point.
Traits§
- Agent
Simulator - Interface for an agent that can be simulated during MCTS.