Skip to content

Commit 66db8ce

Browse files
committed
Update README.md
1 parent 4cd7f23 commit 66db8ce

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
This is the simplest implementation of Roboflow [zero-shot-object-tracking](https://github.com/roboflow-ai/zero-shot-object-tracking); which incorporates CLIP as a feature extractor in DeepSORT. [CLIP](https://openai.com/blog/clip/) is a zero-shot classification model; which is pretrained under vision-langauge supervision with a lot of data.
1414

15-
The benefit of this approach is that it can track a lof of classes out-of-the-box without needing to re-train the feature extractor (re-identification model) in DeepSORT. Its performance will not be as good as traditional re-identification model; which is trained for specific purpose.
15+
The benefit of this approach is that it can track a lof of classes out-of-the-box without needing to re-train the feature extractor (re-identification model) in DeepSORT. Its performance may not be as good as traditional re-identification model; which is trained for specific purpose.
1616

1717

1818
## Requirements
@@ -59,26 +59,28 @@ $ python track.py --source VIDEO_PATH --yolo-model-path checkpoints/yolov5s.pt -
5959
* Save the tracking results of MOT16 with the following command:
6060

6161
```bash
62-
$ python eval_mot.py --root MOT_DATASET_ROOT_DIR --yolo-model-path checkpoints/yolov5m.pt
62+
$ python eval_mot.py --root MOT16_ROOT_DIR --yolo-model-path checkpoints/yolov5m.pt
6363
```
6464

6565
* Evaluate with TrackEval:
6666

6767
```bash
6868
$ python TrackEval/scripts/run_mot_challenge.py
6969
--BENCHMARK MOT16
70-
--GT_FOLDER /home/sithu/datasets/simple-object-tracking/data/gt/mot_challenge/
71-
--TRACKERS_FOLDER /home/sithu/datasets/simple-object-tracking/data/trackers/mot_challenge/
70+
--GT_FOLDER PROJECT_ROOT/data/gt/mot_challenge/
71+
--TRACKERS_FOLDER PROJECT_ROOT/data/trackers/mot_challenge/
7272
--TRACKERS_TO_EVAL mot_det
7373
--SPLIT_TO_EVAL train
7474
--USE_PARALLEL True
7575
--NUM_PARALLEL_CORES 4
7676
--PRINT_ONLY_COMBINED True
7777
```
7878

79+
> Notes: `FOLDER` parameters in `run_mot_challenge.py` must be an absolute path.
80+
7981
Detector | Feature Extractor | MOTA | HOTA | IDF1 | IDs | MT | ML | FP | FN
8082
--- | --- | --- | --- | --- | --- | --- | --- | --- | ---
81-
YOLOv5m-COCO | CLIP <br>(ViT-B/32) | 35.289 | 35.029 | 38.334 | 335 | 117 | 191 | 7061 | 63865
83+
YOLOv5m<br>(COCO) | CLIP<br>(ViT-B/32) | 35.289 | 35.029 | 38.334 | 335 | 117 | 191 | 7061 | 63865
8284

8385

8486
## References

0 commit comments

Comments
 (0)