Neuropathology classifiers
Collection
5 items • Updated
How to use Center-for-Computational-Neuropathology/Amyloid_plaque with ultralytics:
from ultralytics import YOLOvv11
model = YOLOvv11.from_pretrained("Center-for-Computational-Neuropathology/Amyloid_plaque")
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
model.predict(source=source, save=True)Automated detection of amyloid plaques (β-amyloid/Aβ deposits) in histopathological images for Alzheimer's disease and related amyloidopathies.
from ultralytics import YOLO
from huggingface_hub import hf_hub_download
# Download and load model
model_path = hf_hub_download(
repo_id="Center-for-Computational-Neuropathology/Amyloid_pla...",
filename="best.pt"
)
model = YOLO(model_path)
# Run inference
results = model.predict("amyloid_stained_image.jpg", conf=0.25, imgsz=640)
Detects amyloid plaques in:
✅ Standardized quantification across institutions
✅ Supports CERAD score approximation
✅ Detects both diffuse and neuritic plaques
✅ High-throughput processing for research
@article{neuropath_yolo_2025,
title={Automated Detection of Neurodegenerative Pathology Using YOLOv11},
author={[Authors]},
journal={[Journal]},
year={2025}
}