nateraw commited on
Commit
fdec677
·
1 Parent(s): 6a77b6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -109,7 +109,7 @@ class Pipeline:
109
  text = ""
110
  MAX_ITERATIONS = 5
111
  with torch.autocast(self.device):
112
- for i, start, stop, frames in enumerate(iter_clips(video_path)):
113
  text_to_add = f"{'-'*30} Predictions From: {start:2.3f}-{stop:2.3f} seconds {'-'*30}\n"
114
  print(text_to_add)
115
  text += text_to_add
 
109
  text = ""
110
  MAX_ITERATIONS = 5
111
  with torch.autocast(self.device):
112
+ for i, (start, stop, frames) in enumerate(iter_clips(video_path)):
113
  text_to_add = f"{'-'*30} Predictions From: {start:2.3f}-{stop:2.3f} seconds {'-'*30}\n"
114
  print(text_to_add)
115
  text += text_to_add