Instructions to use nvidia/MambaVision-L3-256-21K with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nvidia/MambaVision-L3-256-21K with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="nvidia/MambaVision-L3-256-21K", trust_remote_code=True) pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoModelForImageClassification model = AutoModelForImageClassification.from_pretrained("nvidia/MambaVision-L3-256-21K", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update pipeline tag, add library name and Github repo link
#1
by nielsr HF Staff - opened
The model is primarily used for image classification, hence changed the pipeline_tag metadata tag in the model card.
Added a link to the official Github repository, so people can more easily find the code.
ahatamiz changed pull request status to merged