ray/rllib/agents/ars
2021-04-16 09:16:24 +02:00
..
tests [RLlib] ARS/ES eval workers not working: Issue 9933. (#11308) 2020-10-12 13:49:48 -07:00
__init__.py [RLlib] PyTorch version of ARS (Augmented Random Search). (#8106) 2020-04-21 09:47:52 +02:00
ars.py [RLlib] Fix most remaining RLlib algos for running with trajectory view API. (#12366) 2020-12-01 17:41:10 -08:00
ars_tf_policy.py [RLlib] Multi-GPU support for Torch algorithms. (#14709) 2021-04-16 09:16:24 +02:00
ars_torch_policy.py [RLlib] JAXPolicy prep. PR #1. (#13077) 2020-12-26 20:14:18 -05:00
README.md [RLLib] Readme.md Documentation for Almost All Algorithms in rllib/agents (#13035) 2020-12-29 18:45:55 -05:00

Augmented Random Search (ARS)

Overview

ARS is a sample-efficient random search method that can outperform model-free RL algorithms. For each iteration, ARS discovers new policies via random noise from a central policy and sorts these policies by their performance in the environment. At the end of each iteration, the best policies ranked by performance are used to compute the final update for the central policy.

Documentation & Implementation:

Augmented Random Search (ARS).

Detailed Documentation

Implementation