caffe
求其啦_吹咩
渣渣一枚
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
caffe实例,RCNN-detect的项目中,会出现scipy.io.matlab.miobase.MatReadError: Mat file appears to be empty的问题
这个问题出现的原因在于这个命令:!echo `pwd`/images/fish-bike.jpg > _temp/det_input.txt因为fish-bike.jpg不再images文件夹中故要改成:!echo `pwd`/examples/fish-bike.jpg > _temp/det_input.txt就重新执行detect.py搞定睡觉!...原创 2018-05-02 04:48:10 · 2569 阅读 · 0 评论 -
caffe中detect.py运行产生的问题TypeError: slice indices must be integers or None or have an __index__ method
TypeError: slice indices must be integers or None or have an index method这是由于numpy的版本太高,numpy 1.12.0对这个做了些调整,把numpy降级到1.11.0就行了。参考了简书的文章使用命令:sudo pip install -U numpy==1.11.0不过我是要装在python2.7中所以执行以下代码,...转载 2018-05-02 04:53:57 · 339 阅读 · 0 评论 -
can not find module skimage.io
在命令行输入python;再输入import caffe时,可能会报以下错误:can not find module skimage.io此时只要按照以下命令操作即可:$ sudo apt-get install python-numpy python-scipy python-matplotlib python-sklearn python-skimage python-h5py python-...转载 2018-04-30 01:30:05 · 363 阅读 · 0 评论
分享