Update model.py
Browse filesAdded the torchvision.models to get the library required for model
model.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
|
2 |
import torch
|
3 |
import torch.nn as nn
|
|
|
|
|
4 |
#Content Loss
|
5 |
class ContentLoss(nn.Module):
|
6 |
|
|
|
1 |
|
2 |
import torch
|
3 |
import torch.nn as nn
|
4 |
+
import torchvision.models as models
|
5 |
+
|
6 |
#Content Loss
|
7 |
class ContentLoss(nn.Module):
|
8 |
|