I suspect this is some stupid set-up problem that I make since no one else seems to have trouble running it..
So I was trying to run the pre-trained network by following the instruction, when I tried to run the following command:
python ../python/caffe/detection/detector.py --crop_mode=selective_search --pretrained_model=../examples/imagenet/caffe_reference_imagenet_model --model_def=../examples/imagenet/imagenet_deploy.prototxt _temp/cat.txt _temp/cat.h5
I got an error saying:
Traceback (most recent call last):
File "detector.py", line 29, in <module>
import caffe
File "/python/caffe/__init__.py", line 1, in <module>
from .pycaffe import Net
File "/caffe/pycaffe.py", line 6, in <module>
from ._caffe import CaffeNet
ImportError: No module named _caffe
It seems like python is not recognizing the _caffe.cpp file...Would anyone know how to solve this problem?
Thanks tons!
I suspect this is some stupid set-up problem that I make since no one else seems to have trouble running it..
So I was trying to run the pre-trained network by following the instruction, when I tried to run the following command:
python ../python/caffe/detection/detector.py --crop_mode=selective_search --pretrained_model=../examples/imagenet/caffe_reference_imagenet_model --model_def=../examples/imagenet/imagenet_deploy.prototxt _temp/cat.txt _temp/cat.h5
I got an error saying:
It seems like python is not recognizing the _caffe.cpp file...Would anyone know how to solve this problem?
Thanks tons!