Spaces:
Sleeping
Sleeping
Myrax3000
commited on
Commit
·
64aa225
1
Parent(s):
95d0304
Fix examples
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ def classify_image(photo):
|
|
11 |
|
12 |
image = gr.inputs.Image(shape=(192,192))
|
13 |
label = gr.outputs.Label()
|
14 |
-
|
15 |
|
16 |
-
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, exemples=
|
17 |
iface.launch()
|
|
|
11 |
|
12 |
image = gr.inputs.Image(shape=(192,192))
|
13 |
label = gr.outputs.Label()
|
14 |
+
examples = ['king.jpg', 'yugi.jpg', 'pikachu.jpg']
|
15 |
|
16 |
+
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, exemples=examples)
|
17 |
iface.launch()
|