Open mzhadigerov opened 3 months ago
地址问题
@bingYes520
project_directory/
│
├── weights/
│ └── yolov10m.pt
│
└── datasets/
├── test/
├── train/
├── valid/
└── data.yaml
The issue with yolov8n.pt might be due to the use of Automatic Mixed Precision (AMP). You can either download yolov8n.pt to use mixed precision or set amp to False to disable mixed precision, in which case you won't need to download yolov8n.pt.
I am following this tutorial to train a model on custom dataset.
I downloaded weights
yolov10m.pt
, and mentioned it like:but it downloads
yolov8n.pt
for some reason. Why?