Spaces:
Runtime error
Runtime error
Commit
·
3bfa730
1
Parent(s):
447b366
Update app.py
Browse files
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 = '
|
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:
|