diff --git a/doc/source/rllib-dev.rst b/doc/source/rllib-dev.rst index 6cd148880..aba1589d3 100644 --- a/doc/source/rllib-dev.rst +++ b/doc/source/rllib-dev.rst @@ -9,7 +9,7 @@ Feature development and upcoming priorities are tracked on the `RLlib project bo Benchmarks ---------- -Currently we host a number of full training run results in the `rl-experiments repo `__, and maintain a list of working hyperparameter configurations in `tuned_examples `__. Benchmark results are extremely valuable to the community, so if you happen to have results that may be of interest, consider making a pull request to either repo. +A number of training run results are available in the `rl-experiments repo `__, and there is also a list of working hyperparameter configurations in `tuned_examples `__. Benchmark results are extremely valuable to the community, so if you happen to have results that may be of interest, consider making a pull request to either repo. Contributing Algorithms ----------------------- @@ -18,7 +18,7 @@ These are the guidelines for merging new algorithms into RLlib: * Contributed algorithms (`rllib/contrib `__): - must subclass Agent and implement the ``_train()`` method - - must include a lightweight test (<30s to run) to sanity check functionality + - must include a lightweight test (`example `__) to ensure the algorithm runs - should include tuned hyperparameter examples and documentation - should offer functionality not present in existing algorithms @@ -49,7 +49,7 @@ Second, register the agent with a name in `contrib/registry.py ` +Contributed algorithms, which can be run via ``rllib train --run=contrib/`` See https://ray.readthedocs.io/en/latest/rllib-dev.html for guidelines.