RepoBaidu (ERNIE)Baidu (ERNIE)published Apr 25, 2018seen 5d

PaddlePaddle/PARL

Python

Open original ↗

Captured source

source ↗
published Apr 25, 2018seen 5dcaptured 8hhttp 200method plain

PaddlePaddle/PARL

Description: A high-performance distributed training framework for Reinforcement Learning

Language: Python

License: Apache-2.0

Stars: 3457

Forks: 815

Open issues: 134

Created: 2018-04-25T17:54:22Z

Pushed: 2025-09-13T06:29:18Z

Default branch: develop

Fork: no

Archived: no

README:

English | [简体中文](./README.cn.md)

> PARL is a flexible and high-efficient reinforcement learning framework.

  • [About PARL](#about-parl)
  • [Features](#features)
  • [Abstractions](#abstractions)
  • [Model](#model)
  • [Algorithm](#algorithm)
  • [Agent](#agent)
  • [Parallelization](#parallelization)
  • [Install:](#install)
  • [Dependencies](#dependencies)
  • [Getting Started](#getting-started)
  • [Examples](#examples)
  • [Waymax-RL(2025 Update, GPU-RL Autonomous Driving)](#waymax-rl2025-update-gpu-rl-autonomous-driving)
  • [xparl Security](#xparl-security)
  • [Security Considerations](#security-considerations)

About PARL

Features

Reproducible. We provide algorithms that stably reproduce the result of many influential reinforcement learning algorithms.

Large Scale. Ability to support high-performance parallelization of training with thousands of CPUs and multi-GPUs.

Reusable. Algorithms provided in the repository could be directly adapted to a new task by defining a forward network and training mechanism will be built automatically.

Extensible. Build new algorithms quickly by inheriting the abstract class in the framework.

Abstractions

PARL aims to build an agent for training algorithms to perform complex tasks. The main abstractions introduced by PARL that are used to build an agent recursively are the following:

Model

Model is abstracted to construct the forward network which defines a policy network or critic network given state as input.

Algorithm

Algorithm describes the mechanism to update parameters in Model and often contains at least one model.

Agent

Agent, a data bridge between the environment and the algorithm, is responsible for data I/O with the outside environment and describes data preprocessing before feeding data into the training process.

Note: For more information about base classes, please visit our tutorial and API documentation.

Parallelization

PARL provides a compact API for distributed training, allowing users to transfer the code into a parallelized version by simply adding a decorator. For more information about our APIs for parallel training, please visit our documentation. Here is a Hello World example to demonstrate how easy it is to leverage outer computation resources.

#============Agent.py=================
@parl.remote_class
class Agent(object):

def say_hello(self):
print("Hello World!")

def sum(self, a, b):
return a+b

parl.connect('localhost:8037')
agent = Agent()
agent.say_hello()
ans = agent.sum(1,5) # it runs remotely, without consuming any local computation resources

Two steps to use outer computation resources: 1. use the parl.remote_class to decorate a class at first, after which it is transferred to be a new class that can run in other CPUs or machines. 2. call parl.connect to initialize parallel communication before creating an object. Calling any function of the objects does not consume local computation resources since they are executed elsewhere.

As shown in the above figure, real actors (orange circle) are running at the cpu cluster, while the learner (blue circle) is running at the local gpu with several remote actors (yellow circle with dotted edge).

For users, they can write code in a simple way, just like writing multi-thread code, but with actors consuming remote resources. We have also provided examples of parallized algorithms like [IMPALA](benchmark/fluid/IMPALA/), [A2C](examples/A2C/). For more details in usage please refer to these examples.

Install:

Dependencies

  • Python 3.6+(Python 3.8+ is preferable for distributed training).
  • paddlepaddle>=2.3.1 (Optional, if you only want to use APIs related to parallelization alone)
pip install parl

[Detailed Installation Guide (Continuously Updated)](docs/installation_guide.md)

Getting Started

Several-points to get you started:

For beginners who know little about reinforcement learning, we also provide an introductory course: ( Video | [Code](examples/tutorials/) )

Examples

  • [QuickStart](examples/QuickStart/)
  • [DQN](examples/DQN/)
  • [ES](examples/ES/)
  • [DDPG](examples/DDPG/)
  • [A2C](examples/A2C/)
  • [TD3](examples/TD3/)
  • [SAC](examples/SAC/)
  • [QMIX](examples/QMIX/)
  • [MADDPG](examples/MADDPG/)
  • [PPO](examples/PPO/)
  • [CQL](examples/CQL/)
  • [IMPALA](examples/IMPALA)
  • [Winning Solution for NIPS2018: AI for Prosthetics Challenge](examples/NeurIPS2018-AI-for-Prosthetics-Challenge/)
  • [Winning Solution for NIPS2019: Learn to Move Challenge](examples/NeurIPS2019-Learn-to-Move-Challenge/)
  • [Winning Solution for NIPS2020: Learning to Run a Power Network Challenge](examples/NeurIPS2020-Learning-to-Run-a-Power-Network-Challenge/)

Waymax-RL(2025 Update, GPU-RL Autonomous Driving)

  • End-to-End GPU Reinforcement Learning for Waymax Autonomous Driving Simulation.

Full documentation and instructions: [waymax_rl/README.md](./waymax_rl/README.md)

xparl Security

xparl provides multi-process parallelism across a multi-machine cluster, similar to Python's built-in single-machine multiprocessing. This means that after writing code on a client, you can execute arbitrary code on any machine within the cluster, such as retrieving data from other machines, adding or deleting files, etc.

This behavior is by design, as reinforcement learning environments are diverse, and env_wrapper needs the ability to perform any possible operation. xparl

Excerpt shown — open the source for the full document.