| ID | Label |
|---|---|
| 0 | nama_toko |
| 1 | line_item |
| 2 | tanggal_waktu |
| 3 | total_belanja |
1from ultralytics import YOLO
2from huggingface_hub import hf_hub_download
3
4model_path = hf_hub_download(repo_id="NeoCode77/notepay-yolo-receipt", filename="best.pt")
5model = YOLO(model_path)
6
7results = model("struk.jpg", conf=0.3)
8results[0].show()