增加部署代码

This commit is contained in:
琉璃月光
2025-09-05 14:29:33 +08:00
parent ad52ab9125
commit 471c718d42
951 changed files with 14072 additions and 264 deletions

View File

@ -4,7 +4,7 @@ if __name__ == '__main__':
model = YOLO(r'/home/hx/yolo/ultralytics_yolo11-main/ultralytics/cfg/models/11/yolo11-obb.yaml')
results = model.train(
data='obb_data.yaml',
epochs=100,
epochs=1000,
imgsz=640,
batch=4,
workers=10,
@ -14,5 +14,4 @@ if __name__ == '__main__':
exist_ok=False,
optimizer='AdamW',
lr0=0.001,
patience=20,
)