Add DDPGfD, TD3fD and SACfD (#22)

* Format repository

* Clone files from medipixel repo

* Fix DDPGfDAgent.update_model()

* Fix bug on _initialize()

* Add demo-path parameter and demo data

* Rename init_priority to _max_priority for PER

This makes PER and PERfD consistent.

* Make i_episode attribute of DDPGAgent

* Clone SAC code from medipixel repo

* Fix update_model() for SACfD

* Fix _initialize() for SACfD

* Add is_discrete attribute to AbstractAgent for SACfD

* Add i_episode attribute to SACAgent for SACfD

* Modularize DDPGAgent and SACAgent

* Modify hyperparameters for DDPGfD and SACfD

* Add NStepBuffer

* Add n-step to DDPGfD

* Add n-step to SACfD

* Add TD3fD without n-step

* Attempt to tune hyperparameters

* Remove discrete environment check in SAC

* Implement n-step on TD3fD

* Fix step function of TD3

No done check, and _add_transition_to_memory was not called.

* Fix actor loss calculation for TD3fD

* Attempt to tune hyperparameters

* Print both critic losses

* Fix typo bug

* Attempt to tune hyperparameters

* Fix bug in n-step demo retrieval

* Fix bug in n-step transition addition
This commit is contained in:
Seungjae Ryan Lee
2019-03-14 11:06:54 +09:00
committed by GitHub
parent ee014e5a93
commit ca5c99bc41
17 changed files with 1377 additions and 49 deletions
@@ -6,6 +6,8 @@
"""
import random
from collections import deque
from typing import Deque, List, Tuple
import gym
import numpy as np
@@ -32,3 +34,46 @@ def set_random_seed(seed: int, env: gym.Env):
torch.manual_seed(seed)
np.random.seed(seed)
random.seed(seed)
def get_n_step_info_from_demo(
demo: List, n_step: int, gamma: float
) -> Tuple[List, List]:
"""Return 1 step and n step demos."""
assert demo
assert n_step > 1
demos_1_step = list()
demos_n_step = list()
n_step_buffer: Deque = deque(maxlen=n_step)
for transition in demo:
n_step_buffer.append(transition)
if len(n_step_buffer) == n_step:
# add a single step transition
demos_1_step.append(n_step_buffer[0])
# add a multi step transition
curr_state, action = n_step_buffer[0][:2]
reward, next_state, done = get_n_step_info(n_step_buffer, gamma)
transition = (curr_state, action, reward, next_state, done)
demos_n_step.append(transition)
return demos_1_step, demos_n_step
def get_n_step_info(
n_step_buffer: Deque, gamma: float
) -> Tuple[np.int64, np.ndarray, bool]:
"""Return n step reward, next state, and done."""
# info of the last transition
reward, next_state, done = n_step_buffer[-1][-3:]
for transition in reversed(list(n_step_buffer)[:-1]):
r, n_s, d = transition[-3:]
reward = r + gamma * reward * (1 - d)
next_state, done = (n_s, d) if d else (next_state, done)
return reward, next_state, done