--- library_name: transformers tags: - image-classification - dinov2 - meteorite - pytorch license: mit --- # Meteorite DINOv2-B Direct Model Direct-call Hugging Face custom model for meteorite image classification. ```python from transformers import AutoModelForImageClassification from PIL import Image model = AutoModelForImageClassification.from_pretrained( "Eki734/meteorite-dinov2-b14-direct", trust_remote_code=True, ) image = Image.open("example.jpg") result = model.predict(image) print(float(result["prob_meteorite"][0])) ``` This repository stores the trained MLP probe head. The frozen DINOv2-B with registers backbone (`dinov2_vitb14_reg`) is loaded from `torch.hub` at runtime. Public score of the corresponding Top-90 submission: `0.79545`.