Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- vision
|
5 |
+
- image-classification
|
6 |
+
datasets:
|
7 |
+
- imagenet-1k
|
8 |
+
widget:
|
9 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/tiger.jpg
|
10 |
+
example_title: Tiger
|
11 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/teapot.jpg
|
12 |
+
example_title: Teapot
|
13 |
+
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/palace.jpg
|
14 |
+
example_title: Palace
|
15 |
+
---
|
16 |
+
|
17 |
+
# ConvNeXt V2 (base-sized model)
|
18 |
+
|
19 |
+
ConvNeXt V2 model pretrained using the FCMAE framework and fine-tuned on the ImageNet-22K dataset at resolution 224x224. It was introduced in the paper [ConvNeXt V2: Co-designing and Scaling ConvNets with Masked Autoencoders](https://arxiv.org/abs/2301.00808) by Woo et al. and first released in [this repository](https://github.com/facebookresearch/ConvNeXt-V2).
|
20 |
+
|
21 |
+
Disclaimer: The team releasing ConvNeXT V2 did not write a model card for this model so this model card has been written by the Hugging Face team.
|
22 |
+
|
23 |
+
## Model description
|
24 |
+
|
25 |
+
ConvNeXt V2 is a pure convolutional model (ConvNet) that introduces a fully convolutional masked autoencoder framework (FCMAE) and a new Global Response Normalization (GRN) layer to ConvNeXt. ConvNeXt V2 significantly improves the performance of pure ConvNets on various recognition benchmarks.
|
26 |
+
|
27 |
+
![model image](https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/convnextv2_architecture.png)
|
28 |
+
|
29 |
+
## Intended uses & limitations
|
30 |
+
|
31 |
+
You can use the raw model for image classification. See the [model hub](https://huggingface.co/models?search=convnextv2) to look for
|
32 |
+
fine-tuned versions on a task that interests you.
|
33 |
+
|
34 |
+
### How to use
|
35 |
+
|
36 |
+
Here is how to use this model to classify an image of the COCO 2017 dataset into one of the 1,000 ImageNet classes:
|
37 |
+
|
38 |
+
```python
|
39 |
+
from transformers import AutoImageProcessor, ConvNextV2ForImageClassification
|
40 |
+
import torch
|
41 |
+
from datasets import load_dataset
|
42 |
+
|
43 |
+
dataset = load_dataset("huggingface/cats-image")
|
44 |
+
image = dataset["test"]["image"][0]
|
45 |
+
|
46 |
+
preprocessor = AutoImageProcessor.from_pretrained("facebook/convnextv2-base-22k-224")
|
47 |
+
model = ConvNextV2ForImageClassification.from_pretrained("facebook/convnextv2-base-22k-224")
|
48 |
+
|
49 |
+
inputs = preprocessor(image, return_tensors="pt")
|
50 |
+
|
51 |
+
with torch.no_grad():
|
52 |
+
logits = model(**inputs).logits
|
53 |
+
|
54 |
+
# model predicts one of the 1000 ImageNet classes
|
55 |
+
predicted_label = logits.argmax(-1).item()
|
56 |
+
print(model.config.id2label[predicted_label]),
|
57 |
+
```
|
58 |
+
|
59 |
+
For more code examples, we refer to the [documentation](https://huggingface.co/docs/transformers/master/en/model_doc/convnextv2).
|
60 |
+
|
61 |
+
### BibTeX entry and citation info
|
62 |
+
|
63 |
+
```bibtex
|
64 |
+
@article{DBLP:journals/corr/abs-2301-00808,
|
65 |
+
author = {Sanghyun Woo and
|
66 |
+
Shoubhik Debnath and
|
67 |
+
Ronghang Hu and
|
68 |
+
Xinlei Chen and
|
69 |
+
Zhuang Liu and
|
70 |
+
In So Kweon and
|
71 |
+
Saining Xie},
|
72 |
+
title = {ConvNeXt {V2:} Co-designing and Scaling ConvNets with Masked Autoencoders},
|
73 |
+
journal = {CoRR},
|
74 |
+
volume = {abs/2301.00808},
|
75 |
+
year = {2023},
|
76 |
+
url = {https://doi.org/10.48550/arXiv.2301.00808},
|
77 |
+
doi = {10.48550/arXiv.2301.00808},
|
78 |
+
eprinttype = {arXiv},
|
79 |
+
eprint = {2301.00808},
|
80 |
+
timestamp = {Tue, 10 Jan 2023 15:10:12 +0100},
|
81 |
+
biburl = {https://dblp.org/rec/journals/corr/abs-2301-00808.bib},
|
82 |
+
bibsource = {dblp computer science bibliography, https://dblp.org}
|
83 |
+
}
|
84 |
+
```
|