Neuropathology classifiers
Collection
5 items • Updated
How to use Center-for-Computational-Neuropathology/Lewy_body with ultralytics:
from ultralytics import YOLOvv11
model = YOLOvv11.from_pretrained("Center-for-Computational-Neuropathology/Lewy_body")
source = 'http://images.cocodataset.org/val2017/000000039769.jpg'
model.predict(source=source, save=True)Automated detection of Lewy bodies (α-synuclein aggregates) in histopathological images for Parkinson's disease and related synucleinopathies.
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/Lewy_body",
filename="best.pt"
)
model = YOLO(model_path)
# Run inference
results = model.predict("synuclein_stained_image.jpg", conf=0.25, imgsz=640)
Detects Lewy bodies in:
✅ Best overall performance among four pathology types
✅ Stable training convergence
✅ Balanced precision-recall trade-off
✅ Eliminates inter-observer variability
@article{neuropath_yolo_2025,
title={Automated Detection of Neurodegenerative Pathology Using YOLOv11},
author={[Authors]},
journal={[Journal]},
year={2025}
}