有没有人在Windows上实现TensorFlow版本的Faster-RCNN? 我找到了一些相关的回购如下:
1.在Linux上使用TensorFlow的快速RCNN 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.Did not compile gpu_nms cuz我不知道如何处理'kernel.cu'和'gpu_nms.pyx'。我试图像'{4}}在'setup_cuda.py'上做的那样做但失败了,错误与https://github.com/MrGF/py-faster-rcnn-windows完全相同:
LINK : fatal error LNK1181: cannot open input file 'ID=2.obj'
有没有人在Windows上为TensorFlow版本实现Faster-RCNN,或者有人可以给我一些建议吗?
非常感谢。
答案 0 :(得分:0)
LINK : fatal error LNK1181: cannot open input file 'ID=2.obj'
此错误来自链接命令。在命令字符串中,有 ' ID = 2.obj' 。您可以通过删除字符串段来修复它。