浅析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 相关文章推荐
Django1.7+python 2.78+pycharm配置mysql数据库教程
Nov 18 Python
Python 实现链表实例代码
Apr 07 Python
基于Python在MacOS上安装robotframework-ride
Dec 28 Python
python做反被爬保护的方法
Jul 01 Python
python GUI库图形界面开发之PyQt5 UI主线程与耗时线程分离详细方法实例
Feb 26 Python
Python递归求出列表(包括列表中的子列表)的最大值实例
Feb 27 Python
PyCharm取消波浪线、下划线和中划线的实现
Mar 03 Python
Python3 selenium 实现QQ群接龙自动化功能
Apr 17 Python
浅析Python面向对象编程
Jul 10 Python
python 解决pycharm运行py文件只有unittest选项的问题
Sep 01 Python
Python测试框架:pytest学习笔记
Oct 20 Python
Django如何继承AbstractUser扩展字段
Nov 27 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
我的论坛源代码(三)
2006/10/09 PHP
PHP array_push 数组函数
2009/12/26 PHP
php中关于codeigniter的xmlrpc的类在进行数据交换时的类型问题
2011/07/03 PHP
PHP性能优化准备篇图解PEAR安装
2011/12/05 PHP
php去除二维数组的重复项方法
2015/11/03 PHP
php实现JWT验证的实例教程
2020/11/26 PHP
JavaScript修改css样式style
2008/04/15 Javascript
jQuery源码分析之Event事件分析
2010/06/07 Javascript
子窗口、父窗口和Silverlight之间的相互调用
2010/08/16 Javascript
php实例分享之实现显示网站运行时间
2014/05/20 Javascript
jQuery进行组件开发完整实例
2015/12/15 Javascript
微信小程序实现瀑布流布局与无限加载的方法详解
2017/05/12 Javascript
详解vue-cli项目中用json-sever搭建mock服务器
2017/11/02 Javascript
AngularJS基于http请求实现下载php生成的excel文件功能示例
2018/01/23 Javascript
详解JavaScript中操作符和表达式
2018/09/12 Javascript
微信小程序用户拒绝授权的处理方法详解
2019/09/20 Javascript
NodeJS开发人员常见五个错误理解
2020/10/14 NodeJs
[02:49]DAC2018决赛日TOP5 LGD开启黑暗之门绝杀VP
2018/04/08 DOTA
Python中optparse模块使用浅析
2015/01/01 Python
python实现感知器
2017/12/19 Python
Python面向对象编程之继承与多态详解
2018/01/16 Python
在Python中pandas.DataFrame重置索引名称的实例
2018/11/06 Python
python3通过qq邮箱发送邮件以及附件
2020/05/20 Python
python如何编写类似nmap的扫描工具
2020/11/06 Python
让IE6、IE7、IE8支持CSS3的脚本
2010/07/20 HTML / CSS
CSS3实现超酷的黑猫警长首页
2016/04/26 HTML / CSS
澳大利亚宠物食品和药物在线:Jumbo Pets
2018/03/24 全球购物
助人为乐模范事迹材料
2014/06/02 职场文书
2014年学雷锋活动总结
2014/06/26 职场文书
党性分析材料格式
2014/12/19 职场文书
简单的辞职信范文(2016最新版)
2015/05/12 职场文书
2015年除四害工作总结
2015/07/23 职场文书
趣味运动会口号
2015/12/24 职场文书
在 Golang 中实现 Cache::remember 方法详解
2021/03/30 Python
python 下划线的多种应用场景总结
2021/05/12 Python
Go 语言结构实例分析
2021/07/04 Golang