You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I met the same issue as yours.
After I merge code from caffe. I forgot to delete below code.
maybe you need to delete self_.attr("phase") = static_cast<int>(this->phase_); in caffe-fast-rcnn/include/caffe/layers/python_layer.hpp
then run make all -j8 and make pycaffe -j8.
BTW: I did NOT run mkdir build && cd build and cmake ... It's still OK.
To enable supports of CUDNNv5:
1).
cd caffe-fast-rcnn
git remote add caffe https://github.com/BVLC/caffe.git
git fetch caffe
git merge -X theirs caffe/master
2).
remove self_.attr("phase") = static_cast<int>(this->phase_); from include/caffe/layers/python_layer.hpp after merging.
3). (in caffe-fast-rcnn)
- mkdir build && cd build
- cmake ..
- make all -j8
- make pycaffe -j8
Anyone has this problem?
how resolved this ?
if i do :
The text was updated successfully, but these errors were encountered: