sqlbipro commited on
Commit
e7676d7
·
1 Parent(s): fac4ccf
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -17,4 +17,7 @@ examples = ['grizzly.jpg']
17
  interpretation='default'
18
  enable_queue=True
19
 
20
- gr.Interface(fn=predict,inputs=gr.Image,outputs=gr.Label,title=title,description=description,examples=examples).launch()
 
 
 
 
17
  interpretation='default'
18
  enable_queue=True
19
 
20
+ img = gr.Image()
21
+ lbl = gr.Label()
22
+
23
+ gr.Interface(fn=predict,inputs=img,outputs=lbl,title=title,description=description,examples=examples).launch()