You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When attempting to downloading the config and checkpoint for DDQ-DETR models of the mmdet package a value error is raised saying the path to the config file does not exist. Upon further examination this is due to a mistake in the path.
The return config path from get_model_info for ddq-detr-5scale_r50_8xb2-12e_coco is configs/dino/ddq-detr-5scale_r50_8xb2-12e_coco.py but the correct path should be configs/ddq/ddq-detr-5scale_r50_8xb2-12e_coco.py
Same error occurs with other variants of DDQ-DETR.
Reproduction
What command or script did you run?
To replicate the bug:
from mim.utils import DEFAULT_CACHE_DIR
from mim import download
checkpoint_name = download('mmdet', ['ddq-detr-5scale_r50_8xb2-12e_coco'], dest_root = DEFAULT_CACHE_DIR )
Thanks for your error report and we appreciate it a lot.
Checklist
Describe the bug
When attempting to downloading the config and checkpoint for DDQ-DETR models of the mmdet package a value error is raised saying the path to the config file does not exist. Upon further examination this is due to a mistake in the path.
The return config path from
get_model_info
forddq-detr-5scale_r50_8xb2-12e_coco
isconfigs/dino/ddq-detr-5scale_r50_8xb2-12e_coco.py
but the correct path should beconfigs/ddq/ddq-detr-5scale_r50_8xb2-12e_coco.py
Same error occurs with other variants of DDQ-DETR.
Reproduction
To replicate the bug:
To show the source of the bug:
Environment
python mmdet/utils/collect_env.py
to collect necessary environment information and paste it here.$PATH
,$LD_LIBRARY_PATH
,$PYTHONPATH
, etc.)Error traceback
Here is an example printout:
Bug fix
See above for corrected path that should solve the bug
The text was updated successfully, but these errors were encountered: