上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: keraskerasdlkeras4. API4. API4.4 BatchNormalization层4.4 BatchNormalization层4.3 Lambda层4.3 Lambda层4.2 fit4.2 fit4.1 compile4.1 compile3. 常见模型3. 常见模型3.7 ... 阅读全文
posted @ 2018-06-05 19:29 bairuiworld 阅读(736) 评论(0) 推荐(0) 编辑
摘要: 解析模型参数dl caffemodel ckpt Caffe Modelcaffemodel是使用protobuf进行保存的。 1. 有prototxt依赖于caffe。解析的时候如果有prototxt,caffemodel两个文件,可以使用caffe提供的接口load网络,然后再解析网络。weigth是net.params[param_name][0].data,bias需要判断ne... 阅读全文
posted @ 2018-06-05 19:27 bairuiworld 阅读(982) 评论(0) 推荐(0) 编辑
摘要: TensorFlowtensorflow 一、BasicTensorFlow是以图作为核心,数据的流动构成一张图,对图进行相应的计算。 Graph:matrix1 = tf.constant([[3., 3.]])matrix2 = tf.constant([[2.],[2.]])product = tf.matmul(matrix1 , matrix2)这样,创建了三个结点,两个cons... 阅读全文
posted @ 2018-06-05 19:05 bairuiworld 阅读(525) 评论(0) 推荐(0) 编辑
摘要: \ 《VIM实用技巧》 @author: gr @date: 2015 11 20 @email: forgerui@gmail.com 《VIM实用技巧》阅读笔记。 1. 使用 , G 从当前行缩进到最后一行 v 利用v选中需要缩进的行,然后缩进 2. f行内快速定位 要在一行内快速移动到某个字符 阅读全文
posted @ 2016-08-08 12:57 bairuiworld 阅读(243) 评论(0) 推荐(0) 编辑
摘要: Author: Erich Gamma. @(gr_self)[dp] @author: gr @date: 2015 11 16 @email: forgerui@gmail.com 一、引言 类继承和接口继承区别: 类继承:它是代码和表示的共享机制,复用父类功能,快速定义新对象。 接口继承:描述 阅读全文
posted @ 2016-08-08 10:15 bairuiworld 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 对设计模式的一些整理。 @author: gr @date: 2015 11 13 @email: forgerui@gmail.com 1. 依赖:一种模型元素之间的关系的描述。例如类A调用了类B,那么我们说类A依赖于类B。 2. 耦合:一种模型元素之间的关系的描述。例如类A调用了类B或类B调用了 阅读全文
posted @ 2016-08-08 09:59 bairuiworld 阅读(301) 评论(0) 推荐(0) 编辑
摘要: Part 9: 模板与泛型编程(第16章) // @author: gr // @date: 2016 03 18 // @email: forgerui@gmail.com 1. 模板参数 1. 类型模板参数 类型可以是类类型或内置类型,通过typename或class修饰类型。 //T是一个类型 阅读全文
posted @ 2016-08-05 17:00 bairuiworld 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Total Accepted: 23103 Total Submissions: 91679 Difficulty: Medium Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ ti 阅读全文
posted @ 2016-02-27 11:28 bairuiworld 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Total Accepted: 95925 Total Submissions: 239241 Difficulty: Easy Given an array of size n, find the majority element. The majority element is the elem 阅读全文
posted @ 2016-02-27 10:49 bairuiworld 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Caffe学习。 @author: gr @date: 2015 08 30 @email: forgerui@gmail.com 1. Install 详细可以见[官方文档][1],[博客1][2],[博客2][3]。 1.1 Prerequisites + CUDA i... 阅读全文
posted @ 2015-10-30 19:33 bairuiworld 阅读(463) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页