Caffe
-
深度学习caffe测试代码c++
#include <caffe/caffe.hpp> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <iosfw…
-
caffe学习笔记(十二)用训练好的模型进行分类
1、caffemodel文件 文件名称为:bvlc_reference_caffenet.caffemodel,文件大小为230M左右,为了代码的统一,将这个caffemodel文件下载到caffe根目录下的 models/bvlc_reference_caffenet/ 文件夹下面。可以运行脚本文件进行下载: ./scripts/download_mode…
-
【caffe编译】 fatal error: hdf5.h: 没有那个文件或目录
src/caffe/layers/hdf5_output_layer.cpp:3:18: fatal error: hdf5.h: 没有那个文件或目录 查找文件 locate hdf5.h 修改Makefile.config文件,在下面的语句后面增加红色部分 INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/inclu…
-
【caffe编译】nvcc warning:The ‘compute_20’, ‘sm_20’
Makefile.config 中 CUDA_ARCH := -gencode arch=compute_20,code=sm_20 \ -gencode arch=compute_20,code=sm_21 \ -gencode arch=compute_30,code=sm_30 \ -gencode arch=compute_35,code=sm_35…
-
Ubuntu配置GPU+CUDA+CAFFE
参考网站: http://blog.csdn.net/xizero00/article/details/43227019/ (主要参考) http://www.cnblogs.com/platero/p/3993877.html (caffe+cudaGPU) http://www.cnblogs.com/platero/p/4118139.html (cu…
-
ubuntu配置caffe的python接口pycaffe
参考网站: http://blog.csdn.net/sanmao5/article/details/51923982 (主要参考) https://github.com/BVLC/caffe/issues/782 (问题解决) 依赖 前提caffe已经正确编译。见Ubuntu配置caffe 库包 sudo apt-get install python-…
-
Caffe训练cafir10
安装Cygwin 可以执行.sh脚本 cd caffe-master/data/cifar10 get_cifar10 下载下来的文件列表 batches.meta.txt data_batch_1.bin data_batch_2.bin data_batch_3.bin data_batch_4.bin data_batch_5.bin test_bat…
-
找不到cannot find -lpython3.5m caffe anaconda python3 ubuntu16.04
LD -o .build_release/lib/libcaffe.so.1.0.0/usr/bin/ld: 找不到 -lpython3.5mcollect2: error: ld returned 1 exit statusMakefile:572: recipe for target ‘.build_release/lib/libcaffe.so.1.0…
-
caffe makefile.config anaconda2 python3 所有问题一种解决方式
我只改了两个数字,然后,所有错误,不翼而飞,两天折腾,全是穷折腾。 事情是这样的,除了官方说法,其他不带官方doc的教程都是耍流氓。 有人说,官方说anaconda+python非常简单好配置,为什么,我这么多错误,最后不得不用pip,因为官方配置文档,就是makefile.config里面是anaconda2+python2.7,如果你安装的是以上版本,那…
-
caffe 日志保存以及matlab绘制方法(windows以及ubuntu下)
caffe 用matlab解析日志画loss和accuracy clc; clear; % load the log file of caffe model fid = fopen(‘log-previous-insulator.txt’, ‘r’); tline = fgetl(fid); accuracyIter =[]; accuracyArray…