Akjava commited on
Commit
8bab392
·
1 Parent(s): ebbe9bc
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import numpy as np
8
  @spaces.GPU(duration=120)
9
  def gradio_upscale(image):
10
  pil_image = Image.fromarray(np.uint8(image)).convert('RGB')
11
- return upscale_image.execute(image)
12
 
13
 
14
 
 
8
  @spaces.GPU(duration=120)
9
  def gradio_upscale(image):
10
  pil_image = Image.fromarray(np.uint8(image)).convert('RGB')
11
+ return upscale_image.execute(pil_image)
12
 
13
 
14