Spaces:
Runtime error
Runtime error
Commit
·
ea9566e
1
Parent(s):
889bde6
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, key in
|
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, key 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]
|