You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Source for detection (default: '0'). Use '0' for the default webcam, an index (e.g., '1') for additional webcams, or specify a path to a video/image file or URL.",
525
528
)
529
+
parser.add_argument(
530
+
"--model-dir",
531
+
type=str,
532
+
default="./weights",
533
+
help="Path to the directory containing the model weights file (default: './weights').",
534
+
)
535
+
parser.add_argument(
536
+
"--export-dir",
537
+
type=str,
538
+
default="./weights-optimized",
539
+
help="Path to export the optimized model engine file (default: './weights-optimized'). Used for GPU acceleration.",
540
+
)
526
541
parser.add_argument(
527
542
"--model",
528
543
type=str,
529
-
default="weights/yolo11n.pt",
530
-
help="Path to model weights (.pt) file (default: 'weights/yolo11n.pt'). The model will be automatically downloaded if not found.",
544
+
default="yolo11n.pt",
545
+
help="Path to the model weights file (default: 'yolo11n.pt'). Model will be downloaded if not found.",
0 commit comments