billpsomas
commited on
Commit
•
4071171
1
Parent(s):
19659ff
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,36 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
+
datasets:
|
4 |
+
- imagenet-1k
|
5 |
+
metrics:
|
6 |
+
- accuracy
|
7 |
+
pipeline_tag: image-classification
|
8 |
+
language:
|
9 |
+
- en
|
10 |
+
tags:
|
11 |
+
- resnet
|
12 |
+
- convolutional neural network
|
13 |
+
- simpool
|
14 |
+
- computer vision
|
15 |
+
- deep learning
|
16 |
---
|
17 |
+
|
18 |
+
# Supervised ResNet-50 model
|
19 |
+
|
20 |
+
ResNet-50 official model trained on ImageNet-1k for 100 epochs. Reproduced for ICCV 2023 [SimPool](https://arxiv.org/abs/2309.06891) paper.
|
21 |
+
|
22 |
+
SimPool is a simple attention-based pooling method at the end of network, released in this [repository](https://github.com/billpsomas/simpool/).
|
23 |
+
Disclaimer: This model card is written by the author of SimPool, i.e. [Bill Psomas](http://users.ntua.gr/psomasbill/).
|
24 |
+
|
25 |
+
## BibTeX entry and citation info
|
26 |
+
|
27 |
+
```
|
28 |
+
@misc{psomas2023simpool,
|
29 |
+
title={Keep It SimPool: Who Said Supervised Transformers Suffer from Attention Deficit?},
|
30 |
+
author={Bill Psomas and Ioannis Kakogeorgiou and Konstantinos Karantzalos and Yannis Avrithis},
|
31 |
+
year={2023},
|
32 |
+
eprint={2309.06891},
|
33 |
+
archivePrefix={arXiv},
|
34 |
+
primaryClass={cs.CV}
|
35 |
+
}
|
36 |
+
```
|