Issues
Issue 1: fatal error: caffe/proto/caffe.pb.h: No such file or directory
This usually happens when you add new layers to the caffe frastructure. You can solve it by running:
These commands are encapsulated in pbhSolution.sh
. You should run it under the $CAFFE_ROOT_DIR
.
Issue 2: Unknown layer type: Python
Are you sure you have modified the configuration file Makefile.config
under the $CAFFE_ROOT_DIR
? Maybe you just disabled the python layer in your caffe (And that's the default configuration in the example file). You can do as follows to restart it:
Issue 3: NVCC warning
This is because you enabled out-of-date CUDA architecture, just remove the first two lines of the following command:
The current command should be like:
Last updated