上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: pycaffe 是 Caffe 提供的Python接口,我们知道 Caffe 的整个framework是基于C Plus Plus 来开发的,所以pycaffe 的根本就是提供Python调用Caffe C Plus Plus Library 的接口。 此处编译是在Windows Caffe VS2013的环境下进行,请对号入座,编译过程按以下步骤逐步进行。 1. 安装Python环境 recom... 阅读全文
posted @ 2016-12-11 01:47 AllenLYU 阅读(1552) 评论(0) 推荐(0) 编辑
摘要: 场景:最近做一个java web项目,使用jdbc连接Oracle数据库,遇到了两个问题。 问题1:jdbc连接不上Ubuntu Oracle服务器? 后来发现这个问题的原因是由于连接字符串写错了,修正以后如下所示: public static Connection getConn() { Connection conn = null; try { ... 阅读全文
posted @ 2016-11-07 18:04 AllenLYU 阅读(4089) 评论(0) 推荐(0) 编辑
摘要: # coding=gbkimport osimport os.path #读取目录下的所有文件,包括嵌套的文件夹def GetFileList(dir, fileList): newDir = dir if os.path.isfile(dir): fileList.append(dir) elif os.path.isdir(dir): for s ... 阅读全文
posted @ 2016-09-25 14:08 AllenLYU 阅读(11286) 评论(0) 推荐(1) 编辑
摘要: Caffe中convert_imageset projrct将图像数据转换成Caffe能读取的数据格式leveldb/lmdb 1.添加命令参数 在main函数中添加命令参数,内容和位置如下: #ifndef GFLAGS_GFLAGS_H_ namespace gflags = google;#endif //convert imageset By XiaopanLyu======... 阅读全文
posted @ 2016-09-24 11:48 AllenLYU 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 在一块SSD的CentOS配置静态IP 1. 配置静态IP #vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE="eth0" 设备名NM_CONTROLLED="yes" 设备是否被NetworkManager管理ONBOOT="no" 开机是否 阅读全文
posted @ 2016-09-13 18:28 AllenLYU 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 明代思想家王阳明提出了“知行合一”,谓认识事物的道理与在现实中运用此道理,是密不可分的一回事。我以为这样的中国哲学话语,对于学习者来说,极具启发意义,要细细体会。中华文明源远流长,很多做人做事的道理,孕育其中,需用心体会,并学以致用。 以“知”促“行”、以“行”促“知”、知行合一。——The unity of Inner knowledge and action. 在chapter 3 中提供了一... 阅读全文
posted @ 2016-08-22 18:47 AllenLYU 阅读(9911) 评论(5) 推荐(0) 编辑
摘要: 推荐一个关于分类、目标检测、姿态估计的数据集收藏的网页。 Did you ever want to quickly learn?which paper provides the best results on standard dataset X ?Wait no more, just click below and discover the current state of the art. ... 阅读全文
posted @ 2016-08-20 12:19 AllenLYU 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 先从一个具体的例子来开始Caffe,以MNIST手写数据为例。 1.下载数据 下载mnist到caffe-master\data\mnist文件夹。 THE MNIST DATABASE:Yann LeCun et al. train-images-idx3-ubyte.gz: training set images (9912422 bytes) train-labels-idx1-u... 阅读全文
posted @ 2016-08-17 16:27 AllenLYU 阅读(839) 评论(0) 推荐(0) 编辑
摘要: 收藏一些经典的源码,持续更新!!! 1.深度学习框架(Deep Learning Framework). A:Caffe (Convolutional Architecture for Fast Feature Embedding)Convolutional 由伯克利大学Yangqing Jia Ph.D开发的开源深度学习的代码。 Homepage:http://caffe.berkeleyvi... 阅读全文
posted @ 2016-08-12 11:11 AllenLYU 阅读(609) 评论(0) 推荐(0) 编辑
摘要: Caffe for windows 的build药按照一定的顺序进行。 ============================================================ 先以build libcaffe 为例: 第一步选择build libcaffe,看到其名字就不言而喻,这是一个lib文件,其它project对它有依赖关系。依赖关系可以在project中查询, as fo... 阅读全文
posted @ 2016-08-11 10:41 AllenLYU 阅读(429) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页
levels of contents