Skip to content

Latest commit

 

History

History
 
 

A2C

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Reproduce A2C with PARL

Based on PARL, the A2C algorithm of deep reinforcement learning has been reproduced, reaching the same level of indicators as the paper in Atari benchmarks.

Atari game introduction

Please see here to know more about Atari games.

Benchmark result

Performance of A2C on some envrionments in training process after 10 million sample steps.

result

result

How to use

Dependencies

Distributed Training

At first, we can start a local cluster with 5 CPUs:

xparl start --port 8010 --cpu_num 5

Note that if you have started a master before, you don't have to run the above command. For more information about the cluster, please refer to our documentation

Then we can start the distributed training by running:

python train.py

Reference