Add model
Browse files- README.md +126 -0
- config.json +35 -0
- model.safetensors +3 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- image-classification
|
4 |
+
- timm
|
5 |
+
library_name: timm
|
6 |
+
license: apache-2.0
|
7 |
+
datasets:
|
8 |
+
- imagenet-1k
|
9 |
+
---
|
10 |
+
# Model card for convformer_s36.sail_in1k
|
11 |
+
|
12 |
+
A ConvFormer (a MetaFormer) image classification model. Trained on ImageNet-1k by paper authors.
|
13 |
+
|
14 |
+
## Model Details
|
15 |
+
- **Model Type:** Image classification / feature backbone
|
16 |
+
- **Model Stats:**
|
17 |
+
- Params (M): 40.0
|
18 |
+
- GMACs: 7.7
|
19 |
+
- Activations (M): 30.5
|
20 |
+
- Image size: 224 x 224
|
21 |
+
- **Papers:**
|
22 |
+
- Metaformer baselines for vision: https://arxiv.org/abs/2210.13452
|
23 |
+
- **Original:** https://github.com/sail-sg/metaformer
|
24 |
+
- **Dataset:** ImageNet-1k
|
25 |
+
|
26 |
+
## Model Usage
|
27 |
+
### Image Classification
|
28 |
+
```python
|
29 |
+
from urllib.request import urlopen
|
30 |
+
from PIL import Image
|
31 |
+
import timm
|
32 |
+
|
33 |
+
img = Image.open(urlopen(
|
34 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
35 |
+
))
|
36 |
+
|
37 |
+
model = timm.create_model('convformer_s36.sail_in1k', pretrained=True)
|
38 |
+
model = model.eval()
|
39 |
+
|
40 |
+
# get model specific transforms (normalization, resize)
|
41 |
+
data_config = timm.data.resolve_model_data_config(model)
|
42 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
43 |
+
|
44 |
+
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
|
45 |
+
|
46 |
+
top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)
|
47 |
+
```
|
48 |
+
|
49 |
+
### Feature Map Extraction
|
50 |
+
```python
|
51 |
+
from urllib.request import urlopen
|
52 |
+
from PIL import Image
|
53 |
+
import timm
|
54 |
+
|
55 |
+
img = Image.open(urlopen(
|
56 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
57 |
+
))
|
58 |
+
|
59 |
+
model = timm.create_model(
|
60 |
+
'convformer_s36.sail_in1k',
|
61 |
+
pretrained=True,
|
62 |
+
features_only=True,
|
63 |
+
)
|
64 |
+
model = model.eval()
|
65 |
+
|
66 |
+
# get model specific transforms (normalization, resize)
|
67 |
+
data_config = timm.data.resolve_model_data_config(model)
|
68 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
69 |
+
|
70 |
+
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
|
71 |
+
|
72 |
+
for o in output:
|
73 |
+
# print shape of each feature map in output
|
74 |
+
# e.g.:
|
75 |
+
# torch.Size([1, 64, 56, 56])
|
76 |
+
# torch.Size([1, 128, 28, 28])
|
77 |
+
# torch.Size([1, 320, 14, 14])
|
78 |
+
# torch.Size([1, 512, 7, 7])
|
79 |
+
|
80 |
+
print(o.shape)
|
81 |
+
```
|
82 |
+
|
83 |
+
### Image Embeddings
|
84 |
+
```python
|
85 |
+
from urllib.request import urlopen
|
86 |
+
from PIL import Image
|
87 |
+
import timm
|
88 |
+
|
89 |
+
img = Image.open(urlopen(
|
90 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
91 |
+
))
|
92 |
+
|
93 |
+
model = timm.create_model(
|
94 |
+
'convformer_s36.sail_in1k',
|
95 |
+
pretrained=True,
|
96 |
+
num_classes=0, # remove classifier nn.Linear
|
97 |
+
)
|
98 |
+
model = model.eval()
|
99 |
+
|
100 |
+
# get model specific transforms (normalization, resize)
|
101 |
+
data_config = timm.data.resolve_model_data_config(model)
|
102 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
103 |
+
|
104 |
+
output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
|
105 |
+
|
106 |
+
# or equivalently (without needing to set num_classes=0)
|
107 |
+
|
108 |
+
output = model.forward_features(transforms(img).unsqueeze(0))
|
109 |
+
# output is unpooled, a (1, 512, 7, 7) shaped tensor
|
110 |
+
|
111 |
+
output = model.forward_head(output, pre_logits=True)
|
112 |
+
# output is a (1, num_features) shaped tensor
|
113 |
+
```
|
114 |
+
|
115 |
+
## Model Comparison
|
116 |
+
Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
|
117 |
+
|
118 |
+
## Citation
|
119 |
+
```bibtex
|
120 |
+
@article{yu2022metaformer_baselines,
|
121 |
+
title={Metaformer baselines for vision},
|
122 |
+
author={Yu, Weihao and Si, Chenyang and Zhou, Pan and Luo, Mi and Zhou, Yichen and Feng, Jiashi and Yan, Shuicheng and Wang, Xinchao},
|
123 |
+
journal={arXiv preprint arXiv:2210.13452},
|
124 |
+
year={2022}
|
125 |
+
}
|
126 |
+
```
|
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "convformer_s36",
|
3 |
+
"num_classes": 1000,
|
4 |
+
"num_features": 512,
|
5 |
+
"pretrained_cfg": {
|
6 |
+
"tag": "sail_in1k",
|
7 |
+
"custom_load": false,
|
8 |
+
"input_size": [
|
9 |
+
3,
|
10 |
+
224,
|
11 |
+
224
|
12 |
+
],
|
13 |
+
"fixed_input_size": false,
|
14 |
+
"interpolation": "bicubic",
|
15 |
+
"crop_pct": 1.0,
|
16 |
+
"crop_mode": "center",
|
17 |
+
"mean": [
|
18 |
+
0.485,
|
19 |
+
0.456,
|
20 |
+
0.406
|
21 |
+
],
|
22 |
+
"std": [
|
23 |
+
0.229,
|
24 |
+
0.224,
|
25 |
+
0.225
|
26 |
+
],
|
27 |
+
"num_classes": 1000,
|
28 |
+
"pool_size": [
|
29 |
+
7,
|
30 |
+
7
|
31 |
+
],
|
32 |
+
"first_conv": "stem.conv",
|
33 |
+
"classifier": "head.fc.fc2"
|
34 |
+
}
|
35 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:82ba149340f9b1b33842f5f71f028e1e46c89b3be8c489aa34018601e122e857
|
3 |
+
size 160097294
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dcd20a0dfb9fea9fd6165302b29a3a483fd1b39e97ae2fbff926b1b3fc3ccd1f
|
3 |
+
size 160241845
|