colosseum.agent.mdp_models
The MDP model components of reinforcement learning agents contains the knowledge of the regarding the MDPs.
Their main role is to provide estimates about quantities related to the MDP that can be used by a BaseActor
to select
actions.
1""" 2The MDP model components of reinforcement learning agents contains the knowledge of the regarding the MDPs. 3Their main role is to provide estimates about quantities related to the MDP that can be used by a `BaseActor` to select 4actions. 5""" 6 7from colosseum.agent.mdp_models.bayesian_model import BayesianMDPModel 8 9MODEL_TYPES = [BayesianMDPModel]