TypeError: Class advice impossible in Python3. Use the @Implementer class decorator instead.

问题来源

在运行maskrcnn-benchmarkMask R-CNN demo时,出现如下的错误:

错误记录

错误图片

问题解决

按照以下方式重新安装apex

pip uninstall apex
git clone https://www.github.com/nvidia/apex
cd apex
python setup.py install

参考资料
https://github.com/NVIDIA/apex/issues/116

你可能感兴趣的:(TypeError: Class advice impossible in Python3. Use the @Implementer class decorator instead.)