深度学习
GriffithSong
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
搭建caffe环境时“error: hdf5.h”找不到的解决方法
搭建caffe环境时,在最后进行 ”$make all” 操作时,报错找不到 “hdf5.h”,找了半天原因,是因为在安装 “hdf5” 的时候使用的指令是 “$ sudo apt-get libhdf5-serial-dev ” 所以相应的需要更改"Makefile.config"文件中的包含目录 ctrl+f 找到INCLUDE_DIRS := $(PYTHON_INCLUDE)原创 2016-08-04 09:45:20 · 11972 阅读 · 2 评论 -
caffe中用到的返回数组最大值的前 N 个序号数组
读caffe代码中用到的方法,Mark一下 static bool PairCompare(const std::pair& lhs, const std::pair& rhs) { return lhs.first > rhs.first; } /* Return the indices of the top N values of vec翻译 2016-08-19 11:46:40 · 643 阅读 · 0 评论
分享