Add model
Browse files- README.md +138 -0
- config.json +35 -0
- model.safetensors +3 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 inception_v3.tv_in1k
|
11 |
+
|
12 |
+
A Inception-v3 image classification model. Trained on ImageNet-1k, torchvision weights.
|
13 |
+
|
14 |
+
## Model Details
|
15 |
+
- **Model Type:** Image classification / feature backbone
|
16 |
+
- **Model Stats:**
|
17 |
+
- Params (M): 23.8
|
18 |
+
- GMACs: 5.7
|
19 |
+
- Activations (M): 9.0
|
20 |
+
- Image size: 299 x 299
|
21 |
+
- **Papers:**
|
22 |
+
- Rethinking the Inception Architecture for Computer Vision: https://arxiv.org/abs/1512.00567
|
23 |
+
- **Original:** https://github.com/pytorch/vision
|
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('inception_v3.tv_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 |
+
'inception_v3.tv_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, 147, 147])
|
76 |
+
# torch.Size([1, 192, 71, 71])
|
77 |
+
# torch.Size([1, 288, 35, 35])
|
78 |
+
# torch.Size([1, 768, 17, 17])
|
79 |
+
# torch.Size([1, 2048, 8, 8])
|
80 |
+
|
81 |
+
print(o.shape)
|
82 |
+
```
|
83 |
+
|
84 |
+
### Image Embeddings
|
85 |
+
```python
|
86 |
+
from urllib.request import urlopen
|
87 |
+
from PIL import Image
|
88 |
+
import timm
|
89 |
+
|
90 |
+
img = Image.open(urlopen(
|
91 |
+
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
|
92 |
+
))
|
93 |
+
|
94 |
+
model = timm.create_model(
|
95 |
+
'inception_v3.tv_in1k',
|
96 |
+
pretrained=True,
|
97 |
+
num_classes=0, # remove classifier nn.Linear
|
98 |
+
)
|
99 |
+
model = model.eval()
|
100 |
+
|
101 |
+
# get model specific transforms (normalization, resize)
|
102 |
+
data_config = timm.data.resolve_model_data_config(model)
|
103 |
+
transforms = timm.data.create_transform(**data_config, is_training=False)
|
104 |
+
|
105 |
+
output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
|
106 |
+
|
107 |
+
# or equivalently (without needing to set num_classes=0)
|
108 |
+
|
109 |
+
output = model.forward_features(transforms(img).unsqueeze(0))
|
110 |
+
# output is unpooled, a (1, 2048, 8, 8) shaped tensor
|
111 |
+
|
112 |
+
output = model.forward_head(output, pre_logits=True)
|
113 |
+
# output is a (1, num_features) shaped tensor
|
114 |
+
```
|
115 |
+
|
116 |
+
## Model Comparison
|
117 |
+
Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
|
118 |
+
|
119 |
+
## Citation
|
120 |
+
```bibtex
|
121 |
+
@article{DBLP:journals/corr/SzegedyVISW15,
|
122 |
+
author = {Christian Szegedy and
|
123 |
+
Vincent Vanhoucke and
|
124 |
+
Sergey Ioffe and
|
125 |
+
Jonathon Shlens and
|
126 |
+
Zbigniew Wojna},
|
127 |
+
title = {Rethinking the Inception Architecture for Computer Vision},
|
128 |
+
journal = {CoRR},
|
129 |
+
volume = {abs/1512.00567},
|
130 |
+
year = {2015},
|
131 |
+
url = {http://arxiv.org/abs/1512.00567},
|
132 |
+
archivePrefix = {arXiv},
|
133 |
+
eprint = {1512.00567},
|
134 |
+
timestamp = {Mon, 13 Aug 2018 16:49:07 +0200},
|
135 |
+
biburl = {https://dblp.org/rec/journals/corr/SzegedyVISW15.bib},
|
136 |
+
bibsource = {dblp computer science bibliography, https://dblp.org}
|
137 |
+
}
|
138 |
+
```
|
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "inception_v3",
|
3 |
+
"num_classes": 1000,
|
4 |
+
"num_features": 2048,
|
5 |
+
"pretrained_cfg": {
|
6 |
+
"tag": "tv_in1k",
|
7 |
+
"custom_load": false,
|
8 |
+
"input_size": [
|
9 |
+
3,
|
10 |
+
299,
|
11 |
+
299
|
12 |
+
],
|
13 |
+
"fixed_input_size": false,
|
14 |
+
"interpolation": "bicubic",
|
15 |
+
"crop_pct": 0.875,
|
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 |
+
8,
|
30 |
+
8
|
31 |
+
],
|
32 |
+
"first_conv": "Conv2d_1a_3x3.conv",
|
33 |
+
"classifier": "fc"
|
34 |
+
}
|
35 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9c452c63a67fd03a38a78c401ba12d4be0e926df63c93403de3a29f6df20fefb
|
3 |
+
size 95533832
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:57b4617f0db3d63c76f6cb62a7e0f3719470b28e5f50a0256f51b3717796ea38
|
3 |
+
size 95677029
|