Spaces:
Sleeping
Sleeping
Commit
·
1b3e5e9
1
Parent(s):
3a7dacd
fixed typo in example
Browse files
app.py
CHANGED
@@ -16,5 +16,5 @@ description = "~83 percent accurate model. Please do not consume unknown mushroo
|
|
16 |
image = gr.Image()
|
17 |
label= gr.Label()
|
18 |
examples=['psilocybe.jpg']
|
19 |
-
intf=gr.Interface(fn=classify,inputs=image,outputs=label,title=title, description=description,
|
20 |
intf.launch(inline=False)
|
|
|
16 |
image = gr.Image()
|
17 |
label= gr.Label()
|
18 |
examples=['psilocybe.jpg']
|
19 |
+
intf=gr.Interface(fn=classify,inputs=image,outputs=label,title=title, description=description, examples=examples)
|
20 |
intf.launch(inline=False)
|