Open VelmCoder opened 1 week ago
š Hello @VelmCoder, thank you for your interest in Ultralytics š! We recommend a visit to the Docs for new users where you can find many Python and CLI usage examples and where many of the most common questions may already be answered.
If this is a š Bug Report, please provide a minimum reproducible example to help us debug it. Specifically, please share any relevant commands, dataset details, or error messages.
If this is a custom training ā Question (such as your current query on transfer learning), please provide as much information as possible to help us assist you better. Details on your YOLOv9 model configuration, dataset, and training logs will be valuable. Also, verify that you are following our Tips for Best Training Results.
Join the Ultralytics community where it suits you best. For real-time chat, head to Discord š§. Prefer in-depth discussions? Check out Discourse. Or dive into threads on our Subreddit to share knowledge with the community.
Upgrade to the latest ultralytics
package, including all requirements, in a Python>=3.8 environment with PyTorch>=1.8 to ensure your question pertains to the most recent software version:
pip install -U ultralytics
YOLO may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):
If this badge is green, all Ultralytics CI tests are currently passing. CI tests verify correct operation of all YOLO Modes and Tasks on macOS, Windows, and Ubuntu every 24 hours and on every commit.
š¤ This is an automated response. An Ultralytics engineer will review your question and provide additional insights soon. Thank you for your patience! š
It will only transfer a few weights because the architectures are different
Search before asking
Question
Hello YOLO team,
I have a YOLOv9 segmentation model trained on a large custom dataset, and Iām now looking to train a YOLOv11 keypoint detection model on a smaller dataset.
I want to leverage transfer learning from my YOLOv9 model to YOLOv11 for keypoint detection. Will the following command work for that?
yolo pose train data=custom.yaml model=yolo11n-pose.yaml pretrained=custom_yolo9model.pt ...
Same question for tranfering from KEYPOINT yolov8 model to keypoint yolov11 model?
Additional
No response