Himgos commited on
Commit
5863c33
1 Parent(s): 80d8bb5

edited gradio

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -27,6 +27,9 @@ image = gr.inputs.Image(shape=(224,224))
27
  label = gr.outputs.Label()
28
  examples = ['chillypotato.jpg', 'friedrice.jpg', 'momos.jpg']
29
 
30
- intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
 
 
 
31
  intf.launch()
32
 
 
27
  label = gr.outputs.Label()
28
  examples = ['chillypotato.jpg', 'friedrice.jpg', 'momos.jpg']
29
 
30
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples,
31
+ title='Fast Food Classifier',
32
+ description="Insert an image of one of the following: Burger, Chilly Potato, Chowmein, French Fries, Fried Rice, Momos, Pizza or Spring Roll"
33
+ )
34
  intf.launch()
35