win10 tensorflow object detection API安装

安装前提:已安装python3.6+tensorflow-gpu1.8  显卡:GTX1080ti

c://users/Lyapunov//AppData//Local//Programs//Python//Python3.6//Lib//site-packages//tensorflow

1 从github下载models:https://github.com/tensorflow/models放到了D:\models-master

2 protobuf编译:https://download.csdn.net/download/zxf20063033/9893084下载protoc-3.3.0-win32.zip,解压后将bin文件夹中的【protoc.exe】放到C:\Windows下

# From tensorflow/models/research
protoc object_detection/protos/*.proto --python_out=.

不报错即可将protosw文件夹下得文件生成.proco格式,每个文件下面对应一个该格式文件,即编译成功。

3 测试

再在models-master处打开powershell,输入jupyter-notebook

打开research\object_detetion中\object_detection_tutorial.ipynb\    cell-run all

 

出现no model named object detection时:可在C:\Users\Lyapunov\AppData\Local\Programs\Python\Python36\Lib\site-packages下新建一个文本文档:输入

D:\models-master\research

D:\models-master\research\slim

并重命名为tensorflow_model.pth

 

之后安装了tensorflow-gpu==1.10.0发现使用pip卸载不了,出现了找不到什么.h文件得问题,1.8.0得就可以正常卸载,于是找到如下问题:Windows历史上的路径长度限制为260个字符。这意味着超过此长度的路径将无法解决问题,并导致错误。在Windows的最新版本中,这个限制可以扩展到大约32,000个字符。管理员需要激活“允许Win32长路径”组策略,或者将注册表值HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem@LongPathsEnabled”设置为1。

激活方法:在搜索框搜索gpedit.msc进入,找到 Local Computer Policy > Computer Configuration > Administrative Templates > System > Filesystem双击Enable win32 long paths并设置为已启用,即可。

https://github.com/tensorflow/tensorflow/issues/8785

参考https://docs.python.org/3/using/windows.html#removing-the-max-path-limitation

参考https://superuser.com/questions/1119883/windows-10-enable-ntfs-long-paths-policy-option-missing

 

设置环境变量:

win10 tensorflow object detection API安装_第1张图片

于是正常卸载了tensorflow1.10.0 安装了1.9.0 API可正常使用

 

 

 

你可能感兴趣的:(win10 tensorflow object detection API安装)