From 48e7d3f76756ac0000d54173dc2e4a200acc64b2 Mon Sep 17 00:00:00 2001 From: Mike C Date: Mon, 22 Jan 2018 10:49:13 +0800 Subject: [PATCH] imports --- agent/DDPG_agent.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/agent/DDPG_agent.py b/agent/DDPG_agent.py index be19e19..d4e976d 100644 --- a/agent/DDPG_agent.py +++ b/agent/DDPG_agent.py @@ -5,14 +5,11 @@ ####################################################################### import numpy as np -import torch.multiprocessing as mp -from network import * -from utils import * -from component import * -import pickle -import os -import time -import gym.monitoring +import torch +from torch.autograd import Variable +import torch.nn as nn +from component import Normalizer + class DDPGAgent: def __init__(self, config):