快捷方式

torch.nn.functional.linear

torch.nn.functional.linear(input, weight, bias=None) Tensor

对输入数据应用线性变换: y=xAT+by = xA^T + b.

此运算支持具有 稀疏布局 的 2D weight

警告

稀疏支持是一个测试版功能,某些布局/dtype/设备组合可能不受支持,或者可能没有自动微分支持。如果您发现缺少功能,请打开功能请求。

此运算符支持 TensorFloat32.

形状

  • 输入: (,in_features)(*, in\_features) 其中 * 表示任意数量的额外维度,包括没有维度

  • 权重: (out_features,in_features)(out\_features, in\_features)(in_features)(in\_features)

  • 偏置:(out_features)(out\_features)()()

  • 输出:(,out_features)(*, out\_features)()(*),取决于权重的形状。

文档

獲取 PyTorch 的全面開發者文檔

查看文檔

教程

獲取針對初學者和高級開發者的深入教程

查看教程

資源

查找開發資源並獲取答案

查看資源