浏览代码

上傳檔案到 'segment'

fatwolf 8 月之前
父节点
当前提交
9cfa31a406
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      segment/seg_train.py

+ 8 - 0
segment/seg_train.py

@@ -0,0 +1,8 @@
+from ultralytics import YOLO
+
+# Load a model
+model = YOLO('yolov8n-seg.pt')  # build a new model from YAML
+
+
+# Train the model
+results = model.train(data='seg_magnet.yaml', epochs=150, imgsz=640)