torch.randn
时间: 2023-10-14 22:30:35 浏览: 37
pyTorchRNN
`torch.randn` 是一个 PyTorch 函数,用于生成指定形状的张量(tensor),其中元素值是从标准正态分布(均值为0,方差为1)中随机采样得到的。例如,可以使用以下代码生成一个形状为 (3, 4) 的张量:
```python
import torch
x = torch.randn(3, 4)
print(x)
```
输出:
```
tensor([[-1.6787, 0.7705, -0.2842, -0.3423],
[-1.0772, 0.3405, -0.5370, 0.5562],
[-0.2454, -0.9303, -0.8109, 1.6584]])
```
阅读全文