1

MNIST 테스트시 Caffe error: no field named "net"과 같은 문제가 있습니다. 실행caffe 테스트 오류 없음 "net"테스트에서 MNIST 테스트 중

[email protected]:~/caffe$ build/tools/caffe test -model examples/mnist/lenet_solver.prototxt 
         -weights examples/mnist/lenet_iter_10000.caffemodel -iterations 100 

나는 다음과 같은 출력을 얻을 :

I0820 11:31:33.820005 113569 caffe.cpp:279] Use CPU. [libprotobuf ERROR google/protobuf/text_format.cc:245] Error parsing text-format caffe.NetParameter: 2:4: Message type "caffe.NetParameter" has no field named "net". 
F0820 11:31:33.844912 113569 upgrade_proto.cpp:79] Check failed: ReadProtoFromTextFile(param_file, param) Failed to parse NetParameter file: examples/mnist/lenet_solver.prototxt 
Check failure stack trace: 
@  0x7f3f9744edaa (unknown) 
@  0x7f3f9744ece4 (unknown) 
@  0x7f3f9744e6e6 (unknown) 
@  0x7f3f97451687 (unknown) 
@  0x7f3f977fc0c7 caffe::ReadNetParamsFromTextFileOrDie() 
@  0x7f3f97834b0f caffe::Net<>::Net() 
@   0x407843 test() 
@   0x405f7b main 
@  0x7f3f9645af45 (unknown) 
@   0x406677 (unknown) 
@    (nil) (unknown) 

'lenet_solver.prototxt''lenet_train_test.prototxt'이 (수정되지 않음) 원곡을.

그리고, 당신은 저를

[email protected]:~/caffe$ printenv PYTHONPATH 
/home/keides2/caffe/python 

을 도울 수 있을까요?

+0

질문의 서식을 지정하십시오. – Shai

+0

traon_val.prototxt는 무엇입니까? mnist 디렉토리에서 찾을 수 없습니다. –

답변

0

caffe test을 실행할 때 솔버 파일 (귀하의 경우 lenet_solver.prototxt)이 필요하지 않지만 넷 prototxt를 직접 사용하십시오.
시도 :

build/tools/caffe test -model examples/mnist/lenet_train_test.prototxt 
        -weights examples/mnist/lenet_iter_10000.caffemodel -iterations 100 
+1

Mr. Shai, 지적하고 포맷 해 주셔서 감사합니다. 그 시험 후에도 성공했다. –