bwconrad commited on
Commit
31e0ac6
·
1 Parent(s): f746a8e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
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()