Avnish Narayan 684e28b380 [RLlib] RLlib deprecation Notices Part 1 (algorithm/, evaluation/, execution/, models/jax/) (#36826) 1 年之前
..
tests b218ae7e4a [RLlib] Replace CartPole-v0 -> CartPole-v1 everywhere, incl. docs. (#29752) 2 年之前
README.md 69055f556d [RLlib] Move `agents.ars` to `algorithms.ars`. (#24516) 2 年之前
__init__.py 8a9a176a24 [RLlib] Remove all default config objects and rllib/agents (#33242) 1 年之前
ars.py 684e28b380 [RLlib] RLlib deprecation Notices Part 1 (algorithm/, evaluation/, execution/, models/jax/) (#36826) 1 年之前
ars_tf_policy.py 00152a4b4b [RLlib] Clean up some signatures for compute_actions. (#31241) 1 年之前
ars_torch_policy.py 8a9a176a24 [RLlib] Remove all default config objects and rllib/agents (#33242) 1 年之前

README.md

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