PyTorch的nn.Linear()详解

参考链接PyTorch的nn.Linear()详解 - douzujun - 博客园 (cnblogs.com)

这里演示了二维张量的全连接 :

 其实还可以输入三维张量,演示如下:

from torch import nn
import torch

# in_features由输入张量的形状决定,out_features则决定了输出张量的形状
linear = nn.Linear(in_features=64 * 3, out_features=5)

# 10个 大小为7*64*3, 3个channel 的张量
a = torch.rand(10, 3, 7, 64 * 3)

print(a.shape)  # torch.Size([10, 3, 7, 192])

print(linear.weight.shape)  # torch.Size([5, 192])

b = linear(a)

print(b.shape)  # torch.Size([10, 3, 7, 5])

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值