Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -71,5 +71,11 @@ app = gr.Interface(
|
|
71 |
inputs=[gr.Image(type="pil", tool="select"), gr.Checkbox(label="auto_crop")],
|
72 |
outputs=[gr.Label(num_top_classes=5), gr.Image().style(height=224, width=224)],
|
73 |
allow_flagging="never",
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
)
|
75 |
app.launch()
|
|
|
71 |
inputs=[gr.Image(type="pil", tool="select"), gr.Checkbox(label="auto_crop")],
|
72 |
outputs=[gr.Label(num_top_classes=5), gr.Image().style(height=224, width=224)],
|
73 |
allow_flagging="never",
|
74 |
+
examples=[
|
75 |
+
["rei.jpg"],
|
76 |
+
["futaba.jpg"],
|
77 |
+
["yotsuba.jpg"],
|
78 |
+
],
|
79 |
+
|
80 |
)
|
81 |
app.launch()
|