How to use zenless-lab/vit_base_patch16_dinov3.lvd1689m with timm:
import timm model = timm.create_model("hf_hub:zenless-lab/vit_base_patch16_dinov3.lvd1689m", pretrained=True)
How to use zenless-lab/vit_base_patch16_dinov3.lvd1689m with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="zenless-lab/vit_base_patch16_dinov3.lvd1689m") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("zenless-lab/vit_base_patch16_dinov3.lvd1689m", dtype="auto")
The community tab is the place to discuss and collaborate with the HF community!