Views
No views yet
1from ultralytics import YOLO
2from huggingface_hub import hf_hub_download
3
4# Download and load model
5model_path = hf_hub_download(
6 repo_id="Center-for-Computational-Neuropathology/Lewy_body",
7 filename="best.pt"
8)
9model = YOLO(model_path)
10
11# Run inference
12results = model.predict("synuclein_stained_image.jpg", conf=0.25, imgsz=640)1@article{neuropath_yolo_2025,
2 title={Automated Detection of Neurodegenerative Pathology Using YOLOv11},
3 author={[Authors]},
4 journal={[Journal]},
5 year={2025}
6}