File size: 546 Bytes
90f0fed 709207a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
license: apache-2.0
metrics:
- precision
- recall
base_model:
- Ultralytics/YOLOv5
---
🛠️ Cara Pakai (via Python)
1. Install ultralytics
pip install ultralytics
2. Load model dari Hugging Face
from ultralytics import YOLO
# Load model dari Hugging Face (path sesuai repo kamu)
model = YOLO("Yudsky/yolo-core-simulation-detection/core_model/weights/best.pt")
# Prediksi satu gambar
results = model("your_image.jpg") # Ganti dengan path gambar kamu
results[0].show() # Tampilkan dengan bounding box |