mmdection--COCO object has no attribute get

tech2023-02-02  104

在配置好mmdection后,训练一下的时候,出现了下面的问题:

AttributeError: COCO object has no attribute get_cat_ids

按照官方的解释,是因为numpy版本和pycocotools的版本冲突问题,官方建议降低pycocotools的版本。而一些人给出的方法是如下2种方案:

1、git checkout 206107 -- mmdet/datasets/coco.py 2、pip install -U "git+https://github.com/open-mmlab/cocoapi.git#subdirectory=pycocotools"

第一种方法是回退代码coco.py的版本 第二种方法就是要卸载重装(更新)cocoAPI。但是,在进行第二种方法的时候,需要访问外网,一直下载不成功。但是发现可以手动到该网站https://github.com/open-mmlab/cocoapi.git#subdirectory=pycocotools下载,然后把它放到mmdection文件夹下,然后进入conda对应环境,进入对应文件夹pycocotools,然后pip install -e .

cd cocoapi-master/pycocotools source activate mmlab pip uninstall pycocotools pip install -e .

 

最新回复(0)