├── DDPG ├── DDPG.py └── README.md ├── LICENSE ├── README.md └── SAC2018 ├── README.md └── SAC.py /DDPG/DDPG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wen2chao/RL-Algorithm/HEAD/DDPG/DDPG.py -------------------------------------------------------------------------------- /DDPG/README.md: -------------------------------------------------------------------------------- 1 | #### DDPG paper: https://arxiv.org/abs/1509.02971 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wen2chao/RL-Algorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RL-Algorithm 2 | -------------------------------------------------------------------------------- /SAC2018/README.md: -------------------------------------------------------------------------------- 1 | #### SAC2018 paper: https://arxiv.org/abs/1801.01290 2 | -------------------------------------------------------------------------------- /SAC2018/SAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wen2chao/RL-Algorithm/HEAD/SAC2018/SAC.py --------------------------------------------------------------------------------