-
Notifications
You must be signed in to change notification settings - Fork 484
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
OpenSet Detection Issue after COCO Fine-Tuning #78
Comments
I meet the same issue |
Did you get the same result as on github(YOLO-world-L map = 53.3)? |
Have you solved this problem yet? |
Hi all (@mio410, @LiuChuanWei, @Hudaodao99): happy to update a milestone,
max_epochs = 40 # Maximum training epochs
close_mosaic_epochs = 30
optim_wrapper = dict(
optimizer=dict(_delete_=True,
type='SGD',
lr=1e-3,
momentum=0.937,
nesterov=True,
weight_decay=weight_decay,
batch_size_per_gpu=train_batch_size_per_gpu),
paramwise_cfg=dict(custom_keys={'logit_scale': dict(weight_decay=0.0)}),
constructor='YOLOWv5OptimizerConstructor') Under this setting, YOLO-World-Large without This is a milestone but not the terminus and we are still working on it for a better fine-tuning setting! Those updates will be pushed in a day. |
After fine-tuning on the COCO dataset with 80 classes, when I tested the model again, I found that it could only detect the classes present in the COCO dataset. For classes outside the COCO dataset, the model failed to detect them. It seems like the model has become a closed-set detection model. Why is this happening, and is there a solution to improve the model's confidence in detecting certain classes without compromising its open-set detection capability?
The text was updated successfully, but these errors were encountered: