Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 2.76 KB

readme.md

File metadata and controls

38 lines (25 loc) · 2.76 KB

Benchmark Results

Mujoco Environments

The MRL SAC/TD3 implementations match the state-of-the-art results on the Mujoco benchmark, mainly due to the use of larger networks. The plots below show the average over 6 seeds for SAC with 512x3 networks, 6 seeds for SAC with 1024x3 networks, and 3 seeds for TD3 with varying network sizes (512x3 is unstable on Hopper, for example). The vertical line marks 300k steps, for comparing sample efficiency. Relevant comparisons include:

  • The MRL SAC/TD3 implementations has faster wall clock time (due to environment parallelism) and matches or beats the Spinning Up benchmarks.
  • MRL SAC implementation obtains similar performance to the Truncated Quantile Critic (TQC), appearing at ICML 2020, which is a recent state-of-the-art on this benchmark.
  • The model-free sample efficiency here, without overtraining, beats model-based algorithms like MBPO (https://arxiv.org/abs/1906.08253) in some cases (HalfCheetah and Humanoid). Likely we can do even better by training multiple times per step.

Note that while TD3 matches SAC, it tends to be less stable to choice of hyperparameters.

Training Online

halfcheetah

ant

hopper

walker

humanoid

Robotics Environments

The MRL HER implementation achieves state-of-the-art results on multi-goal benchmarks introduced by Andrychowicz and Plappert, et al., surpassing several follow-up works both in terms of sample efficiency and final performance. The gains here come from a combination of implementation details (esp. mode of parallelism), the use of larger networks, better hyperparameters, and on harder environments, from the futureactual (FA) goal relabeling strategy. Plots show 3 seeds of each.

Note that while the HER implementation supports TD3/SAC, the DDPG appears to do better in general, possibly due to tuned hyperparameters.

Fetch

reach

push

pickplace

slide

Hand

egg

block

pen