We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efccf86 commit 9d07b26Copy full SHA for 9d07b26
1 file changed
DDPG.py
@@ -4,10 +4,11 @@
4
@Date :2020/1/30
5
"""
6
import numpy as np
7
-from train_model.DDPG_agent.ou_noise import OUNoise
8
-from train_model.DDPG_agent.actor_critic import Actor, Critic
9
import torch
10
+from actor_critic import Actor, Critic
+from ou_noise import OUNoise
11
+
12
cuda = torch.device('cuda')
13
torch.backends.cudnn.deterministic = True
14
torch.backends.cudnn.benchmark = False
0 commit comments