Skip to content

Latest commit

 

History

History
 
 

PPO

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Reproduce PPO with PARL

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

Include following approach:

  • Clipped Surrogate Objective
  • Adaptive KL Penalty Coefficient

PPO in Proximal Policy Optimization Algorithms

Mujoco games introduction

Please see here to know more about Mujoco games.

Benchmark result

PPO_HalfCheetah-v2 PPO_Hopper-v2

How to use

Dependencies:

Start Training:

# To train an agent for HalfCheetah-v2 game (default: CLIP loss)
python train.py

# To train for different game and different loss type
# python train.py --env [ENV_NAME] --loss_type [CLIP|KLPEN]