Skip to content

Commit

Permalink
Introduce TD3
Browse files Browse the repository at this point in the history
  • Loading branch information
ShangtongZhang committed Aug 2, 2019
1 parent 00b957f commit 4c2168b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deep_rl/agent/DDPG_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import torchvision


class DDPGAgent(BaseAgent):
class TD3(BaseAgent):
def __init__(self, config):
BaseAgent.__init__(self, config)
self.config = config
Expand Down
1 change: 1 addition & 0 deletions deep_rl/agent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
from .QuantileRegressionDQN_agent import *
from .PPO_agent import *
from .OptionCritic_agent import *
from .TD3_agent import *

0 comments on commit 4c2168b

Please sign in to comment.