Image Classification
timm
Transformers

Model card for vit_small_plus_patch16_dinov3.ft_plantdoc_384

Overview

This model classifies diseases from plant images.

  • Dataset size: 8000 images
  • Number of classes: 39
  • Architecture: DINOv3 ViT Small (384)

Metrics

  • mAP: 0.91
  • Accuracy: 0.83

Model

Model Details

Model Usage

Built with:

import torch
import timm

# create model
model = timm.create_model(
    "vit_small_plus_patch16_dinov3.lvd1689m",
    pretrained=False,
    num_classes=39,
)

# load weights
state_dict = torch.load("model.bin", map_location="cpu")
model.load_state_dict(state_dict)
Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Papers for unionpoint/vit_small_plus_patch16_dinov3.ft_plantdoc_384