rwightman HF staff commited on
Commit
80a7fee
1 Parent(s): 33dde67

Update model config and README

Browse files
Files changed (3) hide show
  1. README.md +136 -2
  2. config.json +1 -0
  3. model.safetensors +3 -0
README.md CHANGED
@@ -2,6 +2,140 @@
2
  tags:
3
  - image-classification
4
  - timm
5
- library_tag: timm
 
 
 
6
  ---
7
- # Model card for tf_efficientnetv2_s.in21k
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 tf_efficientnetv2_s.in21k
11
+
12
+ A EfficientNet-v2 image classification model. Trained on ImageNet-1k in Tensorflow by paper authors, ported to PyTorch by Ross Wightman.
13
+
14
+
15
+ ## Model Details
16
+ - **Model Type:** Image classification / feature backbone
17
+ - **Model Stats:**
18
+ - Params (M): 48.2
19
+ - GMACs: 5.4
20
+ - Activations (M): 22.8
21
+ - Image size: train = 300 x 300, test = 384 x 384
22
+ - **Papers:**
23
+ - EfficientNetV2: Smaller Models and Faster Training: https://arxiv.org/abs/2104.00298
24
+ - **Dataset:** ImageNet-1k
25
+ - **Original:** https://github.com/tensorflow/tpu/tree/master/models/official/efficientnet
26
+
27
+ ## Model Usage
28
+ ### Image Classification
29
+ ```python
30
+ from urllib.request import urlopen
31
+ from PIL import Image
32
+ import timm
33
+
34
+ img = Image.open(urlopen(
35
+ 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
36
+ ))
37
+
38
+ model = timm.create_model('tf_efficientnetv2_s.in21k', pretrained=True)
39
+ model = model.eval()
40
+
41
+ # get model specific transforms (normalization, resize)
42
+ data_config = timm.data.resolve_model_data_config(model)
43
+ transforms = timm.data.create_transform(**data_config, is_training=False)
44
+
45
+ output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
46
+
47
+ top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)
48
+ ```
49
+
50
+ ### Feature Map Extraction
51
+ ```python
52
+ from urllib.request import urlopen
53
+ from PIL import Image
54
+ import timm
55
+
56
+ img = Image.open(urlopen(
57
+ 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
58
+ ))
59
+
60
+ model = timm.create_model(
61
+ 'tf_efficientnetv2_s.in21k',
62
+ pretrained=True,
63
+ features_only=True,
64
+ )
65
+ model = model.eval()
66
+
67
+ # get model specific transforms (normalization, resize)
68
+ data_config = timm.data.resolve_model_data_config(model)
69
+ transforms = timm.data.create_transform(**data_config, is_training=False)
70
+
71
+ output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
72
+
73
+ for o in output:
74
+ # print shape of each feature map in output
75
+ # e.g.:
76
+ # torch.Size([1, 24, 150, 150])
77
+ # torch.Size([1, 48, 75, 75])
78
+ # torch.Size([1, 64, 38, 38])
79
+ # torch.Size([1, 160, 19, 19])
80
+ # torch.Size([1, 256, 10, 10])
81
+
82
+ print(o.shape)
83
+ ```
84
+
85
+ ### Image Embeddings
86
+ ```python
87
+ from urllib.request import urlopen
88
+ from PIL import Image
89
+ import timm
90
+
91
+ img = Image.open(urlopen(
92
+ 'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
93
+ ))
94
+
95
+ model = timm.create_model(
96
+ 'tf_efficientnetv2_s.in21k',
97
+ pretrained=True,
98
+ num_classes=0, # remove classifier nn.Linear
99
+ )
100
+ model = model.eval()
101
+
102
+ # get model specific transforms (normalization, resize)
103
+ data_config = timm.data.resolve_model_data_config(model)
104
+ transforms = timm.data.create_transform(**data_config, is_training=False)
105
+
106
+ output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
107
+
108
+ # or equivalently (without needing to set num_classes=0)
109
+
110
+ output = model.forward_features(transforms(img).unsqueeze(0))
111
+ # output is unpooled, a (1, 1280, 10, 10) shaped tensor
112
+
113
+ output = model.forward_head(output, pre_logits=True)
114
+ # output is a (1, num_features) shaped tensor
115
+ ```
116
+
117
+ ## Model Comparison
118
+ Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
119
+
120
+ ## Citation
121
+ ```bibtex
122
+ @inproceedings{tan2021efficientnetv2,
123
+ title={Efficientnetv2: Smaller models and faster training},
124
+ author={Tan, Mingxing and Le, Quoc},
125
+ booktitle={International conference on machine learning},
126
+ pages={10096--10106},
127
+ year={2021},
128
+ organization={PMLR}
129
+ }
130
+ ```
131
+ ```bibtex
132
+ @misc{rw2019timm,
133
+ author = {Ross Wightman},
134
+ title = {PyTorch Image Models},
135
+ year = {2019},
136
+ publisher = {GitHub},
137
+ journal = {GitHub repository},
138
+ doi = {10.5281/zenodo.4414861},
139
+ howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
140
+ }
141
+ ```
config.json CHANGED
@@ -3,6 +3,7 @@
3
  "num_classes": 21843,
4
  "num_features": 1280,
5
  "pretrained_cfg": {
 
6
  "custom_load": false,
7
  "input_size": [
8
  3,
 
3
  "num_classes": 21843,
4
  "num_features": 1280,
5
  "pretrained_cfg": {
6
+ "tag": "in21k",
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:c72d0066f2aedcafbfb6474d47a290dec817041d64f5d878555bcf5a703b2b25
3
+ size 193322802