Mask R-CNN for Object Detection and Segmentation配置

1. Tensorflow安装

step by step 的教程:

http://tensorflowkeras.blogspot.com/2017/07/tensorflow-gpustep-by-step.htmltensorflowkeras.blogspot.com

如果安装完成以后,遇到

DLL load failed: 找不到指定的模块

一是注意cuda版本是不是你的显卡支持版本以及是否与cudnn版本一致。

二则是遇到问题时,不断回调tensorflow版本。

2. conda不是内部或者外部命令

https://blog.csdn.net/u011361880/article/details/75294226blog.csdn.net

3.pip install imgaug时:Command “python setup.py egg_info” failed with error code 1

解决办法:

#第一步
pip install six numpy scipy Pillow matplotlib scikit-image opencv-python imageio
#第二步
pip install git+https://github.com/aleju/imgaug --no-deps
#则成功安装

4. coco api 安装

windows+python3:

https://blog.csdn.net/benzhujie1245com/article/details/82686973blog.csdn.net

5. ModuleNotFoundError: No module named ‘mrcnn’

Solution:

python setup.py install

6. jupyter notebook 使用conda kernel

python -m ipykernel install --user --name myenv --display-name "myenv"

7.ssh 连接使用jupyter notebook

ssh -L 1234:localhost:8888 zian@域名

#然后在浏览器
http://localhost:1234

8.tmux调整窗口大小

ctrl-B + shift-D

    原文作者:任烜池
    原文地址: https://zhuanlan.zhihu.com/p/61370758
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞