1,Docker import caffe error
root@bbe8ae8476a4:/workspace# python
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import caffe
libdc1394 error: Failed to initialize libdc1394
/usr/local/lib/python2.7/dist-packages/matplotlib/font_manager.py:273: UserWarning: Matplotlib is building the font cache using fc-list. This may take a moment.
warnings.warn('Matplotlib is building the font cache using fc-list. This may take a moment.')
解决办法:大体意思是没有USB,执行如下命令可以解决
ln -s /dev/null /dev/raw1394

2,

可能会遇到./create_mnist.sh: 17: ./create_mnist.sh: build/examples/mnist/convert_mnist_data.bin: not found这样的错误,这是因为新版caffe都需要从根目录上执行,这里我们是从mnist目录下来执行的,所以我们需要先执行:
cd ~/caffe/
1
进入根目录,然后执行命令:
./examples/mnist/train_lenet.sh
本文介绍了在Docker环境中遇到的Caffe导入错误及其解决方案,通过创建软链接来解决libdc1394初始化失败的问题。此外,还解决了在执行create_mnist.sh脚本时找不到convert_mnist_data.bin的错误,指出应从Caffe的根目录下执行相关命令。
1350

被折叠的 条评论
为什么被折叠?



