Spaces:
Build error
Build error
Add auto_crop args to examples
Browse files
app.py
CHANGED
@@ -78,9 +78,9 @@ app = gr.Interface(
|
|
78 |
outputs=[gr.Label(num_top_classes=5), gr.Image().style(height=224, width=224)],
|
79 |
allow_flagging="never",
|
80 |
examples=[
|
81 |
-
["rei.jpg"],
|
82 |
-
["futaba.jpg"],
|
83 |
-
["yotsuba.jpg"],
|
84 |
],
|
85 |
)
|
86 |
app.launch()
|
|
|
78 |
outputs=[gr.Label(num_top_classes=5), gr.Image().style(height=224, width=224)],
|
79 |
allow_flagging="never",
|
80 |
examples=[
|
81 |
+
["rei.jpg", False],
|
82 |
+
["futaba.jpg", False],
|
83 |
+
["yotsuba.jpg", True],
|
84 |
],
|
85 |
)
|
86 |
app.launch()
|