mmdet问题整理
/tmp 文件无法访问
多半是配置中语法出现问题
跑 Deformable DETR 报错
UnboundLocalErrorUnboundLocalError: : local variable ‘beta1’ referenced before assignment
原因:PyTorch 1.8 有 bug,按照这个 PR 来修改你用的优化器即可。
创建 symlink 错误的
exFAT 不支持 symlink,需要手动在报错的地方修改代码。
DETR 改小 num_query 测试时报错
当 num_query 改小的时候 max_per_img 就会大于 num_query
max_per_img = self.test_cfg.get('max_per_img', self.num_query)
从而导致 score.shape < max_per_img,score.shape 即为 num_query
scores, bbox_index = scores.topk(max_per_img)
从而导致报错