This repository is the code for our papers:
CrossFormer++: A Versatile Vision Transformer Hinging on Cross-scale Attention (IEEE TPAMI Acceptance).
CrossFormer: A Versatile Vision Transformer Based on Cross-scale Attention (ICLR 2022 Acceptance).
The crossformer branch retains the old version code with old dependencies.
get_flops.py
in detection and segmentation.Existing vision transformers fail to build attention among objects/features of different scales (cross-scale attention), while such ability is very important to visual tasks. CrossFormer is a versatile vision transformer which solves this problem. Its core designs contain Cross-scale Embedding Layer (CEL), Long-Short Distance Attention (L/SDA), which work together to enable cross-scale attention.
CEL blends every input embedding with multiple-scale features. L/SDA split all embeddings into several groups, and the self-attention is only computed within each group (embeddings with the same color border belong to the same group.).
Besides, we also propose a Dynamic Position Bias (DPB) module, which makes the effective yet inflexible relative position bias apply to variable image size.
Further, in CrossFormer++, we introduce a Progressive Group Size (PGS) strategy to achieve a better balance between performance and computation budget and a Activation Cooling Layer (ACL) to suppress the magnitude of activations that grows drastically in the residual stream.
Now, experiments are done on four representative visual tasks, i.e., image classification, objection detection, and instance/semantic segmentation. Results show that CrossFormer outperforms existing vision transformers in these tasks, especially in dense prediction tasks (i.e., object detection and instance/semantic segmentation). We think it is because image classification only pays attention to one object and large-scale features, while dense prediction tasks rely more on cross-scale attention.
Create and activate conda environment
conda create -n crossformer_env python=3.9 -y
conda activate crossformer_env
Libraries (Python3.9-based)
conda install pytorch==1.12.1 torchvision==0.13.1 torchaudio==0.12.1 cudatoolkit=11.3 -c pytorch
pip install tensorboard termcolor
pip install timm pyyaml yacs protobuf==3.20.0
Dataset: ImageNet
Requirements for detection/instance segmentation and semantic segmentation are listed here: detection/README.md or segmentation/README.md
For ease of use, we have adapted our code of CrossFormer and CrossFormer++ with newer version of pytorch, mmcv, mmdetection and mmsegmentation, so the results in this repository may be slightly different from the results reported in the paper.
If you're using relatively old versions of CUDA, please consider using our original CrossFormer code at crossformer
branch of this repository.
## There should be two directories under the path_to_imagenet: train and validation
## CrossFormer-T
python -u -m torch.distributed.launch --nproc_per_node 8 main.py --cfg configs/crossformer/tiny_patch4_group7_224.yaml \
--batch-size 128 --data-path path_to_imagenet --output ./output
## CrossFormer-S
python -u -m torch.distributed.launch --nproc_per_node 8 main.py --cfg configs/crossformer/small_patch4_group7_224.yaml \
--batch-size 128 --data-path path_to_imagenet --output ./output
## CrossFormer-B
python -u -m torch.distributed.launch --nproc_per_node 8 main.py --cfg configs/crossformer/base_patch4_group7_224.yaml
--batch-size 128 --data-path path_to_imagenet --output ./output
## CrossFormer-L
python -u -m torch.distributed.launch --nproc_per_node 8 main.py --cfg configs/crossformer/large_patch4_group7_224.yaml \
--batch-size 128 --data-path path_to_imagenet --output ./output
## CrossFormer++-S
python -u -m torch.distributed.launch --nproc_per_node 8 main.py --cfg configs/crossformer_pp/small_patch4_group_const_224.yaml \
--batch-size 128 --data-path path_to_imagenet --output ./output
## CrossFormer++-B
python -u -m torch.distributed.launch --nproc_per_node 8 main.py --cfg configs/crossformer_pp/base_patch4_group_const_224.yaml \
--batch-size 128 --data-path path_to_imagenet --output ./output
## CrossFormer++-L
python -u -m torch.distributed.launch --nproc_per_node 8 main.py --cfg configs/crossformer_pp/large_patch4_group_const_224.yaml \
--batch-size 128 --data-path path_to_imagenet --output ./output
## Take CrossFormer-T as an example of evaluating accuracy
python -u -m torch.distributed.launch --nproc_per_node 1 main.py --cfg configs/crossformer/small_patch4_group7_224.yaml \
--batch-size 128 --data-path path_to_imagenet --eval --resume path_to_crossformer-t.pth
## Take CrossFormer-T as an example of testing throughput
python -u -m torch.distributed.launch --nproc_per_node 1 main.py --cfg configs/crossformer/small_patch4_group7_224.yaml \
--batch-size 128 --data-path path_to_imagenet --throughput
You need to modify the path_to_imagenet
and path_to_crossformer-t.pth
accordingly.
Training and testing scripts for objection detection: detection/README.md.
Training and testing scripts for semantic segmentation: segmentation/README.md.
Models trained on ImageNet-1K and evaluated on its validation set. The input image size is 224 x 224.
Architectures | Params | FLOPs | Accuracy | Models |
---|---|---|---|---|
ResNet-50 | 25.6M | 4.1G | 76.2% | - |
RegNetY-8G | 39.0M | 8.0G | 81.7% | - |
CrossFormer-T | 27.8M | 2.9G | 81.5% | Google Drive/BaiduCloud, key: nkju |
CrossFormer-S | 30.7M | 4.9G | 82.5% | Google Drive/BaiduCloud, key: fgqj |
CrossFormer++-S | 23.3M | 4.9G | 83.2% | BaiduCloud, key:crsf |
CrossFormer-B | 52.0M | 9.2G | 83.4% | Google Drive/BaiduCloud, key: 7md9 |
CrossFormer++-B | 52.0M | 9.5G | 84.2% | BaiduCloud, key:crsf |
CrossFormer-L | 92.0M | 16.1G | 84.0% | Google Drive/BaiduCloud, key: cc89 |
CrossFormer++-L | 92.0M | 16.6G | 84.7% | BaiduCloud, key:crsf |
CrossFormer++-H | 96.0M | 21.8G | 84.9% | BaiduCloud, key:crsf |
More results compared with other vision transformers can be seen in the paper.
Note: Checkpoints of CrossFormer++ will be released as soon as possible.
Models trained on COCO 2017. Backbones are initialized with weights pre-trained on ImageNet-1K.
Backbone | Detection Head | Learning Schedule | Params | FLOPs | box AP | mask AP |
---|---|---|---|---|---|---|
ResNet-101 | RetinaNet | 1x | 56.7M | 315.0G | 38.5 | - |
CrossFormer-S | RetinaNet | 1x | 40.8M | 282.0G | 44.4 | - |
CrossFormer++-S | RetinaNet | 1x | 40.8M | 282.0G | 45.1 | - |
CrossFormer-B | RetinaNet | 1x | 62.1M | 389.0G | 46.2 | - |
CrossFormer++-B | RetinaNet | 1x | 62.2M | 389.0G | 46.6 | - |
Backbone | Detection Head | Learning Schedule | Params | FLOPs | box AP | mask AP | |
---|---|---|---|---|---|---|---|
ResNet-101 | Mask-RCNN | 1x | 63.2M | 336.0G | 40.4 | 36.4 | |
CrossFormer-S | Mask-RCNN | 1x | 50.2M | 301.0G | 45.4 | 41.4 | |
CrossFormer++-S | Mask-RCNN | 1x | 43.0M | 287.4G | 46.4 | 42.1 | |
CrossFormer-B | Mask-RCNN | 1x | 71.5M | 407.9G | 47.2 | 42.7 | |
CrossFormer++-B | Mask-RCNN | 1x | 71.5M | 408.0G | 47.7 | 43.2 | |
<!-- | CrossFormer-S | Mask-RCNN | 3x | 50.2M | 291.1G | 48.7 | 43.9 |
CrossFormer-B | Mask-RCNN | 3x | 71.5M | 398.1G | 49.8 | 44.5 | |
CrossFormer-S | Cascade-Mask-RCNN | 3x | 88.0M | 769.7G | 52.2 | 45.2 | --> |
More results and pretrained models for objection detection: detection/README.md.
Models trained on ADE20K. Backbones are initialized with weights pre-trained on ImageNet-1K.
Backbone | Segmentation Head | Iterations | Params | FLOPs | IOU | MS IOU |
---|---|---|---|---|---|---|
CrossFormer-S | FPN | 80K | 34.3M | 209.8G | 46.4 | - |
CrossFormer++-S | FPN | 80K | 27.1M | 199.5G | 47.4 | - |
CrossFormer-B | FPN | 80K | 55.6M | 320.1G | 48.0 | - |
CrossFormer++-B | FPN | 80K | 55.6M | 331.1G | 48.6 | - |
CrossFormer-L | FPN | 80K | 95.4M | 482.7G | 49.1 | - |
Backbone | Segmentation Head | Iterations | Params | FLOPs | IOU | MS IOU |
---|---|---|---|---|---|---|
ResNet-101 | UPerNet | 160K | 86.0M | 1029.G | 44.9 | - |
CrossFormer-S | UPerNet | 160K | 62.3M | 979.5G | 47.6 | 48.4 |
CrossFormer++-S | UPerNet | 160K | 53.1M | 963.5G | 49.4 | 50.8 |
CrossFormer-B | UPerNet | 160K | 83.6M | 1089.7G | 49.7 | 50.6 |
CrossFormer++-B | UPerNet | 160K | 83.7M | 1089.8G | 50.7 | 51.0 |
CrossFormer-L | UPerNet | 160K | 125.5M | 1257.8G | 50.4 | 51.4 |
MS IOU means IOU with multi-scale testing.
More results and pretrained models for semantic segmentation: segmentation/README.md.
@inproceedings{wang2021crossformer,
title = {CrossFormer: A Versatile Vision Transformer Hinging on Cross-scale Attention},
author = {Wenxiao Wang and Lu Yao and Long Chen and Binbin Lin and Deng Cai and Xiaofei He and Wei Liu},
booktitle = {International Conference on Learning Representations, {ICLR}},
url = {https://openreview.net/forum?id=_PHymLIxuI},
year = {2022}
}
@article{wang2023crossformer++,
author = {Wenxiao Wang and Wei Chen and Qibo Qiu and Long Chen and Boxi Wu and Binbin Lin and Xiaofei He and Wei Liu},
title = {Crossformer++: A versatile vision transformer hinging on cross-scale attention},
journal = {{IEEE} Transactions on Pattern Analysis and Machine Intelligence, {TPAMI}},
year = {2023},
doi = {10.1109/TPAMI.2023.3341806},
}
Part of the code of this repository refers to Swin Transformer.