timm
/

Image Classification
timm
PyTorch
Safetensors
Transformers
rwightman HF staff commited on
Commit
af306c1
·
1 Parent(s): a12f6cd
Files changed (4) hide show
  1. README.md +125 -0
  2. config.json +35 -0
  3. model.safetensors +3 -0
  4. pytorch_model.bin +3 -0
README.md ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 nest_small_jx.goog_in1k
11
+
12
+ A NesT image classification model. Trained on ImageNet-1k by paper authors in JAX. Ported to PyTorch by Alexander Soare.
13
+
14
+ ## Model Details
15
+ - **Model Type:** Image classification / feature backbone
16
+ - **Model Stats:**
17
+ - Params (M): 38.4
18
+ - GMACs: 10.4
19
+ - Activations (M): 40.0
20
+ - Image size: 224 x 224
21
+ - **Papers:**
22
+ - Nested Hierarchical Transformer: Towards Accurate, Data-Efficient and Interpretable Visual Understanding: https://arxiv.org/abs/2105.12723
23
+ - **Dataset:** ImageNet-1k
24
+ - **Original:** https://github.com/google-research/nested-transformer
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('nest_small_jx.goog_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
+ 'nest_small_jx.goog_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, 96, 56, 56])
76
+ # torch.Size([1, 192, 28, 28])
77
+ # torch.Size([1, 384, 14, 14])
78
+
79
+ print(o.shape)
80
+ ```
81
+
82
+ ### Image Embeddings
83
+ ```python
84
+ from urllib.request import urlopen
85
+ from PIL import Image
86
+ import timm
87
+
88
+ img = Image.open(urlopen(
89
+ 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
90
+ ))
91
+
92
+ model = timm.create_model(
93
+ 'nest_small_jx.goog_in1k',
94
+ pretrained=True,
95
+ num_classes=0, # remove classifier nn.Linear
96
+ )
97
+ model = model.eval()
98
+
99
+ # get model specific transforms (normalization, resize)
100
+ data_config = timm.data.resolve_model_data_config(model)
101
+ transforms = timm.data.create_transform(**data_config, is_training=False)
102
+
103
+ output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
104
+
105
+ # or equivalently (without needing to set num_classes=0)
106
+
107
+ output = model.forward_features(transforms(img).unsqueeze(0))
108
+ # output is unpooled, a (1, 384, 14, 14) shaped tensor
109
+
110
+ output = model.forward_head(output, pre_logits=True)
111
+ # output is a (1, num_features) shaped tensor
112
+ ```
113
+
114
+ ## Model Comparison
115
+ Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
116
+
117
+ ## Citation
118
+ ```bibtex
119
+ @inproceedings{zhang2021aggregating,
120
+ title={Nested Hierarchical Transformer: Towards Accurate, Data-Efficient and Interpretable Visual Understanding},
121
+ author={Zizhao Zhang and Han Zhang and Long Zhao and Ting Chen and and Sercan Ö. Arık and Tomas Pfister},
122
+ booktitle={AAAI Conference on Artificial Intelligence (AAAI)},
123
+ year={2022}
124
+ }
125
+ ```
config.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architecture": "nest_small_jx",
3
+ "num_classes": 1000,
4
+ "num_features": 384,
5
+ "pretrained_cfg": {
6
+ "tag": "goog_in1k",
7
+ "custom_load": false,
8
+ "input_size": [
9
+ 3,
10
+ 224,
11
+ 224
12
+ ],
13
+ "fixed_input_size": true,
14
+ "interpolation": "bicubic",
15
+ "crop_pct": 0.875,
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
+ 14,
30
+ 14
31
+ ],
32
+ "first_conv": "patch_embed.proj",
33
+ "classifier": "head"
34
+ }
35
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3feeaf852911cda035a80bcd18baebcebd82e154edfa0289f52e59777b23fc4
3
+ size 153439104
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4eec2a30639016e9ef9d9ce4425eb4efdf5acacce67744ae76dd9debb6c3368f
3
+ size 153528593