This model is a YOLOv26n-based detector trained to locate tables in document images.
It was trained with a simple setup (no hyperparameter tuning or model-size changes) and already gives strong results. Further gains are likely possible with more tuning.
1from ultralytics import YOLO
2model = YOLO("yolo26n-tablebank.pt")
3results = model("path/to/image.jpg")
4results[0].show()
5
6
7---
8license: mit
9---