liangtm commited on
Commit
72a1da1
·
verified ·
1 Parent(s): d2acffe

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -207,8 +207,8 @@ def run_video_inference(input_video, text_prompt, tracking_alpha=0.1, fps=15):
207
  end_save = time.time()
208
 
209
  status = (
210
- f"Inference Time: {(end_infer - start_infer):.1f} seconds\n"
211
- f"Saving Time: {(end_save - start_save):.1f} seconds"
212
  )
213
  return result_video_path, status
214
 
 
207
  end_save = time.time()
208
 
209
  status = (
210
+ f"Inference Time: {(end_infer - start_infer):.1f}s\n"
211
+ f"Saving Time: {(end_save - start_save):.1f}s"
212
  )
213
  return result_video_path, status
214