Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -42,9 +42,9 @@ iface = gr.Interface(
|
|
42 |
title = " Image Super-resolution",
|
43 |
description = "This space is a demo of the keras tutorial 'Image Super-Resolution using an Efficient Sub-Pixel CNN' based on the paper 'Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural Network' 👀",
|
44 |
article = article,
|
45 |
-
inputs=gr.inputs.Image(type="
|
46 |
-
outputs=[gr.outputs.Image(type="
|
47 |
-
gr.outputs.Image(type="
|
48 |
],
|
49 |
examples=[["camel.jpg"], ["pokemon.jpg"]],
|
50 |
).launch()
|
|
|
42 |
title = " Image Super-resolution",
|
43 |
description = "This space is a demo of the keras tutorial 'Image Super-Resolution using an Efficient Sub-Pixel CNN' based on the paper 'Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural Network' 👀",
|
44 |
article = article,
|
45 |
+
inputs=gr.inputs.Image(type="numpy",label="Input Image"),
|
46 |
+
outputs=[gr.outputs.Image(type="numpy",label="Resized 100x100 image"),
|
47 |
+
gr.outputs.Image(type="numpy",label="Super-resolution 300x300 image")
|
48 |
],
|
49 |
examples=[["camel.jpg"], ["pokemon.jpg"]],
|
50 |
).launch()
|