ILSVRC/imagenet-1k
Viewer • Updated • 1.43M • 90.2k • 803
How to use mlx-vision/vit_large_patch14_518.dinov2-mlxim with mlx-image:
from mlxim.model import create_model model = create_model(mlx-vision/vit_large_patch14_518.dinov2-mlxim)
How to use mlx-vision/vit_large_patch14_518.dinov2-mlxim with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir vit_large_patch14_518.dinov2-mlxim mlx-vision/vit_large_patch14_518.dinov2-mlxim
A Vision Transformer image classification model trained on ImageNet-1k dataset with DINOv2.
The model was trained in self-supervised fashion on ImageNet-1k dataset. No classification head was trained, only the backbone.
Disclaimer: This is a porting of the torch model weights to Apple MLX Framework.
pip install mlx-image
Here is how to use this model for image classification:
from mlxim.model import create_model
from mlxim.io import read_rgb
from mlxim.transform import ImageNetTransform
transform = ImageNetTransform(train=False, img_size=518)
x = transform(read_rgb("cat.png"))
x = mx.expand_dims(x, 0)
model = create_model("vit_large_patch14_518.dinov2")
model.eval()
logits, attn_masks = model(x, attn_masks=True)
You can also use the embeds from layer before head:
from mlxim.model import create_model
from mlxim.io import read_rgb
from mlxim.transform import ImageNetTransform
transform = ImageNetTransform(train=False, img_size=512)
x = transform(read_rgb("cat.png"))
x = mx.expand_dims(x, 0)
# first option
model = create_model("vit_large_patch14_518.dinov2", num_classes=0)
model.eval()
embeds = model(x)
# second option
model = create_model("vit_large_patch14_518.dinov2")
model.eval()
embeds, attn_masks = model.get_features(x)
You can visualize the attention maps using the attn_masks returned by the model. Go check the mlx-image notebook.
Quantized