python怎么检查输入张量的形状
时间: 2023-06-05 11:08:47 浏览: 90
TensorFlow中如何确定张量的形状实例
可以使用Tensor的shape属性来检查输入张量的形状,示例代码如下:
```python
import torch
def check_input_shape(input_tensor):
shape = input_tensor.shape
print("Input tensor shape:", shape)
# 示例输入张量
input_tensor = torch.randn(2, 3, 4)
check_input_shape(input_tensor)
```
输出结果为:
```
Input tensor shape: torch.Size([2, 3, 4])
```
阅读全文