ray/rllib/agents/ars
Balaji Veeramani 7f1bacc7dc
[CI] Format Python code with Black (#21975)
See #21316 and #21311 for the motivation behind these changes.
2022-01-29 18:41:57 -08:00
..
tests [CI] Format Python code with Black (#21975) 2022-01-29 18:41:57 -08:00
__init__.py [RLlib] PyTorch version of ARS (Augmented Random Search). (#8106) 2020-04-21 09:47:52 +02:00
ars.py [CI] Format Python code with Black (#21975) 2022-01-29 18:41:57 -08:00
ars_tf_policy.py [CI] Format Python code with Black (#21975) 2022-01-29 18:41:57 -08:00
ars_torch_policy.py [CI] Format Python code with Black (#21975) 2022-01-29 18:41:57 -08: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