Instructions to use timm/convnextv2_large.fcmae with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- timm
How to use timm/convnextv2_large.fcmae with timm:
import timm model = timm.create_model("hf_hub:timm/convnextv2_large.fcmae", pretrained=True) - Transformers
How to use timm/convnextv2_large.fcmae with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-feature-extraction", model="timm/convnextv2_large.fcmae")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("timm/convnextv2_large.fcmae", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit History
Fix library_name. a97b8de verified
Update model config and README d76f6bb
Update model config and README 770481e
Add model c8cc2a4
initial commit 9b270b4
Ross Wightman commited on