Is there an easy way to setup the object tracker to track object classes outwith the COCO-128 dataset?
I have a trained YOLOv5 model with weights _yolo5custom.pt trained on a specific set of classes. However the YOLOv5 detection engine does not take a data or names input as an additional argument, and if I try modifying the coco128.yaml file contained within the data folder it throws an error when executing:
Is there an easy way to setup the object tracker to track object classes outwith the COCO-128 dataset?
I have a trained YOLOv5 model with weights _yolo5custom.pt trained on a specific set of classes. However the YOLOv5 detection engine does not take a data or names input as an additional argument, and if I try modifying the coco128.yaml file contained within the data folder it throws an error when executing:
Input:
zero-shot-object-tracking/clip_object_tracker.py --source zero-shot-object-tracking/data/video/*******.mp4 --weights zero-shot-object-tracking/models/yolo5_custom.pt --detection-engine yolov5 --info
Output:
Modified coco128.yaml file for reference:
edit: The root cause seems to come from my custom YOLOv5 model. Reverting the yaml config to its original state still throws the same error.