Transformers How to use timm/vit_huge_plus_patch16_dinov3.lvd1689m with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-feature-extraction", model="timm/vit_huge_plus_patch16_dinov3.lvd1689m") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("timm/vit_huge_plus_patch16_dinov3.lvd1689m", dtype="auto")