rwightman HF staff commited on
Commit
c6421a8
1 Parent(s): a762df1
Files changed (4) hide show
  1. README.md +111 -0
  2. config.json +34 -0
  3. model.safetensors +3 -0
  4. pytorch_model.bin +3 -0
README.md ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - image-classification
4
+ - timm
5
+ library_name: timm
6
+ license: cc-by-nc-4.0
7
+ ---
8
+ # Model card for vit_large_patch16_224.mae
9
+
10
+ A Vision Transformer (ViT) image feature model. Pretrained on ImageNet-1k with Self-Supervised Masked Autoencoder (MAE) method.
11
+
12
+
13
+ ## Model Details
14
+ - **Model Type:** Image classification / feature backbone
15
+ - **Model Stats:**
16
+ - Params (M): 303.3
17
+ - GMACs: 61.6
18
+ - Activations (M): 63.5
19
+ - Image size: 224 x 224
20
+ - **Papers:**
21
+ - Masked Autoencoders Are Scalable Vision Learners: https://arxiv.org/abs/2111.06377
22
+ - An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale: https://arxiv.org/abs/2010.11929v2
23
+ - **Pretrain Dataset:** ImageNet-1k
24
+ - **Original:** https://github.com/facebookresearch/mae
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('vit_large_patch16_224.mae', 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
+ 'vit_large_patch16_224.mae',
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, 1024) 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
+ @Article{MaskedAutoencoders2021,
87
+ author = {Kaiming He and Xinlei Chen and Saining Xie and Yanghao Li and Piotr Doll{'a}r and Ross Girshick},
88
+ journal = {arXiv:2111.06377},
89
+ title = {Masked Autoencoders Are Scalable Vision Learners},
90
+ year = {2021},
91
+ }
92
+ ```
93
+ ```bibtex
94
+ @article{dosovitskiy2020vit,
95
+ title={An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale},
96
+ author={Dosovitskiy, Alexey and Beyer, Lucas and Kolesnikov, Alexander and Weissenborn, Dirk and Zhai, Xiaohua and Unterthiner, Thomas and Dehghani, Mostafa and Minderer, Matthias and Heigold, Georg and Gelly, Sylvain and Uszkoreit, Jakob and Houlsby, Neil},
97
+ journal={ICLR},
98
+ year={2021}
99
+ }
100
+ ```
101
+ ```bibtex
102
+ @misc{rw2019timm,
103
+ author = {Ross Wightman},
104
+ title = {PyTorch Image Models},
105
+ year = {2019},
106
+ publisher = {GitHub},
107
+ journal = {GitHub repository},
108
+ doi = {10.5281/zenodo.4414861},
109
+ howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
110
+ }
111
+ ```
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architecture": "vit_large_patch16_224",
3
+ "num_classes": 0,
4
+ "num_features": 1024,
5
+ "global_pool": "token",
6
+ "pretrained_cfg": {
7
+ "tag": "mae",
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": 0,
29
+ "pool_size": null,
30
+ "first_conv": "patch_embed.proj",
31
+ "classifier": "head",
32
+ "license": "cc-by-nc-4.0"
33
+ }
34
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d58a1a547a07c3c41917c23069dcaadab6f469a8cf793a3cba5fe404c344ab68
3
+ size 1213234508
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:693769e822a2f947740ef91bed32a2e09df21639911fe68bdad3834c0174ebc2
3
+ size 1213316837