Spaces:
Runtime error
Runtime error
Commit
·
0d4fbd4
1
Parent(s):
ea9566e
Update inference.py
Browse files- inference.py +1 -1
inference.py
CHANGED
@@ -360,7 +360,7 @@ def do_associative_tracking(raw_detections, image_meter_width, image_meter_heigh
|
|
360 |
|
361 |
# Run tracking
|
362 |
with tqdm(total=len(low_dets), desc="Running tracking", ncols=0, disable=not verbose) as pbar:
|
363 |
-
for i
|
364 |
if gp: gp(i / len(low_dets), pbar.__str__())
|
365 |
low_boxes = low_dets[key]
|
366 |
high_boxes = high_dets[key]
|
|
|
360 |
|
361 |
# Run tracking
|
362 |
with tqdm(total=len(low_dets), desc="Running tracking", ncols=0, disable=not verbose) as pbar:
|
363 |
+
for i in range(len(low_dets)):
|
364 |
if gp: gp(i / len(low_dets), pbar.__str__())
|
365 |
low_boxes = low_dets[key]
|
366 |
high_boxes = high_dets[key]
|