将列表转换为张量并输出张量的形状
时间: 2024-04-30 09:17:59 浏览: 163
浅谈TensorFlow之稀疏张量表示
好的,我假设您使用的是 Python 语言和 PyTorch 库。以下是将列表转换为张量并输出张量形状的代码示例:
```python
import torch
# 假设您有一个包含 10 个整数的列表
my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
# 将列表转换为 1 维张量
my_tensor = torch.tensor(my_list)
# 输出张量的形状
print(my_tensor.shape)
```
输出结果应该类似于:
```
torch.Size([10])
```
这表示您的张量是一个具有 10 个元素的一维张量。
阅读全文