Instructions to use facebook/convnextv2-nano-22k-224 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/convnextv2-nano-22k-224 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="facebook/convnextv2-nano-22k-224") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("facebook/convnextv2-nano-22k-224") model = AutoModelForImageClassification.from_pretrained("facebook/convnextv2-nano-22k-224", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ tags:
|
|
| 4 |
- vision
|
| 5 |
- image-classification
|
| 6 |
datasets:
|
| 7 |
-
- imagenet-
|
| 8 |
widget:
|
| 9 |
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/tiger.jpg
|
| 10 |
example_title: Tiger
|
|
|
|
| 4 |
- vision
|
| 5 |
- image-classification
|
| 6 |
datasets:
|
| 7 |
+
- imagenet-22k
|
| 8 |
widget:
|
| 9 |
- src: https://huggingface.co/datasets/mishig/sample_images/resolve/main/tiger.jpg
|
| 10 |
example_title: Tiger
|