Instructions to use walidhadri/table-detection-yolo26n with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use walidhadri/table-detection-yolo26n with ultralytics:
from ultralytics import YOLOvv26 model = YOLOvv26.from_pretrained("walidhadri/table-detection-yolo26n") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - YOLOv26
How to use walidhadri/table-detection-yolo26n with YOLOv26:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
Table Detection YOLOv26n (TableBank)
Model Details
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.
Training Data
- Dataset: TableBank (document table images)
Training Procedure
- Architecture: YOLOv26n
- Epochs: ~10 (training logs include 9 epochs)
- Notes: Minimal tuning; default-style training was sufficient for good results.
Results (from results.csv)
Final logged epoch (epoch 9) validation metrics:
Intended Use
- Detecting tables in scanned or digital document images.
Limitations
- Trained only on TableBank; performance may drop on very different layouts or document styles.
- No hyperparameter tuning performed yet; results can likely be improved.
How to Use
Load with Ultralytics YOLO:
from ultralytics import YOLO
model = YOLO("yolo26n-tablebank.pt")
results = model("path/to/image.jpg")
results[0].show()
---
license: mit
---
- Downloads last month
- 3