rwightman HF staff commited on
Commit
391a9fb
1 Parent(s): 17ce725

Update model config and README

Browse files
Files changed (2) hide show
  1. README.md +3 -6
  2. config.json +4 -1
README.md CHANGED
@@ -19,9 +19,9 @@ An EfficientViT (MIT) image classification model. Trained on ImageNet-1k by pape
19
  - Activations (M): 12.0
20
  - Image size: 288 x 288
21
  - **Papers:**
22
- - EfficientViT: Lightweight Multi-Scale Attention for On-Device Semantic Segmentation: https://arxiv.org/abs/2205.14756
23
- - **Dataset:** ImageNet-1k
24
  - **Original:** https://github.com/mit-han-lab/efficientvit
 
25
 
26
  ## Model Usage
27
  ### Image Classification
@@ -112,13 +112,10 @@ output = model.forward_head(output, pre_logits=True)
112
  # output is a (1, num_features) shaped tensor
113
  ```
114
 
115
- ## Model Comparison
116
- Explore the dataset and runtime metrics of this model in timm [model results](https://github.com/huggingface/pytorch-image-models/tree/main/results).
117
-
118
  ## Citation
119
  ```bibtex
120
  @article{cai2022efficientvit,
121
- title={Efficientvit: Enhanced linear attention for high-resolution low-computation visual recognition},
122
  author={Cai, Han and Gan, Chuang and Han, Song},
123
  journal={arXiv preprint arXiv:2205.14756},
124
  year={2022}
 
19
  - Activations (M): 12.0
20
  - Image size: 288 x 288
21
  - **Papers:**
22
+ - EfficientViT: Multi-Scale Linear Attention for High-Resolution Dense Prediction: https://arxiv.org/abs/2205.14756
 
23
  - **Original:** https://github.com/mit-han-lab/efficientvit
24
+ - **Dataset:** ImageNet-1k
25
 
26
  ## Model Usage
27
  ### Image Classification
 
112
  # output is a (1, num_features) shaped tensor
113
  ```
114
 
 
 
 
115
  ## Citation
116
  ```bibtex
117
  @article{cai2022efficientvit,
118
+ title={EfficientViT: Enhanced linear attention for high-resolution low-computation visual recognition},
119
  author={Cai, Han and Gan, Chuang and Han, Song},
120
  journal={arXiv preprint arXiv:2205.14756},
121
  year={2022}
config.json CHANGED
@@ -26,7 +26,10 @@
26
  0.225
27
  ],
28
  "num_classes": 1000,
29
- "pool_size": null,
 
 
 
30
  "first_conv": "stem.in_conv.conv",
31
  "classifier": "head.classifier.4"
32
  }
 
26
  0.225
27
  ],
28
  "num_classes": 1000,
29
+ "pool_size": [
30
+ 9,
31
+ 9
32
+ ],
33
  "first_conv": "stem.in_conv.conv",
34
  "classifier": "head.classifier.4"
35
  }