Sa-m commited on
Commit
24c337c
1 Parent(s): 3d5226b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def classify_image(inp):
26
 
27
 
28
  image = gr.Image(shape=(HEIGHT,WIDTH),label='Input')
29
- label = gr.Label()
30
 
31
  gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Brand Logo Detection').launch(debug=False)
32
 
 
26
 
27
 
28
  image = gr.Image(shape=(HEIGHT,WIDTH),label='Input')
29
+ label = gr.Textbox()
30
 
31
  gr.Interface(fn=classify_image, inputs=image, outputs=label, title='Brand Logo Detection').launch(debug=False)
32