Transformer-in-Transformer
An Implementation of the Transformer in Transformer paper by Han et al. for image classification, attention inside local patches. Transformer in Transformer uses pixel level attention paired with patch level attention for image classification, in TensorFlow.
Installation
Run the following to install:
pip install tnt-tensorflow
Developing tnt-tensorflow
To install tnt-tensorflow
, along with tools you need to develop and test, run the following in your virtualenv:
git clone https://github.com/Rishit-dagli/Transformer-in-Transformer.git
# or clone your own fork
cd tnt
pip install -e .[dev]
Usage
import tensorflow as tf
from tnt import TNT
tnt = TNT(
image_size=256, # size of image
patch_dim=512, # dimension of patch token
pixel_dim=24, # dimension of pixel token
patch_size=16, # patch size
pixel_size=4, # pixel size
depth=5, # depth
num_classes=1000, # output number of classes
attn_dropout=0.1, # attention dropout
ff_dropout=0.1, # feedforward dropout
)
img = tf.random.uniform(shape=[5, 3, 256, 256])
logits = tnt(img) # (5, 1000)
🙋♂️
?
Want to Contribute Awesome! If you want to contribute to this project, you're always welcome! See Contributing Guidelines. You can also take a look at open issues for getting more information about current or upcoming tasks.
💬
Want to discuss? Have any questions, doubts or want to present your opinions, views? You're always welcome. You can start discussions.
Citation
@misc{han2021transformer,
title={Transformer in Transformer},
author={Kai Han and An Xiao and Enhua Wu and Jianyuan Guo and Chunjing Xu and Yunhe Wang},
year={2021},
eprint={2103.00112},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
License
Copyright 2020 Rishit Dagli
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.