Jisnu Kalita commited on
Commit ·
6124b76
1
Parent(s): 2fd47db
model update
Browse files
main.py
CHANGED
|
@@ -8,11 +8,11 @@ RUNS_DIR = Path(__file__).parent / "runs"
|
|
| 8 |
|
| 9 |
|
| 10 |
def train():
|
| 11 |
-
model = YOLO("
|
| 12 |
|
| 13 |
results = model.train(
|
| 14 |
data=str(DATASET_YAML),
|
| 15 |
-
epochs=
|
| 16 |
imgsz=640,
|
| 17 |
batch=16,
|
| 18 |
project=str(RUNS_DIR),
|
|
|
|
| 8 |
|
| 9 |
|
| 10 |
def train():
|
| 11 |
+
model = YOLO("yolo11x.pt")
|
| 12 |
|
| 13 |
results = model.train(
|
| 14 |
data=str(DATASET_YAML),
|
| 15 |
+
epochs=200,
|
| 16 |
imgsz=640,
|
| 17 |
batch=16,
|
| 18 |
project=str(RUNS_DIR),
|