Spaces:
Sleeping
Sleeping
Myrax3000
commited on
Commit
·
a90044b
1
Parent(s):
64aa225
Fix la merde
Browse files
app.py
CHANGED
@@ -13,5 +13,5 @@ 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,
|
17 |
iface.launch()
|
|
|
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, examples=examples)
|
17 |
iface.launch()
|