EvanMarie commited on
Commit
5d89c79
·
1 Parent(s): 1e6dcf6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -11,6 +11,8 @@ def classify_madness(img):
11
  intf = gr.Interface(fn=classify_madness,
12
  inputs=gr.Image(shape=(192, 192)),
13
  outputs=gr.Label(),
 
 
14
  examples=['auditor.jpg', 'hank.jpg', 'tricky.jpg', 'jeb.jpg', 'sanford.jpg', 'deimos.jpg'])
15
  intf.launch(inline=False)
16
 
 
11
  intf = gr.Interface(fn=classify_madness,
12
  inputs=gr.Image(shape=(192, 192)),
13
  outputs=gr.Label(),
14
+ title="Which Madness Combat Character",
15
+ description="This app can differentiate between The Auditor, Tricky, Hank, Sanford, Jeb, and Deimos! Try it out! Maybe see which it thinks you most resemble!",
16
  examples=['auditor.jpg', 'hank.jpg', 'tricky.jpg', 'jeb.jpg', 'sanford.jpg', 'deimos.jpg'])
17
  intf.launch(inline=False)
18