
Caffe
我是天才很好
深度学习算法工程师
github: https://github.com/wstchhwp
个人邮箱:1103540209@qq.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Caffe入门:lr_mult和decay_mult参数说明
一、Caffe网络定义:lr_mult和decay_mult 通常在 Caffe 的网络定义中,某些 layer 会有如下参数: param { lr_mult: x decay_mult: y } 当令 lr_mult = x 时,相当于该层的学习率为 solver.prototxt 中的 base_lr * x; 特别地,当 lr_mult = 1 时,相当于该层的学习率就是 base_lr; 当 lr_mult = 0 时,相当于固定该层的权重,不需要学习; 当没有设转载 2020-09-01 17:54:55 · 1178 阅读 · 0 评论 -
caffe网络结构可视化
可视化网址 http://dgschwend.github.io/netscope/#/editor deploy_vgg11_regression.prototxt # Enter your network definition here. # Use Shift+Enter to update the visualization. ###---------------- name: "vgg11_regression_posture" layer { name: "data" type:原创 2020-08-11 11:17:12 · 401 阅读 · 0 评论 -
caffe 网络结构参数介绍及可视化
caffe/examples/mnist/lenet_train_test.prototxt name: "LeNet" //网络的名称 layer { //定义一个层(Layer) name: "mnist" //层名称 type: "Data" //层类型:数据层 top: "data" //层输出 :data和label top: "label" include { phase: TRAIN //本层只在训练阶段有效 } transform_par转载 2020-08-06 19:45:34 · 433 阅读 · 0 评论 -
Caffe实战入门
原创 2019-12-26 20:24:30 · 330 阅读 · 0 评论