博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
deconvolution layer parameter setting
阅读量:6403 次
发布时间:2019-06-23

本文共 1433 字,大约阅读时间需要 4 分钟。

1. Paper describes initializing the deconv layer with bilinear filter coefficients and train them. But in the provided train/val.prototxt, we can see lr_mult=0, which means, deconv layer is not trained. Any idea why and how does it affect the accuracy?
 
​ In further experiments​ on PASCAL VOC we found that learning the interpolation parameters made little difference, and fixing these weights gives a slight speed-up since the interpolation filter gradient can be skipped.
 
Keep in mind that there is only one channel per class in this particular architecture, so not that much is there to be learned except perhaps for the spatial extent of the kernel. The results for other data (with more scale variation) or other architectures (with more deconvolution channels and layers) could differ.
 
 
2. Previous fcn files used group=21 in the deconv layer. But now, they are removed. Any idea how does it affect the accuracy?
 
​ These are equivalent as long as these parameters are not learned. In the group case, the no. of groups is equal to the no. of channels so that each class is interpolated separately. ​In the no group case, only the "diagonal" of the weight matrix is initialized to the bilinear filter kernels so that each class is likewise interpolated separately with all cross-channel weights set to zero.
 
 
​Happy brewing,​

Evan Shelhamer

 

 

that is:

conv: N class

deconv:N class

N group

转载于:https://www.cnblogs.com/Wanggcong/p/6702546.html

你可能感兴趣的文章
IntelAMT 固件密码绕过登录漏洞分析与实战
查看>>
ansible自动化管理windows系统实战
查看>>
AgileEAS.NET之数据关系映射ORM
查看>>
Jquery封装tab自动切换效果
查看>>
Iperf安装使用及测试专线带宽
查看>>
抢先体验IE9
查看>>
【斗医】【16】Web应用开发20天
查看>>
javascript 基本使用—字符串、变量、数组、函数、for循环
查看>>
[C# 开发技巧]实现属于自己的截图工具
查看>>
mysql基础调优
查看>>
CYQ.Data 快速开发之UI(赋值、取值、绑定)原理
查看>>
使用路由器实现不同VLAN间通信_路由交换
查看>>
真我新格调 勇敢使梦想触手可及
查看>>
ExtJs 动态RadioGroup的子项 [ Ext | RadioGroup | items ]
查看>>
idea模板注释
查看>>
DHCP服务介绍
查看>>
Hibernate的数据删除,更改
查看>>
编程学习初体验(5. 如何自学编程)(2)
查看>>
思科ISR G1与ISR G1C的区别
查看>>
利用perl提取web配置文件中的域名对应的路径
查看>>