博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
内积层和全连接层是一样的
阅读量:6090 次
发布时间:2019-06-20

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

The InnerProduct layer (also usually referred to as the fully connected layer) treats the input as a simple vector and produces an output in the form of a single vector (with the blob’s height and width set to 1).

 

就是定义输出的个数,然后就全部连接所有的滤波器的所有通道(特征子图)的所有元素。

使用方法:(可以看出它的计算方法)

********************************************************

Parameters (InnerProductParameter inner_product_param)

Required
num_output (c_o): the number of filters
Strongly recommended
weight_filler [default type: 'constant' value: 0]

Optional
bias_filler [default type: 'constant' value: 0]
bias_term [default true]: specifies whether to learn and apply a set of additive biases to the filter outputs

Input
n * c_i * h_i * w_i

Output
n * c_o * 1 * 1

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

你可能感兴趣的文章
tomcat多应用之间如何共享jar
查看>>
Flex前后台交互,service层调用后台服务的简单封装
查看>>
MySQL入门12-数据类型
查看>>
Windows Azure 保留已存在的虚拟网络外网IP(云服务)
查看>>
修改字符集
查看>>
HackTheGame 攻略 - 第四关
查看>>
js删除数组元素
查看>>
带空格文件名的处理(find xargs grep ..etc)
查看>>
centos使用docker下安装mysql并配置、nginx
查看>>
需要学的东西
查看>>
Linux 获取文件夹下的所有文件
查看>>
对 Sea.js 进行配置(一) seajs.config
查看>>
第六周
查看>>
解释一下 P/NP/NP-Complete/NP-Hard 等问题
查看>>
javafx for android or ios ?
查看>>
微软职位内部推荐-Senior Software Engineer II-Sharepoint
查看>>
sql 字符串操作
查看>>
【转】Android布局优化之ViewStub
查看>>
网络安全管理技术作业-SNMP实验报告
查看>>
根据Uri获取文件的绝对路径
查看>>