sunshineatnoon commited on
Commit
3bfa730
1 Parent(s): 447b366

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -103,7 +103,7 @@ class Tester(TesterBase):
103
  tmp_img_list = []
104
  for i in range(parts.shape[0]):
105
  part_img = self.to_pil(parts[i])
106
- out_path = '/home/xli/Dropbox/PAS/tmp/{}.png'.format(i)
107
  part_img.save(out_path)
108
 
109
  with open(out_path, "rb") as image:
 
103
  tmp_img_list = []
104
  for i in range(parts.shape[0]):
105
  part_img = self.to_pil(parts[i])
106
+ out_path = 'tmp/{}.png'.format(i)
107
  part_img.save(out_path)
108
 
109
  with open(out_path, "rb") as image: