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