amydeng2000 commited on
Commit
1eb26c4
·
1 Parent(s): e299b17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -12,6 +12,8 @@ def classify_image(img):
12
  image = gr.Image()
13
  label = gr.Label()
14
  examples = ['Beijing_hot_pot.jpg', 'chinese_hot_pot.jpg', 'Korean_hot_pot.jpg']
 
 
15
 
16
  demo = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, allow_flagging = "never")
17
  demo.launch(inline=False)
 
12
  image = gr.Image()
13
  label = gr.Label()
14
  examples = ['Beijing_hot_pot.jpg', 'chinese_hot_pot.jpg', 'Korean_hot_pot.jpg']
15
+ title = "Hot Pot Classifier -- Chinese or Korean?"
16
+ description = "Build with <3 by your biggest hot pot fan!"
17
 
18
  demo = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, allow_flagging = "never")
19
  demo.launch(inline=False)