Legola commited on
Commit
2fd4d28
·
1 Parent(s): 529009f

Update model.py

Browse files

Added the torchvision.models to get the library required for model

Files changed (1) hide show
  1. model.py +2 -0
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