YOLOv8中训练参数中文解释

预测函数: 

from ultralytics import YOLO

# Load a model
model = YOLO('yolov8n.pt')
# Train the model
model.train(data=r'D:\yolov8\ultralytics-main\data1.yaml', workers=0, epochs=100, batch=16)

可选参数: 

猜你喜欢

转载自blog.csdn.net/m0_74053536/article/details/134478726