Update app.py
Browse files
app.py
CHANGED
@@ -22,5 +22,4 @@ import gradio as gr
|
|
22 |
|
23 |
gr.Interface(fn=predict,
|
24 |
inputs=gr.Image(type="pil"),
|
25 |
-
outputs=gr.Label(num_top_classes=3)
|
26 |
-
examples=["lion.jpg", "cheetah.jpg"]).launch()
|
|
|
22 |
|
23 |
gr.Interface(fn=predict,
|
24 |
inputs=gr.Image(type="pil"),
|
25 |
+
outputs=gr.Label(num_top_classes=3)).launch()
|
|