Transformers How to use mwalmsley/euclid_encoder_mae_zoobot_vit_small_patch8_224 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="mwalmsley/euclid_encoder_mae_zoobot_vit_small_patch8_224")
pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("mwalmsley/euclid_encoder_mae_zoobot_vit_small_patch8_224", dtype="auto")