Add model
Browse files- README.md +94 -0
- config.json +41 -0
- model.safetensors +3 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- image-classification
|
4 |
+
- timm
|
5 |
+
library_name: timm
|
6 |
+
license: mit
|
7 |
+
datasets:
|
8 |
+
- imagenet-1k
|
9 |
+
---
|
10 |
+
# Model card for hrnet_w18_ssld.paddle_in1k
|
11 |
+
|
12 |
+
A HRNet 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): 21.3
|
18 |
+
- GMACs: 4.3
|
19 |
+
- Activations (M): 16.3
|
20 |
+
- Image size: train = 224 x 224, test = 288 x 288
|
21 |
+
- **Papers:**
|
22 |
+
- Deep High-Resolution Representation Learning for Visual Recognition: https://arxiv.org/abs/1908.07919
|
23 |
+
- **Original:** https://github.com/HRNet/HRNet-Image-Classification
|
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('hrnet_w18_ssld.paddle_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 |
+
'hrnet_w18_ssld.paddle_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, 2048, 7, 7) 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{WangSCJDZLMTWLX19,
|
87 |
+
title={Deep High-Resolution Representation Learning for Visual Recognition},
|
88 |
+
author={Jingdong Wang and Ke Sun and Tianheng Cheng and
|
89 |
+
Borui Jiang and Chaorui Deng and Yang Zhao and Dong Liu and Yadong Mu and
|
90 |
+
Mingkui Tan and Xinggang Wang and Wenyu Liu and Bin Xiao},
|
91 |
+
journal = {TPAMI}
|
92 |
+
year={2019}
|
93 |
+
}
|
94 |
+
```
|
config.json
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "hrnet_w18_ssld",
|
3 |
+
"num_classes": 1000,
|
4 |
+
"num_features": 2048,
|
5 |
+
"pretrained_cfg": {
|
6 |
+
"tag": "paddle_in1k",
|
7 |
+
"custom_load": false,
|
8 |
+
"input_size": [
|
9 |
+
3,
|
10 |
+
224,
|
11 |
+
224
|
12 |
+
],
|
13 |
+
"test_input_size": [
|
14 |
+
3,
|
15 |
+
288,
|
16 |
+
288
|
17 |
+
],
|
18 |
+
"fixed_input_size": false,
|
19 |
+
"interpolation": "bilinear",
|
20 |
+
"crop_pct": 0.95,
|
21 |
+
"test_crop_pct": 1.0,
|
22 |
+
"crop_mode": "center",
|
23 |
+
"mean": [
|
24 |
+
0.485,
|
25 |
+
0.456,
|
26 |
+
0.406
|
27 |
+
],
|
28 |
+
"std": [
|
29 |
+
0.229,
|
30 |
+
0.224,
|
31 |
+
0.225
|
32 |
+
],
|
33 |
+
"num_classes": 1000,
|
34 |
+
"pool_size": [
|
35 |
+
7,
|
36 |
+
7
|
37 |
+
],
|
38 |
+
"first_conv": "conv1",
|
39 |
+
"classifier": "classifier"
|
40 |
+
}
|
41 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:381c5c810f4be9ce86faf17634fe0b3137eb2380132d2aae250eb407a74f8194
|
3 |
+
size 85587250
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:891588106e2cf5adeded1b4a72f09c3990e7c39a1989ce1f9e0451930a8e66d2
|
3 |
+
size 86054405
|