pytorch中的Linear Layer(线性层)

LINEAR LAYERS

Linear

pytorch中的Linear Layer(线性层)_第1张图片

Examples:

>>> m = nn.Linear(20, 30) >>> input = torch.randn(128, 20) >>> output = m(input) >>> print(output.size()) torch.Size([128, 30])


查看源码后发现U指的是均匀分布,即weight权重(A的转置)是取自输入尺寸的倒数再开方后的正负值之间的均匀分布,同理可得偏置bias是输出尺寸
的倒数再开方后的正负值之间的均匀分布。


资料参考于官网:https://pytorch.org/docs/stable/nn.html#linear-layers
 

转载于:https://www.cnblogs.com/tay007/p/10337395.html

你可能感兴趣的:(pytorch中的Linear Layer(线性层))