rwightman HF staff commited on
Commit
0d76f5e
1 Parent(s): d9e1a68
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: apache-2.0
7
+ ---
8
+ # Model card for samvit_huge_patch16.sa1b
9
+
10
+ A Segment-Anything Vision Transformer (SAM ViT) image feature model (NOTE: for features and fine-tune, segmentation head not included). Pretrained on SA-1B for segementation by paper authors w/ initialization from MAE weights.
11
+
12
+
13
+ ## Model Details
14
+ - **Model Type:** Image classification / feature backbone
15
+ - **Model Stats:**
16
+ - Params (M): 637.0
17
+ - GMACs: 2982.2
18
+ - Activations (M): 3428.2
19
+ - Image size: 1024 x 1024
20
+ - **Papers:**
21
+ - Segment Anything: https://arxiv.org/abs/2304.02643
22
+ - An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale: https://arxiv.org/abs/2010.11929v2
23
+ - **Original:** https://github.com/facebookresearch/segment-anything
24
+ - **Pretrain Dataset:** SA-1B
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('samvit_huge_patch16.sa1b', 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
+ 'samvit_huge_patch16.sa1b',
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, 256, 64, 64) 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{kirillov2023segany,
87
+ title={Segment Anything},
88
+ author={Kirillov, Alexander and Mintun, Eric and Ravi, Nikhila and Mao, Hanzi and Rolland, Chloe and Gustafson, Laura and Xiao, Tete and Whitehead, Spencer and Berg, Alexander C. and Lo, Wan-Yen and Doll{'a}r, Piotr and Girshick, Ross},
89
+ journal={arXiv:2304.02643},
90
+ year={2023}
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": "samvit_huge_patch16",
3
+ "num_classes": 0,
4
+ "num_features": 1280,
5
+ "global_pool": "avg",
6
+ "pretrained_cfg": {
7
+ "tag": "sa1b",
8
+ "custom_load": false,
9
+ "input_size": [
10
+ 3,
11
+ 1024,
12
+ 1024
13
+ ],
14
+ "fixed_input_size": true,
15
+ "interpolation": "bicubic",
16
+ "crop_pct": 1.0,
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": "apache-2.0"
33
+ }
34
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f924e2aa683b67977a9be54a3441653a49f6e8664358e549a19ff52f672aea5
3
+ size 2548148190
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15c1f0af2f8d8b76bdd0510aa610003e29daa26345fb6353669cbe2bdcebab31
3
+ size 2548271665