wedyanessam commited on
Commit
6aa85b3
·
verified ·
1 Parent(s): dc08011

Create yolo11.py

Browse files
Files changed (1) hide show
  1. yolo11.py +4 -0
yolo11.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ from ultralytics import YOLO
2
+
3
+ model = YOLO("yolo11n.pt")
4
+ results = model.train(data="data.yaml", epochs=30, imgsz=640)