Interpretable Image Classification with Adaptive Prototype-based Vision Transformers
Paper
•
2410.20722
•
Published
•
1
This is a fine-tuned deit_small_patch16_224 model trained on CUB-200-2011 from the paper "Interpretable Image Classification with Adaptive Prototype-based Vision Transformers".
14finetuned0.8576Fine-grained bird species classification dataset with 200 different bird species Dataset link: https://www.vision.caltech.edu/datasets/cub_200_2011/
from transformers import AutoImageProcessor, AutoModelForImageClassification
from PIL import Image
# Load model and processor
model = AutoModelForImageClassification.from_pretrained("Ayushnangia/protovit-deit_small_patch16_224-cub")
processor = AutoImageProcessor.from_pretrained("Ayushnangia/protovit-deit_small_patch16_224-cub")
# Prepare image
image = Image.open("path_to_your_image.jpg")
inputs = processor(images=image, return_tensors="pt")
# Make prediction
outputs = model(**inputs)
predicted_label = outputs.logits.argmax(-1).item()
Github repo by authors of the paper ![GitHub repository][https://github.com/Henrymachiyu/ProtoViT]
For more details about the implementation and training process, please visit the my fork of ProtoVit ![GitHub repository][https://github.com/ayushnangia/ProtoViT].