标签:can 修改 rpo tar mask 使用 roc issue use
1、环境问题:
https://github.com/matterport/Mask_RCNN
现在issue 里面找解决方案
明明装了对应的环境,但还是出现不该有的错误,考虑是不是使用了默认环境,需要先删除默认环境;
/mnt/xxxxx/.pylib/3 目录下删除默认环境
2、看具体报错,总结方法
报错:RuntimeError: can‘t start new thread
解决方法:修改model.py中的设置,因为环境不支持多线程
# workers=workers,
# use_multiprocessing=True,
workers=1,
use_multiprocessing=False,
最后,完全消化算法代码;
标签:can 修改 rpo tar mask 使用 roc issue use
原文地址:https://www.cnblogs.com/Allen-rg/p/11996986.html