kiokpam commited on
Commit
9fc98bd
·
1 Parent(s): 93d676a
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -101,5 +101,5 @@ def inferenece(video):
101
  result_str = '\n'.join([f'{label}: {prob:.4f}' for label, prob in top_k])
102
  return result_str
103
 
104
- demo = gr.interface(fn=inferenece, inputs='video', outputs='text')
105
  demo.launch()
 
101
  result_str = '\n'.join([f'{label}: {prob:.4f}' for label, prob in top_k])
102
  return result_str
103
 
104
+ demo = gr.Interface(fn=inferenece, inputs='video', outputs='text')
105
  demo.launch()