1-13-am commited on
Commit
960296f
1 Parent(s): 4fa7ba9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import torch
3
  from utils import transformer, tensor_to_img
4
  from network import Style_Transfer_Network
5
 
6
- check_point = torch.load("/content/check_point.pth", map_location = torch.device('cpu'))
7
  model = Style_Transfer_Network()
8
  model.load_state_dict(check_point['state_dict'])
9
 
 
3
  from utils import transformer, tensor_to_img
4
  from network import Style_Transfer_Network
5
 
6
+ check_point = torch.load("check_point1_0.pth", map_location = torch.device('cpu'))
7
  model = Style_Transfer_Network()
8
  model.load_state_dict(check_point['state_dict'])
9