EvanMarie commited on
Commit
09433ab
1 Parent(s): bffc219

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -14,6 +14,8 @@ def classify_bears(img):
14
  intf = gr.Interface(fn=classify_bears,
15
  inputs=gr.Image(shape=(192, 192)),
16
  outputs=gr.Label(),
 
 
17
  examples=['grizzly_bear.jpeg', 'black_bear.jpeg', 'teddy_bear.jpeg', 'bear01.jpg', 'bear06.jpg', 'bear03.jpg', 'bear05.jpg', 'bear04.jpg', 'bear02.jpg', 'not_sure.jpeg'])
18
  intf.launch(inline=False)
19
 
 
14
  intf = gr.Interface(fn=classify_bears,
15
  inputs=gr.Image(shape=(192, 192)),
16
  outputs=gr.Label(),
17
+ title="Grizzlies and Teddies and Black Bears, OH MY!",
18
+ description="Input an image that is one of the three types of bears, and get an accurate result. OR put in an image of you and see which you most closely resemble! Most of all, just have fun!",
19
  examples=['grizzly_bear.jpeg', 'black_bear.jpeg', 'teddy_bear.jpeg', 'bear01.jpg', 'bear06.jpg', 'bear03.jpg', 'bear05.jpg', 'bear04.jpg', 'bear02.jpg', 'not_sure.jpeg'])
20
  intf.launch(inline=False)
21