https://github.com/lyhue1991/yolov8_tools
YOLOv8
https://github.com/lyhue1991/yolov8_tools
Last synced: 3 months ago
JSON representation
YOLOv8
- Host: GitHub
- URL: https://github.com/lyhue1991/yolov8_tools
- Owner: lyhue1991
- Created: 2023-03-21T07:59:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-04T06:09:57.000Z (over 2 years ago)
- Last Synced: 2025-05-12T14:14:26.965Z (5 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YOLOv8_tools
integrate wandb callback with yolov8
use code
```python
from ultralytics import YOLO
from wandb_callback import callbacksmodel = YOLO('yolov8s.pt')
for event,func in callbacks.items():
model.add_callback(event,func)results = model.train(data = 'coco128.yaml', epochs = 400, workers=8)
```