ray/rllib/agents/ars
2021-09-30 15:03:37 +02:00
..
tests [RLlib] Custom view requirements (e.g. for prev-n-obs) work with compute_single_action and compute_actions_from_input_dict. (#18921) 2021-09-30 15:03:37 +02:00
__init__.py [RLlib] PyTorch version of ARS (Augmented Random Search). (#8106) 2020-04-21 09:47:52 +02:00
ars.py [RLlib] DDPPO fixes and benchmarks. (#18390) 2021-09-08 19:39:01 +02:00
ars_tf_policy.py [RLlib] Fix seeding for ES and ARS. (#16744) 2021-07-19 13:13:05 -04: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