YuhengZhi / slac.pytorch

A PyTorch implementation of Stochastic Latent Actor-Critic(SLAC).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Stochastic Latent Actor-Critic in PyTorch

A PyTorch implementation of Stochastic Latent Actor-Critic[1] for DeepMind Control Suite. I tried to make it easy for readers to understand the algorithm. Please let me know if you have any questions.

UPDATE

  • 2020.10.26
    • Refactor codes and speed up training.
  • 2020.8.28
    • Bump torch up to 1.6.0.

Requirements

You can install Python liblaries using pip install -r requirements.txt. Note that you need a MuJoCo license. Please follow the instruction in mujoco-py for help.

If you're using other than CUDA 10.2, please install PyTorch following instructions here.

Examples

You can train SLAC algorithm as shown in the following example. Hyperparameters except action repeat are constant across all tasks. Please refer to Appendix B of the paper for more details.

python train.py --domain_name cheetah --task_name run --action_repeat 4 --seed 0 --cuda

Results on cheetah-run and walker-walk are as follows. Note that the horizontal axis represents environment steps, which equals to agent's steps multiplied by action repeat.

Visualization of image sequence corresponding to Figure 9 in the paper is as follows. First row is ground truth, second row is generated image from posterior sample (from the latent model), third row is generated image from prior sample only conditioned on the initial frame and last row is generated image from prior sample. Please refer to the paper for details.

References

[1] Lee, Alex X., et al. "Stochastic latent actor-critic: Deep reinforcement learning with a latent variable model." arXiv preprint arXiv:1907.00953 (2019).

About

A PyTorch implementation of Stochastic Latent Actor-Critic(SLAC).

License:MIT License


Languages

Language:Python 100.0%