mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
1.5 KiB
1.5 KiB
Decentralized Distributed Proximal Policy Optimization (DDPPO)
Overview
PPO is a model-free on-policy RL algorithm that works well for both discrete and continuous action space environments. PPO utilizes an actor-critic framework, where there are two networks, an actor (policy network) and critic network (value function).
Distributed PPO Algorithms
Distributed baseline PPO
Asychronous PPO (APPO)
Decentralized Distributed PPO (DDPPO) ..
.. removes the assumption that gradient-updates must be done on a central node. Instead, gradients are computed remotely on each data collection node and all-reduced at each mini-batch using torch distributed. This allows each worker’s GPU to be used both for sampling and for training.