3
3
[ ![ PWC] ( https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/learning-spatio-temporal-transformer-for/visual-object-tracking-on-got-10k )] ( https://paperswithcode.com/sota/visual-object-tracking-on-got-10k?p=learning-spatio-temporal-transformer-for )
4
4
[ ![ PWC] ( https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/learning-spatio-temporal-transformer-for/visual-object-tracking-on-trackingnet )] ( https://paperswithcode.com/sota/visual-object-tracking-on-trackingnet?p=learning-spatio-temporal-transformer-for )
5
5
6
- The official implementation of the paper [ ** Learning Spatio-Temporal Transformer for Visual Tracking** ] ( https://arxiv.org/abs/2103.17154 )
6
+ The official implementation of the ICCV2021 paper [ ** Learning Spatio-Temporal Transformer for Visual Tracking** ] ( https://arxiv.org/abs/2103.17154 )
7
7
8
8
Hiring research interns for visual transformer projects: houwen.peng@microsoft.com
9
9
@@ -30,12 +30,21 @@ STARK-ST50 and STARK-ST101 run at **40FPS** and **30FPS** respectively on a Tesl
30
30
31
31
STARK is implemented purely based on the PyTorch.
32
32
33
+ ## What's new
34
+ ** July 24, 2021**
35
+ - We release an extremely fast version of STARK called ** STARK-Lightning** :zap : . It can run at ** 200~ 300 FPS** on a RTX TITAN GPU.
36
+ Besides, its performance can beat DiMP50, while the model size is even less than that of SiamFC!
37
+ - We release a more powerful version of STARK with Swin Transformer as its backbone.
38
+
39
+ ** July 23, 2021**
40
+ - STARK is accepted by ICCV2021
41
+
33
42
## Install the environment
34
43
** Option1** : Use the Anaconda
35
44
```
36
45
conda create -n stark python=3.6
37
46
conda activate stark
38
- bash install .sh
47
+ bash install_pytorch17 .sh
39
48
```
40
49
** Option2** : Use the docker file
41
50
@@ -65,6 +74,7 @@ Put the tracking datasets in ./data. It should look like:
65
74
|-- TRAIN_11
66
75
|-- TEST
67
76
```
77
+ ## Set project paths
68
78
Run the following command to set paths for this project
69
79
```
70
80
python tracking/create_default_local_file.py --workspace_dir . --data_dir ./data --save_dir .
@@ -129,6 +139,8 @@ python tracking/profile_model.py --script stark_s --config baseline
129
139
python tracking/profile_model.py --script stark_st2 --config baseline
130
140
# Profiling STARK-ST101 model
131
141
python tracking/profile_model.py --script stark_st2 --config baseline_R101
142
+ # Profiling STARK-Lightning-X-trt
143
+ python tracking/profile_model_lightning_X_trt.py
132
144
```
133
145
134
146
## Model Zoo
0 commit comments