JoPmt commited on
Commit
c5f2d33
·
verified ·
1 Parent(s): 0ae6fc8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()