Spaces:
Sleeping
Sleeping
sudhir2016
commited on
Commit
•
ddd484c
1
Parent(s):
efb5d20
Update app.py
Browse files
app.py
CHANGED
@@ -9,5 +9,5 @@ def predict(photo,Label1,Label2,Label3):
|
|
9 |
label1='Apple'
|
10 |
label2='Orange'
|
11 |
label3='Banana'
|
12 |
-
|
13 |
-
|
|
|
9 |
label1='Apple'
|
10 |
label2='Orange'
|
11 |
label3='Banana'
|
12 |
+
demo = gr.Interface(fn=predict,inputs=['pil','text','text','text'],outputs='text',examples=[['Banana.jpg',label1,label2,label3]])
|
13 |
+
demo.launch()
|