Add model
Browse files- README.md +37 -0
- config.json +35 -0
- pytorch_model.bin +3 -0
README.md
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- image-classification
|
4 |
+
- timm
|
5 |
+
library_tag: timm
|
6 |
+
license: apache-2.0
|
7 |
+
---
|
8 |
+
# Model card for convnext_tiny.in12k
|
9 |
+
|
10 |
+
A ConvNeXt image classification model. Trained on ImageNet-12k (a 11821 class subset of full ImageNet-22k) by Ross Wightman.
|
11 |
+
|
12 |
+
ImageNet-12k training done on TPUs thanks to support of the [TRC](https://sites.research.google/trc/about/) program.
|
13 |
+
|
14 |
+
|
15 |
+
## Model Details
|
16 |
+
- **Model Type:** Image classification / feature backbone
|
17 |
+
|
18 |
+
## Citation
|
19 |
+
```
|
20 |
+
@misc{rw2019timm,
|
21 |
+
author = {Ross Wightman},
|
22 |
+
title = {PyTorch Image Models},
|
23 |
+
year = {2019},
|
24 |
+
publisher = {GitHub},
|
25 |
+
journal = {GitHub repository},
|
26 |
+
doi = {10.5281/zenodo.4414861},
|
27 |
+
howpublished = {\url{https://github.com/rwightman/pytorch-image-models}}
|
28 |
+
}
|
29 |
+
```
|
30 |
+
```
|
31 |
+
@article{liu2022convnet,
|
32 |
+
author = {Zhuang Liu and Hanzi Mao and Chao-Yuan Wu and Christoph Feichtenhofer and Trevor Darrell and Saining Xie},
|
33 |
+
title = {A ConvNet for the 2020s},
|
34 |
+
journal = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
35 |
+
year = {2022},
|
36 |
+
}
|
37 |
+
```
|
config.json
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architecture": "convnext_tiny",
|
3 |
+
"num_classes": 11821,
|
4 |
+
"num_features": 768,
|
5 |
+
"pretrained_cfg": {
|
6 |
+
"tag": "in12k",
|
7 |
+
"custom_load": false,
|
8 |
+
"input_size": [
|
9 |
+
3,
|
10 |
+
224,
|
11 |
+
224
|
12 |
+
],
|
13 |
+
"fixed_input_size": false,
|
14 |
+
"interpolation": "bicubic",
|
15 |
+
"crop_pct": 0.95,
|
16 |
+
"crop_mode": "center",
|
17 |
+
"mean": [
|
18 |
+
0.485,
|
19 |
+
0.456,
|
20 |
+
0.406
|
21 |
+
],
|
22 |
+
"std": [
|
23 |
+
0.229,
|
24 |
+
0.224,
|
25 |
+
0.225
|
26 |
+
],
|
27 |
+
"num_classes": 11821,
|
28 |
+
"pool_size": [
|
29 |
+
7,
|
30 |
+
7
|
31 |
+
],
|
32 |
+
"first_conv": "stem.0",
|
33 |
+
"classifier": "head.fc"
|
34 |
+
}
|
35 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21ccfbc11124cac519a6d9cc712e0621518da257d7a2e30b79895090b7547c9a
|
3 |
+
size 147706261
|