Add model
Browse files- README.md +172 -0
- config.json +41 -0
- model.safetensors +3 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 mobilenetv4_hybrid_large.ix_e600_r384_in1k
|
11 |
+
|
12 |
+
A MobileNet-V4 image classification model. Trained on ImageNet-1k by Ross Wightman.
|
13 |
+
|
14 |
+
Trained with `timm` scripts using hyper-parameters (mostly) similar to those in the paper.
|
15 |
+
|
16 |
+
NOTE: So far, these are the only known MNV4 weights. Official weights for Tensorflow models are unreleased.
|
17 |
+
|
18 |
+
|
19 |
+
## Model Details
|
20 |
+
- **Model Type:** Image classification / feature backbone
|
21 |
+
- **Model Stats:**
|
22 |
+
- Params (M): 37.8
|
23 |
+
- GMACs: 7.4
|
24 |
+
- Activations (M): 30.0
|
25 |
+
- Image size: train = 384 x 384, test = 448 x 448
|
26 |
+
- **Dataset:** ImageNet-1k
|
27 |
+
- **Papers:**
|
28 |
+
- MobileNetV4 -- Universal Models for the Mobile Ecosystem: https://arxiv.org/abs/2404.10518
|
29 |
+
- PyTorch Image Models: https://github.com/huggingface/pytorch-image-models
|
30 |
+
- **Original:** https://github.com/tensorflow/models/tree/master/official/vision
|
31 |
+
|
32 |
+
## Model Usage
|
33 |
+
### Image Classification
|
34 |
+
```python
|
35 |
+
from urllib.request import urlopen
|
36 |
+
from PIL import Image
|
37 |
+
import timm
|
38 |
+
|
39 |
+
img = Image.open(urlopen(
|
40 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
41 |
+
))
|
42 |
+
|
43 |
+
model = timm.create_model('mobilenetv4_hybrid_large.ix_e600_r384_in1k', pretrained=True)
|
44 |
+
model = model.eval()
|
45 |
+
|
46 |
+
# get model specific transforms (normalization, resize)
|
47 |
+
data_config = timm.data.resolve_model_data_config(model)
|
48 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
49 |
+
|
50 |
+
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
|
51 |
+
|
52 |
+
top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)
|
53 |
+
```
|
54 |
+
|
55 |
+
### Feature Map Extraction
|
56 |
+
```python
|
57 |
+
from urllib.request import urlopen
|
58 |
+
from PIL import Image
|
59 |
+
import timm
|
60 |
+
|
61 |
+
img = Image.open(urlopen(
|
62 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
63 |
+
))
|
64 |
+
|
65 |
+
model = timm.create_model(
|
66 |
+
'mobilenetv4_hybrid_large.ix_e600_r384_in1k',
|
67 |
+
pretrained=True,
|
68 |
+
features_only=True,
|
69 |
+
)
|
70 |
+
model = model.eval()
|
71 |
+
|
72 |
+
# get model specific transforms (normalization, resize)
|
73 |
+
data_config = timm.data.resolve_model_data_config(model)
|
74 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
75 |
+
|
76 |
+
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
|
77 |
+
|
78 |
+
for o in output:
|
79 |
+
# print shape of each feature map in output
|
80 |
+
# e.g.:
|
81 |
+
# torch.Size([1, 24, 192, 192])
|
82 |
+
# torch.Size([1, 48, 96, 96])
|
83 |
+
# torch.Size([1, 96, 48, 48])
|
84 |
+
# torch.Size([1, 192, 24, 24])
|
85 |
+
# torch.Size([1, 960, 12, 12])
|
86 |
+
|
87 |
+
print(o.shape)
|
88 |
+
```
|
89 |
+
|
90 |
+
### Image Embeddings
|
91 |
+
```python
|
92 |
+
from urllib.request import urlopen
|
93 |
+
from PIL import Image
|
94 |
+
import timm
|
95 |
+
|
96 |
+
img = Image.open(urlopen(
|
97 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
98 |
+
))
|
99 |
+
|
100 |
+
model = timm.create_model(
|
101 |
+
'mobilenetv4_hybrid_large.ix_e600_r384_in1k',
|
102 |
+
pretrained=True,
|
103 |
+
num_classes=0, # remove classifier nn.Linear
|
104 |
+
)
|
105 |
+
model = model.eval()
|
106 |
+
|
107 |
+
# get model specific transforms (normalization, resize)
|
108 |
+
data_config = timm.data.resolve_model_data_config(model)
|
109 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
110 |
+
|
111 |
+
output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
|
112 |
+
|
113 |
+
# or equivalently (without needing to set num_classes=0)
|
114 |
+
|
115 |
+
output = model.forward_features(transforms(img).unsqueeze(0))
|
116 |
+
# output is unpooled, a (1, 960, 12, 12) shaped tensor
|
117 |
+
|
118 |
+
output = model.forward_head(output, pre_logits=True)
|
119 |
+
# output is a (1, num_features) shaped tensor
|
120 |
+
```
|
121 |
+
|
122 |
+
## Model Comparison
|
123 |
+
### By Top-1
|
124 |
+
|
125 |
+
| model |top1 |top1_err|top5 |top5_err|param_count|img_size|
|
126 |
+
|--------------------------------------------------------------------------------------------------|------|--------|------|--------|-----------|--------|
|
127 |
+
| [mobilenetv4_hybrid_large.ix_e600_r384_in1k](http://hf.co/timm/mobilenetv4_hybrid_large.ix_e600_r384_in1k) |84.356|15.644 |96.892 |3.108 |37.76 |448 |
|
128 |
+
| [mobilenetv4_hybrid_large.e600_r384_in1k](http://hf.co/timm/mobilenetv4_hybrid_large.e600_r384_in1k) |84.266|15.734 |96.936 |3.064 |37.76 |448 |
|
129 |
+
| [mobilenetv4_hybrid_large.ix_e600_r384_in1k](http://hf.co/timm/mobilenetv4_hybrid_large.ix_e600_r384_in1k) |83.990|16.010 |96.702 |3.298 |37.76 |384 |
|
130 |
+
| [mobilenetv4_hybrid_large.e600_r384_in1k](http://hf.co/timm/mobilenetv4_hybrid_large.e600_r384_in1k) |83.800|16.200 |96.770 |3.230 |37.76 |384 |
|
131 |
+
| [mobilenetv4_hybrid_medium.ix_e550_r384_in1k](http://hf.co/timm/mobilenetv4_hybrid_medium.ix_e550_r384_in1k) |83.394|16.606 |96.760|3.240 |11.07 |448 |
|
132 |
+
| [mobilenetv4_conv_large.e600_r384_in1k](http://hf.co/timm/mobilenetv4_conv_large.e600_r384_in1k) |83.392|16.608 |96.622 |3.378 |32.59 |448 |
|
133 |
+
| [mobilenetv4_hybrid_medium.ix_e550_r384_in1k](http://hf.co/timm/mobilenetv4_hybrid_medium.ix_e550_r384_in1k) |82.968|17.032 |96.474|3.526 |11.07 |384 |
|
134 |
+
| [mobilenetv4_conv_large.e600_r384_in1k](http://hf.co/timm/mobilenetv4_conv_large.e600_r384_in1k) |82.952|17.048 |96.266 |3.734 |32.59 |384 |
|
135 |
+
| [mobilenetv4_conv_large.e500_r256_in1k](http://hf.co/timm/mobilenetv4_conv_large.e500_r256_in1k) |82.674|17.326 |96.31 |3.69 |32.59 |320 |
|
136 |
+
| [mobilenetv4_hybrid_medium.ix_e550_r256_in1k](http://hf.co/timm/mobilenetv4_hybrid_medium.ix_e550_r256_in1k) |82.492|17.508 |96.278|3.722 |11.07 |320 |
|
137 |
+
| [mobilenetv4_conv_large.e500_r256_in1k](http://hf.co/timm/mobilenetv4_conv_large.e500_r256_in1k) |81.862|18.138 |95.69 |4.31 |32.59 |256 |
|
138 |
+
| [mobilenetv4_hybrid_medium.ix_e550_r256_in1k](http://hf.co/timm/mobilenetv4_hybrid_medium.ix_e550_r256_in1k) |81.446|18.554 |95.704|4.296 |11.07 |256 |
|
139 |
+
| [mobilenetv4_hybrid_medium.e500_r224_in1k](http://hf.co/timm/mobilenetv4_hybrid_medium.e500_r224_in1k) |81.276|18.724 |95.742|4.258 |11.07 |256 |
|
140 |
+
| [mobilenetv4_conv_medium.e500_r256_in1k](http://hf.co/timm/mobilenetv4_conv_medium.e500_r256_in1k) |80.858|19.142 |95.768|4.232 |9.72 |320 |
|
141 |
+
| [mobilenetv4_hybrid_medium.e500_r224_in1k](http://hf.co/timm/mobilenetv4_hybrid_medium.e500_r224_in1k) |80.442|19.558 |95.38 |4.62 |11.07 |224 |
|
142 |
+
| [mobilenetv4_conv_blur_medium.e500_r224_in1k](http://hf.co/timm/mobilenetv4_conv_blur_medium.e500_r224_in1k) |80.142|19.858 |95.298|4.702 |9.72 |256 |
|
143 |
+
| [mobilenetv4_conv_medium.e500_r256_in1k](http://hf.co/timm/mobilenetv4_conv_medium.e500_r256_in1k) |79.928|20.072 |95.184|4.816 |9.72 |256 |
|
144 |
+
| [mobilenetv4_conv_medium.e500_r224_in1k](http://hf.co/timm/mobilenetv4_conv_medium.e500_r224_in1k) |79.808|20.192 |95.186|4.814 |9.72 |256 |
|
145 |
+
| [mobilenetv4_conv_blur_medium.e500_r224_in1k](http://hf.co/timm/mobilenetv4_conv_blur_medium.e500_r224_in1k) |79.438|20.562 |94.932|5.068 |9.72 |224 |
|
146 |
+
| [mobilenetv4_conv_medium.e500_r224_in1k](http://hf.co/timm/mobilenetv4_conv_medium.e500_r224_in1k) |79.094|20.906 |94.77 |5.23 |9.72 |224 |
|
147 |
+
| [mobilenetv4_conv_small.e2400_r224_in1k](http://hf.co/timm/mobilenetv4_conv_small.e2400_r224_in1k) |74.616|25.384 |92.072|7.928 |3.77 |256 |
|
148 |
+
| [mobilenetv4_conv_small.e1200_r224_in1k](http://hf.co/timm/mobilenetv4_conv_small.e1200_r224_in1k) |74.292|25.708 |92.116|7.884 |3.77 |256 |
|
149 |
+
| [mobilenetv4_conv_small.e2400_r224_in1k](http://hf.co/timm/mobilenetv4_conv_small.e2400_r224_in1k) |73.756|26.244 |91.422|8.578 |3.77 |224 |
|
150 |
+
| [mobilenetv4_conv_small.e1200_r224_in1k](http://hf.co/timm/mobilenetv4_conv_small.e1200_r224_in1k) |73.454|26.546 |91.34 |8.66 |3.77 |224 |
|
151 |
+
|
152 |
+
|
153 |
+
## Citation
|
154 |
+
```bibtex
|
155 |
+
@article{qin2024mobilenetv4,
|
156 |
+
title={MobileNetV4-Universal Models for the Mobile Ecosystem},
|
157 |
+
author={Qin, Danfeng and Leichner, Chas and Delakis, Manolis and Fornoni, Marco and Luo, Shixin and Yang, Fan and Wang, Weijun and Banbury, Colby and Ye, Chengxi and Akin, Berkin and others},
|
158 |
+
journal={arXiv preprint arXiv:2404.10518},
|
159 |
+
year={2024}
|
160 |
+
}
|
161 |
+
```
|
162 |
+
```bibtex
|
163 |
+
@misc{rw2019timm,
|
164 |
+
author = {Ross Wightman},
|
165 |
+
title = {PyTorch Image Models},
|
166 |
+
year = {2019},
|
167 |
+
publisher = {GitHub},
|
168 |
+
journal = {GitHub repository},
|
169 |
+
doi = {10.5281/zenodo.4414861},
|
170 |
+
howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
|
171 |
+
}
|
172 |
+
```
|
config.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "mobilenetv4_hybrid_large",
|
3 |
+
"num_classes": 1000,
|
4 |
+
"num_features": 960,
|
5 |
+
"pretrained_cfg": {
|
6 |
+
"tag": "ix_e600_r384_in1k",
|
7 |
+
"custom_load": false,
|
8 |
+
"input_size": [
|
9 |
+
3,
|
10 |
+
384,
|
11 |
+
384
|
12 |
+
],
|
13 |
+
"test_input_size": [
|
14 |
+
3,
|
15 |
+
448,
|
16 |
+
448
|
17 |
+
],
|
18 |
+
"fixed_input_size": false,
|
19 |
+
"interpolation": "bicubic",
|
20 |
+
"crop_pct": 0.95,
|
21 |
+
"test_crop_pct": 1.0,
|
22 |
+
"crop_mode": "center",
|
23 |
+
"mean": [
|
24 |
+
0.485,
|
25 |
+
0.456,
|
26 |
+
0.406
|
27 |
+
],
|
28 |
+
"std": [
|
29 |
+
0.229,
|
30 |
+
0.224,
|
31 |
+
0.225
|
32 |
+
],
|
33 |
+
"num_classes": 1000,
|
34 |
+
"pool_size": [
|
35 |
+
12,
|
36 |
+
12
|
37 |
+
],
|
38 |
+
"first_conv": "conv_stem",
|
39 |
+
"classifier": "classifier"
|
40 |
+
}
|
41 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b788203c09a4840c30caae42c6f35b43c7aa466803b0a033bfc1a6c56f54ba4d
|
3 |
+
size 151794472
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0d5b84f0a42b188925ba0a3ca43140622cf5145ca3b9c50548fee83cf97393bb
|
3 |
+
size 151998742
|