Najaf-Zawar commited on
Commit
2adbcc9
·
1 Parent(s): 6576dad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -31,4 +31,7 @@ def restore_image(input_image):
31
  inputs = gr.Image(label="Upload Image")
32
  outputs = gr.Image(label="Restored_Image.")
33
  title = "Image Restoration Using Pix2Pix-GAN"
34
- description = "Restore the Quality of your Old damaged Images To New Looking Images Using Artificial Intelligence"
 
 
 
 
31
  inputs = gr.Image(label="Upload Image")
32
  outputs = gr.Image(label="Restored_Image.")
33
  title = "Image Restoration Using Pix2Pix-GAN"
34
+ description = "Restore the Quality of your Old damaged Images To New Looking Images Using Artificial Intelligence"
35
+
36
+ iface = gr.Interface(fn=esrgan, inputs=inputs, outputs=outputs, title=title, description=description, allow_flagging="never")
37
+ iface.launch(inline = False)