Cropinky commited on
Commit
92be259
1 Parent(s): c42b607

text change

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -35,6 +35,8 @@ with gr.Blocks() as demo:
35
  image_input = gr.Image()
36
  image_output = gr.Image()
37
  image_button = gr.Button("Upscale")
 
 
38
  gr.Markdown("Real esrgan implementation from [this repo](https://github.com/xinntao/Real-ESRGAN)")
39
  image_button.click(upscale_image, inputs=image_input, outputs=image_output)
40
 
 
35
  image_input = gr.Image()
36
  image_output = gr.Image()
37
  image_button = gr.Button("Upscale")
38
+ gr.Markdown("this is running on a CPU so it's gonna be VERY slow")
39
+
40
  gr.Markdown("Real esrgan implementation from [this repo](https://github.com/xinntao/Real-ESRGAN)")
41
  image_button.click(upscale_image, inputs=image_input, outputs=image_output)
42