Views
No views yet

YOLO is the most advenced detect model developed by Ultralytics. YOLO
has 5 different sizes of base model and a super powerful framework for training and deployment. So I chose YOLO to
solve this challenge.DocLayNet is a human-annotated document layout segmentation dataset containing 80863 pages from a broad variety of
document sources. As far as I know, it's the most qualified document layout analysis dataset.1from ultralytics import YOLO
2
3model = YOLO("{path to model file}")
4pred = model("{path to test image}")
5print(pred)