Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. namespace caffe {
  2. ...
  3. int glb_layer_id;
  4. template <typename Dtype>
  5. Net<Dtype> glb_Net;
  6.  
  7. template <typename Dtype>
  8. void Net<Dtype>::Init(const NetParameter& in_param) {
  9. ...
  10. }
  11.  
  12. ckim@stph45:~/Neuro/py-faster-rcnn.org] !make
  13. make -C caffe-fast-rcnn/
  14. make: Entering directory `/home/ckim/Neuro/py-faster-rcnn.org/caffe-fast-rcnn'
  15. CXX src/caffe/net.cpp
  16. src/caffe/net.cpp:41: error: template declaration of 'caffe::Net<Dtype> caffe::glb_Net'
  17. src/caffe/net.cpp: In member function 'void caffe::Net<Dtype>::Init(const caffe::NetParameter&)':
  18. src/caffe/net.cpp:74: error: 'glb_Net' was not declared in this scope
  19. make: *** [.build_debug/src/caffe/net.o] Error 1
  20. make: Leaving directory `/home/ckim/Neuro/py-faster-rcnn.org/caffe-fast-rcnn'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement