gina9726 commited on
Commit
e7748f9
1 Parent(s): 331c201

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ with gr.Blocks() as demo:
16
  with gr.Column():
17
  label = gr.Text(label="ground truth")
18
  pred = gr.Text(label="prediction")
19
- btn = gr.Button("Predict", variant="primary"))
20
  btn.click(predict, inputs=[label, video], outputs=[pred])
21
  gr.Examples(examples=examples, inputs=[label, video], cache_examples=True)
22
 
 
16
  with gr.Column():
17
  label = gr.Text(label="ground truth")
18
  pred = gr.Text(label="prediction")
19
+ btn = gr.Button("Predict", variant="primary")
20
  btn.click(predict, inputs=[label, video], outputs=[pred])
21
  gr.Examples(examples=examples, inputs=[label, video], cache_examples=True)
22