tenet commited on
Commit
79a26f6
1 Parent(s): 3b21b55

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,8 +9,8 @@ def predict(input_img):
9
 
10
  gradio_app = gr.Interface(
11
  predict,
12
- inputs=gr.Video(label="Select hot dog candidate", sources=['upload', 'webcam'], type="pil"),
13
- outputs=[gr.Video(label="Processed Image"), gr.Label(label="Result", num_top_classes=2)],
14
  title="Hot Dog? Or Not?",
15
  )
16
 
 
9
 
10
  gradio_app = gr.Interface(
11
  predict,
12
+ inputs=gr.Image(label="Select 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
  )
16