This repository contains the
RGB-E (RGB-Event) checkpoint for
SDSTrack, a self-distillation symmetric adapter learning tracker for multi-modal single object tracking (CVPR 2024).
This checkpoint was independently reproduced as part of the
EvTrack project (Pattern Recognition course design, Topic #65).
1sha256sum SDSTrack_cvpr2024_rgbe.pth.tar
2md5sum SDSTrack_cvpr2024_rgbe.pth.tar
1from huggingface_hub import hf_hub_download
2import torch
3
4checkpoint_path = hf_hub_download(
5 repo_id="krisspy39/sdstrack-rgbe",
6 filename="SDSTrack_cvpr2024_rgbe.pth.tar",
7 repo_type="model"
8)
9
10checkpoint = torch.load(checkpoint_path, map_location="cpu", weights_only=False)
1git clone https://github.com/hoqolo/SDSTrack.git
2cd SDSTrack
-
Download the pretrained OSTrack foundation model to ./pretrained/vitb_256_mae_ce_32x4_ep300/OSTrack_ep0300.pth.tar
-
Symlink or copy this checkpoint to ./models/SDSTrack_cvpr2024_rgbe.pth.tar
-
Run evaluation:
1python ./RGBE_workspace/test_rgbe_mgpus.py \
2 --script_name sdstrack \
3 --num_gpus 1 \
4 --threads 4 \
5 --epoch 50 \
6 --yaml_name cvpr2024_rgbe
Note: The upstream code requires PyTorch 1.11 + Python 3.8. For PyTorch 2.x compatibility patches, see
EvTrack/sdstrack_eval.py.
This checkpoint is trained and evaluated on
VisEvent, a large-scale RGB-Event single object tracking benchmark.
The VisEvent dataset is also available as a webdataset on Hugging Face:
krisspy39/visevent
1@inproceedings{hou2024sdstrack,
2 title={Self-Distillation Symmetric Adapter Learning for Multi-Modal Object Tracking},
3 author={Hou, Xiaojun and others},
4 booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
5 year={2024}
6}
This checkpoint is provided for research purposes. Please refer to the original
SDSTrack repository for licensing terms.