Add model
Browse files- README.md +89 -0
- config.json +33 -0
- model.safetensors +3 -0
- pytorch_model.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 xcit_tiny_12_p8_384.fb_dist_in1k
|
| 11 |
+
|
| 12 |
+
A XCiT (Cross-Covariance Image Transformer) image classification model. Pretrained on ImageNet-1k with distillation by paper authors.
|
| 13 |
+
|
| 14 |
+
## Model Details
|
| 15 |
+
- **Model Type:** Image classification / feature backbone
|
| 16 |
+
- **Model Stats:**
|
| 17 |
+
- Params (M): 6.7
|
| 18 |
+
- GMACs: 14.1
|
| 19 |
+
- Activations (M): 69.1
|
| 20 |
+
- Image size: 384 x 384
|
| 21 |
+
- **Papers:**
|
| 22 |
+
- XCiT: Cross-Covariance Image Transformers: https://arxiv.org/abs/2106.09681
|
| 23 |
+
- **Dataset:** ImageNet-1k
|
| 24 |
+
- **Original:** https://github.com/facebookresearch/xcit
|
| 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('xcit_tiny_12_p8_384.fb_dist_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 |
+
'xcit_tiny_12_p8_384.fb_dist_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, 2305, 192) shaped tensor
|
| 76 |
+
|
| 77 |
+
output = model.forward_head(output, pre_logits=True)
|
| 78 |
+
# output is a (1, num_features) shaped tensor
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
## Citation
|
| 82 |
+
```bibtex
|
| 83 |
+
@article{el2021xcit,
|
| 84 |
+
title={XCiT: Cross-Covariance Image Transformers},
|
| 85 |
+
author={El-Nouby, Alaaeldin and Touvron, Hugo and Caron, Mathilde and Bojanowski, Piotr and Douze, Matthijs and Joulin, Armand and Laptev, Ivan and Neverova, Natalia and Synnaeve, Gabriel and Verbeek, Jakob and others},
|
| 86 |
+
journal={arXiv preprint arXiv:2106.09681},
|
| 87 |
+
year={2021}
|
| 88 |
+
}
|
| 89 |
+
```
|
config.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architecture": "xcit_tiny_12_p8_384",
|
| 3 |
+
"num_classes": 1000,
|
| 4 |
+
"num_features": 192,
|
| 5 |
+
"global_pool": "token",
|
| 6 |
+
"pretrained_cfg": {
|
| 7 |
+
"tag": "fb_dist_in1k",
|
| 8 |
+
"custom_load": false,
|
| 9 |
+
"input_size": [
|
| 10 |
+
3,
|
| 11 |
+
384,
|
| 12 |
+
384
|
| 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": 1000,
|
| 29 |
+
"pool_size": null,
|
| 30 |
+
"first_conv": "patch_embed.proj.0.0",
|
| 31 |
+
"classifier": "head"
|
| 32 |
+
}
|
| 33 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02c4f175546156df4b753cfd53aed7394c8f678a8311c1a837451ad0d6909720
|
| 3 |
+
size 26882850
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f2981efbae179238afb275e4f2494fcc80a36857ee1ea8264a44537dfb816d4
|
| 3 |
+
size 26977425
|