An open API service indexing awesome lists of open source software.

https://github.com/lyhue1991/yolov8_tools

YOLOv8
https://github.com/lyhue1991/yolov8_tools

Last synced: 3 months ago
JSON representation

YOLOv8

Awesome Lists containing this project

README

          

# YOLOv8_tools

integrate wandb callback with yolov8

use code

```python
from ultralytics import YOLO
from wandb_callback import callbacks

model = YOLO('yolov8s.pt')

for event,func in callbacks.items():
model.add_callback(event,func)

results = model.train(data = 'coco128.yaml', epochs = 400, workers=8)
```