浅析PyTorch中nn.Linear的使用


Posted in Python onAugust 18, 2019

查看源码

Linear 的初始化部分:

class Linear(Module):
 ...
 __constants__ = ['bias']
 
 def __init__(self, in_features, out_features, bias=True):
   super(Linear, self).__init__()
   self.in_features = in_features
   self.out_features = out_features
   self.weight = Parameter(torch.Tensor(out_features, in_features))
   if bias:
     self.bias = Parameter(torch.Tensor(out_features))
   else:
     self.register_parameter('bias', None)
   self.reset_parameters()
 ...

需要实现的内容:

浅析PyTorch中nn.Linear的使用

计算步骤:

@weak_script_method
  def forward(self, input):
    return F.linear(input, self.weight, self.bias)

返回的是:input * weight + bias

对于 weight

weight: the learnable weights of the module of shape
  :math:`(\text{out\_features}, \text{in\_features})`. The values are
  initialized from :math:`\mathcal{U}(-\sqrt{k}, \sqrt{k})`, where
  :math:`k = \frac{1}{\text{in\_features}}`

对于 bias

bias:  the learnable bias of the module of shape :math:`(\text{out\_features})`.
    If :attr:`bias` is ``True``, the values are initialized from
    :math:`\mathcal{U}(-\sqrt{k}, \sqrt{k})` where
    :math:`k = \frac{1}{\text{in\_features}}`

实例展示

举个例子:

>>> import torch
>>> nn1 = torch.nn.Linear(100, 50)
>>> input1 = torch.randn(140, 100)
>>> output1 = nn1(input1)
>>> output1.size()
torch.Size([140, 50])

张量的大小由 140 x 100 变成了 140 x 50

执行的操作是:

[140,100]×[100,50]=[140,50]

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python基于twisted实现简单的web服务器
Sep 29 Python
深入理解python多进程编程
Jun 12 Python
python 截取 取出一部分的字符串方法
Mar 01 Python
详解Python文本操作相关模块
Jun 22 Python
Python网络编程使用select实现socket全双工异步通信功能示例
Apr 09 Python
django进阶之cookie和session的使用示例
Aug 17 Python
Pytorch Tensor的索引与切片例子
Aug 18 Python
Python3.7 pyodbc完美配置访问access数据库
Oct 03 Python
pytorch之inception_v3的实现案例
Jan 06 Python
Python + selenium + crontab实现每日定时自动打卡功能
Mar 31 Python
Python实现FTP文件定时自动下载的步骤
Dec 19 Python
深入解析NumPy中的Broadcasting广播机制
May 30 Python
Pytorch实现GoogLeNet的方法
Aug 18 #Python
PyTorch之图像和Tensor填充的实例
Aug 18 #Python
Pytorch Tensor的索引与切片例子
Aug 18 #Python
在PyTorch中Tensor的查找和筛选例子
Aug 18 #Python
对Pytorch神经网络初始化kaiming分布详解
Aug 18 #Python
pytorch中的embedding词向量的使用方法
Aug 18 #Python
Pytorch加载部分预训练模型的参数实例
Aug 18 #Python
You might like
thinkPHP自定义类实现方法详解
2016/11/30 PHP
PHP实现求解最长公共子串问题的方法
2017/11/17 PHP
PHP高并发和大流量解决方案整理
2021/03/09 PHP
jQuery 源码分析笔记(7) Queue
2011/06/19 Javascript
JavaScript中利用Array和Object实现Map的方法
2015/07/27 Javascript
jQuery实现页面顶部显示的进度条效果完整实例
2015/12/09 Javascript
jQuery height()、innerHeight()、outerHeight()函数的区别详解
2016/05/23 Javascript
详解js的事件处理函数和动态创建html标记方法
2016/12/16 Javascript
js 判断登录界面的账号密码是否为空
2017/02/08 Javascript
纯JS实现弹性导航条效果
2017/03/06 Javascript
AngularJS实现的获取焦点及失去焦点时的表单验证功能示例
2017/10/25 Javascript
利用jquery如何从json中读取数据追加到html中
2017/12/01 jQuery
JavaScript中工厂函数与构造函数示例详解
2019/05/06 Javascript
微信小程序模板消息限制实现无限制主动推送的示例代码
2019/08/27 Javascript
angular组件间通讯的实现方法示例
2020/05/07 Javascript
[00:33]2016完美“圣”典风云人物:BurNIng宣传片
2016/12/10 DOTA
[03:11]TI9战队档案 - Alliance
2019/08/20 DOTA
Python 抓取动态网页内容方案详解
2014/12/25 Python
把项目从Python2.x移植到Python3.x的经验总结
2015/04/20 Python
Python 加密的实例详解
2017/10/09 Python
python模块导入的细节详解
2018/12/10 Python
python自动发送测试报告邮件功能的实现
2019/01/22 Python
python批量创建指定名称的文件夹
2019/03/21 Python
python3.6 如何将list存入txt后再读出list的方法
2019/07/02 Python
python pip安装包出现:Failed building wheel for xxx错误的解决
2019/12/25 Python
python中怎么表示空值
2020/06/19 Python
Jmeter HTTPS接口测试证书导入过程图解
2020/07/22 Python
对pytorch中x = x.view(x.size(0), -1) 的理解说明
2021/03/03 Python
HTML5 device access 设备访问详解
2018/05/24 HTML / CSS
adidas泰国官网:adidas TH
2020/07/11 全球购物
一个大学生十年的职业规划
2014/01/17 职场文书
副总经理岗位职责
2014/03/16 职场文书
合作协议书
2014/04/23 职场文书
李敖北大演讲稿
2014/05/24 职场文书
我们的节日春节活动方案
2014/08/22 职场文书
忠诚教育心得体会
2014/09/03 职场文书