Add model
Browse files- README.md +147 -0
- config.json +35 -0
- model.safetensors +3 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,147 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- image-classification
|
4 |
+
- timm
|
5 |
+
library_tag: timm
|
6 |
+
license: apache-2.0
|
7 |
+
datasets:
|
8 |
+
- imagenet-1k
|
9 |
+
---
|
10 |
+
# Model card for resnetv2_101.a1h_in1k
|
11 |
+
|
12 |
+
A ResNet-V2 (pre-activation ResNet) image classification model. Trained on ImageNet-1k by Ross Wightman in `timm` using ResNet strikes back (RSB) `A1` based recipe.
|
13 |
+
|
14 |
+
|
15 |
+
## Model Details
|
16 |
+
- **Model Type:** Image classification / feature backbone
|
17 |
+
- **Model Stats:**
|
18 |
+
- Params (M): 44.5
|
19 |
+
- GMACs: 7.8
|
20 |
+
- Activations (M): 16.2
|
21 |
+
- Image size: 224 x 224
|
22 |
+
- **Papers:**
|
23 |
+
- ResNet strikes back: An improved training procedure in timm: https://arxiv.org/abs/2110.00476
|
24 |
+
- Identity Mappings in Deep Residual Networks: https://arxiv.org/abs/1603.05027
|
25 |
+
- **Dataset:** ImageNet-1k
|
26 |
+
- **Original:** https://github.com/huggingface/pytorch-image-models
|
27 |
+
|
28 |
+
## Model Usage
|
29 |
+
### Image Classification
|
30 |
+
```python
|
31 |
+
from urllib.request import urlopen
|
32 |
+
from PIL import Image
|
33 |
+
import timm
|
34 |
+
|
35 |
+
img = Image.open(urlopen(
|
36 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
37 |
+
))
|
38 |
+
|
39 |
+
model = timm.create_model('resnetv2_101.a1h_in1k', pretrained=True)
|
40 |
+
model = model.eval()
|
41 |
+
|
42 |
+
# get model specific transforms (normalization, resize)
|
43 |
+
data_config = timm.data.resolve_model_data_config(model)
|
44 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
45 |
+
|
46 |
+
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
|
47 |
+
|
48 |
+
top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)
|
49 |
+
```
|
50 |
+
|
51 |
+
### Feature Map Extraction
|
52 |
+
```python
|
53 |
+
from urllib.request import urlopen
|
54 |
+
from PIL import Image
|
55 |
+
import timm
|
56 |
+
|
57 |
+
img = Image.open(urlopen(
|
58 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
59 |
+
))
|
60 |
+
|
61 |
+
model = timm.create_model(
|
62 |
+
'resnetv2_101.a1h_in1k',
|
63 |
+
pretrained=True,
|
64 |
+
features_only=True,
|
65 |
+
)
|
66 |
+
model = model.eval()
|
67 |
+
|
68 |
+
# get model specific transforms (normalization, resize)
|
69 |
+
data_config = timm.data.resolve_model_data_config(model)
|
70 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
71 |
+
|
72 |
+
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
|
73 |
+
|
74 |
+
for o in output:
|
75 |
+
# print shape of each feature map in output
|
76 |
+
# e.g.:
|
77 |
+
# torch.Size([1, 64, 112, 112])
|
78 |
+
# torch.Size([1, 256, 56, 56])
|
79 |
+
# torch.Size([1, 512, 28, 28])
|
80 |
+
# torch.Size([1, 1024, 14, 14])
|
81 |
+
# torch.Size([1, 2048, 7, 7])
|
82 |
+
|
83 |
+
print(o.shape)
|
84 |
+
```
|
85 |
+
|
86 |
+
### Image Embeddings
|
87 |
+
```python
|
88 |
+
from urllib.request import urlopen
|
89 |
+
from PIL import Image
|
90 |
+
import timm
|
91 |
+
|
92 |
+
img = Image.open(urlopen(
|
93 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
94 |
+
))
|
95 |
+
|
96 |
+
model = timm.create_model(
|
97 |
+
'resnetv2_101.a1h_in1k',
|
98 |
+
pretrained=True,
|
99 |
+
num_classes=0, # remove classifier nn.Linear
|
100 |
+
)
|
101 |
+
model = model.eval()
|
102 |
+
|
103 |
+
# get model specific transforms (normalization, resize)
|
104 |
+
data_config = timm.data.resolve_model_data_config(model)
|
105 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
106 |
+
|
107 |
+
output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
|
108 |
+
|
109 |
+
# or equivalently (without needing to set num_classes=0)
|
110 |
+
|
111 |
+
output = model.forward_features(transforms(img).unsqueeze(0))
|
112 |
+
# output is unpooled, a (1, 2048, 7, 7) shaped tensor
|
113 |
+
|
114 |
+
output = model.forward_head(output, pre_logits=True)
|
115 |
+
# output is a (1, num_features) shaped tensor
|
116 |
+
```
|
117 |
+
|
118 |
+
## Model Comparison
|
119 |
+
Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
|
120 |
+
|
121 |
+
## Citation
|
122 |
+
```bibtex
|
123 |
+
@inproceedings{wightman2021resnet,
|
124 |
+
title={ResNet strikes back: An improved training procedure in timm},
|
125 |
+
author={Wightman, Ross and Touvron, Hugo and Jegou, Herve},
|
126 |
+
booktitle={NeurIPS 2021 Workshop on ImageNet: Past, Present, and Future}
|
127 |
+
}
|
128 |
+
```
|
129 |
+
```bibtex
|
130 |
+
@article{He2016,
|
131 |
+
author = {Kaiming He and Xiangyu Zhang and Shaoqing Ren and Jian Sun},
|
132 |
+
title = {Identity Mappings in Deep Residual Networks},
|
133 |
+
journal = {arXiv preprint arXiv:1603.05027},
|
134 |
+
year = {2016}
|
135 |
+
}
|
136 |
+
```
|
137 |
+
```bibtex
|
138 |
+
@misc{rw2019timm,
|
139 |
+
author = {Ross Wightman},
|
140 |
+
title = {PyTorch Image Models},
|
141 |
+
year = {2019},
|
142 |
+
publisher = {GitHub},
|
143 |
+
journal = {GitHub repository},
|
144 |
+
doi = {10.5281/zenodo.4414861},
|
145 |
+
howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
|
146 |
+
}
|
147 |
+
```
|
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "resnetv2_101",
|
3 |
+
"num_classes": 1000,
|
4 |
+
"num_features": 2048,
|
5 |
+
"pretrained_cfg": {
|
6 |
+
"tag": "a1h_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": 0.95,
|
16 |
+
"crop_mode": "center",
|
17 |
+
"mean": [
|
18 |
+
0.5,
|
19 |
+
0.5,
|
20 |
+
0.5
|
21 |
+
],
|
22 |
+
"std": [
|
23 |
+
0.5,
|
24 |
+
0.5,
|
25 |
+
0.5
|
26 |
+
],
|
27 |
+
"num_classes": 1000,
|
28 |
+
"pool_size": [
|
29 |
+
7,
|
30 |
+
7
|
31 |
+
],
|
32 |
+
"first_conv": "stem.conv",
|
33 |
+
"classifier": "head.fc"
|
34 |
+
}
|
35 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2622f2e318304f35c9401e7e989635c302d76e07ea5b4a49c2ee6b2093bdddad
|
3 |
+
size 178618856
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:395d95960470c4345bb0c17f367f52807a29addf6152fd97b36ed12b3168e090
|
3 |
+
size 178770629
|