-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff61036
commit 0854a12
Showing
1 changed file
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,24 @@ | ||
# BottleneckTransformer | ||
# Bottleneck Transformers for Visual Recognition | ||
|
||
## Experiments | ||
|
||
| Model | Params (M) | Acc (%) | | ||
|:-:|:-:|:-:| | ||
| ResNet50 baseline ([ref](https://github.com/kuangliu/pytorch-cifar)) | 23.5M | 93.62 | | ||
| BoTNet-50 | 18.8M | 94.79% | | ||
|
||
## Summary | ||
<img width="516" alt="스크린샷 2021-01-28 오후 4 50 19" src="https://user-images.githubusercontent.com/22078438/106106482-f04da900-6188-11eb-8f15-820811c2f908.png"> | ||
|
||
## Usage (example) | ||
```python | ||
from model import MHSA | ||
|
||
mhsa = MHSA(planes, width=14, height=14) | ||
``` | ||
|
||
|
||
## Reference | ||
- [Paper link](https://arxiv.org/abs/2101.11605) | ||
- Author: Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, Ashish Vaswani | ||
- Organization: UC Berkeley, Google Research |