Object Detection
ultralytics
English
German
yolo
yolov8
invoice
document-layout
document-understanding
ocr-prep
invoice-extraction
Eval Results (legacy)
Instructions to use AvoCahDoe/invoice-layout-yolov8s with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use AvoCahDoe/invoice-layout-yolov8s with ultralytics:
from ultralytics import YOLOvv8 model = YOLOvv8.from_pretrained("AvoCahDoe/invoice-layout-yolov8s") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
File size: 916 Bytes
c69e097 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | {
"model": "yolov8s",
"repo_id": "AvoCahDoe/invoice-layout-yolov8s",
"dataset": "AvoCahDoe/invoice-annotated-bbox",
"classes": {
"0": "invoice_metadata",
"1": "vendor_block",
"2": "customer_block",
"3": "table_block",
"4": "line_item",
"5": "summary_block",
"6": "payment_block",
"7": "Column"
},
"val": {
"epochs_trained": 100,
"best_epoch": 94,
"best_map50": 0.85371,
"best_map50_95": 0.61396,
"best_precision": 0.85874,
"best_recall": 0.77948,
"final_map50": 0.8478,
"final_map50_95": 0.60857,
"final_precision": 0.90963,
"final_recall": 0.79076,
"train_time_s": 1919.85
},
"test": {
"test_precision": 0.9418900776026258,
"test_recall": 0.8677204132580655,
"test_map50": 0.900625,
"test_map50_95": 0.673915781700938
},
"training": {
"weights": "yolov8s.pt",
"batch": 8,
"imgsz": 1024
}
} |