varma123 commited on
Commit
a96c4c6
·
verified ·
1 Parent(s): 1d1c5fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -89,11 +89,11 @@ def predict_video(input_video):
89
  interface = gr.Interface(
90
  fn=predict_video,
91
  inputs=[
92
- gr.inputs.Video(label="Input Video", type="mp4")
93
  ],
94
  outputs=[
95
  gr.outputs.Label(label="Class"),
96
- gr.outputs.Image(label="Face with Explainability", type="numpy")
97
  ],
98
  )
99
 
 
89
  interface = gr.Interface(
90
  fn=predict_video,
91
  inputs=[
92
+ gr.Video(label="Input Video", type="mp4")
93
  ],
94
  outputs=[
95
  gr.outputs.Label(label="Class"),
96
+ gr.outputs.Video(label="Face with Explainability")
97
  ],
98
  )
99