mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
96 lines
5.2 KiB
ReStructuredText
96 lines
5.2 KiB
ReStructuredText
.. include:: rllib/we_are_hiring.rst
|
|
|
|
Contributing to RLlib
|
|
=====================
|
|
|
|
Development Install
|
|
-------------------
|
|
|
|
You can develop RLlib locally without needing to compile Ray by using the `setup-dev.py <https://github.com/ray-project/ray/blob/master/python/ray/setup-dev.py>`__ script. This sets up links between the ``rllib`` dir in your git repo and the one bundled with the ``ray`` package. However if you have installed ray from source using `these instructions <https://docs.ray.io/en/master/installation.html>`__ then do not this as these steps should have already created this symlink. When using this script, make sure that your git branch is in sync with the installed Ray binaries (i.e., you are up-to-date on `master <https://github.com/ray-project/ray>`__ and have the latest `wheel <https://docs.ray.io/en/master/installation.html>`__ installed.)
|
|
|
|
API Stability
|
|
-------------
|
|
|
|
Objects and methods annotated with ``@PublicAPI`` or ``@DeveloperAPI`` have the following API compatibility guarantees:
|
|
|
|
.. autofunction:: ray.rllib.utils.annotations.PublicAPI
|
|
|
|
.. autofunction:: ray.rllib.utils.annotations.DeveloperAPI
|
|
|
|
Features
|
|
--------
|
|
|
|
Feature development, discussion, and upcoming priorities are tracked on the `GitHub issues page <https://github.com/ray-project/ray/issues>`__ (note that this may not include all development efforts).
|
|
|
|
Benchmarks
|
|
----------
|
|
|
|
A number of training run results are available in the `rl-experiments repo <https://github.com/ray-project/rl-experiments>`__, and there is also a list of working hyperparameter configurations in `tuned_examples <https://github.com/ray-project/ray/tree/master/rllib/tuned_examples>`__, sorted by algorithm. 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
|
|
-----------------------
|
|
|
|
These are the guidelines for merging new algorithms into RLlib:
|
|
|
|
* Contributed algorithms (`rllib/contrib <https://github.com/ray-project/ray/tree/master/rllib/contrib>`__):
|
|
- must subclass Trainer and implement the ``step()`` method
|
|
- must include a lightweight test (`example <https://github.com/ray-project/ray/blob/6bb110393008c9800177490688c6ed38b2da52a9/test/jenkins_tests/run_multi_node_tests.sh#L45>`__) to ensure the algorithm runs
|
|
- should include tuned hyperparameter examples and documentation
|
|
- should offer functionality not present in existing algorithms
|
|
|
|
* Fully integrated algorithms (`rllib/agents <https://github.com/ray-project/ray/tree/master/rllib/agents>`__) have the following additional requirements:
|
|
- must fully implement the Trainer API
|
|
- must offer substantial new functionality not possible to add to other algorithms
|
|
- should support custom models and preprocessors
|
|
- should use RLlib abstractions and support distributed execution
|
|
|
|
Both integrated and contributed algorithms ship with the ``ray`` PyPI package, and are tested as part of Ray's automated tests. The main difference between contributed and fully integrated algorithms is that the latter will be maintained by the Ray team to a much greater extent with respect to bugs and integration with RLlib features.
|
|
|
|
How to add an algorithm to ``contrib``
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
It takes just two changes to add an algorithm to `contrib <https://github.com/ray-project/ray/tree/master/rllib/contrib>`__. A minimal example can be found `here <https://github.com/ray-project/ray/tree/master/rllib/contrib/random_agent/random_agent.py>`__. First, subclass `Trainer <https://github.com/ray-project/ray/commits/master/rllib/agents/trainer.py>`__ and implement the ``_init`` and ``step`` methods:
|
|
|
|
.. literalinclude:: ../../rllib/contrib/random_agent/random_agent.py
|
|
:language: python
|
|
:start-after: __sphinx_doc_begin__
|
|
:end-before: __sphinx_doc_end__
|
|
|
|
Second, register the trainer with a name in `contrib/registry.py <https://github.com/ray-project/ray/blob/master/rllib/contrib/registry.py>`__.
|
|
|
|
.. code-block:: python
|
|
|
|
def _import_random_agent():
|
|
from ray.rllib.contrib.random_agent.random_agent import RandomAgent
|
|
return RandomAgent
|
|
|
|
def _import_random_agent_2():
|
|
from ray.rllib.contrib.random_agent_2.random_agent_2 import RandomAgent2
|
|
return RandomAgent2
|
|
|
|
CONTRIBUTED_ALGORITHMS = {
|
|
"contrib/RandomAgent": _import_random_trainer,
|
|
"contrib/RandomAgent2": _import_random_trainer_2,
|
|
# ...
|
|
}
|
|
|
|
After registration, you can run and visualize training progress using ``rllib train``:
|
|
|
|
.. code-block:: bash
|
|
|
|
rllib train --run=contrib/RandomAgent --env=CartPole-v0
|
|
tensorboard --logdir=~/ray_results
|
|
|
|
Debugging your Algorithms
|
|
-------------------------
|
|
|
|
Finding Memory Leaks In Workers
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Keeping the memory usage of long running workers stable can be challenging. The ``MemoryTrackingCallbacks`` class can be used to track memory usage of workers.
|
|
|
|
.. autoclass:: ray.rllib.agents.callbacks.MemoryTrackingCallbacks
|
|
|
|
The objects with the top 20 memory usage in the workers will be added as custom metrics. These can then be monitored using tensorboard or other metrics integrations like Weights and Biases:
|
|
|
|
.. image:: MemoryTrackingCallbacks.png
|
|
|