Spaces:
Sleeping
Sleeping
Commit
·
5254378
1
Parent(s):
1292fd5
Update app.py
Browse files
app.py
CHANGED
@@ -18,5 +18,5 @@ examples=[["house.jpg"], ["plane.webp"], ["room.webp"]]
|
|
18 |
inputs = gr.inputs.Image(type="pil", label="Upload an image")
|
19 |
outputs = gr.outputs.Image(type="pil",label="Output Image")
|
20 |
|
21 |
-
demo = gr.Interface(fn=rb, inputs=inputs, outputs=outputs, title=title, description=description)
|
22 |
demo.launch()
|
|
|
18 |
inputs = gr.inputs.Image(type="pil", label="Upload an image")
|
19 |
outputs = gr.outputs.Image(type="pil",label="Output Image")
|
20 |
|
21 |
+
demo = gr.Interface(fn=rb, inputs=inputs, outputs=outputs, examples=examples, title=title, description=description)
|
22 |
demo.launch()
|