Instructions to use slotwhisperer/symbols-mnv3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use slotwhisperer/symbols-mnv3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="slotwhisperer/symbols-mnv3") 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("slotwhisperer/symbols-mnv3") model = AutoModelForImageClassification.from_pretrained("slotwhisperer/symbols-mnv3", device_map="auto") - timm
How to use slotwhisperer/symbols-mnv3 with timm:
import timm model = timm.create_model("hf_hub:slotwhisperer/symbols-mnv3", pretrained=True) - Notebooks
- Google Colab
- Kaggle
Ctrl+K