How to use facebook/dinov2-with-registers-large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-feature-extraction", model="facebook/dinov2-with-registers-large")
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("facebook/dinov2-with-registers-large") model = AutoModel.from_pretrained("facebook/dinov2-with-registers-large")
The community tab is the place to discuss and collaborate with the HF community!