Update model.py
Browse files
model.py
CHANGED
@@ -75,8 +75,8 @@ cnn = models.vgg19(pretrained=True).features.eval()
|
|
75 |
|
76 |
#Normalization
|
77 |
|
78 |
-
cnn_normalization_mean = torch.tensor([0.485, 0.456, 0.406])
|
79 |
-
cnn_normalization_std = torch.tensor([0.229, 0.224, 0.225])
|
80 |
|
81 |
# create a module to normalize input image so we can easily put it in a
|
82 |
# ``nn.Sequential``
|
|
|
75 |
|
76 |
#Normalization
|
77 |
|
78 |
+
cnn_normalization_mean = torch.tensor([0.485, 0.456, 0.406])
|
79 |
+
cnn_normalization_std = torch.tensor([0.229, 0.224, 0.225])
|
80 |
|
81 |
# create a module to normalize input image so we can easily put it in a
|
82 |
# ``nn.Sequential``
|