Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
|
3 |
def plex(image):
|
4 |
image=image
|
5 |
-
return "hello", gr.Image(value=image,width=300,)
|
6 |
|
7 |
iface=gr.Interface(fn=plex,inputs="image",outputs=["text","image"])
|
8 |
iface.launch()
|
|
|
2 |
|
3 |
def plex(image):
|
4 |
image=image
|
5 |
+
return "hello", gr.Image(value=image,width=300,height=300)
|
6 |
|
7 |
iface=gr.Interface(fn=plex,inputs="image",outputs=["text","image"])
|
8 |
iface.launch()
|