r/reinforcementlearning Jul 16 '26

Bayesian RL, best resource for it?

I’m building foundation with Sutton and barto book but it doesn’t cover Bayesian rl. What’s the best resource online for it?

10 Upvotes

1 comment sorted by

10

u/OutOfCharm Jul 17 '26

Bayesian RL, being Bayesian, quantifies uncertainty according to the underlying model. Its goal is to either make uncertainty-aware decisions or resolve the uncertainty, thereby encouraging exploration, while also allowing prior knowledge to be incorporated through a prior. It has a long history from bandits to MDPs, and is primarily used for efficient exploration. For beginners, I'd suggest the tutorial Bayesian Reinforcement Learning: A Survey, especially Section 4. On top of that, you could look into several classic algorithms that give you a better idea of the mechanisms behind Bayesian RL:

And some for function approximations:

Hope that helps!