deep learning for image processing including classification and object-detection etc.
GNU General Public License v3.0
23.29k
stars
8.01k
forks
source link
在torch >= 2.0中移除了名为“torch._six”的模块 coco_eval.py文件可能需要一些修改 #788
Open
leocn3 opened 10 months ago
System information
Describe the current behavior 在torch >= 2.0的环境中运行faster-RCNN等其他分支中运行coco_eval.py的会出现以下错误:
ModuleNotFoundError: No module named 'torch._six'
可以将coco_eval.py文件中 Line245
if isinstance(resFile, torch._six.string_classes):
修改为if isinstance(resFile, str):
即可避免使用'torch._six'模块参考链接:https://blog.csdn.net/m0_72676510/article/details/134068860 https://www.cnblogs.com/emanlee/p/17658162.html (我认为这里降级torch并不是个好方法)
Error info / logs ModuleNotFoundError: No module named 'torch._six'