wwnvp01 commited on
Commit
d37c0df
·
verified ·
1 Parent(s): dd1ec10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -61,9 +61,8 @@ def detect(image):
61
  demo = gr.Interface(
62
  fn=detect,
63
  inputs=gr.Image(type="numpy", label="Upload an image"),
64
- outputs=[
65
- gr.Textbox(label = "Predictions"),
66
- gr.Number(label="Typicality Score")]
67
  title='Dress Classification')
68
 
69
 
 
61
  demo = gr.Interface(
62
  fn=detect,
63
  inputs=gr.Image(type="numpy", label="Upload an image"),
64
+ outputs=[gr.Textbox(label = "Predictions"),
65
+ gr.Number(label="Typicality Score")],
 
66
  title='Dress Classification')
67
 
68