-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segment task #30
Comments
Waiting for this feature as well. |
It seems YOLOv10 supports segmentation
Originally posted by @jameslahm in #4 (comment) |
Hey bro @TheYoungBeast ! Do you know how to use the yolov10 segmentation? |
It is not implemented in ultralytics yet, I think. class YOLOv10(Model, ....)
@property
def task_map(self):
"""Map head to model, trainer, validator, and predictor classes."""
return {
"detect": {
"model": YOLOv10DetectionModel,
"trainer": YOLOv10DetectionTrainer,
"validator": YOLOv10DetectionValidator,
"predictor": YOLOv10DetectionPredictor,
},
"segment": {
"model": SegmentationModel,
"trainer": yolo.segment.SegmentationTrainer,
"validator": yolo.segment.SegmentationValidator,
"predictor": yolo.segment.SegmentationPredictor,
},
} It will start the training process for segmentation (task), although it will crash during the validation process (because v8 loss function seems to be not compatible with v10) I might be wrong on this topic, I have little to no experience with this framework/library... |
When will team release task segmentation?
The text was updated successfully, but these errors were encountered: