Views
No views yet
cargo-package. It can be used for various cargo logistics and package counting tasks.cargo-package)best.pt (the best performing model during training) and last.pt (the final checkpoint).- Use Case: Object detection and counting of cargo packages, forklifts, and trucks in warehouses, transportation hubs, or logistics centers.| Metric | Value |
|---|---|
| Precision | 0.77187 |
| Recall | 0.11111 |
| mAP50 | 0.09188 |
| mAP50-95 | 0.06383 |
| F1 Score | 0.19426 |
ultralytics library, as shown below:1from ultralytics import YOLO
2
3# Load the model from Hugging Face
4model = YOLO('https://huggingface.co/poudel/yolov8-cargo-package-counter/resolve/main/best.pt')
5
6# Run inference on an image
7results = model('path_to_image.jpg')
8
9# Display the results
10results.show()