windows下运行mask-rcnn示例程序踩过的坑

环境:win10,keras2.1.6,python3.6,ensorflow1.8-gpu

mask_rcnn源代码:https://github.com/matterport/Mask_RCNN。

错误一:

      运行D:\python\jupyter\Mask_RCNN-master\samples目录下的demo.ipynb文件,用jupyter notebook命令打开该文件运行会出现

ModuleNotFoundError: No module named 'pycocotools'。

     解决办法:参照https://github.com/philferriere/cocoapi这篇github文章。按文章所指首先你必须有On Windows, you must have the Visual C++ 2015 build tools on your path(注:原文已经给出安装软件,点击下载即可。安装时需要在线安装)。然后运行命令就可解决问题:

pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI

   值得注意的是,如果你的操作系统是linux而不是windows,你需要参照这篇文章https://github.com/cocodataset/cocoapi 。

错误二:   

         运行D:\python\jupyter\Mask_RCNN-master\samples目录下的demo.ipynb文件,用jupyter notebook命令打开该文件运行会出现  ModuleNotFoundError: No module named 'imgaug'。

         解决方式:运行命令 pip3 install imgaug安装imgaug模块即可。

错误三:

        运行D:\python\jupyter\Mask_RCNN-master\samples\shapes\train_shapes.ipynb时,运行到

windows下运行mask-rcnn示例程序踩过的坑_第1张图片

          会出现报错

          原因是由于找不到logs日志文件下该文件,最后一个保存的logs文件夹内是空的。 

          解决方式:将 model.py 文件中的find_last()函数下的 dir_name = os.path.join(self.model_dir, dir_names[-1]) 
          改为 dir_name = os.path.join(self.model_dir, dir_names[-2]) 即可正常运行

你可能感兴趣的:(深度学习)