Add soft actor critic (#12)

* Add soft actor critic

* Delete unnecessary examples
This commit is contained in:
Jinwoo Park (Curt)
2019-02-18 17:54:07 +09:00
committed by GitHub
parent d2b670015c
commit 4a19053d25
6 changed files with 589 additions and 17 deletions
@@ -28,7 +28,6 @@ class ReplayBuffer:
Args:
buffer_size (int): size of replay buffer for experience
batch_size (int): size of a batched sampled from replay buffer for training
demo (list) : demonstration list
"""
self.buffer: list = list()