A Taxonomy of RL Algorithms
taxonomy: 분류(학)

Model-Free vs Model-Based RL
Model-Based RL
Agent has access to a model of the environment
advantages
- allows the agent to plan e.g. AlphaZero
disadvantages
- models are usually not available (especially in real world)
- if we want to use model-based we need to learn the model from experience and create a predictive representation of the environment. This creates several challenges
- bias can be exploited
- needs lots of time and compute but does not guarentee success
- etc …
Model-Free RL
Agent does not access to a model of the environment
In 2018 it was more popular and have been more extensively developed and tested than model-based methods
advantages