rwightman HF staff commited on
Commit
4c8c236
1 Parent(s): 60db0a8
Files changed (4) hide show
  1. README.md +106 -0
  2. config.json +33 -0
  3. model.safetensors +3 -0
  4. pytorch_model.bin +3 -0
README.md ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - image-classification
4
+ - timm
5
+ library_tag: timm
6
+ license: apache-2.0
7
+ datasets:
8
+ - imagenet-1k
9
+ ---
10
+ # Model card for deit_base_patch16_224.fb_in1k
11
+
12
+ A DeiT image classification model. Trained on ImageNet-1k by paper authors.
13
+
14
+ ## Model Details
15
+ - **Model Type:** Image classification / feature backbone
16
+ - **Model Stats:**
17
+ - Params (M): 86.6
18
+ - GMACs: 17.6
19
+ - Activations (M): 23.9
20
+ - Image size: 224 x 224
21
+ - **Papers:**
22
+ - Training data-efficient image transformers & distillation through attention: https://arxiv.org/abs/2012.12877
23
+ - **Original:** https://github.com/facebookresearch/deit
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('deit_base_patch16_224.fb_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
+ ### Image Embeddings
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
+ 'deit_base_patch16_224.fb_in1k',
61
+ pretrained=True,
62
+ num_classes=0, # remove classifier nn.Linear
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)) # output is (batch_size, num_features) shaped tensor
71
+
72
+ # or equivalently (without needing to set num_classes=0)
73
+
74
+ output = model.forward_features(transforms(img).unsqueeze(0))
75
+ # output is unpooled, a (1, 197, 768) shaped tensor
76
+
77
+ output = model.forward_head(output, pre_logits=True)
78
+ # output is a (1, num_features) shaped tensor
79
+ ```
80
+
81
+ ## Model Comparison
82
+ Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
83
+
84
+ ## Citation
85
+ ```bibtex
86
+ @InProceedings{pmlr-v139-touvron21a,
87
+ title = {Training data-efficient image transformers & distillation through attention},
88
+ author = {Touvron, Hugo and Cord, Matthieu and Douze, Matthijs and Massa, Francisco and Sablayrolles, Alexandre and Jegou, Herve},
89
+ booktitle = {International Conference on Machine Learning},
90
+ pages = {10347--10357},
91
+ year = {2021},
92
+ volume = {139},
93
+ month = {July}
94
+ }
95
+ ```
96
+ ```bibtex
97
+ @misc{rw2019timm,
98
+ author = {Ross Wightman},
99
+ title = {PyTorch Image Models},
100
+ year = {2019},
101
+ publisher = {GitHub},
102
+ journal = {GitHub repository},
103
+ doi = {10.5281/zenodo.4414861},
104
+ howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
105
+ }
106
+ ```
config.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architecture": "deit_base_patch16_224",
3
+ "num_classes": 1000,
4
+ "num_features": 768,
5
+ "global_pool": "token",
6
+ "pretrained_cfg": {
7
+ "tag": "fb_in1k",
8
+ "custom_load": false,
9
+ "input_size": [
10
+ 3,
11
+ 224,
12
+ 224
13
+ ],
14
+ "fixed_input_size": true,
15
+ "interpolation": "bicubic",
16
+ "crop_pct": 0.9,
17
+ "crop_mode": "center",
18
+ "mean": [
19
+ 0.485,
20
+ 0.456,
21
+ 0.406
22
+ ],
23
+ "std": [
24
+ 0.229,
25
+ 0.224,
26
+ 0.225
27
+ ],
28
+ "num_classes": 1000,
29
+ "pool_size": null,
30
+ "first_conv": "patch_embed.proj",
31
+ "classifier": "head"
32
+ }
33
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd2da27b74ed7f68b599f16c77af3e1e80f01c75f9ad96029d22ce747a247e8e
3
+ size 346284714
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35ff7f50bad15a92c14ca2a9da720a42f7e11abd2ae96a1382570d78472548f3
3
+ size 346327021