Spaces:
Runtime error
Runtime error
Commit
·
76a4453
1
Parent(s):
d303376
let's deploy to huggingface spaces
Browse files
app.py
CHANGED
@@ -31,8 +31,9 @@ def predict(img):
|
|
31 |
|
32 |
image = gr.inputs.Image(shape=(192, 192))
|
33 |
label = gr.outputs.Label()
|
|
|
34 |
examples = ['tomato.jpg', 'lemon.jpg', 'apple.jpg']
|
35 |
|
36 |
interface = gr.Interface(fn=predict, inputs=image,
|
37 |
-
outputs=label, examples=examples)
|
38 |
interface.launch(inline=False)
|
|
|
31 |
|
32 |
image = gr.inputs.Image(shape=(192, 192))
|
33 |
label = gr.outputs.Label()
|
34 |
+
title = "Fruits and vegetables Classifier"
|
35 |
examples = ['tomato.jpg', 'lemon.jpg', 'apple.jpg']
|
36 |
|
37 |
interface = gr.Interface(fn=predict, inputs=image,
|
38 |
+
outputs=label, examples=examples, title=title)
|
39 |
interface.launch(inline=False)
|