yolov10
yolov10 copied to clipboard
How to add SPD-conv to the yolov10?
I've reproduced steps like here https://github.com/ultralytics/ultralytics/issues/8942, but after initialization of the model - there is no difference in architecture with default one.
from ultralytics import YOLO
model = YOLO(model='yolov10l')
I suppose, that after initializing YOLO like above we just load pretrained weights, not modified model. So, how can I load modified model and use it?