Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|