Skip to content

Commit 9d07b26

Browse files
committed
commit on master
1 parent efccf86 commit 9d07b26

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

DDPG.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
@Date :2020/1/30
55
"""
66
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
97
import torch
108

9+
from actor_critic import Actor, Critic
10+
from ou_noise import OUNoise
11+
1112
cuda = torch.device('cuda')
1213
torch.backends.cudnn.deterministic = True
1314
torch.backends.cudnn.benchmark = False

0 commit comments

Comments
 (0)