Skip to content

Latest commit

 

History

History
executable file
·
31 lines (23 loc) · 1.24 KB

README.md

File metadata and controls

executable file
·
31 lines (23 loc) · 1.24 KB

Reproduce SAC with PARL

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

Paper: SAC in Soft Actor-Critic: Off-Policy Maximum Entropy Deep Reinforcement Learning with a Stochastic Actor

Mujoco games introduction

PARL currently supports the open-source version of Mujoco provided by DeepMind, so users do not need to download binaries of Mujoco as well as install mujoco-py and get license. For more details, please visit Mujoco

Benchmark result

SAC_results

  • Each experiment was run three times with different seeds

How to use

Dependencies:

Start Training:

Train

# To train for HalfCheetah-v4(default),Hopper-v4,Walker2d-v4,Ant-v4
# --alpha 0.2(default)
python train.py --env [ENV_NAME]

# To reproduce the performance of Humanoid-v4
python train.py --env Humanoid-v4 --alpha 0.05