【发布时间】:2018-06-14 19:40:48
【问题描述】:
有人在 Windows 上实现了 Faster-RCNN for TensorFlow 版本吗? 我发现了一些相关的仓库如下:
1.Faster-RCNN for TensorFlow on Linux https://github.com/endernewton/tf-faster-rcnn
2.Faster-RCNN for Caffe on Linux https://github.com/rbgirshick/py-faster-rcnn
3.Faster-RCNN for Caffe on Windows https://github.com/MrGF/py-faster-rcnn-windows
我成功编译了'cpu_nms',但是在尝试运行demo.py时遇到了错误:
tensorflow.python.framework.error_impl.InvalidArgumentError:ValueError:Buffer dtype mismatch, expected 'int_t' but got 'long long'
PS.没有编译 gpu_nms 因为我不知道如何处理 'kernel.cu' 和 'gpu_nms.pyx'。我尝试像 https://github.com/MrGF/py-faster-rcnn-windows 对 'setup_cuda.py' 所做的那样但失败了,发生了与https://github.com/MrGF/py-faster-rcnn-windows/issues/17完全相同的错误:
LINK : fatal error LNK1181: cannot open input file 'ID=2.obj'
有人在 Windows 上实现了 Faster-RCNN for TensorFlow 版本吗?或者谁能给我一些建议?
非常感谢。
【问题讨论】:
-
检查this answer,它链接到官方的TF对象检测API,其中包括Faster-RCNN并且与windows兼容,这能回答你的问题吗?
标签: python windows tensorflow object-detection