Spaces:
Runtime error
Runtime error
Commit
·
2adbcc9
1
Parent(s):
6576dad
Update app.py
Browse files
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)
|