Spaces:
Runtime error
Runtime error
Commit
·
8b52b18
1
Parent(s):
8b182b5
Update inference.py
Browse files- inference.py +5 -1
inference.py
CHANGED
@@ -62,13 +62,17 @@ def do_full_inference(dataloader, image_meter_width, image_meter_height, gp=None
|
|
62 |
inference = filter_detection_size(inference, image_meter_width, width, 1.5)
|
63 |
|
64 |
print(type(image_shapes))
|
|
|
65 |
print(type(image_shapes[0]))
|
|
|
66 |
print(type(image_shapes[0][0]))
|
|
|
67 |
print(type(inference))
|
|
|
68 |
print(type(inference[0]))
|
|
|
69 |
print(type(inference[0][0]))
|
70 |
print(inference[0][0].shape)
|
71 |
-
print(len(image_shapes[0][0]))
|
72 |
|
73 |
if config.associative_tracker == TrackerType.BYTETRACK:
|
74 |
|
|
|
62 |
inference = filter_detection_size(inference, image_meter_width, width, 1.5)
|
63 |
|
64 |
print(type(image_shapes))
|
65 |
+
print(len(image_shapes))
|
66 |
print(type(image_shapes[0]))
|
67 |
+
print(len(image_shapes[0]))
|
68 |
print(type(image_shapes[0][0]))
|
69 |
+
print(len(image_shapes[0][0]))
|
70 |
print(type(inference))
|
71 |
+
print(len(inference))
|
72 |
print(type(inference[0]))
|
73 |
+
print(len(inference[0]))
|
74 |
print(type(inference[0][0]))
|
75 |
print(inference[0][0].shape)
|
|
|
76 |
|
77 |
if config.associative_tracker == TrackerType.BYTETRACK:
|
78 |
|