Improve model card
Browse filesThis PR improves the model card by adding the pipeline tag and updating the paper link and bibtex citation.
README.md
CHANGED
@@ -1,13 +1,15 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
2 |
tags:
|
3 |
- image-classification
|
4 |
- timm
|
5 |
- transformers
|
6 |
-
library_name: timm
|
7 |
-
license: apache-2.0
|
8 |
-
datasets:
|
9 |
-
- imagenet-1k
|
10 |
---
|
|
|
11 |
# Model card for inception_next_atto.sail_in1k
|
12 |
|
13 |
A InceptionNeXt image classification model. Trained on ImageNet-1k by paper authors.
|
@@ -20,7 +22,7 @@ A InceptionNeXt image classification model. Trained on ImageNet-1k by paper auth
|
|
20 |
- Activations (M): 3.6
|
21 |
- Image size: 224 x 224
|
22 |
- **Papers:**
|
23 |
-
- InceptionNeXt: When Inception Meets ConvNeXt: https://
|
24 |
- **Original:** https://github.com/sail-sg/inceptionnext
|
25 |
- **Dataset:** ImageNet-1k
|
26 |
|
@@ -115,10 +117,11 @@ output = model.forward_head(output, pre_logits=True)
|
|
115 |
|
116 |
## Citation
|
117 |
```bibtex
|
118 |
-
@
|
119 |
-
title={
|
120 |
author={Yu, Weihao and Zhou, Pan and Yan, Shuicheng and Wang, Xinchao},
|
121 |
-
|
122 |
-
|
|
|
123 |
}
|
124 |
-
```
|
|
|
1 |
---
|
2 |
+
datasets:
|
3 |
+
- imagenet-1k
|
4 |
+
library_name: timm
|
5 |
+
license: apache-2.0
|
6 |
+
pipeline_tag: image-classification
|
7 |
tags:
|
8 |
- image-classification
|
9 |
- timm
|
10 |
- transformers
|
|
|
|
|
|
|
|
|
11 |
---
|
12 |
+
|
13 |
# Model card for inception_next_atto.sail_in1k
|
14 |
|
15 |
A InceptionNeXt image classification model. Trained on ImageNet-1k by paper authors.
|
|
|
22 |
- Activations (M): 3.6
|
23 |
- Image size: 224 x 224
|
24 |
- **Papers:**
|
25 |
+
- InceptionNeXt: When Inception Meets ConvNeXt: https://huggingface.co/papers/2303.16900
|
26 |
- **Original:** https://github.com/sail-sg/inceptionnext
|
27 |
- **Dataset:** ImageNet-1k
|
28 |
|
|
|
117 |
|
118 |
## Citation
|
119 |
```bibtex
|
120 |
+
@inproceedings{yu2024inceptionnext,
|
121 |
+
title={Inceptionnext: When inception meets convnext},
|
122 |
author={Yu, Weihao and Zhou, Pan and Yan, Shuicheng and Wang, Xinchao},
|
123 |
+
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
|
124 |
+
pages={5672--5683},
|
125 |
+
year={2024}
|
126 |
}
|
127 |
+
```
|