litifeng commited on
Commit
df9e546
·
verified ·
1 Parent(s): a326a4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ def predict(input_img):
9
 
10
  gradio_app = gr.Interface(
11
  fn=predict,
12
- inputs=[gr.Image(label="Selece hot dog candidate", sources=['upload', 'webcam'], type='pil'),gr.Label(label="yes,it is test!")],
13
  outputs=[gr.Image(label="Processed Image"), gr.Label(label="Result", num_top_classes=2)],
14
  title="Hot Dog? or Not?",
15
  )
 
9
 
10
  gradio_app = gr.Interface(
11
  fn=predict,
12
+ inputs=gr.Image(label="Selece hot dog candidate", sources=['upload', 'webcam'], type='pil'),
13
  outputs=[gr.Image(label="Processed Image"), gr.Label(label="Result", num_top_classes=2)],
14
  title="Hot Dog? or Not?",
15
  )