Sa-m commited on
Commit
ea0332d
·
1 Parent(s): ecc5c50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -56,8 +56,7 @@ def classify_image(inp):
56
 
57
 
58
  image = gr.Image(shape=(HEIGHT,WIDTH),label='Input')
59
- label = gr.Textbox()
60
- # gr.Label(num_top_classes=4)
61
 
62
  gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Brand Logo Detection').launch(debug=False)
63
 
 
56
 
57
 
58
  image = gr.Image(shape=(HEIGHT,WIDTH),label='Input')
59
+ label = gr.Label(num_top_classes=4)
 
60
 
61
  gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Brand Logo Detection').launch(debug=False)
62