đ ConvNeXT (tiny-sized model)
ConvNeXT model trained on ImageNet - 1k at resolution 224x224, offering high - performance image classification capabilities.
đ Quick Start
The ConvNeXT model is designed for image classification. You can use the raw model directly for this task. You can also explore fine - tuned versions on the model hub according to your specific needs.
⨠Features
- Innovative Design: Inspired by Vision Transformers, ConvNeXT modernizes the ResNet design, aiming to outperform traditional convolutional models.
- Image Classification: Capable of classifying images into one of the 1,000 ImageNet classes.
đ Documentation
Model description
ConvNeXT is a pure convolutional model (ConvNet). It takes inspiration from the design of Vision Transformers and claims to outperform them. The authors started with a ResNet and "modernized" its design, drawing inspiration from the Swin Transformer.

Intended uses & limitations
You can use the raw model for image classification. To find fine - tuned versions for tasks that interest you, check the model hub.
How to use
Here is a code example demonstrating how to use this model to classify an image from the COCO 2017 dataset into one of the 1,000 ImageNet classes:
from transformers import ConvNextImageProcessor, ConvNextForImageClassification
import torch
from datasets import load_dataset
dataset = load_dataset("huggingface/cats-image")
image = dataset["test"]["image"][0]
processor = ConvNextImageProcessor.from_pretrained("facebook/convnext-tiny-224")
model = ConvNextForImageClassification.from_pretrained("facebook/convnext-tiny-224")
inputs = processor(image, return_tensors="pt")
with torch.no_grad():
logits = model(**inputs).logits
predicted_label = logits.argmax(-1).item()
print(model.config.id2label[predicted_label]),
For more code examples, refer to the documentation.
BibTeX entry and citation info
@article{DBLP:journals/corr/abs-2201-03545,
author = {Zhuang Liu and
Hanzi Mao and
Chao{-}Yuan Wu and
Christoph Feichtenhofer and
Trevor Darrell and
Saining Xie},
title = {A ConvNet for the 2020s},
journal = {CoRR},
volume = {abs/2201.03545},
year = {2022},
url = {https://arxiv.org/abs/2201.03545},
eprinttype = {arXiv},
eprint = {2201.03545},
timestamp = {Thu, 20 Jan 2022 14:21:35 +0100},
biburl = {https://dblp.org/rec/journals/corr/abs-2201-03545.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
đ License
This project is licensed under the Apache - 2.0 license.
đ Additional Information
Property |
Details |
Model Type |
ConvNext (tiny - sized model) |
Training Data |
ImageNet - 1k |
Tags |
vision, image - classification |
â ī¸ Important Note
The team releasing ConvNeXT did not write a model card for this model, so this model card has been written by the Hugging Face team.