I am new to object tracking. I went thru Jacob’s blog on Object Tracking and face an error below.
[29]
14s
#run zeroshot object tracking, point to your video and your detection engine
!python clip_object_tracker.py --source ./data/video/fish.mp4 --detection-engine yolov5
I get error below:
Namespace(agnostic_nms=False, api_key=None, augment=False, cfg=‘yolov4.cfg’, classes=None, confidence=0.4, detection_engine=‘yolov5’, device=‘’, exist_ok=False, img_size=640, info=False, max_cosine_distance=0.4, name=‘exp’, names=‘coco.names’, nms_max_overlap=1.0, nn_budget=None, overlap=0.3, project=‘runs/detect’, save_conf=False, save_txt=False, source=‘./data/video/fish.mp4’, thickness=3, update=False, url=None, view_img=False, weights=‘yolov5s.pt’)
Downloading https://github.com/ultralytics/yolov5/releases/download/v3.1/yolov5s.pt to yolov5s.pt…
100% 14.5M/14.5M [00:00<00:00, 16.7MB/s]
Fusing layers…
Using torch 1.12.1+cu113 CUDA:0 (Tesla T4, 15109.75MB)
Traceback (most recent call last):
File “clip_object_tracker.py”, line 360, in
detect()
File “clip_object_tracker.py”, line 141, in detect
_ = yolov5_engine.infer(img.half() if half else img) if device.type != ‘cpu’ else None # run once
File “/content/zero-shot-object-tracking/yolov5/zero-shot-object-tracking/utils/yolov5.py”, line 16, in infer
pred = self.model(img, augment=self.augment)[0]
File “/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py”, line 1130, in _call_impl
return forward_call(*input, **kwargs)
File “/content/zero-shot-object-tracking/yolov5/zero-shot-object-tracking/models/yolo.py”, line 123, in forward
return self.forward_once(x, profile) # single-scale inference, train
File “/content/zero-shot-object-tracking/yolov5/zero-shot-object-tracking/models/yolo.py”, line 139, in forward_once
x = m(x) # run
File “/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py”, line 1130, in _call_impl
return forward_call(*input, **kwargs)
File “/usr/local/lib/python3.7/dist-packages/torch/nn/modules/upsampling.py”, line 154, in forward
recompute_scale_factor=self.recompute_scale_factor)
File “/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py”, line 1208, in getattr
type(self).name, name))
AttributeError: ‘Upsample’ object has no attribute ‘recompute_scale_factor’