bwconrad commited on
Commit
7d4a19d
·
1 Parent(s): fad6065

Add auto_crop args to examples

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