Skip to content

[ECCV 2024] Official PyTorch implementation of RoPE-ViT "Rotary Position Embedding for Vision Transformer"

License

Notifications You must be signed in to change notification settings

naver-ai/rope-vit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rotary Position Embedding for Vision Transformer

Byeongho Heo, Song Park, Dongyoon Han, Sangdoo Yun

NAVER AI LAB

Paper

Official PyTorch implementation of RoPE-ViT "Rotary Position Embedding for Vision Transformer" | arxiv.

Abstract

Rotary Position Embedding (RoPE) performs remarkably on language models, especially for length extrapolation of Transformers. However, the impacts of RoPE on computer vision domains have been underexplored, even though RoPE appears capable of enhancing Vision Transformer (ViT) performance in a way similar to the language domain. This study provides a comprehensive analysis of RoPE when applied to ViTs, utilizing practical implementations of RoPE for 2D vision data. The analysis reveals that RoPE demonstrates impressive extrapolation performance, i.e., maintaining precision while increasing image resolution at inference. It eventually leads to performance improvement for ImageNet-1k, COCO detection, and ADE-20k segmentation. We believe this study provides thorough guidelines to apply RoPE into ViT, promising improved backbone performance with minimal extra computational overhead.

Updates

  • Apr 16, 2024: Pre-trained weights released
  • Apr 15, 2024: Code released
  • Mar 21, 2024: Arxiv paper was released

Getting Started

You can find RoPE implementations at each folder.

  • deit/ : RoPE on DeiT-III training code "DeiT III: Revenge of the ViT" original repo
  • swin/ : RoPE on Swin Transformer training code "Swin Transformer: Hierarchical Vision Transformer using Shifted Windows" original repo
  • models/ : Only RoPE model files that used for DeiT and Swin.
  • self-attn/ : Minimum implementation of RoPE in self-attention layer

Performances

DeiT-III

RoPE-ViT

Swin Transformer

RoPE-ViT

Pre-trained weights

DeiT-III (400 epochs)

Model Name Top-1 (224x224) Top-1 (384x384) Weights
deit_small_patch16_LS 80.4 79.4 Google drive
rope_axial_deit_small_patch16_LS 80.9 80.0 Google drive
rope_mixed_deit_small_patch16_LS 80.9 81.8 Google drive
rope_axial_ape_deit_small_patch16_LS 80.7 81.2 Google drive
rope_mixed_ape_deit_small_patch16_LS 80.9 81.7 Google drive
deit_base_patch16_LS 83.4 82.8 Google drive
rope_axial_deit_base_patch16_LS 83.6 83.9 Google drive
rope_mixed_deit_base_patch16_LS 83.8 84.4 Google drive
rope_axial_ape_deit_base_patch16_LS 83.7 83.8 Google drive
rope_mixed_ape_deit_base_patch16_LS 83.8 84.3 Google drive
deit_large_patch16_LS 84.6 84.2 Google drive
rope_axial_deit_large_patch16_LS 84.7 85.1 Google drive
rope_mixed_deit_large_patch16_LS 84.8 85.6 Google drive
rope_axial_ape_deit_large_patch16_LS 84.7 85.1 Google drive
rope_mixed_ape_deit_large_patch16_LS 84.9 85.5 Google drive

Swin Transformer (300 epochs)

Model Name Top-1 (224x224) Top-1 (384x384) Weights
swin_tiny_patch4_window7_224 81.2 78.9
swin_rope_axial_tiny_patch4_window7_224 81.3 79.2 Google drive
swin_rope_mixed_tiny_patch4_window7_224 81.4 79.5 Google drive
swin_small_patch4_window7_224 82.9 81.0
swin_rope_axial_small_patch4_window7_224 83.1 80.9 Google drive
swin_rope_mixed_small_patch4_window7_224 83.0 81.4 Google drive
swin_base_patch4_window7_224 83.3 81.2
swin_rope_axial_base_patch4_window7_224 83.6 81.8 Google drive
swin_rope_mixed_base_patch4_window7_224 83.7 82.1 Google drive

How to cite

@article{heo2024ropevit,
    title={Rotary Position Embedding for Vision Transformer},
    author={Heo, Byeongho and Park, Song and Han, Dongyoon and Yun, Sangdoo},
    year={2024},
    journal={arXiv preprint arXiv:2403.13298},
}

License

This project is distributed under Apache-2.0,
except for the files below which originated from https://github.com/meta-llama/codellama.

RoPE-ViT
Copyright (c) 2024-present NAVER Cloud Corp.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.