- 24 7 2024: Onnx version CSTNet and smaller version checkpoints are released.
- 20 7 2024: Onnx version CSTNet and smaller version CSTNet-small is upload. The checkpoints will be released soon.
- 06 5 2024: Our manuscript is available at arxiv
prepare your environment as TBSI.
Notice: Our use pytorch version is 1.13.0
You can also modify paths by editing these two files
lib/train/admin/local.py # paths about training
lib/test/evaluation/local.py # paths about testing
Put the tracking datasets in ./data
. It should look like:
${PROJECT_ROOT}
-- data
-- lasher
|-- trainingset
|-- testingset
|-- trainingsetList.txt
|-- testingsetList.txt
...
Download RGBT (TBSI with SOT pretrained model) pretrained weights and put them under $PROJECT_ROOT$/pretrained_models
.
python tracking/train.py --script cstnet --config baseline --save_dir ./output --mode multiple --env_num 5 --nproc_per_node 2 --use_wandb 0
env_num doesn't need to be considered, it can be set to any number. if you want to train in different devices, you can consider it.
if you want to use env_num, go to lib/train/admin/local.py and lib/test/evaluation/local.py to set different device's num
Our tensorboard is released tensorboard/
Our training log is released at cstnet-baseline.log. Although iou name of training log is 'giou', we use wiou loss function. See lib/train/train_script.py and lib/train/actor/cstnet_actor.py
Download checkpoint and put it under $PROJECT_ROOT$/output
.
python tracking/test.py cstnet baseline --dataset_name lasher --threads 4 --num_gpus 1
Download raw result and put it under $PROJECT_ROOT$/output
.
python tracking/analysis_results.py
Our project is developed upon TBSI. Thanks for their contributions which help us to quickly implement our ideas.