"Face Detection with the Faster R-CNN"의 두 판 사이의 차이
ph
(같은 사용자의 중간 판 2개는 보이지 않습니다) | |||
1번째 줄: | 1번째 줄: | ||
; main site : https://github.com/playerkk/face-py-faster-rcnn | ; main site : https://github.com/playerkk/face-py-faster-rcnn | ||
; download `faster-rcnn-models.tgz` at : https://dl.dropboxusercontent.com/s/o6ii098bu51d139/faster_rcnn_models.tgz [https://github.com/rbgirshick/py-faster-rcnn/issues/542 ref] | ; download `faster-rcnn-models.tgz` at : https://dl.dropboxusercontent.com/s/o6ii098bu51d139/faster_rcnn_models.tgz [https://github.com/rbgirshick/py-faster-rcnn/issues/542 ref] | ||
+ | : All pre-trained models cannot be downloaded. All links to data are broken. | ||
It seems like not working. {{c|caffe}} which is included to source git is not compiled. Looks like cuder version related problem but not sure. | It seems like not working. {{c|caffe}} which is included to source git is not compiled. Looks like cuder version related problem but not sure. | ||
cudnn_sigmoid_layer.cu(13): error: argument of type "cudnnActivationMode_t" is incompatible with parameter of type "cudnnActivationDescriptor_t" | cudnn_sigmoid_layer.cu(13): error: argument of type "cudnnActivationMode_t" is incompatible with parameter of type "cudnnActivationDescriptor_t" | ||
detected during instantiation of "void caffe::CuDNNSigmoidLayer<Dtype>::Forward_gpu(const std::vector<caffe::Blob<Dtype> *, std::allocator<caffe::Blob<Dtype> *>> &, const std::vector<caffe::Blob<Dtype> *, std::allocator<caffe::Blob<Dtype> *>> &) [with Dtype=float]” | detected during instantiation of "void caffe::CuDNNSigmoidLayer<Dtype>::Forward_gpu(const std::vector<caffe::Blob<Dtype> *, std::allocator<caffe::Blob<Dtype> *>> &, const std::vector<caffe::Blob<Dtype> *, std::allocator<caffe::Blob<Dtype> *>> &) [with Dtype=float]” | ||
− | Even after independent {{c|caffe}} installation, it does not work. Maybe | + | Even after independent {{c|caffe}} installation, it does not work. Maybe it's of {{c|caffe}} version problem. |
<pre>WARNING: Logging before InitGoogleLogging() is written to STDERR | <pre>WARNING: Logging before InitGoogleLogging() is written to STDERR | ||
15번째 줄: | 16번째 줄: | ||
Aborted (core dumped)</pre> | Aborted (core dumped)</pre> | ||
+ | https://arxiv.org/pdf/1701.08289.pdf 이 논문 구현체인가.. 아닌것 같은데.. 확인필요. | ||
<disqus></disqus> | <disqus></disqus> |
2017년 5월 10일 (수) 17:03 기준 최신판
- main site
- https://github.com/playerkk/face-py-faster-rcnn
- download `faster-rcnn-models.tgz` at
- https://dl.dropboxusercontent.com/s/o6ii098bu51d139/faster_rcnn_models.tgz ref
- All pre-trained models cannot be downloaded. All links to data are broken.
It seems like not working. caffe which is included to source git is not compiled. Looks like cuder version related problem but not sure.
cudnn_sigmoid_layer.cu(13): error: argument of type "cudnnActivationMode_t" is incompatible with parameter of type "cudnnActivationDescriptor_t" detected during instantiation of "void caffe::CuDNNSigmoidLayer<Dtype>::Forward_gpu(const std::vector<caffe::Blob<Dtype> *, std::allocator<caffe::Blob<Dtype> *>> &, const std::vector<caffe::Blob<Dtype> *, std::allocator<caffe::Blob<Dtype> *>> &) [with Dtype=float]”
Even after independent caffe installation, it does not work. Maybe it's of caffe version problem.
WARNING: Logging before InitGoogleLogging() is written to STDERR W0510 14:35:05.531553 18577 _caffe.cpp:139] DEPRECATION WARNING - deprecated use of Python interface W0510 14:35:05.531584 18577 _caffe.cpp:140] Use this instead (with the named "weights" parameter): W0510 14:35:05.531587 18577 _caffe.cpp:142] Net(‘/face/face-py-faster-rcnn/models/pascal_voc/VGG16/faster_rcnn_alt_opt/faster_rcnn_test.pt', 1, weights='/face/face-py-faster-rcnn/data/faster_rcnn_models/VGG16_faster_rcnn_final.caffemodel') [libprotobuf ERROR google/protobuf/text_format.cc:274] Error parsing text-format caffe.NetParameter: 350:21: Message type "caffe.LayerParameter" has no field named "roi_pooling_param". F0510 14:35:05.532542 18577 upgrade_proto.cpp:88] Check failed: ReadProtoFromTextFile(param_file, param) Failed to parse NetParameter file: /face/face-py-faster-rcnn/models/pascal_voc/VGG16/faster_rcnn_alt_opt/faster_rcnn_test.pt *** Check failure stack trace: *** Aborted (core dumped)
https://arxiv.org/pdf/1701.08289.pdf 이 논문 구현체인가.. 아닌것 같은데.. 확인필요.