Views
No views yet
AlexandreSheva/rukopys-yolo11m-detector contains an Ultralytics YOLO 11M detector trained to localize handwritten regions in RUKOPYS manuscript page images. It is the layout-detection component of the RUKOPYS HTR pipeline and is intended to produce bounding boxes that can be passed to a recognizer or combined with page-level vision-language predictions.handwritten.1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4model_path = hf_hub_download(
5 repo_id="AlexandreSheva/rukopys-yolo11m-detector",
6 filename="weights/best.pt",
7)
8model = YOLO(model_path)
9results = model.predict("page.jpg", imgsz=1536)