- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
如何在Caffe中配置每一个层的结构
/danieljianfeng/article/details何在Caffe中配置每一个层的结构1. Vision Layers1.1 卷积层(Convolution)类型:CONVOLUTION例子layers { name: conv1 type: CONVOLUTION bottom: data top: conv1 blobs_lr: 1 # learning rate multiplier for the filters blobs_lr: 2 # learning rate multiplier for the biases weight_decay: 1 # weight decay multiplier for the filters weight_decay: 0 # weight decay multiplier for the biases convolution_param {num_output: 96 # learn 96 filterskernel_size: 11 # each filter is 11x11stride: 4 # step 4 pixels between each filter applicationweight_filler {type: gaussian # initialize the filters from a Gaussianstd: 0.01 # distribution with stdev 0.01 (default mean: 0)}bias_filler {type: constant # initialize the biases to zero (0)value: 0} }}blobs_lr:?学习率调整的参数,在上面的例子中,设置权重学习率和运行中求解器给出的学习率一样(blobs_lr: 1),偏置学习率为权重的两倍(blobs_lr: 2)。?weight_decay:?卷积层的重要参数必须参数:num_output (c_o):过滤器的个数kernel_size (or kernel_h and kernel_w):过滤器的大小?可选参数:weight_filler [default type: constant value: 0]:参数的初始化方法bias_filler:偏置的初始化方法bias_term [default true]:指定是否开启偏置项pad (or pad_h and pad_w) [default 0]:指定在输入的每一边加上多少个像素stride (or stride_h and stride_w) [default 1]:指定过滤器的步长group (g) [default 1]:?If g 1, we restrict the connectivity of each filter to a subset of the input. Specifically, the input and output channels are separated into g groups, and the ith output group channels will be only connected to the ith input group channels.?通过卷积后的大小变化:输入:n * c_i * h_i * w_i输出:n * c_o * h_o * w_o,其中h_o = (h_i + 2 * pad_h - kernel_h) / stride_h + 1,w_o= (w_i + 2 * pad_w - kernel_w) / stride_w + 1。1.2 池化层(Pooling)类型:POOLING例子layers { name: pool1 type: POOLING bottom: conv1 top: pool1 pooling_param {pool: MAXkernel_size: 3 # pool over a 3x3 regionstride: 2 # step two pixels (in the bottom blob) between pooling regions }}池化层的重要参数必需参数:kernel_size (or kernel_h and kernel_w):过滤器的大小?可选参数:pool [default MAX]:pooling的方法,目前有MAX, AVE, 和STOCHASTIC三种方法pad
您可能关注的文档
最近下载
- 2025年电源管理芯片产业分析报告.pdf VIP
- 预防呼吸机相关肺炎的集束化管理策略课件.pptx VIP
- 【高三上】江淮十校2026届高三第一次联考语文试题含答案.docx
- 北京市海淀区2024-2025学年七年级上学期期末英语试题(含答案与解析).pdf VIP
- 2023年IATF16949汽车质量管理体系程序文件汇编(内含39个程序以及质量手册).docx VIP
- 关务风险管理.pptx VIP
- (2025秋新版)人教版八年级英语上册《Unit 4 Amazing Plants and Animals》PPT课件.pptx
- 2025年最新征信报告可编辑模版1.pdf
- {工作手册}物资编码手册.pdf VIP
- 食品厂产品留样制.doc VIP
文档评论(0)