File size: 329 Bytes
f87d2e8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # PCB Defect Detection (YOLOv8)
Trained YOLOv8 model for PCB defects.
**Files:**
- best.pt : YOLOv8 weights
- pcb_defects.yaml : dataset config (classes)
**Usage (example):**
```python
from ultralytics import YOLO
model = YOLO("https://huggingface.co/<USERNAME>/pcb-defect-detector/resolve/main/best.pt")
model("pcb.jpg")
```
|