Are you sure you want to delete this task? Once this task is deleted, it cannot be recovered.
Happy 2d48f6ced3 | 1 year ago | |
---|---|---|
.github | 4 years ago | |
.teamcity | 1 year ago | |
benchmark | 1 year ago | |
docs | 1 year ago | |
evo_kit | 4 years ago | |
examples | 1 year ago | |
papers | 3 years ago | |
parl | 1 year ago | |
test_tipc | 2 years ago | |
.copyright.hook | 4 years ago | |
.gitignore | 2 years ago | |
.pre-commit-config.yaml | 2 years ago | |
.readthedocs.yml | 2 years ago | |
CMakeLists.txt | 1 year ago | |
LICENSE | 6 years ago | |
MANIFEST.in | 5 years ago | |
README.cn.md | 1 year ago | |
README.md | 1 year ago | |
setup.py | 1 year ago |
English | 简体中文
PARL is a flexible and high-efficient reinforcement learning framework.
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.
Model
is abstracted to construct the forward network which defines a policy network or critic network given state as input.
Algorithm
describes the mechanism to update parameters in Model
and often contains at least one model.
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.
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:
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.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.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, A2C. For more details in usage please refer to these examples.
pip install parl
Several-points to get you started:
xparl
and compute in parallel.For beginners who know little about reinforcement learning, we also provide an introductory course: ( Video | Code )
PARL 是一个高性能、灵活的强化学习框架
Python C++ JavaScript Shell Markdown other
Dear OpenI User
Thank you for your continuous support to the Openl Qizhi Community AI Collaboration Platform. In order to protect your usage rights and ensure network security, we updated the Openl Qizhi Community AI Collaboration Platform Usage Agreement in January 2024. The updated agreement specifies that users are prohibited from using intranet penetration tools. After you click "Agree and continue", you can continue to use our services. Thank you for your cooperation and understanding.
For more agreement content, please refer to the《Openl Qizhi Community AI Collaboration Platform Usage Agreement》