Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -45,5 +45,10 @@ examples = [
|
|
45 |
]
|
46 |
iface = gr.Interface(fn=inference,
|
47 |
inputs=gr.Image(type="pil"),
|
48 |
-
outputs=gr.Label(num_top_classes=5)
|
|
|
|
|
|
|
|
|
|
|
49 |
iface.launch()
|
|
|
45 |
]
|
46 |
iface = gr.Interface(fn=inference,
|
47 |
inputs=gr.Image(type="pil"),
|
48 |
+
outputs=gr.Label(num_top_classes=5),
|
49 |
+
title=title,
|
50 |
+
description=description,
|
51 |
+
article=article,
|
52 |
+
examples=examples,
|
53 |
+
analytics_enabled=False)
|
54 |
iface.launch()
|