How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("image-classification", model="smc/PANDA_ConvNeXT")
pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")
# Load model directly
from transformers import AutoImageProcessor, AutoModelForImageClassification

processor = AutoImageProcessor.from_pretrained("smc/PANDA_ConvNeXT")
model = AutoModelForImageClassification.from_pretrained("smc/PANDA_ConvNeXT")
Quick Links

PANDA_ConvNeXT

An attempt to use a ConvNeXT for medical image classification (ISUP grading in prostate histopathology images). Currently uses a tiled and concatenated WSI as input

Example Images (1152,1152,3) 36 WSI patches:

ISUP 0:

ISUP 1: ISUP 2: ISUP 3: ISUP 4: ISUP 5:

Downloads last month
12
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Evaluation results