Using built-in RLlib agents with Tune

Hello! I was curious how tune.run("PPO"...) knows to use the built-in PPO agent? Is there a page on the docs that has all of the keywords for the different built-in agents that I can use?

Hi @imrancharania ,

These keyword/agent mappings are registered in the _register_all function.

You can see the list of keywords and their corresponding implementations here:

For documentation, see RLlib Algorithms.

Thanks @matthewdeng!!