oliver9523 commited on
Commit
c02166b
·
verified ·
1 Parent(s): 035ea56

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -2
main.py CHANGED
@@ -53,8 +53,9 @@ def run():
53
  # )
54
 
55
  demo = gr.Interface(fn=infer,
56
- inputs=['image'],
57
- outputs=['image', 'text'])
 
58
 
59
  demo.launch(server_name="0.0.0.0", server_port=7860)
60
 
 
53
  # )
54
 
55
  demo = gr.Interface(fn=infer,
56
+ inputs=['image'],
57
+ outputs=['image', 'text'],
58
+ examples=[["no_bird.jpg"], ["bird_example1.jpg"], ["bird_example2.jpg"], ["bird_example3.jpg"]])
59
 
60
  demo.launch(server_name="0.0.0.0", server_port=7860)
61