timm
/

Image Classification
timm
PyTorch
Safetensors
rwightman HF staff commited on
Commit
707c9b7
1 Parent(s): f4aac04

Update model config and README

Browse files
Files changed (3) hide show
  1. README.md +149 -2
  2. config.json +1 -0
  3. model.safetensors +3 -0
README.md CHANGED
@@ -2,6 +2,153 @@
2
  tags:
3
  - image-classification
4
  - timm
5
- library_tag: timm
 
 
 
6
  ---
7
- # Model card for efficientnet_b3.ra2_in1k
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 efficientnet_b3.ra2_in1k
11
+
12
+ A EfficientNet image classification model. Trained on ImageNet-1k in `timm` using recipe template described below.
13
+
14
+ Recipe details:
15
+ * RandAugment `RA2` recipe. Inspired by and evolved from EfficientNet RandAugment recipes. Published as `B` recipe in [ResNet Strikes Back](https://arxiv.org/abs/2110.00476).
16
+ * RMSProp (TF 1.0 behaviour) optimizer, EMA weight averaging
17
+ * Step (exponential decay w/ staircase) LR schedule with warmup
18
+
19
+
20
+ ## Model Details
21
+ - **Model Type:** Image classification / feature backbone
22
+ - **Model Stats:**
23
+ - Params (M): 12.2
24
+ - GMACs: 1.6
25
+ - Activations (M): 21.5
26
+ - Image size: train = 288 x 288, test = 320 x 320
27
+ - **Papers:**
28
+ - EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks: https://arxiv.org/abs/1905.11946
29
+ - ResNet strikes back: An improved training procedure in timm: https://arxiv.org/abs/2110.00476
30
+ - **Dataset:** ImageNet-1k
31
+ - **Original:** https://github.com/huggingface/pytorch-image-models
32
+
33
+ ## Model Usage
34
+ ### Image Classification
35
+ ```python
36
+ from urllib.request import urlopen
37
+ from PIL import Image
38
+ import timm
39
+
40
+ img = Image.open(urlopen(
41
+ 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
42
+ ))
43
+
44
+ model = timm.create_model('efficientnet_b3.ra2_in1k', pretrained=True)
45
+ model = model.eval()
46
+
47
+ # get model specific transforms (normalization, resize)
48
+ data_config = timm.data.resolve_model_data_config(model)
49
+ transforms = timm.data.create_transform(**data_config, is_training=False)
50
+
51
+ output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
52
+
53
+ top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)
54
+ ```
55
+
56
+ ### Feature Map Extraction
57
+ ```python
58
+ from urllib.request import urlopen
59
+ from PIL import Image
60
+ import timm
61
+
62
+ img = Image.open(urlopen(
63
+ 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
64
+ ))
65
+
66
+ model = timm.create_model(
67
+ 'efficientnet_b3.ra2_in1k',
68
+ pretrained=True,
69
+ features_only=True,
70
+ )
71
+ model = model.eval()
72
+
73
+ # get model specific transforms (normalization, resize)
74
+ data_config = timm.data.resolve_model_data_config(model)
75
+ transforms = timm.data.create_transform(**data_config, is_training=False)
76
+
77
+ output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
78
+
79
+ for o in output:
80
+ # print shape of each feature map in output
81
+ # e.g.:
82
+ # torch.Size([1, 24, 144, 144])
83
+ # torch.Size([1, 32, 72, 72])
84
+ # torch.Size([1, 48, 36, 36])
85
+ # torch.Size([1, 136, 18, 18])
86
+ # torch.Size([1, 384, 9, 9])
87
+
88
+ print(o.shape)
89
+ ```
90
+
91
+ ### Image Embeddings
92
+ ```python
93
+ from urllib.request import urlopen
94
+ from PIL import Image
95
+ import timm
96
+
97
+ img = Image.open(urlopen(
98
+ 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
99
+ ))
100
+
101
+ model = timm.create_model(
102
+ 'efficientnet_b3.ra2_in1k',
103
+ pretrained=True,
104
+ num_classes=0, # remove classifier nn.Linear
105
+ )
106
+ model = model.eval()
107
+
108
+ # get model specific transforms (normalization, resize)
109
+ data_config = timm.data.resolve_model_data_config(model)
110
+ transforms = timm.data.create_transform(**data_config, is_training=False)
111
+
112
+ output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
113
+
114
+ # or equivalently (without needing to set num_classes=0)
115
+
116
+ output = model.forward_features(transforms(img).unsqueeze(0))
117
+ # output is unpooled, a (1, 1536, 9, 9) shaped tensor
118
+
119
+ output = model.forward_head(output, pre_logits=True)
120
+ # output is a (1, num_features) shaped tensor
121
+ ```
122
+
123
+ ## Model Comparison
124
+ Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
125
+
126
+ ## Citation
127
+ ```bibtex
128
+ @inproceedings{tan2019efficientnet,
129
+ title={Efficientnet: Rethinking model scaling for convolutional neural networks},
130
+ author={Tan, Mingxing and Le, Quoc},
131
+ booktitle={International conference on machine learning},
132
+ pages={6105--6114},
133
+ year={2019},
134
+ organization={PMLR}
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
+ ```
148
+ ```bibtex
149
+ @inproceedings{wightman2021resnet,
150
+ title={ResNet strikes back: An improved training procedure in timm},
151
+ author={Wightman, Ross and Touvron, Hugo and Jegou, Herve},
152
+ booktitle={NeurIPS 2021 Workshop on ImageNet: Past, Present, and Future}
153
+ }
154
+ ```
config.json CHANGED
@@ -3,6 +3,7 @@
3
  "num_classes": 1000,
4
  "num_features": 1536,
5
  "pretrained_cfg": {
 
6
  "custom_load": false,
7
  "input_size": [
8
  3,
 
3
  "num_classes": 1000,
4
  "num_features": 1536,
5
  "pretrained_cfg": {
6
+ "tag": "ra2_in1k",
7
  "custom_load": false,
8
  "input_size": [
9
  3,
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:279d2a53898aa89dab43fd6bd7df9f706aea4cb9cf916223988bbcb8e5850469
3
+ size 49335454