From 263fbd1cd4632bf974743e5b02f7ea4fe0508952 Mon Sep 17 00:00:00 2001 From: Kai Arulkumaran Date: Sun, 23 Jul 2017 20:24:25 +0100 Subject: [PATCH] Remove unused imports in SR example --- super_resolution/model.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/super_resolution/model.py b/super_resolution/model.py index 41446a856b..4e28ba3063 100644 --- a/super_resolution/model.py +++ b/super_resolution/model.py @@ -1,9 +1,6 @@ import torch import torch.nn as nn import torch.nn.init as init -from numpy.random import normal -from numpy.linalg import svd -from math import sqrt class Net(nn.Module):