You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from ultralytics import YOLO
|
|
|
|
# Load a model
|
|
model = YOLO('yolov8s.yaml')
|
|
|
|
results = model.train(data='data.yaml', save_period=10, epochs=5000, batch=10, imgsz=1504, patience=100, device=1)
|